/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; overscroll-behavior-x: none; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a2e;
  background: #eff6ff;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }

/* ===== VARIABLES ===== */
:root {
  --primary: #2563eb;
  --primary-light: #60a5fa;
  --primary-dark: #1d4ed8;
  --secondary: #f59e0b;
  --secondary-light: #fbbf24;
  --success: #10b981;
  --danger: #e53935;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 1.25rem; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.9rem; cursor: pointer;
  border: 2px solid transparent; transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }


.btn-outline { background: transparent; border-color: var(--gray-300); color: var(--gray-700); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-ghost { background: transparent; color: var(--gray-600); }
.btn-ghost:hover { background: var(--gray-100); }
.btn-success { background: var(--success); color: #fff; }
.btn-success:hover { background: #059669; }


.btn-lg { padding: 0.875rem 2rem; font-size: 1.05rem; border-radius: var(--radius); }
.btn-sm { padding: 0.375rem 0.75rem; font-size: 0.8rem; }
.btn-block { width: 100%; justify-content: center; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ===== NAVBAR ===== */
#navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
}
.nav-container {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.5rem;
}
.logo { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 1.25rem; }
.logo-icon {
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  overflow: hidden;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 3px;
}
.logo-icon img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  border-radius: inherit;
}
.logo-text { color: var(--gray-900); }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: var(--gray-600); font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }
.nav-actions { display: flex; gap: 0.75rem; }
.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }
.mobile-profile-btn { display: none; background: none; border: none; cursor: pointer; color: var(--gray-700); align-items: center; justify-content: center; padding: 0.25rem; border-radius: 50%; transition: background 0.15s; position: relative; }
.mobile-profile-btn:hover { background: var(--gray-100); }
.mobile-profile-badge {
  position: absolute; top: -2px; right: -2px;
  min-width: 18px; height: 18px; padding: 0 4px;
  background: #ef4444; color: #fff;
  border-radius: 10px; border: 2px solid #fff;
  font-size: 10px; font-weight: 700; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  box-sizing: border-box;
}
.mobile-profile-badge[hidden] { display: none; }
.mobile-menu { display: none; flex-direction: column; padding: 1rem 1.5rem; gap: 0.75rem; border-top: 1px solid var(--gray-200); }
.mobile-menu.open { display: flex; }

/* User menu when logged in */
.user-menu { display: flex; align-items: center; gap: 0.75rem; position: relative; }
.user-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary-light); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; cursor: pointer;
}

/* Aktiver-Job-Chip in der Nav, nur sichtbar wenn Worker einen
   angenommenen Job hat. Zeigt den Status auf einen Blick. */
.active-job-chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 0.75rem; border-radius: 100px;
  background: #f0fdf4; border: 1px solid #bbf7d0;
  text-decoration: none; color: #166534;
  transition: background 0.2s, border-color 0.2s;
  max-width: 220px;
}
.active-job-chip:hover { background: #dcfce7; border-color: #86efac; }
.active-job-chip-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #16a34a; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(22,163,74,0.18);
}
.active-job-chip-text {
  display: flex; flex-direction: column; line-height: 1.1;
  min-width: 0;
}
.active-job-chip-label {
  font-size: 0.62rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; color: #15803d;
}
.active-job-chip-title {
  font-size: 0.82rem; font-weight: 700; color: #14532d;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
@media (max-width: 640px) {
  .active-job-chip { display: none; }
}
.user-dropdown {
  position: absolute; top: 100%; right: 0; margin-top: 0.5rem;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 200px; overflow: hidden; z-index: 50;
}
.user-dropdown a, .user-dropdown button {
  display: block; width: 100%; text-align: left; padding: 0.75rem 1rem;
  border: none; background: none; cursor: pointer; color: var(--gray-700);
  font-size: 0.9rem; transition: background 0.15s;
}
.user-dropdown a:hover, .user-dropdown button:hover { background: var(--gray-50); }
.user-dropdown .divider { height: 1px; background: var(--gray-200); }

/* ===== FOOTER ===== */
#footer { background: var(--gray-900); color: var(--gray-400); padding: 3.5rem 0 0; margin-top: 4rem; }
.footer-container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-col h4 { color: #fff; margin-bottom: 1rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.footer-col a { display: block; margin-bottom: 0.6rem; font-size: 0.85rem; transition: color 0.2s; color: var(--gray-400); text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-desc { font-size: 0.85rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08);
  transition: all 0.2s; margin: 0;
}
.footer-social a:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.footer-social a svg { width: 16px; height: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 1.25rem 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
  font-size: 0.78rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: var(--gray-500); text-decoration: none; font-size: 0.78rem; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--gray-300); }

/* ===== PAGE CONTAINER ===== */
.page { max-width: 1280px; margin: 0 auto; padding: 2rem 1.5rem; min-height: 60vh; }
.page-wide { max-width: 1440px; }
.page-narrow { max-width: 800px; }

/* ===== CARDS ===== */
.card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  border: 1px solid var(--gray-200); overflow: hidden; transition: all 0.2s;
}
.card:hover { box-shadow: var(--shadow-md); }
.card-body { padding: 1.25rem; }
.card-header { padding: 1.25rem; border-bottom: 1px solid var(--gray-100); font-weight: 600; }
.card-footer { padding: 1rem 1.25rem; border-top: 1px solid var(--gray-100); background: var(--gray-50); }

/* ===== FORM ELEMENTS ===== */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-weight: 600; margin-bottom: 0.375rem; font-size: 0.875rem; color: var(--gray-700); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.625rem 0.875rem;
  border: 2px solid var(--gray-200); border-radius: var(--radius-sm);
  font-size: 0.9rem; transition: border-color 0.2s; background: #fff;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
}

/* Password requirements checklist under the register form's
   password input. Items flip from gray/circle to green/check as
   rules become satisfied. Purely cosmetic — validation is in JS. */
.pw-checklist {
  list-style: none; padding: 0.5rem 0 0; margin: 0;
  display: grid; gap: 0.25rem;
  font-size: 0.8rem; color: var(--gray-500);
}
.pw-checklist li {
  display: flex; align-items: center; gap: 0.5rem;
  transition: color 0.2s;
}
.pw-check-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1rem; height: 1rem; border-radius: 50%;
  background: var(--gray-100); color: var(--gray-500);
  font-size: 0.7rem; font-weight: 700;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.pw-checklist li.pw-check-ok { color: var(--success); font-weight: 500; }
.pw-checklist li.pw-check-ok .pw-check-icon {
  background: var(--success); color: #fff;
}
.form-textarea { min-height: 100px; resize: vertical; }

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

/* Checkbox & Radio */
.checkbox-group { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.checkbox-label {
  display: flex; align-items: center; gap: 0.5rem; cursor: pointer;
  padding: 0.5rem 0.75rem; border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: 0.85rem; transition: all 0.2s;
}
.checkbox-label:hover { border-color: var(--primary-light); }
.checkbox-label input:checked + span { color: var(--primary); font-weight: 600; }
.checkbox-label:has(input:checked) {
  border-color: var(--primary); background: rgba(79,70,229,0.05);
}

/* Range slider */
.range-slider { width: 100%; accent-color: var(--primary); }


/* File upload */


/* ===== PROGRESS BAR ===== */


.progress-bar {
  height: 8px; background: var(--gray-200); border-radius: 100px; overflow: hidden;
}
.progress-fill {
  height: 100%; background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 100px; transition: width 0.5s ease;
}

/* ===== WORKER DASHBOARD ===== */
.profile-progress-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: 14px;
  padding: 1.25rem 1.5rem; margin-bottom: 1.5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.pprogress-title { font-weight: 700; font-size: 0.95rem; color: var(--gray-700); }

.pprogress-bar-row { display: flex; align-items: center; gap: 0.6rem; margin-top: 0.9rem; }
.pprogress-pct-small { font-size: 0.75rem; font-weight: 600; flex-shrink: 0; }
.pprogress-steps { display: flex; flex-direction: column; gap: 0.4rem; }
.pprogress-step {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.45rem 0.75rem; background: var(--gray-50);
  border-radius: 8px; cursor: pointer; transition: background 0.15s;
  font-size: 0.84rem;
}
.pprogress-step:hover { background: var(--gray-100); }
.pprogress-step-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gray-300); flex-shrink: 0;
}

.pprogress-step-pct { font-size: 0.75rem; font-weight: 700; color: var(--primary); }

.worker-dash-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.5rem;
}
@media (max-width: 900px) { .worker-dash-grid { grid-template-columns: 1fr; } }

.worker-dash-tile {
  background: #fff; border: 1px solid var(--gray-200); border-radius: 14px;
  padding: 1.1rem 1.25rem; cursor: pointer; transition: box-shadow 0.15s, border-color 0.15s;
  display: flex; flex-direction: column; gap: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.worker-dash-tile:hover { border-color: var(--primary-light); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.wdt-header {
  display: flex; align-items: center; gap: 0.5rem; font-weight: 700;
  font-size: 0.92rem; margin-bottom: 0.85rem; color: var(--gray-800);
}
.wdt-badge {
  margin-left: auto; background: var(--primary); color: #fff;
  border-radius: 100px; font-size: 0.7rem; font-weight: 700;
  padding: 0.1rem 0.5rem; min-width: 20px; text-align: center;
}
.wdt-badge-green { background: var(--success); }
.wdt-badge-warn  { background: #f59e0b; }
.wdt-badge-unread { background: #ef4444; }
.wdt-msg-row { display: flex; align-items: center; gap: 0.6rem; padding: 0.4rem 0; border-bottom: 1px solid var(--gray-100); }
.wdt-msg-row-unread .wdt-msg-name { color: var(--gray-900); font-weight: 700; }
.wdt-msg-row-unread .wdt-msg-preview { color: var(--gray-700); font-weight: 500; }
.wdt-msg-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; flex-shrink: 0;
}
.wdt-msg-name { font-size: 0.8rem; font-weight: 600; color: var(--gray-800); }
.wdt-msg-preview { font-size: 0.75rem; color: var(--gray-400); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 150px; }
.wdt-job-row { display: flex; align-items: center; gap: 0.6rem; padding: 0.4rem 0; border-bottom: 1px solid var(--gray-100); cursor: pointer; }
.wdt-job-row:hover .wdt-job-title { color: var(--primary); }
.wdt-job-logo {
  width: 32px; height: 32px; border-radius: 8px; background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: var(--gray-600); flex-shrink: 0;
}
.wdt-job-title { font-size: 0.8rem; font-weight: 600; color: var(--gray-800); transition: color 0.15s; }
.wdt-job-company { font-size: 0.73rem; color: var(--gray-400); }
.wdt-empty { font-size: 0.82rem; color: var(--gray-400); padding: 0.5rem 0; }
.wdt-link { font-size: 0.78rem; color: var(--primary); font-weight: 600; margin-top: 0.75rem; }
.wdt-cv-hint { font-size: 0.82rem; color: var(--gray-500); line-height: 1.4; }

/* ===== BADGE ===== */
.badge {
  display: inline-flex; align-items: center; padding: 0.2rem 0.6rem;
  border-radius: 100px; font-size: 0.75rem; font-weight: 600;
}
.badge-primary { background: rgba(79,70,229,0.1); color: var(--primary); }
.badge-secondary { background: rgba(37,99,235,0.12); color: #1d4ed8; }
.badge-success { background: rgba(16,185,129,0.1); color: #059669; }
.badge-danger { background: rgba(239,68,68,0.1); color: var(--danger); }
.badge-gray { background: var(--gray-100); color: var(--gray-600); }

/* ===== TABS ===== */
.tabs { display: flex; gap: 0; border-bottom: 2px solid var(--gray-200); margin-bottom: 1.5rem; }
.tab {
  padding: 0.75rem 1.25rem; cursor: pointer; font-weight: 500;
  color: var(--gray-500); border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: all 0.2s; background: none; border-top: none;
  border-left: none; border-right: none; font-size: 0.9rem;
}
.tab:hover { color: var(--gray-700); }
.tab.active { color: var(--primary); border-bottom-color: var(--primary); }

/* ===== STAR RATING ===== */
.stars { display: flex; gap: 0.125rem; }
.star { cursor: pointer; font-size: 1.25rem; color: var(--gray-300); transition: color 0.15s; }
.star.filled { color: var(--secondary); }
.star:hover { color: var(--secondary-light); }
.rating-display { display: flex; align-items: center; gap: 0.5rem; }


/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 200;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  background: #fff; border-radius: var(--radius-lg); max-width: 560px; width: 90%;
  max-height: 85vh; overflow-y: auto; box-shadow: var(--shadow-xl);
}
.modal-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--gray-200);
}
.modal-header h3 { font-size: 1.1rem; }
.modal-body { padding: 1.5rem; }
.modal-footer { padding: 1rem 1.5rem; border-top: 1px solid var(--gray-200); display: flex; gap: 0.75rem; justify-content: flex-end; }
.close-btn { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--gray-400); line-height: 1; }
.close-btn:hover { color: var(--gray-600); }
.apply-option { border: 1px solid var(--gray-200); }
.apply-option:hover { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary); }
.apply-option-active { border-color: var(--primary) !important; background: rgba(37,99,235,0.03) !important; box-shadow: 0 0 0 1px var(--primary); }

/* Employer Ticker */
.employer-ticker-wrap { position: relative; overflow: hidden; }
.employer-ticker-fade-left, .employer-ticker-fade-right {
  position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none;
}
.employer-ticker-fade-left { left: 0; background: linear-gradient(90deg, #fff 0%, transparent 100%); }
.employer-ticker-fade-right { right: 0; background: linear-gradient(270deg, #fff 0%, transparent 100%); }
.employer-ticker { overflow: hidden; }
.employer-ticker-track {
  display: flex; align-items: center; gap: 5rem; animation: employerScroll 45s linear infinite; width: max-content;
}
@keyframes employerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.employer-ticker-item {
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  height: 55px; transition: opacity 0.3s; cursor: default;
}
.employer-ticker-item:hover { opacity: 0.7; }
.employer-ticker-item img, .employer-ticker-item svg { height: 45px; width: auto; max-width: 170px; object-fit: contain; }

/* Job Ticker */


@keyframes tickerDown {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
@keyframes tickerUp {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}


/* ===== LANDING PAGE ===== */
.hero {
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
  color: #fff; padding: 5rem 1.5rem; text-align: center; position: relative;
  overflow: hidden;
}
.hero::before { content: none; }
.hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 1rem; line-height: 1.2; font-family: 'Playfair Display', serif; }
.hero p { font-size: 1.2rem; opacity: 0.9; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }

.hero .btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }
.hero .btn-primary { background: #fff; color: #1d4ed8; }
.hero .btn-primary:hover { background: var(--gray-100); }
.hero .btn-outline { border-color: rgba(255,255,255,0.4); color: #fff; }
.hero .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }


.stat { text-align: center; }
.stat-number { font-size: 2rem; font-weight: 800; }
.stat-label { font-size: 0.85rem; opacity: 0.8; }

/* Section Bands */


/* Features Section */


/* Photo Strip */


/* ===== Kaskaden-Slideshow ("So einfach geht's") — ohne Kästen ===== */
.steps-cascade {
  max-width: 560px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; flex-direction: column; gap: 2rem;
}
.sc-step {
  display: flex; gap: 1.5rem; align-items: flex-start;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
/* Schritt 1 ist von Anfang an sichtbar */
.sc-step:first-child {
  opacity: 1; transform: translateY(0);
}
/* Schritt 2 und 3 starten versteckt */
.sc-step:not(:first-child) {
  opacity: 0; transform: translateY(12px);
}
.sc-step.show {
  opacity: 1; transform: translateY(0);
}
.sc-step-circle {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800;
  box-shadow: 0 6px 16px rgba(30,58,138,0.35);
}
.sc-step-text { flex: 1; padding-top: 0.35rem; }
.sc-step-text h3 {
  font-size: 1.15rem; font-weight: 700; color: var(--gray-900);
  margin-bottom: 0.3rem;
}
.sc-step-text p {
  color: var(--gray-500); font-size: 0.92rem;
  line-height: 1.65; margin: 0;
}
@media (max-width: 600px) {
  .steps-cascade { gap: 1.5rem; }
  .sc-step { gap: 1rem; }
  .sc-step-circle { width: 40px; height: 40px; font-size: 1rem; }
  .sc-step-text h3 { font-size: 1rem; }
  .sc-step-text p { font-size: 0.88rem; }
}

/* ===== Testimonial Ticker — scrollt nach links endlos ===== */
.testi-ticker-wrap {
  position: relative; width: 100%; overflow: hidden;
}
.testi-ticker-fade {
  position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
  pointer-events: none;
}
.testi-ticker-fade-left {
  left: 0; background: linear-gradient(90deg, var(--gray-50), transparent);
}
.testi-ticker-fade-right {
  right: 0; background: linear-gradient(-90deg, var(--gray-50), transparent);
}
.testi-ticker { overflow: hidden; }
.testi-ticker-track {
  display: flex; gap: 1.25rem; width: max-content;
  animation: testi-scroll 55s linear infinite;
  padding: 0 0.75rem;
}
/* niemals pausieren — läuft durchgehend */
@keyframes testi-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.testi-card {
  flex-shrink: 0; width: 340px;
  background: #fff; border: 1px solid var(--gray-100);
  border-radius: 16px; padding: 1.5rem 1.5rem 1.25rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  display: flex; flex-direction: column; gap: 0.75rem;
}

.testi-stars { position: relative; display: inline-block; align-self: flex-start; width: max-content; font-size: 0.95rem; letter-spacing: 2px; line-height: 1; }
.testi-stars-bg { color: #d1d5db; }
.testi-stars-fill {
  position: absolute; top: 0; left: 0; color: #fbbf24; overflow: hidden;
  width: 100%; white-space: nowrap;
}

.testi-card p {
  color: var(--gray-700); font-size: 0.92rem; line-height: 1.55;
  margin: 0; flex: 1;
}
.testi-author {
  display: flex; align-items: center; gap: 0.75rem;
  margin-top: 0.4rem; padding-top: 0.85rem;
  border-top: 1px solid var(--gray-100);
}
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 0.88rem;
  flex-shrink: 0; overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.testi-avatar img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.testi-name { font-size: 0.88rem; font-weight: 700; color: var(--gray-900); }
.testi-role { font-size: 0.78rem; color: var(--gray-500); margin-top: 1px; }
@media (max-width: 600px) {
  .testi-card { width: 280px; }
  .testi-ticker-fade { width: 60px; }
}
/* ===== Feature Spotlight "Darum surfforjobs" — Slideshow-Effekt ===== */
/* Jeder Slide klebt per sticky am oberen Rand, z-index steigt -> der
   naechste Slide schiebt sich von unten ueber den vorherigen. */
.sp-wrap {
  position: relative;
  background: #fff;
}
.sp-wrap-head {
  text-align: center;
  padding: 4.5rem 1.5rem 1rem;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 0;
}
.sp-wrap-head h2 {
  font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 800;
  letter-spacing: -0.02em; line-height: 1.1; margin: 0;
  color: var(--gray-900);
}
.sp-wrap-head h2 em {
  font-family: 'Playfair Display', serif; font-style: italic; color: #1e3a8a;
}
.sp-wrap-sub {
  color: var(--gray-500); margin: 1rem 0 0;
  font-size: 1.05rem; font-weight: 500;
}

.sp-slide {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh; /* sicher fuer Mobile Safari mit dynamischer Toolbar */
  min-height: 520px;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 2rem 1.5rem;
  box-sizing: border-box;
  overflow: hidden;
}
/* z-index steigt: spaetere Slides schieben sich ueber frueheste.
   Rundung oben + Top-Schatten lassen neue Slides wie aufgeschlagene
   Karten wirken. */
.sp-slide[data-i="1"] { z-index: 1; }
.sp-slide[data-i="2"], .sp-slide[data-i="3"] {
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  box-shadow: 0 -24px 48px -14px rgba(15, 23, 42, 0.15);
}
.sp-slide[data-i="2"] { z-index: 2; }
.sp-slide[data-i="3"] { z-index: 3; }

.sp-slide-inner {
  max-width: 1120px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 4.5rem; align-items: center;
}
.sp-slide-reverse .sp-slide-media { order: 2; }
.sp-slide-reverse .sp-slide-body  { order: 1; }

.sp-slide-media {
  position: relative; overflow: hidden; border-radius: 24px;
  aspect-ratio: 5/4; background: var(--gray-100);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.sp-slide-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.sp-slide-badge {
  position: absolute; bottom: 18px; left: 18px; z-index: 2;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
  padding: 0.55rem 0.85rem 0.55rem 0.7rem; border-radius: 14px;
  display: flex; align-items: center; gap: 0.6rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.sp-slide-badge-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: #1e3a8a; color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sp-slide-badge-icon svg { width: 14px; height: 14px; }
.sp-slide-badge-text strong {
  display: block; font-size: 0.82rem; font-weight: 700;
  color: var(--gray-900); line-height: 1;
}
.sp-slide-badge-text span {
  display: block; font-size: 0.7rem; color: var(--gray-500); margin-top: 2px;
}

.sp-slide-body { max-width: 480px; }
.sp-slide-num {
  display: inline-block; font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 1.1rem; color: #1e3a8a;
  margin-bottom: 0.75rem; letter-spacing: 0.02em;
}
.sp-slide-body h3 {
  font-size: clamp(1.75rem, 3vw, 2.2rem); font-weight: 800;
  letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 1rem;
  color: var(--gray-900); font-family: 'Playfair Display', serif;
}
.sp-slide-body p {
  color: var(--gray-600); font-size: 1.05rem; line-height: 1.65;
  margin: 0 0 1.5rem;
}
.sp-slide-features {
  display: flex; flex-direction: column; gap: 0.65rem; margin-top: 1.25rem;
}
.sp-slide-feature {
  display: flex; align-items: center; gap: 0.65rem;
  font-size: 0.95rem; color: var(--gray-700); font-weight: 500;
}
.sp-slide-feature svg {
  flex-shrink: 0; width: 18px; height: 18px; color: #1e3a8a;
}

/* Kleiner End-Spacer: Slide 3 bekommt kurzen "Dwell" bevor er freigegeben wird.
   Absichtlich kurz, damit die Section nicht zu lang wirkt. */
.sp-end { height: 40vh; }

@media (max-width: 880px) {
  /* Mobile: Slideshow bleibt aktiv, nur kompakteres Layout */
  .sp-wrap-head { padding: 3rem 1.25rem 0.5rem; }
  .sp-wrap-head h2 { font-size: 1.65rem; }
  .sp-wrap-sub { font-size: 0.95rem; }
  .sp-slide {
    min-height: 500px;
    padding: 1.5rem 1rem;
  }
  .sp-slide-inner {
    grid-template-columns: 1fr; gap: 1.25rem;
  }
  .sp-slide-reverse .sp-slide-media,
  .sp-slide-reverse .sp-slide-body { order: unset; }
  .sp-slide-media { aspect-ratio: 16/10; }
  .sp-slide-body h3 { font-size: 1.35rem; }
  .sp-slide-body p { font-size: 0.95rem; margin-bottom: 1rem; }
  .sp-slide-features { margin-top: 0.5rem; gap: 0.4rem; }
  .sp-slide-feature { font-size: 0.85rem; }
}

/* ===== Arbeitgeber-Hero v2 (Split mit Browser+Phone-Mockup) ===== */


/* Browser-Mockup */


/* Phone-Mockup schwebt vorne rechts */


/* ===== Arbeitgeber Bento-Grid (individueller Mittelteil, nicht wie Landing) ===== */


/* Grid-Spans */


/* Kachel 1: Editor-Mockup */


/* Kachel 2 + 6: Typo-Statement */


/* Kachel 3: Chat-Bubbles */


/* Kachel 4: Foto mit Overlay */


/* Kachel 5: Profil-Card */


/* ===== Arbeitgeber Final-CTA (editorial, nicht wie cta-fullblock) ===== */


/* Mobile Bento: stacken auf 2 Spalten / 1 Spalte */


/* CTA Full-Block — keine Ränder, keine Box-in-Box */
.cta-fullblock {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  color: #fff; padding: 5rem 1.5rem; text-align: center;
  border-radius: 0; margin: 0;
}
.cta-fullblock::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 30%, rgba(96,165,250,0.18), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(147,197,253,0.12), transparent 45%);
  pointer-events: none;
}
.cta-fullblock-inner {
  position: relative; z-index: 1; max-width: 720px; margin: 0 auto;
}
.cta-fullblock-kicker {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: #bfdbfe; margin-bottom: 1rem;
  padding: 0.35rem 0.85rem; border: 1px solid rgba(191,219,254,0.35);
  border-radius: 100px; backdrop-filter: blur(4px);
}
.cta-fullblock h2 {
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800;
  margin: 0 0 1rem; letter-spacing: -0.02em; line-height: 1.1;
  font-family: 'Playfair Display', serif; color: #fff;
}
.cta-fullblock p {
  color: rgba(255,255,255,0.85); margin: 0 auto 2rem;
  font-size: 1.1rem; max-width: 520px; line-height: 1.6;
}
.cta-fullblock-buttons {
  display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap;
}
.cta-btn-primary {
  background: #fff !important; color: #0f172a !important;
  font-size: 1rem; padding: 0.9rem 2rem; font-weight: 700;
  border: 2px solid #fff !important;
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 0.5rem;
}
.cta-btn-primary:hover {
  background: #f1f5f9 !important; transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}
.cta-btn-primary:hover .cta-arrow { transform: translateX(3px); }
.cta-arrow { transition: transform 0.2s; }
.cta-btn-outline {
  background: rgba(255,255,255,0.08) !important;
  border: 2px solid rgba(255,255,255,0.55) !important;
  color: #fff !important;
  font-size: 1rem; padding: 0.9rem 2rem; font-weight: 700;
  backdrop-filter: blur(8px); transition: all 0.2s;
}
.cta-btn-outline:hover {
  background: rgba(255,255,255,0.18) !important;
  border-color: #fff !important;
  transform: translateY(-2px);
}

/* FAQ */


.faq-item {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius); cursor: pointer;
  transition: box-shadow 0.2s, border-color 0.2s;
  overflow: hidden;
}
.faq-item:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.faq-item.open { border-color: var(--primary); box-shadow: var(--shadow-md); }


/* Testimonials */


/* ===== JOB SEARCH PAGE ===== */
.search-layout { display: grid; grid-template-columns: 280px 1fr; gap: 1.5rem; align-items: start; }
.search-sidebar {
  background: #fff; border-radius: var(--radius); padding: 1.25rem;
  border: 1px solid var(--gray-200); position: sticky; top: 80px;
}
.filter-section { margin-bottom: 1.25rem; }
.filter-section h4 { font-size: 0.85rem; font-weight: 600; color: var(--gray-700); margin-bottom: 0.5rem; }
.search-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem; }
.search-bar {
  display: flex; gap: 0.5rem; flex: 1; max-width: 500px;
}
.search-bar input {
  flex: 1; padding: 0.625rem 1rem; border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: 0.9rem;
}
.search-bar input:focus { outline: none; border-color: var(--primary); }
.search-results-count { color: var(--gray-500); font-size: 0.9rem; }


/* Job Cards */
.jobs-grid { display: grid; gap: 1rem; }
.job-card {
  background: #fff; border-radius: var(--radius); padding: 1.25rem;
  border: 1px solid var(--gray-200); transition: all 0.2s; cursor: pointer;
  display: flex; flex-direction: row; gap: 1rem; align-items: flex-start;
}
.job-card-left {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; gap: 0;
}
.job-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.job-card.promoted {
  border-color: var(--secondary); background: linear-gradient(135deg, #fff1f2 0%, #fff 100%);
  position: relative;
}
.promoted-badge {
  position: absolute; top: -1px; right: 1rem; background: var(--secondary);
  color: #fff; font-size: 0.7rem; font-weight: 700; padding: 0.2rem 0.6rem;
  border-radius: 0 0 6px 6px;
}
.job-card-header { display: flex; align-items: start; gap: 1rem; }
.job-company-logo {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--gray-100); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.job-card-info h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.job-company-name { color: var(--gray-500); font-size: 0.85rem; }
.job-card-meta {
  display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.75rem;
  font-size: 0.8rem; color: var(--gray-500);
}
.job-card-meta span { display: flex; align-items: center; gap: 0.25rem; }
.job-meta-item { display: flex; align-items: center; gap: 0.4rem; color: var(--gray-600); font-size: 0.82rem; }
.job-meta-item svg { flex-shrink: 0; color: var(--gray-400); }
.job-card-date {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.72rem; color: var(--gray-400);
  margin-top: 0.75rem; padding-top: 0.6rem;
  border-top: 1px solid var(--gray-100);
}
.job-card-tags { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-top: 0.75rem; }
.tag {
  padding: 0.2rem 0.5rem; background: var(--gray-100);
  border-radius: 6px; font-size: 0.75rem; color: var(--gray-600);
}
.job-card-actions {
  display: flex; flex-direction: column; align-items: flex-end;
  justify-content: space-between; gap: 0.5rem; align-self: stretch;
}
.save-btn {
  background: none; border: none; cursor: pointer;
  color: var(--gray-300); transition: color 0.2s; padding: 0.25rem;
  margin-top: auto;
}
.save-btn:hover { color: var(--primary); }
.save-btn.saved { color: var(--primary); }
.job-stats { font-size: 0.9rem; color: var(--gray-500); text-align: right; }

/* ===== JOB DETAIL PAGE ===== */
.job-detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 1.5rem; align-items: start; }
.job-detail-main { background: #fff; border-radius: var(--radius); border: 1px solid var(--gray-200); }
.job-detail-header { padding: 2rem; border-bottom: 1px solid var(--gray-100); }
.job-detail-header h1 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.job-detail-company { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.job-detail-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.job-detail-body { padding: 2rem; }
.job-detail-body h3 { font-size: 1.05rem; margin: 1.5rem 0 0.75rem; }
.job-detail-body h3:first-child { margin-top: 0; }
.job-detail-body p, .job-detail-body ul { color: var(--gray-600); font-size: 0.9rem; line-height: 1.7; }
.job-detail-body ul { padding-left: 1.25rem; }
.job-detail-body li { margin-bottom: 0.375rem; }
.job-detail-sidebar .card { position: sticky; top: 80px; }
.job-detail-sidebar .card-body > * + * { margin-top: 1rem; }
.company-info-row { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; }
.company-info-row .label { color: var(--gray-500); min-width: 80px; }
.job-images { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1rem; }
.job-image-placeholder {
  aspect-ratio: 16/10; background: var(--gray-100); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400); font-size: 0.85rem;
}

/* ===== DASHBOARD LAYOUTS ===== */
.dashboard-layout { display: grid; grid-template-columns: 240px 1fr; gap: 1.5rem; min-height: 70vh; }
.dashboard-sidebar {
  background: #fff; border-radius: var(--radius); border: 1px solid var(--gray-200);
  padding: 1rem 0; height: fit-content; position: sticky; top: 80px;
}
.sidebar-nav a, .sidebar-nav button {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1.25rem;
  color: var(--gray-600); font-size: 0.9rem; transition: all 0.15s;
  border: none; background: none; width: 100%; text-align: left; cursor: pointer;
}
.sidebar-nav a:hover, .sidebar-nav button:hover { background: var(--gray-50); color: var(--gray-900); }
.sidebar-nav a.active, .sidebar-nav button.active { background: rgba(79,70,229,0.05); color: var(--primary); font-weight: 600; border-right: 3px solid var(--primary); }
.sidebar-nav .divider { height: 1px; background: var(--gray-200); margin: 0.5rem 0; }
.dashboard-content { min-width: 0; }
.dashboard-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }

/* Dashboard Stats */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
.stat-card {
  background: #fff; border-radius: var(--radius); padding: 1.25rem;
  border: 1px solid var(--gray-200);
}
.stat-card .stat-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.stat-card .stat-value { font-size: 1.75rem; font-weight: 800; }
.stat-card .stat-label { font-size: 0.8rem; color: var(--gray-500); }


/* ===== WIZARD / STEPPER ===== */
.wizard-steps {
  display: flex; justify-content: center; margin-bottom: 2rem;
  padding: 0; list-style: none; gap: 0;
}
.wizard-step {
  display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem;
  font-size: 0.85rem; color: var(--gray-400); position: relative;
}
.wizard-step::after {
  content: ''; position: absolute; right: -1rem; top: 50%;
  width: 2rem; height: 2px; background: var(--gray-300);
}
.wizard-step:last-child::after { display: none; }
.wizard-step .step-num {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8rem; border: 2px solid var(--gray-300);
  color: var(--gray-400);
}
.wizard-step.active { color: var(--primary); }
.wizard-step.active .step-num { border-color: var(--primary); color: var(--primary); background: rgba(79,70,229,0.05); }
.wizard-step.completed { color: var(--success); }
.wizard-step.completed .step-num { border-color: var(--success); background: var(--success); color: #fff; }
.wizard-step.completed::after { background: var(--success); }
.wizard-content { background: #fff; border-radius: var(--radius); border: 1px solid var(--gray-200); padding: 2rem; }
.wizard-footer { display: flex; justify-content: space-between; margin-top: 1.5rem; }

/* ===== CHAT WIDGET ===== */


.chat-body { height: 350px; display: flex; flex-direction: column; }
.chat-messages { flex: 1; overflow-y: auto; padding: 1rem; }
.chat-msg {
  margin-bottom: 0.75rem; max-width: 80%;
  padding: 0.625rem 0.875rem; border-radius: 12px 12px 12px 4px;
  font-size: 0.85rem; line-height: 1.5;
}
.chat-msg.sent {
  margin-left: auto; background: var(--primary); color: #fff;
  border-radius: 12px 12px 4px 12px;
}
.chat-msg.received { background: var(--gray-100); color: var(--gray-800); }


.chat-list { padding: 0.5rem; }


/* ===== AUTH PAGE ===== */
.auth-page {
  display: flex; align-items: center; justify-content: center;
  min-height: 70vh; padding: 2rem;
}
.auth-card {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200); width: 100%; max-width: 440px; padding: 2.5rem;
}
.auth-card h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.auth-card .subtitle { color: var(--gray-500); margin-bottom: 1.5rem; font-size: 0.9rem; }
.auth-divider {
  display: flex; align-items: center; gap: 1rem; margin: 1.5rem 0;
  color: var(--gray-400); font-size: 0.8rem;
}
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--gray-200); }
.role-selector { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1.5rem; }
.role-option {
  padding: 1rem; border: 2px solid var(--gray-200); border-radius: var(--radius);
  text-align: center; cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.role-option:hover,
.role-option.selected {
  border-color: var(--primary);
  background: rgba(79,70,229,0.05);
}

.role-option .role-name { font-weight: 600; font-size: 0.9rem; }

/* ===== PROFILE PAGE ===== */
.profile-header-card {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  color: #fff; border-radius: var(--radius-lg); padding: 2rem;
  margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1.5rem;
}
.profile-avatar {
  width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 700; border: 3px solid rgba(255,255,255,0.3);
}
.profile-info h2 { font-size: 1.5rem; margin-bottom: 0.25rem; }
.profile-info p { opacity: 0.85; font-size: 0.9rem; }
.profile-sections { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.profile-section { background: #fff; border-radius: var(--radius); border: 1px solid var(--gray-200); padding: 1.5rem; }
.profile-section h3 { font-size: 1.1rem; margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--gray-100); }

/* ===== EMPLOYER LANDING ===== */
.employer-hero {
  position: relative; min-height: 520px; display: flex; align-items: center;
  overflow: hidden; color: #fff;
}
.employer-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
}
.employer-hero-bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.35;
}
.employer-hero-content {
  position: relative; z-index: 1; max-width: 650px; padding: 3rem 2rem;
}
.employer-hero h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 1rem; font-family: 'Playfair Display', serif; line-height: 1.15; }
.employer-hero p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 2rem; line-height: 1.7; }

/* Employer Slideshow */
.emp-slideshow { position: relative; border-radius: 16px; overflow: hidden; height: 400px; }


.emp-slideshow-dot {
  width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4);
  cursor: pointer; border: none; transition: all 0.3s;
}
.emp-slideshow-dot.active { background: #fff; transform: scale(1.2); }

/* Employer Stats Row */
.emp-stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  max-width: 1100px; margin: -3rem auto 3rem; position: relative; z-index: 2;
  padding: 0 1.5rem;
}
.emp-stat-card {
  background: #fff; border-radius: 14px; padding: 1.5rem; text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08); border: 1px solid var(--gray-100);
}
.emp-stat-number { font-size: 2rem; font-weight: 800; color: #1e3a8a; line-height: 1; }
.emp-stat-label { font-size: 0.8rem; color: var(--gray-500); margin-top: 0.3rem; font-weight: 500; }

/* Employer Split Section */


/* Employer Testimonials */


/* Kicker-Label auf der Arbeitgeberseite (kleine Uppercase-Ueberschrift) */


/* Stimmen / Quotes (auf der Arbeitgeberseite, mit echten Profilbildern) */


@media (max-width: 768px) {
  .employer-hero { min-height: 420px; }
  .employer-hero h1 { font-size: 2rem; }
  .emp-stats-row { grid-template-columns: repeat(2, 1fr); margin-top: -2rem; }
  
  .emp-slideshow { height: 280px; }


}
.employer-hero p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ===== REVIEWS ===== */
.review-card {
  background: #fff; border-radius: var(--radius); padding: 1.25rem;
  border: 1px solid var(--gray-200); margin-bottom: 1rem;
}
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-text { color: var(--gray-600); font-size: 0.9rem; line-height: 1.6; }
.review-date { font-size: 0.8rem; color: var(--gray-400); margin-top: 0.5rem; }
.review-restriction {
  background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.3);
  border-radius: var(--radius-sm); padding: 0.75rem 1rem;
  font-size: 0.85rem; color: #1e40af; margin-bottom: 1rem;
}

/* ===== CV BUILDER ===== */
.cv-templates { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.85rem; }
.cv-template {
  border: 2px solid var(--gray-200); border-radius: var(--radius-sm);
  overflow: hidden; cursor: pointer; transition: all 0.2s;
}
.cv-template:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.cv-template.selected { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(79,70,229,0.15); }
.cv-templates { align-items: start; }
.cv-preview {
  background: #fff; padding: 0;
  border-bottom: 1px solid var(--gray-200);
}
.cv-template-name { padding: 0.5rem; text-align: center; font-weight: 600; font-size: 0.85rem; }

/* ===== APPLICANTS TABLE ===== */
.applicants-table { width: 100%; border-collapse: collapse; min-width: 700px; }
.applicants-table th, .applicants-table td {
  padding: 0.75rem 0.75rem; text-align: left; border-bottom: 1px solid var(--gray-200);
  font-size: 0.85rem; white-space: nowrap;
}
.applicants-table td:nth-child(3) { white-space: normal; }
.applicants-table td:last-child { white-space: normal; }
.applicants-table th { font-weight: 600; color: var(--gray-500); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; }
.applicants-table tr:hover td { background: var(--gray-50); }
.applicant-row { display: flex; align-items: center; gap: 0.75rem; }


/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center; padding: 3rem 1rem; color: var(--gray-500);
}
.empty-state-icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.5; }
.empty-state h3 { color: var(--gray-700); margin-bottom: 0.5rem; }
.empty-state p { font-size: 0.9rem; margin-bottom: 1.5rem; }

/* ===== CHAT DETAIL (Einzel-Chat Seite) ===== */
.chat-detail-content {
  display: flex; flex-direction: column;
  max-height: calc(100vh - 140px);
  min-width: 0;
}
.chat-detail-header {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1rem; padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gray-200);
}
.chat-detail-messages {
  flex: 1; overflow-y: auto;
  display: flex; flex-direction: column; gap: 0.625rem;
  padding-bottom: 1rem;
  min-height: 0;
}
.chat-bubble {
  max-width: 72%;
  padding: 0.6rem 0.85rem;
  font-size: 0.88rem; line-height: 1.45;
  word-wrap: break-word; overflow-wrap: break-word;
}
.chat-detail-input {
  display: flex; gap: 0.5rem;
  padding-top: 0.75rem; border-top: 1px solid var(--gray-200);
}

/* Kleiner × neben eigenen Chat-Bubbles zum Nachrichten-Loeschen.
   Standardmaessig ausgeblendet, erscheint on-hover der ganzen Zeile.
   Auf Touch-Geraeten (hover nicht verlaesslich) immer sichtbar. */
.chat-msg-delete {
  border: none; background: transparent; cursor: pointer;
  color: var(--gray-400); font-size: 1.05rem; line-height: 1;
  padding: 0 0.25rem; opacity: 0; transition: opacity 0.15s, color 0.15s;
  align-self: center;
}
.chat-msg-row:hover .chat-msg-delete { opacity: 1; }
.chat-msg-delete:hover { color: var(--danger); }
@media (hover: none) {
  .chat-msg-delete { opacity: 0.5; }
}

/* Delete-Button in der Chat-Liste (nur sichtbar on-hover bzw. Touch). */
.chat-list-delete {
  border: none; background: transparent; cursor: pointer;
  color: var(--gray-400); font-size: 1.25rem; line-height: 1;
  padding: 0.35rem 0.55rem; border-radius: 6px;
  opacity: 0; transition: opacity 0.15s, color 0.15s, background 0.15s;
  flex-shrink: 0;
}
.chat-list-row:hover .chat-list-delete { opacity: 1; }
.chat-list-delete:hover { color: var(--danger); background: var(--gray-100); }
@media (hover: none) {
  .chat-list-delete { opacity: 0.5; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  
  .search-layout { grid-template-columns: 1fr; }
  .search-sidebar { position: static; }
  .job-detail-layout { grid-template-columns: 1fr; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .dashboard-sidebar { position: static; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-sections { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }


  
  .nav-links { display: flex; gap: 0.5rem; font-size: 0.75rem; }
  .nav-links a { white-space: nowrap; }
  .nav-actions { display: flex; gap: 0.35rem; }
  .nav-actions .btn { font-size: 0.7rem; padding: 0.35rem 0.6rem; }
  .nav-actions .user-avatar { width: 32px; height: 32px; font-size: 0.7rem; }
  .mobile-menu-btn { display: block; }
  .mobile-nav-btns { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .wizard-steps { flex-wrap: wrap; }
  
  .cv-templates { grid-template-columns: 1fr; }
  
  .profile-header-card { flex-direction: column; text-align: center; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.fade-in { animation: fadeIn 0.3s ease; }
.slide-up { animation: slideUp 0.4s ease; }

/* Scroll-Animationen */
.scroll-reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }
.scroll-reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.scroll-reveal-left.visible { opacity: 1; transform: translateX(0); }
.scroll-reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.scroll-reveal-right.visible { opacity: 1; transform: translateX(0); }


/* Skeleton loading */
.skeleton { background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%); background-size: 200% 100%; animation: pulse 1.5s ease infinite; border-radius: var(--radius-sm); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }

/* ===== MISC ===== */


.mb-2 { margin-bottom: 1rem; }


.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }


.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hidden { display: none !important; }
.mobile-nav-btns { display: none; align-items: center; gap: 0.25rem; }

/* ===== EMPLOYER DASHBOARD ===== */
.employer-page .dashboard-sidebar { border-right-color: #eff6ff; }
.employer-page .sidebar-nav a.active { background: #eff6ff; color: #1e40af; }
.employer-page .sidebar-nav a:hover { background: #f0f9ff; }
.employer-dash-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.75rem; padding-bottom: 1.25rem;
  border-bottom: 2px solid #dbeafe;
}
.btn-employer {
  background: var(--success); color: #fff; border: none;
  padding: 0.6rem 1.25rem; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.9rem; cursor: pointer;
  transition: background 0.15s;
}
.btn-employer:hover { background: #1e40af; }
.employer-stat .stat-icon { color: var(--success); }
.employer-stat .stat-value { color: #1e40af; }

/* ===== JOB STAT ROW ===== */
.job-stat-row {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.9rem; color: var(--gray-500); font-weight: 600;
}
.job-stat-row svg { flex-shrink: 0; width: 16px; height: 16px; }

/* ===== PROFIL-SCHRITTE HORIZONTAL ===== */
.pprogress-steps-row {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.pprogress-step-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.3rem 0.75rem; background: var(--gray-50);
  border: 1px solid var(--gray-200); border-radius: 100px;
  font-size: 0.78rem; color: var(--gray-600); cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.pprogress-step-pill:hover {
  background: var(--primary-light); border-color: var(--primary);
  color: var(--primary);
}
.pprogress-step-pill .pprogress-step-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gray-300); flex-shrink: 0;
}
.pprogress-step-pill:hover .pprogress-step-dot { background: var(--primary); }

/* ===== SECTION HIGHLIGHT & UPLOAD ===== */
@keyframes sectionPulse {
  0%   { box-shadow: 0 0 0 0 rgba(79,70,229,0.25); }
  60%  { box-shadow: 0 0 0 8px rgba(79,70,229,0.08); }
  100% { box-shadow: 0 0 0 0 rgba(79,70,229,0); }
}

.upload-success-bar {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.7rem 1rem; background: #eff6ff;
  border: 1px solid #dbeafe; border-radius: 10px;
  font-size: 0.85rem; font-weight: 600; color: var(--success);
}

/* ===== PROFIL SCHRITT-ASSISTENT ===== */
.profile-step-indicators {
  display: flex; align-items: center; gap: 0; margin-bottom: 1.5rem;
}
.psi-item {
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  cursor: pointer; flex-shrink: 0;
}
.psi-dot {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--gray-200); color: var(--gray-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; transition: all 0.2s;
}
.psi-item.active .psi-dot  { background: var(--primary); color: #fff; }
.psi-item.done .psi-dot    { background: var(--success); color: #fff; }
.psi-label {
  font-size: 0.72rem; color: var(--gray-400); white-space: nowrap;
}
.psi-item.active .psi-label { color: var(--primary); font-weight: 600; }
.psi-item.done .psi-label   { color: var(--success); }
.psi-line {
  flex: 1; height: 2px; background: var(--gray-200);
  margin: 0 0.25rem; margin-bottom: 1.1rem; transition: background 0.2s;
}
.psi-line.done { background: var(--success); }

.profile-step-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: 14px;
  padding: 1.75rem; margin-bottom: 1.25rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.profile-step-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.4rem; }
.profile-step-hint  { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 1.25rem; }

.profile-step-nav {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 0.5rem;
}

/* ===== CV UPLOAD LAYOUT ===== */
.cv-upload-area {
  display: flex; align-items: stretch; gap: 0; border: 1px solid var(--gray-200);
  border-radius: 12px; overflow: hidden;
}
.cv-upload-option { flex: 1; }
.cv-upload-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.4rem; width: 100%; height: 100%; padding: 1.5rem 1rem;
  background: none; border: none; cursor: pointer;
  transition: background 0.15s; text-align: center;
}
.cv-upload-btn:hover { background: var(--gray-50); }
.cv-upload-btn span { font-weight: 600; font-size: 0.9rem; color: var(--gray-800); }
.cv-upload-btn small { font-size: 0.75rem; color: var(--gray-400); }
.cv-upload-btn svg { color: var(--primary); }
.cv-upload-divider {
  display: flex; align-items: center; justify-content: center;
  padding: 0 0.75rem; font-size: 0.75rem; color: var(--gray-400);
  border-left: 1px solid var(--gray-200); border-right: 1px solid var(--gray-200);
  background: var(--gray-50);
}

/* ===== PROFIL-ANSICHT ===== */


.pv-edit-btn {
  margin-left: auto; background: none; border: 1px solid var(--gray-200);
  border-radius: 6px; padding: 0.2rem 0.6rem; font-size: 0.75rem;
  cursor: pointer; color: var(--primary); transition: background 0.15s;
}
.pv-edit-btn:hover { background: var(--primary-light); }


/* ===== ARBEITGEBER-PROFILANSICHT ===== */
.pv-banner {
  display: flex; align-items: center; gap: 0.6rem;
  background: #eff6ff; border: 1px solid #bfdbfe; border-radius: 10px;
  padding: 0.65rem 1rem; font-size: 0.83rem; color: #1d4ed8;
  font-weight: 600; margin-bottom: 1.25rem;
}

.employer-profile-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07); overflow: hidden;
}

.epc-header {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.75rem; background: linear-gradient(135deg,#f8fafc 0%,#fff 100%);
}
.epc-avatar {
  width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800;
  box-shadow: 0 2px 8px rgba(79,70,229,0.25);
}
.epc-info { flex: 1; display: flex; flex-direction: column; gap: 0.3rem; }
.epc-name { font-size: 1.25rem; font-weight: 800; color: var(--gray-900); margin: 0 0 0.1rem; }
.epc-meta-row {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem; color: var(--gray-600);
}
.epc-completeness {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.25rem; flex-shrink: 0;
}
.epc-pct { font-size: 1.4rem; font-weight: 800; line-height: 1; }

.epc-divider { height: 1px; background: var(--gray-100); margin: 0 1.75rem; }

.epc-section { padding: 1.25rem 1.75rem; }
.epc-section-title {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.82rem; font-weight: 700; color: var(--gray-500);
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 0.85rem;
}

.epc-skills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.epc-skill-tag {
  padding: 0.35rem 0.85rem; background: var(--primary-light);
  color: var(--primary); border-radius: 100px;
  font-size: 0.83rem; font-weight: 600;
}

.epc-refs { display: flex; flex-direction: column; gap: 0.5rem; }
.epc-ref-item {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.88rem; color: var(--gray-700);
}
.epc-ref-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary); flex-shrink: 0;
}

.epc-docs { display: flex; flex-direction: column; gap: 0.5rem; }
.epc-doc-row {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; padding: 0.55rem 0.85rem; border-radius: 8px;
}
.epc-doc-row.ok      { background: #f0f9ff; color: #1d4ed8; }
.epc-doc-row.missing { background: var(--gray-50); color: var(--gray-400); }

.pv-missing-chip {
  display: inline-flex; align-items: center;
  padding: 0.3rem 0.75rem; border: 1px dashed var(--gray-300);
  border-radius: 100px; font-size: 0.78rem; color: var(--gray-400);
  cursor: pointer; transition: all 0.15s;
}
.pv-missing-chip:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

/* ===== ADMIN PANEL (Clean White Theme) ===== */
.admin-panel {
  max-width: 1200px; margin: 0 auto;
  background: #fff;
  min-height: 100vh; padding: 2rem 2.5rem 1rem;
  color: var(--gray-800);
}
/* Body-Hintergrund beim Admin-Panel: sehr helles Grau fuer einen dezenten Rahmen */
body:has(.admin-panel) {
  background: #f8fafc;
}

/* Admin Tab Navigation */
.admin-tabs {
  display: flex; gap: 0.35rem;
  background: #f1f5f9; border-radius: 14px;
  padding: 5px; border: 1px solid var(--gray-100);
  margin-bottom: 2rem; flex-wrap: wrap;
}
.admin-tab {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1rem; border-radius: 10px; border: none;
  background: transparent; color: var(--gray-500); font-size: 0.88rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s; position: relative;
  white-space: nowrap;
}
.admin-tab:hover { color: var(--gray-700); background: #fff; }
.admin-tab.active {
  background: #fff; color: #1e3a8a;
  box-shadow: 0 1px 3px rgba(15,23,42,0.08);
}
.admin-tab svg { width: 16px; height: 16px; opacity: 0.7; }
.admin-tab.active svg { opacity: 1; }
.admin-tab-badge {
  background: #ef4444; color: #fff; font-size: 0.65rem; font-weight: 700;
  padding: 0.1rem 0.4rem; border-radius: 100px; min-width: 18px;
  text-align: center; line-height: 1.3;
}

/* Tab Content */
.admin-tab-content { display: none; animation: adminFadeIn 0.25s ease; }
.admin-tab-content.active { display: block; }
@keyframes adminFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 600px) {
  .admin-tabs { flex-wrap: wrap; }
  .admin-tab { flex: 1 1 45%; font-size: 0.78rem; padding: 0.6rem 0.5rem; }
}

/* Admin Header */
.admin-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem;
  padding-bottom: 1.5rem; border-bottom: 1px solid var(--gray-100);
}
.admin-header h1 { color: var(--gray-900); font-weight: 800; letter-spacing: -0.02em; }
.admin-header p { color: var(--gray-500) !important; }
.admin-header-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(30,58,138,0.25);
}
.admin-panel .admin-header .btn-outline {
  border-color: var(--gray-200); color: var(--gray-700);
  background: #fff;
}
.admin-panel .admin-header .btn-outline:hover {
  background: var(--gray-50); border-color: var(--gray-300); color: var(--gray-900);
}
.admin-panel .admin-header .btn-ghost { color: #dc2626 !important; }
.admin-panel .admin-header .btn-ghost:hover { background: #fef2f2; }

.admin-live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  animation: adminPulse 2s infinite; display: inline-block;
}
@keyframes adminPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* KPI Strip */
.admin-kpi-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2rem;
}
.admin-kpi {
  background: #fff; border: 1px solid var(--gray-100);
  border-radius: 14px; padding: 1.15rem 1.25rem;
  display: flex; align-items: center; gap: 0.85rem;
  transition: all 0.2s ease; position: relative;
  box-shadow: 0 1px 3px rgba(15,23,42,0.04);
}
.admin-kpi:hover {
  box-shadow: 0 4px 16px rgba(15,23,42,0.08);
  transform: translateY(-2px);
  border-color: var(--gray-200);
}
.admin-kpi-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.admin-kpi-value { font-size: 1.4rem; font-weight: 800; color: var(--gray-900); line-height: 1.2; }
.admin-kpi-label { font-size: 0.75rem; color: var(--gray-500); font-weight: 500; margin-top: 2px; }
@media (max-width: 768px) {
  .admin-kpi-strip { grid-template-columns: repeat(2, 1fr); }
}

/* Chart Cards - sauberer Card-Look */
.admin-panel .card,
.admin-panel .admin-chart-card {
  background: #fff !important;
  border: 1px solid var(--gray-100) !important;
  border-radius: 14px !important; overflow: hidden;
  box-shadow: 0 1px 3px rgba(15,23,42,0.04);
  transition: all 0.2s ease;
}
.admin-panel .card:hover,
.admin-panel .admin-chart-card:hover {
  border-color: var(--gray-200) !important;
  box-shadow: 0 4px 16px rgba(15,23,42,0.06);
}
.admin-chart-title {
  font-size: 0.95rem; font-weight: 700; color: var(--gray-900);
  display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.25rem;
}

/* 2-Column Row */
.admin-row-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem;
}
/* 3-Column Row */


@media (max-width: 768px) {
  .admin-row-2 { grid-template-columns: 1fr; }
}

/* Donut Charts */
.admin-donut-row {
  display: flex; align-items: center; gap: 1.5rem; justify-content: center;
}
.admin-donut-wrap { flex-shrink: 0; }
.admin-donut-wrap svg { filter: drop-shadow(0 1px 6px rgba(15,23,42,0.08)); }
.admin-donut-legend { display: flex; flex-direction: column; gap: 0.65rem; }
.admin-legend-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; color: var(--gray-600);
}
.admin-legend-item strong { margin-left: auto; font-weight: 700; color: var(--gray-900); min-width: 24px; text-align: right; }
.admin-legend-dot { width: 10px; height: 10px; border-radius: 3px; flex-shrink: 0; }
/* Donut SVG uses #1f2937/#9ca3af by default - passt bereits zum hellen Theme */

/* Bar Chart (7 Tage) */
.admin-bar-chart {
  display: flex; align-items: flex-end; gap: 0.65rem; justify-content: space-between;
  height: 180px; padding: 0 0.25rem;
}
.admin-bar-col {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  height: 100%;
}
.admin-bar-track {
  flex: 1; width: 100%; max-width: 52px; background: var(--gray-50);
  border-radius: 8px; display: flex; align-items: flex-end; overflow: hidden;
  border: 1px solid var(--gray-100);
}
.admin-bar-fill {
  width: 100%; border-radius: 6px 6px 0 0; min-height: 4px;
  animation: adminBarGrow 0.6s ease-out both;
}
@keyframes adminBarGrow { from { height: 0 !important; } }
.admin-bar-value { font-size: 0.8rem; font-weight: 800; color: var(--gray-700); }
.admin-bar-label { font-size: 0.7rem; color: var(--gray-500); white-space: nowrap; font-weight: 500; }

/* Mini-Stat inline */
.admin-mini-stat { display: flex; flex-direction: column; align-items: center; gap: 0.1rem; }
.admin-mini-stat span { font-size: 0.7rem; color: var(--gray-500); }
.admin-mini-stat strong { font-size: 0.95rem; font-weight: 800; color: var(--gray-800); }

/* Admin Tables */
.admin-panel table { color: var(--gray-700); }
.admin-panel table thead tr {
  background: var(--gray-50) !important;
  border-top: 1px solid var(--gray-100) !important;
  border-bottom: 1px solid var(--gray-100) !important;
}
.admin-panel table th { color: var(--gray-500) !important; }
.admin-panel table td { color: var(--gray-700); }

/* Table Rows */
.admin-table-row { border-bottom: 1px solid var(--gray-100); transition: background 0.15s; }
.admin-table-row:hover { background: var(--gray-50); }
.admin-table-row:last-child { border-bottom: none; }

/* Badges - light theme */
.admin-panel .badge { background: var(--gray-100); color: var(--gray-600); }
.admin-panel .badge-warning { background: #fff7ed; color: #c2410c; padding: 0.25rem 0.65rem; border-radius: 100px; font-size: 0.78rem; font-weight: 600; }
.admin-panel .badge-info { background: #eff6ff; color: #1d4ed8; padding: 0.25rem 0.65rem; border-radius: 100px; font-size: 0.78rem; font-weight: 600; }
.admin-panel .badge-success { background: #f0fdf4; color: #15803d; padding: 0.25rem 0.65rem; border-radius: 100px; font-size: 0.78rem; font-weight: 600; }
/* Fallback fuer HTML ausserhalb .admin-panel */
.badge-warning { background: #fff7ed; color: #ea580c; padding: 0.25rem 0.65rem; border-radius: 100px; font-size: 0.78rem; font-weight: 600; }
.badge-info { background: #f0f9ff; color: #1d4ed8; padding: 0.25rem 0.65rem; border-radius: 100px; font-size: 0.78rem; font-weight: 600; }

/* Admin form inputs */
.admin-panel .form-input,
.admin-panel textarea {
  background: #fff !important;
  border: 1px solid var(--gray-200) !important;
  color: var(--gray-800) !important;
  border-radius: 8px;
}
.admin-panel .form-input::placeholder,
.admin-panel textarea::placeholder { color: var(--gray-400) !important; }
.admin-panel .form-input:focus,
.admin-panel textarea:focus {
  border-color: #1e3a8a !important;
  box-shadow: 0 0 0 3px rgba(30,58,138,0.12) !important;
  outline: none;
}

/* Admin Action-Buttons in Tabellen */
.admin-panel .btn-outline {
  border-color: var(--gray-200); color: var(--gray-700);
  background: #fff;
}
.admin-panel .btn-outline:hover { background: var(--gray-50); color: var(--gray-900); border-color: var(--gray-300); }
.admin-panel .btn-outline:disabled { opacity: 0.4; }

/* Admin Login Page */


@media (max-width: 768px) {
  .admin-panel { padding: 1.5rem 1rem 1rem; }
}
@media (max-width: 480px) {
  .admin-donut-row { flex-direction: column; gap: 1rem; }
  .admin-bar-chart { height: 140px; gap: 0.35rem; }
  .admin-kpi-value { font-size: 1.1rem; }
  .admin-panel { padding: 1rem 0.75rem; }
}

/* ===== Landing Page — Mobile Optimierung ===== */
@media (max-width: 900px) {
  .employer-hero {
    min-height: 440px !important;
    padding: 0 !important;
  }
  .employer-hero-content {
    padding: 3rem 1.25rem !important;
    max-width: 100% !important;
  }
  .employer-hero h1 {
    font-size: 2.2rem !important;
    line-height: 1.15 !important;
  }
  .employer-hero p {
    font-size: 1rem !important;
    max-width: 100% !important;
  }
  .employer-hero-content > div:last-child {
    flex-direction: column !important;
    gap: 0.65rem !important;
    align-items: stretch !important;
  }
  .employer-hero-content > div:last-child .btn {
    width: 100%;
    padding: 0.85rem 1.25rem !important;
    font-size: 0.95rem !important;
    justify-content: center;
  }
  .employer-hero-content > div:first-child {
    font-size: 0.72rem !important;
    padding: 0.35rem 0.85rem !important;
  }
}

@media (max-width: 640px) {
  /* Slideshow "So einfach geht's" */
  .steps-cascade { max-width: 100%; padding: 0 0.75rem !important; gap: 1.5rem !important; }
  .sc-step { gap: 0.9rem !important; }
  .sc-step-circle { width: 42px !important; height: 42px !important; font-size: 1rem !important; }
  .sc-step-text h3 { font-size: 1rem !important; }
  .sc-step-text p { font-size: 0.88rem !important; }

  /* Feature Spotlight ("Darum surfforjobs") */
  .sp-wrap-head { padding: 2.5rem 1rem 0.25rem !important; }
  .sp-wrap-head h2 { font-size: 1.6rem !important; }
  .sp-wrap-sub { font-size: 0.9rem !important; }
  .sp-slide { padding: 1rem 1rem !important; min-height: 480px !important; }
  .sp-slide-inner { gap: 1rem !important; }
  .sp-slide-media { aspect-ratio: 16/10 !important; }
  .sp-slide-body h3 { font-size: 1.35rem !important; }
  .sp-slide-body p { font-size: 0.92rem !important; }
  .sp-slide-badge { bottom: 12px !important; left: 12px !important; padding: 0.45rem 0.7rem 0.45rem 0.55rem !important; }
  .sp-slide-badge-text strong { font-size: 0.78rem !important; }
  .sp-slide-badge-text span { font-size: 0.65rem !important; }

  /* Testimonial Ticker */
  .testi-ticker-fade { width: 40px !important; }
  .testi-card { width: 260px !important; padding: 1.1rem !important; }
  .testi-card p { font-size: 0.86rem !important; }

  /* CTA Fullblock */
  .cta-fullblock { padding: 3.5rem 1.25rem !important; }
  .cta-fullblock h2 { font-size: 1.7rem !important; }
  .cta-fullblock p { font-size: 0.95rem !important; }
  .cta-fullblock-buttons { flex-direction: column !important; gap: 0.6rem !important; }
  .cta-fullblock-buttons .btn {
    width: 100% !important; justify-content: center !important;
    padding: 0.85rem 1.25rem !important; font-size: 0.95rem !important;
  }
  .cta-fullblock-kicker { font-size: 0.7rem !important; padding: 0.3rem 0.7rem !important; }
}

@media (max-width: 380px) {
  .employer-hero h1 { font-size: 1.9rem !important; }
  .sp-wrap-head h2 { font-size: 1.35rem !important; }
  .sp-slide-body h3 { font-size: 1.2rem !important; }
  .cta-fullblock h2 { font-size: 1.5rem !important; }
}

/* ==========================================================================
   ACCESSIBILITY: Fokus-Sichtbarkeit (WCAG 2.4.7) + Screenreader-Helfer
   ========================================================================== */
:focus { outline: none; }
a:focus-visible, button:focus-visible, [role="button"]:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid #2563eb; outline-offset: 2px; border-radius: 4px;
}
.sr-only {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ==========================================================================
   MOBILE FILTER TOGGLE für Job-Suche (Default: unsichtbar, nur Mobile)
   ========================================================================== */
.mobile-filter-toggle {
  display: none; width: 100%; align-items: center; gap: 0.6rem;
  padding: 0.85rem 1rem; background: #fff;
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem; color: var(--gray-800);
  cursor: pointer; margin-bottom: 1rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.mobile-filter-toggle:hover { border-color: var(--primary); }
.mobile-filter-count {
  background: var(--primary); color: #fff; font-size: 0.72rem;
  padding: 0.1rem 0.5rem; border-radius: 999px; font-weight: 700;
  margin-left: 0.25rem;
}

/* ==========================================================================
   MOBILE OVERHAUL — schließt Lücke zw. 768px und 480px Queries.
   Greift auf allen modernen Smartphones (iPhone 12 Mini bis 14 Pro Max,
   Android 360–414 px). Letzter Block in dieser Datei → höchste Priorität.
   ========================================================================== */
@media (max-width: 640px) {

  /* --- Navbar: nur Logo + Hamburger + (eingeloggt) Profil-Icon ----- */
  #navbar .nav-links { display: none !important; }
  #navbar .nav-actions { display: none !important; }
  #navbar .nav-container { gap: 0.5rem; padding: 0.5rem 0.75rem; }
  #navbar .mobile-nav-btns {
    display: flex !important; align-items: center; gap: 0.25rem;
    margin-left: auto;
  }
  #navbar .mobile-menu-btn {
    display: block !important; min-width: 44px; min-height: 44px;
    font-size: 1.4rem; padding: 0.4rem;
  }
  #navbar .mobile-menu a {
    padding: 0.85rem 0; min-height: 44px; display: flex;
    align-items: center; font-size: 1rem;
    border-bottom: 1px solid var(--gray-100);
  }

  /* --- Globale Spacings ---------------------------------------------- */
  .page { padding: 1rem 0.75rem; }
  .page-wide { padding: 1rem 0.75rem; }
  .container { padding: 0 0.75rem; }

  /* --- Overflow-Schutz: nichts darf breiter sein als der Bildschirm -- */
  .page, .page-wide, .container,
  .dashboard-content, .card, .modal,
  .job-card, .stat-card,
  .auth-card, .chat-detail-content {
    max-width: 100% !important;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  img, video, iframe { max-width: 100%; height: auto; }
  pre, code { white-space: pre-wrap; word-break: break-word; }

  /* iOS-Zoom-Bug verhindern: Inputs müssen >= 16px sein */
  input, select, textarea, .form-input, .form-select, .form-textarea,
  .search-bar input { font-size: 16px !important; }

  /* --- Touch-Targets ------------------------------------------------- */
  .btn { min-height: 40px; }
  .btn-sm { min-height: 36px; }

  /* --- Hero / Headings ---------------------------------------------- */
  .hero h1, h1 { font-size: 1.7rem; line-height: 1.2; }
  .hero p { font-size: 0.95rem; }
  .hero-content { max-width: 100%; padding: 0 0.5rem; }
  h2 { font-size: 1.25rem; }

  /* --- Footer -------------------------------------------------------- */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .footer-container { padding: 1.5rem 1rem; }
  .footer-bottom {
    flex-direction: column; gap: 0.75rem; text-align: center;
  }

  /* --- Job-Suche: Filter-Drawer (Sidebar standardmäßig versteckt) -- */
  .mobile-filter-toggle { display: flex; }
  .search-layout {
    grid-template-columns: 1fr !important;
  }
  .search-layout .search-sidebar { display: none; }
  .search-layout.show-mobile-filters .search-sidebar {
    display: block; position: static !important;
    width: 100% !important; max-width: 100% !important;
    top: auto !important; margin-bottom: 1rem;
  }

  /* --- Job-Detail: Sidebar unter Main ------------------------------ */
  .job-detail-layout {
    grid-template-columns: 1fr !important; gap: 1rem;
  }
  .job-detail-sidebar {
    position: static !important; width: 100% !important; margin-top: 0;
  }
  .job-detail-header { padding: 1.25rem; }
  .job-detail-header h1 { font-size: 1.3rem; line-height: 1.3; }
  .job-detail-body { padding: 1rem 1.25rem; font-size: 0.92rem; }
  .job-detail-badges { gap: 0.35rem; }
  .job-detail-badges .badge { font-size: 0.72rem; padding: 0.25rem 0.55rem; }

  /* --- Messages / Chat: 2-Spalten → Stack --------------------------- */
  .dashboard-layout {
    grid-template-columns: 1fr !important; gap: 0.75rem;
  }
  .wdt-msg-preview { max-width: none; }
  .chat-messages { max-height: 55vh; }

  /* --- Chat-Detail: Vollbild auf Handy ------------------------------ */
  .chat-detail-page { padding: 0 !important; }
  .chat-detail-layout {
    gap: 0 !important;
    min-height: calc(100vh - 56px) !important;
  }
  /* Sidebar ausblenden, Chat nimmt volle Seite */
  .chat-detail-layout .dashboard-sidebar { display: none !important; }
  .chat-detail-content {
    max-height: none !important;
    height: calc(100vh - 56px);
    padding: 0 !important;
    background: #fff;
  }
  .chat-detail-header {
    margin-bottom: 0 !important;
    padding: 0.6rem 0.75rem !important;
    background: #fff;
    position: sticky; top: 0; z-index: 5;
  }
  .chat-detail-messages {
    padding: 0.75rem 0.75rem 1rem !important;
    -webkit-overflow-scrolling: touch;
  }
  .chat-bubble { max-width: 82%; }
  .chat-detail-input {
    padding: 0.6rem 0.75rem !important;
    position: sticky; bottom: 0;
    background: #fff; z-index: 5;
  }

  /* --- Dashboards / Stats ------------------------------------------- */
  .dashboard-title { font-size: 1.25rem; }
  .stats-grid { grid-template-columns: 1fr 1fr !important; gap: 0.5rem; }
  .stat-card { padding: 0.9rem; }
  .stat-value { font-size: 1.25rem; }

  /* --- Job-Cards im Grid -------------------------------------------- */
  .jobs-grid { grid-template-columns: 1fr !important; gap: 0.75rem; }
  .job-card { padding: 1rem; }
  .job-card h3 { font-size: 1rem; }

  /* --- Modals / Dialoge --------------------------------------------- */
  .modal { max-width: 95vw !important; max-height: 92vh; margin: 0.5rem; }
  .modal-header { padding: 0.9rem 1rem; }
  .modal-body { padding: 1rem; }
  .modal-footer {
    padding: 0.75rem 1rem; flex-wrap: wrap; gap: 0.5rem;
  }

  /* --- Forms -------------------------------------------------------- */
  .form-row {
    grid-template-columns: 1fr !important; gap: 0.75rem;
  }
  .form-label { font-size: 0.85rem; }

  /* --- Admin-Panel --------------------------------------------------- */
  .admin-kpi-strip {
    grid-template-columns: 1fr 1fr !important; gap: 0.6rem;
  }
  .admin-kpi { padding: 0.75rem; gap: 0.6rem; }
  .admin-kpi-value { font-size: 1rem; }
  .admin-kpi-label { font-size: 0.7rem; }
  .admin-kpi-icon { width: 32px; height: 32px; }
  .admin-row-2 {
    grid-template-columns: 1fr !important; gap: 0.75rem;
  }
  .admin-header {
    flex-direction: column; align-items: flex-start; gap: 0.75rem;
  }
  .admin-header h1 { font-size: 1.2rem !important; }
  .admin-tabs {
    overflow-x: auto; -webkit-overflow-scrolling: touch; flex-wrap: nowrap;
  }
  .admin-tab {
    flex-shrink: 0; font-size: 0.78rem; padding: 0.5rem 0.75rem;
  }
  .admin-chart-card table, .admin-panel table {
    display: block; overflow-x: auto;
    -webkit-overflow-scrolling: touch; white-space: nowrap;
    font-size: 0.8rem;
  }
  .admin-chart-card table thead, .admin-chart-card table tbody,
  .admin-chart-card table tr {
    display: table; width: 100%; table-layout: auto;
  }

  /* --- Chat-Input ---------------------------------------------------- */


  /* --- "Mein Profil" (Arbeitnehmer-Profilansicht) ------------------- */
  .pv-banner {
    flex-wrap: wrap;
    gap: 0.4rem 0.6rem;
    padding: 0.6rem 0.8rem;
    font-size: 0.78rem;
  }
  .pv-banner .btn { flex-shrink: 0; }
  .epc-header {
    flex-direction: column; align-items: stretch;
    gap: 1rem; padding: 1.25rem;
    text-align: left;
  }
  .epc-header > .epc-info { width: 100%; }
  .epc-avatar { width: 56px; height: 56px; font-size: 1.25rem; }
  .epc-name { font-size: 1.1rem; }
  .epc-meta-row { font-size: 0.78rem; }
  /* Prozent-Block bekommt jetzt eine eigene Zeile, damit nichts abschneidet */
  .epc-completeness {
    flex-direction: row; align-items: center; justify-content: flex-start;
    gap: 0.6rem; width: 100%;
    padding-top: 0.75rem; border-top: 1px solid var(--gray-100);
  }
  .epc-pct { font-size: 1.1rem; }
  .epc-completeness .progress-bar { flex: 1; width: auto !important; max-width: 200px; }
  .epc-completeness > div:last-child { margin-top: 0 !important; }
  .epc-divider { margin: 0 1.25rem; }
  .epc-section { padding: 1rem 1.25rem; }

  /* --- Auth-Cards (Login / Register) -------------------------------- */
  .auth-page {
    padding: 0.75rem !important; min-height: calc(100vh - 120px);
  }
  .auth-card, .auth-page .auth-card {
    max-width: 100% !important; width: 100% !important;
    margin: 0 !important; padding: 1.5rem 1.1rem !important;
    box-shadow: none; border: 1px solid var(--gray-200);
  }
  .auth-card h2 { font-size: 1.3rem; }
  .auth-card .subtitle { font-size: 0.85rem; margin-bottom: 1rem; }
  .role-selector { gap: 0.5rem; margin-bottom: 1rem; }
  .role-option { padding: 0.75rem 0.5rem; }
  
  .role-option .role-name { font-size: 0.85rem; }
  .role-option > div:last-child {
    font-size: 0.68rem !important; line-height: 1.2;
  }
  .h-captcha {
    transform: scale(0.9); transform-origin: center top;
  }
}

@media (max-width: 380px) {
  #navbar .nav-container { padding: 0.4rem 0.5rem; }
  .hero h1, h1 { font-size: 1.45rem; }
  .hero p { font-size: 0.88rem; }
  .dashboard-title { font-size: 1.1rem; }
  .job-detail-header h1 { font-size: 1.15rem; }
  .admin-kpi-value { font-size: 0.9rem; }
  .stats-grid { grid-template-columns: 1fr !important; }
}

/* ===== SPLASH SCREEN =====
   Moved from inline <style> in index.html for CSP compliance. */
      @keyframes splash-pop {
        0% { opacity: 0; transform: scale(0.6); }
        100% { opacity: 1; transform: scale(1); }
      }
      @keyframes splash-pulse {
        0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(14, 165, 233, 0.35); }
        50%      { transform: scale(1.06); box-shadow: 0 14px 40px rgba(14, 165, 233, 0.5); }
      }
      @keyframes splash-dots {
        0%, 80%, 100% { opacity: 0.3; transform: scale(0.85); }
        40%           { opacity: 1;   transform: scale(1.15); }
      }
      #page-splash.splash-hide {
        opacity: 0;
        pointer-events: none;
      }
      @media (prefers-reduced-motion: reduce) {
        #page-splash *, #page-splash {
          animation: none !important;
          transition: opacity 0.2s linear !important;
        }
      }

/* Globale Spin-Animation fuer kleine Inline-Spinner */
@keyframes initial-spin { to { transform: rotate(360deg); } }

/* ===== SKELETON SCREENS ===== */
@keyframes skeleton-shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.skeleton {
  background: linear-gradient(90deg, var(--gray-100) 0%, var(--gray-50) 50%, var(--gray-100) 100%);
  background-size: 800px 100%;
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
  border-radius: var(--radius-sm);
  display: block;
}

.skeleton-title   { height: 1rem;    border-radius: 4px; margin-bottom: 0.6rem; width: 60%; }
.skeleton-text    { height: 0.7rem;  border-radius: 4px; margin-bottom: 0.4rem; }
.skeleton-avatar  { width: 48px; height: 48px; border-radius: var(--radius-sm); flex-shrink: 0; }
.skeleton-avatar-round { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; }
.skeleton-tag     { height: 1.1rem; width: 60px; border-radius: 6px; display: inline-block; }

.skeleton-job-card { background: #fff; border-radius: var(--radius); padding: 1.25rem; border: 1px solid var(--gray-200); display: flex; flex-direction: row; gap: 1rem; align-items: flex-start; }
.skeleton-job-card .skeleton-job-body { flex: 1; min-width: 0; }
.skeleton-job-card .skeleton-job-meta { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.75rem; }
.skeleton-job-card .skeleton-job-tags { display: flex; gap: 0.4rem; margin-top: 0.75rem; }
.skeleton-chat-row { display: flex; align-items: center; gap: 0.75rem; padding: 0.625rem 1rem; border-bottom: 1px solid var(--gray-100); }
.skeleton-chat-body { flex: 1; min-width: 0; }
.skeleton-msg-bubble { max-width: 72%; padding: 0.6rem 0.85rem; border-radius: 14px; height: 2.25rem; }
.skeleton-msg-bubble.left  { border-radius: 14px 14px 14px 4px; width: 55%; }
.skeleton-msg-bubble.right { border-radius: 14px 14px 4px 14px; width: 45%; align-self: flex-end; }

@media (prefers-reduced-motion: reduce) {
  .skeleton { animation: none; background: var(--gray-100); }
}

/* ============================================
   EMPLOYER LANDING v5 — Editorial / Magazine
   Keine Karten, keine Grids. Fließender Print-Look.
   ============================================ */


/* ---- HERO: full-bleed photo + overlay text ---- */


/* ---- INTRO: Drop cap, asymmetric grid ---- */


/* ---- MARQUEE STATS: inline text, no boxes ---- */


/* ---- FEATURE SECTIONS: alternating, photo bleeds out ---- */


/* ---- PHOTO ESSAY: 3 photos with offset ---- */


/* ---- TESTIMONIAL FEATURE QUOTE ---- */


/* ---- PRICING: typography statement ---- */


/* ---- FAQ: typo only, kein Kasten ---- */


/* ---- CTA: full-bleed photo with text overlay ---- */


/* ---- RESPONSIVE: mobile-first hardening ---- */


/* ===== EMPLOYER LANDING v7 — Editorial-Tech-Redesign ===== */

/* --- Utilities --- */
.emp7-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 1.1rem;
}
.emp7-eyebrow-light { color: rgba(255,255,255,0.85); }
.emp7-eyebrow-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(96,165,250,0.18);
}

.emp7-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: var(--gray-900);
  margin: 0 0 1rem;
}
.emp7-section-title-sm {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  margin: 0 0 1rem;
}
.emp7-section-head { margin-bottom: 3.5rem; }
.emp7-section-head-center { text-align: center; }
.emp7-section-head-center .emp7-eyebrow { justify-content: center; }

.emp7-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.emp7-btn svg { width: 18px; height: 18px; }
.emp7-btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
}
.emp7-btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(37, 99, 235, 0.35); }
.emp7-btn-white { background: #fff; color: var(--primary); }
.emp7-btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,0.18); }
.emp7-btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.emp7-btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.emp7-btn-large { padding: 1.1rem 2.1rem; font-size: 1.05rem; }

.emp7-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}

/* --- 1. HERO --- */
.emp7-hero {
  position: relative;
  background: radial-gradient(circle at 20% 0%, #1e40af 0%, #0f1d4a 55%, #0a1437 100%);
  color: #fff;
  padding: clamp(4.5rem, 9vw, 7rem) 6vw clamp(5rem, 10vw, 8rem);
  overflow: hidden;
  isolation: isolate;
}
.emp7-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at top, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at top, #000 30%, transparent 75%);
  z-index: -1;
}
.emp7-hero-glow {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  z-index: -1;
  pointer-events: none;
}
.emp7-hero-glow-a { background: #3b82f6; top: -180px; left: -120px; }
.emp7-hero-glow-b { background: #8b5cf6; bottom: -200px; right: -120px; opacity: 0.35; }

.emp7-hero-grid {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 5rem;
  align-items: center;
}
.emp7-hero-left { max-width: 560px; }
.emp7-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5.2vw, 4.5rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 1.4rem;
}
.emp7-hero-title-accent {
  background: linear-gradient(135deg, #93c5fd 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.emp7-hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
  line-height: 1.6;
  margin: 0 0 2.2rem;
  max-width: 520px;
}
.emp7-hero-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.emp7-hero-trust {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.emp7-hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 500;
}

/* --- Phone-Mockup --- */
.emp7-hero-right {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 9 / 17;
}
.emp7-phone {
  position: absolute;
  inset: 0;
  background: #0f172a;
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 50px 100px -20px rgba(0,0,0,0.6),
    0 30px 60px -30px rgba(59, 130, 246, 0.35),
    inset 0 0 0 1.5px rgba(255,255,255,0.08);
  transform: rotate(-3deg) translateY(-8px);
  animation: emp7-phone-float 6s ease-in-out infinite;
}
@keyframes emp7-phone-float {
  0%, 100% { transform: rotate(-3deg) translateY(-8px); }
  50% { transform: rotate(-3deg) translateY(-22px); }
}
.emp7-phone-notch {
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 95px; height: 24px;
  background: #000;
  border-radius: 14px;
  z-index: 3;
}
.emp7-phone-screen {
  position: relative;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #f8fafc 0%, #eff6ff 100%);
  border-radius: 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.emp7-phone-statusbar {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 1.5rem 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #0f172a;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}
.emp7-phone-statusbar-right { display: inline-flex; align-items: center; gap: 4px; color: #0f172a; }
.emp7-phone-battery {
  display: inline-block;
  width: 22px; height: 10px;
  border: 1px solid #0f172a;
  border-radius: 2px;
  position: relative;
}
.emp7-phone-battery::before {
  content: '';
  position: absolute;
  top: 1px; left: 1px;
  width: 16px; height: 6px;
  background: #0f172a;
  border-radius: 1px;
}
.emp7-phone-battery::after {
  content: '';
  position: absolute;
  top: 2px; right: -3px;
  width: 2px; height: 4px;
  background: #0f172a;
  border-radius: 0 1px 1px 0;
}
.emp7-phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem 0.85rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Plus Jakarta Sans', sans-serif;
}
.emp7-phone-header .emp7-phone-back { font-size: 1.4rem; color: var(--primary); font-weight: 600; }
.emp7-phone-header .emp7-phone-icon { font-size: 1.1rem; color: #6b7280; }
.emp7-phone-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.emp7-phone-pill {
  display: inline-flex;
  padding: 0.15rem 0.5rem;
  background: rgba(37, 99, 235, 0.12);
  color: var(--primary);
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
}
.emp7-phone-cards {
  flex: 1;
  padding: 0.4rem 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  overflow: hidden;
}
.emp7-phone-card {
  display: flex;
  gap: 0.7rem;
  padding: 0.75rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.04);
  font-family: -apple-system, BlinkMacSystemFont, 'Plus Jakarta Sans', sans-serif;
}
.emp7-phone-card-new {
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.18);
}
.emp7-phone-avatar {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
}
.emp7-phone-card-body { flex: 1; min-width: 0; }
.emp7-phone-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.15rem;
}
.emp7-phone-card-row strong { font-size: 0.85rem; color: #0f172a; }
.emp7-phone-time { font-size: 0.7rem; color: #9ca3af; }
.emp7-phone-badge {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.1rem 0.45rem;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.emp7-phone-card-body p {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  color: #6b7280;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.emp7-phone-tags { display: flex; gap: 0.3rem; flex-wrap: wrap; }
.emp7-phone-tags span {
  font-size: 0.62rem;
  padding: 0.15rem 0.45rem;
  background: #f3f4f6;
  color: #374151;
  border-radius: 6px;
  font-weight: 600;
}

.emp7-float-card {
  position: absolute;
  background: #fff;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  display: flex;
  gap: 0.7rem;
  align-items: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
  z-index: 4;
  font-family: 'Plus Jakarta Sans', sans-serif;
  animation: emp7-float-bounce 5s ease-in-out infinite;
}
.emp7-float-card-a { left: -10%; bottom: 22%; animation-delay: 0.4s; }
.emp7-float-card-b { right: -8%; top: 16%; animation-delay: 1.2s; }
@keyframes emp7-float-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.emp7-float-card strong {
  display: block;
  color: #0f172a;
  font-size: 0.85rem;
  margin-bottom: 0.1rem;
}
.emp7-float-card p {
  margin: 0;
  color: #6b7280;
  font-size: 0.72rem;
}
.emp7-float-icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
}
.emp7-float-icon-green { background: rgba(34, 197, 94, 0.15); color: #16a34a; }
.emp7-float-icon-blue { background: rgba(37, 99, 235, 0.15); color: var(--primary); }

/* --- 2. STATS --- */
.emp7-stats {
  background: #f8fafc;
  padding: 4rem 6vw;
}
.emp7-stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.emp7-stat {
  text-align: center;
  position: relative;
}
.emp7-stat + .emp7-stat::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: #e2e8f0;
}
.emp7-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gray-900);
  letter-spacing: -0.025em;
  margin-bottom: 0.55rem;
}
.emp7-stat strong span {
  color: var(--primary);
  margin-left: 2px;
}
.emp7-stat > span {
  font-size: 0.85rem;
  color: var(--gray-600);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* --- 3. HOW (Steps) --- */
.emp7-how {
  background: #fff;
  padding: 7rem 6vw;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.emp7-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  text-align: left;
  margin: 0 0 3rem;
}
.emp7-step {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.emp7-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
  border-color: rgba(37, 99, 235, 0.25);
}
.emp7-step-head {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}
.emp7-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.04em;
}
.emp7-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
}
.emp7-step > p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray-700);
  margin: 0;
}
.emp7-step-visual {
  margin-top: auto;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 14px;
  padding: 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.emp7-form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px dashed #e2e8f0;
  font-size: 0.8rem;
}
.emp7-form-row:last-of-type { border-bottom: none; }
.emp7-form-label { color: var(--gray-500); }
.emp7-form-input { color: var(--gray-900); font-weight: 600; }
.emp7-form-chips { display: inline-flex; gap: 0.3rem; }
.emp7-form-chips i {
  display: inline-flex;
  font-style: normal;
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  background: rgba(37, 99, 235, 0.12);
  color: var(--primary);
  border-radius: 6px;
  font-weight: 600;
}
.emp7-form-cta {
  margin-top: 0.6rem;
  background: var(--primary);
  color: #fff;
  padding: 0.55rem;
  border-radius: 8px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
}

.emp7-mini-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed #e2e8f0;
  font-size: 0.82rem;
}
.emp7-mini-row:last-child { border-bottom: none; }
.emp7-mini-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.emp7-mini-row > div { flex: 1; display: flex; flex-direction: column; line-height: 1.2; }
.emp7-mini-row > div strong { color: var(--gray-900); font-size: 0.84rem; }
.emp7-mini-row > div span { color: var(--gray-500); font-size: 0.7rem; }
.emp7-mini-badge {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
}

.emp7-chat-bubble {
  font-size: 0.8rem;
  padding: 0.55rem 0.85rem;
  border-radius: 14px;
  margin-bottom: 0.4rem;
  max-width: 85%;
  line-height: 1.35;
}
.emp7-chat-bubble-them {
  background: #fff;
  color: var(--gray-900);
  border: 1px solid #e2e8f0;
  border-bottom-left-radius: 4px;
}
.emp7-chat-bubble-me {
  background: var(--primary);
  color: #fff;
  margin-left: auto;
  border-bottom-right-radius: 4px;
}
.emp7-chat-bubble-success {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
  border-color: rgba(34, 197, 94, 0.3);
  font-weight: 600;
}

.emp7-how-cta { margin-top: 1rem; }

/* --- 4. FEATURE SHOWCASE --- */
.emp7-feature {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  padding: 7rem 6vw;
}
.emp7-feature-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.emp7-feature-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--gray-700);
  margin: 0 0 1.75rem;
}
.emp7-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.emp7-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.97rem;
  color: var(--gray-700);
  line-height: 1.5;
}
.emp7-feature-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.12);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 1px;
}

.emp7-feature-visual { position: relative; }
.emp7-profile-card {
  background: #fff;
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.1),
    0 0 0 1px rgba(15, 23, 42, 0.04);
  position: relative;
}
.emp7-profile-card::before {
  content: '';
  position: absolute;
  inset: -1.5rem -1rem auto auto;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.18) 0%, transparent 70%);
  z-index: -1;
  filter: blur(40px);
}
.emp7-profile-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}
.emp7-profile-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #60a5fa, #2563eb);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.emp7-profile-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.emp7-profile-verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 800;
}
.emp7-profile-meta {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-top: 0.15rem;
}
.emp7-profile-btn {
  margin-left: auto;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: background 0.2s;
}
.emp7-profile-btn:hover { background: var(--primary-dark); }
.emp7-profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 14px;
  margin-bottom: 1rem;
}
.emp7-profile-stats > div {
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.emp7-profile-stats strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.15rem;
}
.emp7-profile-stats span {
  display: block;
  font-size: 0.72rem;
  color: var(--gray-500);
}
.emp7-profile-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.emp7-profile-skills span {
  font-size: 0.78rem;
  padding: 0.3rem 0.7rem;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary-dark);
  border-radius: 8px;
  font-weight: 600;
}
.emp7-profile-cv {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px dashed #cbd5e1;
}
.emp7-profile-cv-icon { font-size: 1.4rem; }
.emp7-profile-cv > div { flex: 1; min-width: 0; }
.emp7-profile-cv strong {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-900);
  font-weight: 600;
}
.emp7-profile-cv span {
  font-size: 0.72rem;
  color: var(--gray-500);
}
.emp7-profile-cv-action {
  flex-shrink: 0;
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 700;
  cursor: pointer;
}

/* --- 5. BENEFITS GRID --- */
.emp7-benefits {
  background: #fff;
  padding: 7rem 6vw;
}
.emp7-benefits-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.emp7-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.emp7-benefit {
  padding: 2rem 1.75rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.emp7-benefit:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}
.emp7-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(99, 102, 241, 0.12));
  color: var(--primary);
  border-radius: 12px;
  margin-bottom: 1.1rem;
}
.emp7-benefit-icon svg { width: 22px; height: 22px; }
.emp7-benefit h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 0.5rem;
}
.emp7-benefit p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--gray-600);
  margin: 0;
}

/* --- 6. COMPARE TABLE --- */
.emp7-compare {
  background: #f8fafc;
  padding: 7rem 6vw;
}
.emp7-compare .emp7-section-head { max-width: 1280px; margin: 0 auto 3rem; }
.emp7-compare-table-wrap {
  max-width: 1080px;
  margin: 0 auto;
  background: #fff;
  border-radius: 22px;
  padding: 0.5rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
  overflow: auto;
}
.emp7-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  min-width: 600px;
}
.emp7-compare-table thead th {
  text-align: center;
  padding: 1.25rem 1rem;
  font-weight: 600;
  color: var(--gray-500);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid #e2e8f0;
}
.emp7-compare-table thead th:first-child { text-align: left; }
.emp7-compare-table thead .emp7-compare-us {
  background: linear-gradient(180deg, rgba(37,99,235,0.05), transparent);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.92rem;
  text-transform: none;
  letter-spacing: 0;
  border-radius: 14px 14px 0 0;
}
.emp7-compare-table tbody tr { border-bottom: 1px solid #f1f5f9; }
.emp7-compare-table tbody tr:last-child { border-bottom: none; }
.emp7-compare-table tbody th {
  text-align: left;
  padding: 1.1rem 1rem;
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.92rem;
}
.emp7-compare-table tbody td {
  text-align: center;
  padding: 1.1rem 1rem;
  color: var(--gray-500);
  font-size: 0.92rem;
}
.emp7-compare-table tbody .emp7-compare-yes {
  background: rgba(37,99,235,0.04);
  color: var(--gray-900);
  font-weight: 600;
}
.emp7-compare-table tbody .emp7-compare-yes strong { color: var(--primary); font-weight: 800; }
.emp7-compare-table tbody tr:last-child .emp7-compare-yes { border-radius: 0 0 14px 14px; }

/* --- 7. BIG QUOTE --- */
.emp7-quote {
  background: #fff;
  padding: 7rem 6vw;
}
.emp7-quote-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.emp7-quote-mark {
  width: 64px;
  height: auto;
  color: rgba(37, 99, 235, 0.18);
  margin: 0 auto 1.5rem;
  display: block;
}
.emp7-quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--gray-900);
  letter-spacing: -0.015em;
  margin: 0 0 2.5rem;
}
.emp7-quote-author {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-align: left;
}
.emp7-quote-photo {
  margin: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.emp7-quote-photo img { width: 100%; height: 100%; object-fit: cover; }
.emp7-quote-author strong {
  display: block;
  color: var(--gray-900);
  font-size: 0.98rem;
  font-weight: 700;
}
.emp7-quote-author span {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 1px;
}

/* --- 8. TESTI section wrapper --- */
.emp7-testi {
  background: #f8fafc;
  padding: 6rem 0 5rem;
  overflow: hidden;
}
.emp7-testi .emp7-section-head { padding: 0 6vw; }

/* --- 9. FAQ --- */
.emp7-faq {
  background: #fff;
  padding: 7rem 6vw;
}
.emp7-faq-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.emp7-faq-head { position: sticky; top: 2rem; }
.emp7-faq-help {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
}
.emp7-faq-help a { color: var(--primary); font-weight: 600; text-decoration: underline; }
.emp7-faq-list { display: flex; flex-direction: column; gap: 0.5rem; }
.emp7-faq-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 0 1.5rem;
  transition: border-color 0.2s, background 0.2s;
}
.emp7-faq-item[open] {
  background: #f8fafc;
  border-color: rgba(37, 99, 235, 0.25);
}
.emp7-faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  list-style: none;
  gap: 1rem;
}
.emp7-faq-item summary::-webkit-details-marker { display: none; }
.emp7-faq-plus {
  position: relative;
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.12);
  transition: transform 0.25s, background 0.2s;
}
.emp7-faq-plus::before,
.emp7-faq-plus::after {
  content: '';
  position: absolute;
  background: var(--primary);
  border-radius: 1px;
  top: 50%; left: 50%;
}
.emp7-faq-plus::before { width: 10px; height: 2px; transform: translate(-50%, -50%); }
.emp7-faq-plus::after { width: 2px; height: 10px; transform: translate(-50%, -50%); transition: transform 0.25s; }
.emp7-faq-item[open] .emp7-faq-plus { background: var(--primary); }
.emp7-faq-item[open] .emp7-faq-plus::before,
.emp7-faq-item[open] .emp7-faq-plus::after { background: #fff; }
.emp7-faq-item[open] .emp7-faq-plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.emp7-faq-item p {
  margin: 0 0 1.25rem;
  color: var(--gray-700);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* --- 10. CTA --- */
.emp7-cta {
  position: relative;
  background: radial-gradient(circle at 30% 20%, #1e40af 0%, #0f1d4a 60%, #0a1437 100%);
  color: #fff;
  padding: 7rem 6vw;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}
.emp7-cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  z-index: -1;
}
.emp7-cta-glow {
  position: absolute;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.35) 0%, transparent 60%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
}
.emp7-cta-inner { max-width: 760px; margin: 0 auto; position: relative; }
.emp7-cta-inner .emp7-eyebrow { justify-content: center; }
.emp7-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: #fff;
  margin: 0 0 1rem;
}
.emp7-cta-sub {
  font-size: 1.1rem;
  opacity: 0.85;
  margin: 0 0 2.5rem;
}
.emp7-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.emp7-cta-mail {
  margin-top: 2.5rem;
  font-size: 0.95rem;
  opacity: 0.7;
}
.emp7-cta-mail a {
  color: #fff;
  text-decoration: underline;
}

/* --- Mobile (≤ 900px) --- */
@media (max-width: 900px) {
  .emp7-hero { padding: 4rem 6vw 5rem; }
  .emp7-hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .emp7-hero-left { max-width: none; }
  .emp7-hero-right { max-width: 280px; }
  .emp7-float-card-a { left: -4%; }
  .emp7-float-card-b { right: -4%; }

  .emp7-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .emp7-stat + .emp7-stat::before { display: none; }
  .emp7-stat:nth-child(3)::before { display: none; }

  .emp7-how, .emp7-benefits, .emp7-compare, .emp7-quote, .emp7-feature, .emp7-faq { padding: 4.5rem 6vw; }
  .emp7-cta { padding: 5rem 6vw; }
  .emp7-section-head { margin-bottom: 2.5rem; }

  .emp7-steps { grid-template-columns: 1fr; gap: 1.25rem; }
  .emp7-feature-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .emp7-benefits-grid { grid-template-columns: 1fr; gap: 1rem; }
  .emp7-faq-grid { grid-template-columns: 1fr; gap: 2rem; }
  .emp7-faq-head { position: static; }

  .emp7-hero-trust { gap: 1rem; }
  .emp7-btn { padding: 0.85rem 1.4rem; font-size: 0.92rem; }
  .emp7-btn-large { padding: 1rem 1.7rem; font-size: 1rem; }
}

@media (max-width: 560px) {
  .emp7-stats-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .emp7-benefits-grid, .emp7-steps { gap: 0.9rem; }
  .emp7-compare-table { font-size: 0.85rem; }
  .emp7-compare-table thead th, .emp7-compare-table tbody th, .emp7-compare-table tbody td { padding: 0.8rem 0.5rem; }
  .emp7-hero-cta { flex-direction: column; align-items: stretch; }
  .emp7-hero-cta .emp7-btn { width: 100%; }
  .emp7-float-card { padding: 0.55rem 0.75rem; }
  .emp7-float-card strong { font-size: 0.78rem; }
  .emp7-float-card p { font-size: 0.66rem; }
}
