/* ============================================================
   LÖSUNGEN PAGES – SHARED STYLES (SaaS Landing Page)
============================================================ */

/* ── Variables ────────────────────────────────────────────── */
:root {
  --sol-ease: cubic-bezier(.22, 1, .36, 1);
  --sol-radius: 20px;
  --sol-shadow-sm: 0 2px 8px rgba(0,0,0,.04);
  --sol-shadow-md: 0 8px 32px rgba(0,0,0,.06);
  --sol-shadow-lg: 0 20px 60px rgba(0,0,0,.08);
  --sol-blue: #3b82f6;
  --sol-indigo: #6366f1;
}

/* ── Page base ────────────────────────────────────────────── */
body.sol-page {
  background: #ffffff;
  color: #1e293b;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}

/* ── Mockup card (dashboard-style) ────────────────────────── */
.mockup-card {
  background: #1e293b;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.05);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}
.mockup-card * { font-family: inherit; }
.mockup-header {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  padding: .875rem 1.25rem;
  display: flex; align-items: center; gap: .75rem;
}
.mockup-dots { display: flex; gap: .35rem; }
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot-r { background: #ff5f57; }
.mockup-dot-y { background: #ffbd2e; }
.mockup-dot-g { background: #28ca41; }
.mockup-title-bar {
  flex: 1; text-align: center;
  font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.8);
}
.mockup-live {
  display: flex; align-items: center; gap: .35rem;
  font-size: .7rem; font-weight: 700; color: #86efac;
}
.mockup-live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80;
  animation: sol-blink 1.5s ease-in-out infinite;
}
@keyframes sol-blink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.mockup-body { padding: 1.25rem; }
.mockup-stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; margin-bottom: 1rem;
}
.mockup-stat-box {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px; padding: .75rem;
}
.mockup-stat-icon { margin-bottom: .3rem; display: flex; align-items: center; }
.mockup-stat-icon svg { width: 16px; height: 16px; }
.mockup-stat-val { font-size: 1.125rem; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.mockup-stat-lbl { font-size: .625rem; color: rgba(255,255,255,.4); font-weight: 500; margin-top: .1rem; }
.mockup-stat-up { font-size: .625rem; color: #86efac; font-weight: 600; }
.mockup-grid-body { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.mockup-cal { background: rgba(255,255,255,.03); border-radius: 10px; padding: .75rem; }
.mockup-cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: .6rem; }
.mockup-cal-title { font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.75); }
.mockup-cal-nav { font-size: .65rem; color: #94a3b8; cursor: pointer; }
.mockup-cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; text-align: center; }
.mockup-cal-day { font-size: .6rem; color: rgba(255,255,255,.25); padding: 2px 0; }
.mockup-cal-num { font-size: .65rem; color: rgba(255,255,255,.55); padding: 3px; border-radius: 4px; text-align: center; }
.mockup-cal-num.today { background: #2563eb; color: #fff; font-weight: 700; }
.mockup-cal-num.has-shift { background: rgba(59,130,246,.2); color: #93c5fd; }
.mockup-shifts { background: rgba(255,255,255,.03); border-radius: 10px; padding: .75rem; }
.mockup-shifts-header { font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.75); margin-bottom: .6rem; }
.mockup-shift-row {
  display: flex; align-items: center; gap: .5rem;
  padding: .4rem 0; border-bottom: 1px solid rgba(255,255,255,.05);
}
.mockup-shift-row:last-child { border-bottom: none; }
.mockup-shift-time { font-size: .6rem; color: #94a3b8; font-weight: 600; min-width: 2.5rem; }
.mockup-shift-info { flex: 1; }
.mockup-shift-name { font-size: .65rem; color: rgba(255,255,255,.8); font-weight: 600; }
.mockup-shift-role { font-size: .6rem; color: rgba(255,255,255,.35); }
.mockup-shift-badge { font-size: .55rem; font-weight: 700; padding: 2px 6px; border-radius: 4px; }
.badge-green { background: rgba(34,197,94,.15); color: #86efac; }
.badge-blue { background: rgba(59,130,246,.15); color: #93c5fd; }
.badge-amber { background: rgba(245,158,11,.15); color: #fcd34d; }

/* Mockup light variant */
.mockup-card--light {
  background: #f8fafc;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 40px 100px rgba(15,23,42,.12), 0 0 0 1px rgba(255,255,255,.9);
}
.mockup-card--light .mockup-body { background: #f8fafc; }
.mockup-card--light .mockup-stat-box { background: #fff; border-color: #e2e8f0; }
.mockup-card--light .mockup-stat-val { color: #0f172a; }
.mockup-card--light .mockup-stat-lbl { color: #64748b; }
.mockup-card--light .mockup-stat-up { color: #059669; }
.mockup-card--light .mockup-cal,
.mockup-card--light .mockup-shifts { background: #fff; border: 1px solid #e2e8f0; }
.mockup-card--light .mockup-cal-title,
.mockup-card--light .mockup-shifts-header { color: #334155; }
.mockup-card--light .mockup-cal-nav { color: #64748b; }
.mockup-card--light .mockup-cal-day { color: #94a3b8; }
.mockup-card--light .mockup-cal-num { color: #475569; }
.mockup-card--light .mockup-cal-num.today { background: #2563eb; color: #fff; }
.mockup-card--light .mockup-cal-num.has-shift { background: rgba(37,99,235,.12); color: #2563eb; }
.mockup-card--light .mockup-shift-row { border-bottom-color: #f1f5f9; }
.mockup-card--light .mockup-shift-time { color: #64748b; }
.mockup-card--light .mockup-shift-name { color: #0f172a; }
.mockup-card--light .mockup-shift-role { color: #64748b; }
.mockup-card--light .badge-green { background: rgba(34,197,94,.12); color: #059669; }
.mockup-card--light .badge-blue { background: rgba(37,99,235,.12); color: #2563eb; }
.mockup-card--light .badge-amber { background: rgba(245,158,11,.12); color: #d97706; }

/* Dark mockup variant */
.mockup-card--dark {
  background: #0f172a;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 40px 80px rgba(0,0,0,.6);
}

/* ── Mockup: Auto-Zuweisung (mau = mockup-auto-zuweisung) ─── */
.mau-shift-summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: .85rem 1rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.mau-shift-meta { flex: 1; min-width: 0; }
.mau-shift-time { font-size: .9rem; font-weight: 700; color: #0f172a; letter-spacing: -.01em; }
.mau-shift-loc { font-size: .7rem; color: #64748b; margin-top: .15rem; }
.mau-progress { flex: 0 0 110px; }
.mau-progress-track {
  height: 4px; background: #e2e8f0; border-radius: 99px; overflow: hidden;
}
.mau-progress-fill {
  height: 100%; background: #2563eb; border-radius: 99px;
}
.mau-progress-meta {
  font-size: .68rem; color: #64748b; margin-bottom: .35rem; text-align: right;
}
.mau-progress-meta strong { color: #0f172a; font-weight: 700; }

.mau-section-title {
  font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: #94a3b8;
  margin: 0 0 .55rem .25rem;
}

.mau-cands { display: flex; flex-direction: column; gap: .4rem; }
.mau-cand {
  display: flex; align-items: center; gap: .75rem;
  padding: .65rem .75rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
}
.mau-cand--muted { opacity: .7; }
.mau-avatar {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: #f1f5f9; color: #475569;
  font-size: .68rem; font-weight: 700;
}
.mau-cand-info { flex: 1; min-width: 0; }
.mau-cand-name { font-size: .82rem; font-weight: 600; color: #0f172a; }
.mau-cand-meta { font-size: .68rem; color: #64748b; margin-top: .1rem; }

.mau-score { flex: 0 0 56px; text-align: right; }
.mau-score-val { font-size: 1rem; font-weight: 700; color: #0f172a; line-height: 1; letter-spacing: -.02em; }
.mau-score-bar {
  margin-top: .25rem;
  height: 3px; background: #e2e8f0; border-radius: 99px; overflow: hidden;
}
.mau-score-bar-fill { height: 100%; background: #2563eb; border-radius: 99px; }
.mau-bar-green { background: linear-gradient(90deg, #10b981, #22c55e) !important; }
.mau-bar-amber { background: linear-gradient(90deg, #f59e0b, #fbbf24) !important; }
.mau-cand--muted .mau-score-bar-fill { background: #cbd5e1; }
.mau-cand--selected {
  border-color: rgba(37,99,235,.28);
  background: linear-gradient(135deg, rgba(37,99,235,.04), rgba(99,102,241,.05));
  box-shadow: 0 0 0 1px rgba(37,99,235,.06);
}
.mau-avatar--green { background: linear-gradient(135deg, #059669, #10b981); color: #fff; }
.mau-avatar--blue  { background: linear-gradient(135deg, #2563eb, #6366f1); color: #fff; }
.mau-avatar--teal  { background: linear-gradient(135deg, #0d9488, #14b8a6); color: #fff; }
.mau-stats-row { grid-template-columns: repeat(3, 1fr); margin-bottom: 1rem; }
.mau-foot {
  margin-top: .75rem; text-align: center;
  font-size: .68rem; color: #64748b; font-weight: 600;
}
.mau-foot strong { color: #059669; }
.mau-cand-tag {
  font-size: .58rem; font-weight: 700; padding: .15rem .45rem;
  border-radius: 999px; flex-shrink: 0;
}
.mau-cand-tag--ok { background: rgba(34,197,94,.12); color: #059669; }
.mau-cand-tag--info { background: rgba(37,99,235,.12); color: #2563eb; }

.mau-check-banner {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  padding: .7rem .85rem;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.22);
  border-radius: 12px;
  margin-bottom: .85rem;
}
.mau-check-banner-title { font-size: .78rem; font-weight: 700; color: #059669; }
.mau-check-banner-sub { font-size: .65rem; color: #64748b; margin-top: .1rem; }
.mau-check-count { font-size: 1.2rem; font-weight: 800; color: #059669; letter-spacing: -.02em; }
.mau-check-list { display: flex; flex-direction: column; gap: .4rem; }
.mau-check-item {
  display: flex; align-items: center; gap: .6rem;
  padding: .55rem .75rem;
  background: #fff; border: 1px solid #e2e8f0; border-radius: 10px;
}
.mau-check-icon {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(34,197,94,.12); color: #059669;
  font-size: .65rem; font-weight: 800;
}
.mau-check-text { font-size: .78rem; font-weight: 600; color: #334155; flex: 1; }
.mau-check-tag { font-size: .6rem; font-weight: 700; color: #059669; }

.mau-score-header {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  padding: .85rem 1rem;
  background: #fff; border: 1px solid #e2e8f0; border-radius: 12px;
  margin-bottom: .85rem;
}
.mau-score-header-name { font-size: .82rem; font-weight: 700; color: #0f172a; }
.mau-score-header-sub { font-size: .65rem; color: #64748b; margin-top: .1rem; }
.mau-score-total { text-align: right; flex-shrink: 0; }
.mau-score-total-val { font-size: 1.35rem; font-weight: 800; color: #059669; line-height: 1; letter-spacing: -.03em; }
.mau-score-total-lbl { font-size: .58rem; color: #64748b; margin-top: .15rem; }
.mau-score-rows { display: flex; flex-direction: column; gap: .45rem; }
.mau-score-row {
  padding: .55rem .75rem;
  background: #fff; border: 1px solid #e2e8f0; border-radius: 10px;
}
.mau-score-row-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: .35rem;
}
.mau-score-row-label { font-size: .75rem; font-weight: 600; color: #475569; }
.mau-score-row-val { font-size: .75rem; font-weight: 800; color: #0f172a; }
.mau-score-row-val--full { color: #059669; }
.mau-score-row-val--partial { color: #d97706; }
.mau-score-row-bar { height: 4px; background: #e2e8f0; border-radius: 99px; overflow: hidden; }
.mau-score-row-fill { height: 100%; border-radius: 99px; }
.mau-fill-green { background: linear-gradient(90deg, #10b981, #22c55e); }
.mau-fill-amber { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.mau-fill-blue  { background: linear-gradient(90deg, #2563eb, #3b82f6); }

.mockup-card--dark .mau-score-header,
.mockup-card--dark .mau-score-row {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.1);
}
.mockup-card--dark .mau-score-header-name,
.mockup-card--dark .mau-score-row-label { color: rgba(255,255,255,.88); }
.mockup-card--dark .mau-score-header-sub,
.mockup-card--dark .mau-score-total-lbl { color: rgba(255,255,255,.42); }
.mockup-card--dark .mau-score-row-val { color: rgba(255,255,255,.92); }
.mockup-card--dark .mau-score-row-bar { background: rgba(255,255,255,.1); }
.mockup-card--dark .mau-score-total-val { color: #4ade80; }
.mockup-card--dark .mau-check-banner {
  background: rgba(34,197,94,.12);
  border-color: rgba(74,222,128,.25);
}
.mockup-card--dark .mau-check-item {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.1);
}
.mockup-card--dark .mau-check-text { color: rgba(255,255,255,.85); }

/* ── Mockup: Verfügbarkeitsraster (mav) ───────────────────── */
.mav-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(5, 1fr);
  gap: .35rem;
  background: #fff;
  padding: .85rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
}
.mav-head {
  display: contents;
}
.mav-head-name { /* spacer */ }
.mav-day {
  text-align: center;
  font-size: .62rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: #94a3b8;
  padding-bottom: .35rem;
  border-bottom: 1px solid #f1f5f9;
}
.mav-row {
  display: contents;
}
.mav-name {
  display: flex; align-items: center; gap: .45rem;
  font-size: .75rem; font-weight: 600; color: #0f172a;
  padding: .15rem 0;
}
.mav-avatar {
  width: 22px; height: 22px; border-radius: 50%;
  background: #f1f5f9; color: #475569;
  font-size: .58rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mav-cell {
  height: 24px; border-radius: 6px;
  background: #f1f5f9;
  position: relative;
}
.mav-cell.mav-on    { background: #dcfce7; box-shadow: inset 0 0 0 1px #86efac; }
.mav-cell.mav-late  { background: #dbeafe; box-shadow: inset 0 0 0 1px #93c5fd; }
.mav-cell.mav-sick  { background: #fee2e2; box-shadow: inset 0 0 0 1px #fca5a5; }
.mav-cell.mav-off   { background: #f1f5f9; box-shadow: inset 0 0 0 1px #e2e8f0; }
.mav-cell.mav-on::after,
.mav-cell.mav-late::after,
.mav-cell.mav-sick::after {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 6px; height: 6px; border-radius: 50%;
}
.mav-cell.mav-on::after   { background: #16a34a; }
.mav-cell.mav-late::after { background: #2563eb; }
.mav-cell.mav-sick::after { background: #dc2626; }

.mav-legend {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .85rem;
  margin-top: .8rem;
  padding-top: .6rem;
  border-top: 1px solid #f1f5f9;
}
.mav-legend-item {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .68rem; color: #64748b; font-weight: 500;
}
.mav-legend-dot {
  width: 9px; height: 9px; border-radius: 3px;
  display: inline-block;
}

/* ── Mockup: Zeiterfassung (mze) ──────────────────────────── */
.mze-stats-row { grid-template-columns: repeat(3, 1fr); margin-bottom: 1rem; }
.mze-section-title {
  font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: #94a3b8; margin: 0 0 .55rem .15rem;
}
.mze-live-list { display: flex; flex-direction: column; gap: .45rem; }
.mze-live-row {
  display: flex; align-items: center; gap: .7rem;
  padding: .65rem .75rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}
.mze-live-row--active {
  border-color: rgba(37,99,235,.28);
  background: linear-gradient(135deg, rgba(37,99,235,.04), rgba(99,102,241,.06));
  box-shadow: 0 0 0 1px rgba(37,99,235,.06);
}
.mze-live-row--pending {
  border-color: rgba(245,158,11,.25);
  background: rgba(245,158,11,.04);
}
.mze-avatar {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .68rem; font-weight: 800; color: #fff;
}
.mze-avatar--green { background: linear-gradient(135deg, #059669, #10b981); }
.mze-avatar--blue  { background: linear-gradient(135deg, #2563eb, #6366f1); }
.mze-avatar--amber { background: linear-gradient(135deg, #d97706, #f59e0b); }
.mze-live-info { flex: 1; min-width: 0; }
.mze-live-name { font-size: .82rem; font-weight: 700; color: #0f172a; letter-spacing: -.01em; }
.mze-live-meta { font-size: .68rem; color: #64748b; margin-top: .12rem; }
.mze-live-right { text-align: right; flex-shrink: 0; }
.mze-live-hours { font-size: .78rem; font-weight: 800; color: #0f172a; letter-spacing: -.02em; }
.mze-live-hours--active { color: #2563eb; }
.mze-badge {
  display: inline-flex; align-items: center; gap: .25rem;
  font-size: .62rem; font-weight: 700; padding: .18rem .5rem;
  border-radius: 999px; margin-top: .2rem;
}
.mze-badge--done    { background: rgba(34,197,94,.12); color: #059669; }
.mze-badge--active  { background: rgba(37,99,235,.12); color: #2563eb; }
.mze-badge--pending { background: rgba(245,158,11,.12); color: #d97706; }
.mze-pulse {
  width: 6px; height: 6px; border-radius: 50%; background: #3b82f6;
  animation: sol-blink 1.2s ease-in-out infinite;
}

.mze-sheet {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
}
.mze-sheet-head,
.mze-sheet-row {
  display: grid;
  grid-template-columns: 1.1fr .9fr .7fr .85fr;
  gap: .5rem;
  align-items: center;
  padding: .55rem .85rem;
}
.mze-sheet-head {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}
.mze-sheet-head span {
  font-size: .6rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: #94a3b8;
}
.mze-sheet-row { border-bottom: 1px solid #f1f5f9; }
.mze-sheet-row:last-of-type { border-bottom: none; }
.mze-sheet-day { font-size: .78rem; font-weight: 600; color: #0f172a; }
.mze-sheet-sub { font-size: .62rem; color: #94a3b8; margin-top: .08rem; }
.mze-sheet-time { font-size: .72rem; color: #64748b; font-weight: 500; }
.mze-sheet-hours { font-size: .78rem; font-weight: 800; color: #0f172a; }
.mze-sheet-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding: .7rem .85rem;
  background: linear-gradient(135deg, rgba(37,99,235,.06), rgba(99,102,241,.04));
  border-top: 1px solid #e2e8f0;
  font-size: .72rem; color: #64748b; font-weight: 600;
}
.mze-sheet-foot strong { color: #0f172a; font-size: .82rem; }

.mze-audit {
  display: flex; flex-direction: column; gap: 0;
  position: relative;
  padding-left: .35rem;
}
.mze-audit-item {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: .65rem;
  align-items: start;
  padding: .55rem 0 .75rem;
  position: relative;
}
.mze-audit-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 13px; top: 28px; bottom: -2px;
  width: 2px;
  background: linear-gradient(180deg, rgba(74,222,128,.35), rgba(96,165,250,.15));
}
.mze-audit-dot {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  flex-shrink: 0;
  position: relative; z-index: 1;
}
.mze-audit-dot svg { width: 13px; height: 13px; }
.mze-audit-dot--ok { background: rgba(34,197,94,.15); border-color: rgba(74,222,128,.35); }
.mze-audit-dot--info { background: rgba(59,130,246,.15); border-color: rgba(96,165,250,.35); }
.mze-audit-body { min-width: 0; }
.mze-audit-title { font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.92); }
.mze-audit-sub { font-size: .65rem; color: rgba(255,255,255,.42); margin-top: .12rem; line-height: 1.45; }
.mze-audit-status {
  font-size: .62rem; font-weight: 700; padding: .2rem .5rem;
  border-radius: 999px; white-space: nowrap; align-self: center;
}
.mze-audit-status--ok { background: rgba(34,197,94,.15); color: #4ade80; }
.mze-audit-status--info { background: rgba(59,130,246,.15); color: #93c5fd; }

.mockup-card--dark .mze-audit-summary {
  margin-top: .35rem;
  padding: .65rem .75rem;
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .68rem; color: rgba(255,255,255,.5);
}
.mockup-card--dark .mze-audit-summary strong { color: #4ade80; font-size: .75rem; }

/* ── Mockup: DATEV Lohnvorbereitung (mdv) ─────────────────── */
.mdv-stats-row { grid-template-columns: repeat(3, 1fr); margin-bottom: 1rem; }
.mdv-period {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  margin-bottom: .85rem;
}
.mdv-period-title { font-size: .82rem; font-weight: 700; color: #0f172a; letter-spacing: -.01em; }
.mdv-format-badge {
  font-size: .58rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: .22rem .55rem; border-radius: 999px;
  background: rgba(20,184,166,.12); color: #0d9488;
  border: 1px solid rgba(20,184,166,.22);
  white-space: nowrap;
}
.mdv-data-list { display: flex; flex-direction: column; gap: .4rem; margin-bottom: .75rem; }
.mdv-data-row {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  padding: .55rem .75rem;
  background: #fff; border: 1px solid #e2e8f0; border-radius: 10px;
}
.mdv-data-label { font-size: .75rem; color: #64748b; font-weight: 500; }
.mdv-data-val { font-size: .78rem; font-weight: 800; color: #0f172a; letter-spacing: -.02em; }
.mdv-total-row {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  padding: .75rem .85rem;
  background: linear-gradient(135deg, rgba(20,184,166,.08), rgba(6,182,212,.06));
  border: 1px solid rgba(20,184,166,.22);
  border-radius: 12px;
  margin-bottom: .65rem;
}
.mdv-total-label { font-size: .75rem; font-weight: 700; color: #0f766e; }
.mdv-total-val { font-size: 1.05rem; font-weight: 800; color: #0d9488; letter-spacing: -.03em; }
.mdv-ready-banner {
  display: flex; align-items: center; gap: .65rem;
  padding: .65rem .75rem;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.22);
  border-radius: 12px;
}
.mdv-ready-icon {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(34,197,94,.15); color: #059669;
  font-size: .75rem; font-weight: 800;
}
.mdv-ready-text { flex: 1; min-width: 0; }
.mdv-ready-title { font-size: .75rem; font-weight: 700; color: #059669; }
.mdv-ready-sub { font-size: .62rem; color: #64748b; margin-top: .08rem; }
.mdv-export-chip {
  font-size: .58rem; font-weight: 700; padding: .28rem .55rem;
  border-radius: 8px; flex-shrink: 0;
  background: linear-gradient(135deg, #14b8a6, #06b6d4);
  color: #fff;
}

.mdv-section-title {
  font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: #94a3b8; margin: 0 0 .55rem .15rem;
}
.mdv-pipeline {
  display: flex; align-items: center; gap: .35rem;
  margin-bottom: .85rem;
  padding: .55rem .65rem;
  background: #fff; border: 1px solid #e2e8f0; border-radius: 12px;
}
.mdv-pipeline-node {
  flex: 1; min-width: 0; text-align: center;
  padding: .45rem .35rem; border-radius: 8px;
  font-size: .62rem; font-weight: 700; color: #64748b;
  background: #f8fafc; border: 1px solid #e2e8f0;
}
.mdv-pipeline-node--active {
  background: linear-gradient(135deg, rgba(20,184,166,.1), rgba(6,182,212,.08));
  border-color: rgba(20,184,166,.28); color: #0d9488;
}
.mdv-pipeline-node--done { background: rgba(34,197,94,.08); border-color: rgba(34,197,94,.22); color: #059669; }
.mdv-pipeline-arrow { font-size: .65rem; color: #94a3b8; flex-shrink: 0; }
.mdv-transfer-list { display: flex; flex-direction: column; gap: .4rem; margin-bottom: .75rem; }
.mdv-transfer-row {
  display: flex; align-items: center; gap: .65rem;
  padding: .6rem .75rem;
  background: #fff; border: 1px solid #e2e8f0; border-radius: 10px;
}
.mdv-transfer-row--done {
  border-color: rgba(34,197,94,.22);
  background: linear-gradient(135deg, rgba(34,197,94,.04), #fff);
}
.mdv-transfer-icon {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(34,197,94,.12); color: #059669;
  font-size: .65rem; font-weight: 800;
}
.mdv-transfer-info { flex: 1; min-width: 0; }
.mdv-transfer-name { font-size: .78rem; font-weight: 600; color: #334155; }
.mdv-transfer-meta { font-size: .62rem; color: #94a3b8; margin-top: .08rem; }
.mdv-transfer-status {
  font-size: .62rem; font-weight: 700; color: #059669; white-space: nowrap;
}
.mdv-action-btn {
  display: flex; align-items: center; justify-content: center; gap: .45rem;
  width: 100%;
  padding: .65rem .85rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #14b8a6, #06b6d4);
  color: #fff; font-size: .72rem; font-weight: 700;
  box-shadow: 0 4px 14px rgba(20,184,166,.25);
}
.mdv-action-btn svg { width: 14px; height: 14px; flex-shrink: 0; }

.mdv-val-header {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  padding: .85rem 1rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  margin-bottom: .85rem;
}
.mdv-val-header-title { font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.92); }
.mdv-val-header-sub { font-size: .65rem; color: rgba(255,255,255,.42); margin-top: .1rem; }
.mdv-val-score { text-align: right; flex-shrink: 0; }
.mdv-val-score-num { font-size: 1.35rem; font-weight: 800; color: #2dd4bf; line-height: 1; letter-spacing: -.03em; }
.mdv-val-score-lbl { font-size: .58rem; color: rgba(255,255,255,.42); margin-top: .15rem; }
.mdv-val-list { display: flex; flex-direction: column; gap: .4rem; margin-bottom: .75rem; }
.mdv-val-item {
  display: flex; align-items: center; gap: .65rem;
  padding: .6rem .75rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
}
.mdv-val-item--ok { border-color: rgba(74,222,128,.22); background: rgba(34,197,94,.08); }
.mdv-val-check {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(74,222,128,.15); color: #4ade80;
  font-size: .62rem; font-weight: 800;
}
.mdv-val-text { flex: 1; font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.88); }
.mdv-val-tag { font-size: .62rem; font-weight: 700; color: #4ade80; white-space: nowrap; }
.mdv-val-summary {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  padding: .7rem .85rem;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(74,222,128,.25);
  border-radius: 12px;
  font-size: .72rem; color: rgba(255,255,255,.55); font-weight: 600;
}
.mdv-val-summary strong { color: #4ade80; font-size: .78rem; }

/* ── Mockup: KI-Schichtplanung (mki) ──────────────────────── */
.mki-stats-row { grid-template-columns: repeat(3, 1fr); margin-bottom: 1rem; }
.mki-ai-banner {
  display: flex; align-items: center; gap: .75rem;
  padding: .75rem .85rem;
  background: linear-gradient(135deg, rgba(139,92,246,.08), rgba(99,102,241,.06));
  border: 1px solid rgba(139,92,246,.22);
  border-radius: 12px;
  margin-bottom: .85rem;
}
.mki-ai-icon {
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #7c3aed, #6366f1);
  color: #fff;
  box-shadow: 0 4px 12px rgba(124,58,237,.25);
}
.mki-ai-icon svg { width: 18px; height: 18px; }
.mki-ai-title { font-size: .82rem; font-weight: 700; color: #0f172a; letter-spacing: -.01em; }
.mki-ai-sub { font-size: .65rem; color: #64748b; margin-top: .08rem; }
.mki-ai-chip {
  margin-left: auto; flex-shrink: 0;
  font-size: .58rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: .22rem .55rem; border-radius: 999px;
  background: rgba(139,92,246,.12); color: #7c3aed;
  border: 1px solid rgba(139,92,246,.22);
}
.mki-section-title {
  font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: #94a3b8; margin: 0 0 .55rem .15rem;
}
.mki-suggest-list { display: flex; flex-direction: column; gap: .4rem; margin-bottom: .75rem; }
.mki-suggest-row {
  display: flex; align-items: center; gap: .65rem;
  padding: .6rem .75rem;
  background: #fff; border: 1px solid #e2e8f0; border-radius: 10px;
}
.mki-suggest-row--top {
  border-color: rgba(16,185,129,.25);
  background: linear-gradient(135deg, rgba(16,185,129,.05), #fff);
  box-shadow: 0 0 0 1px rgba(16,185,129,.06);
}
.mki-suggest-row--mid {
  border-color: rgba(59,130,246,.22);
  background: linear-gradient(135deg, rgba(59,130,246,.04), #fff);
}
.mki-suggest-row--alt {
  border-color: rgba(245,158,11,.22);
  background: linear-gradient(135deg, rgba(245,158,11,.04), #fff);
}
.mki-suggest-avatar {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .68rem; font-weight: 700; color: #fff;
}
.mki-avatar-green { background: linear-gradient(135deg, #059669, #10b981); }
.mki-avatar-blue  { background: linear-gradient(135deg, #2563eb, #6366f1); }
.mki-avatar-amber { background: linear-gradient(135deg, #d97706, #f59e0b); }
.mki-suggest-info { flex: 1; min-width: 0; }
.mki-suggest-name { font-size: .78rem; font-weight: 700; color: #0f172a; }
.mki-suggest-meta { font-size: .62rem; color: #64748b; margin-top: .08rem; }
.mki-suggest-tag {
  font-size: .58rem; font-weight: 700; padding: .15rem .45rem;
  border-radius: 999px; flex-shrink: 0;
}
.mki-tag-ok   { background: rgba(16,185,129,.12); color: #059669; }
.mki-tag-info { background: rgba(139,92,246,.12); color: #7c3aed; }
.mki-tag-warn { background: rgba(245,158,11,.12); color: #d97706; }
.mki-score { flex: 0 0 52px; text-align: right; }
.mki-score-val { font-size: .95rem; font-weight: 800; color: #0f172a; line-height: 1; letter-spacing: -.02em; }
.mki-score-bar {
  margin-top: .25rem; height: 3px; background: #e2e8f0;
  border-radius: 99px; overflow: hidden;
}
.mki-score-fill { height: 100%; border-radius: 99px; }
.mki-fill-green { background: linear-gradient(90deg, #10b981, #22c55e); }
.mki-fill-blue  { background: linear-gradient(90deg, #2563eb, #6366f1); }
.mki-fill-amber { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.mki-foot {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  padding: .65rem .75rem;
  background: linear-gradient(135deg, rgba(139,92,246,.06), rgba(99,102,241,.04));
  border: 1px solid rgba(139,92,246,.18);
  border-radius: 12px;
  font-size: .68rem; color: #64748b; font-weight: 600;
}
.mki-foot strong { color: #7c3aed; }

.mki-check-header {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  padding: .85rem 1rem;
  background: #fff; border: 1px solid #e2e8f0; border-radius: 12px;
  margin-bottom: .85rem;
}
.mki-check-header-title { font-size: .82rem; font-weight: 700; color: #0f172a; }
.mki-check-header-sub { font-size: .65rem; color: #64748b; margin-top: .1rem; }
.mki-check-score { text-align: right; flex-shrink: 0; }
.mki-check-score-num { font-size: 1.2rem; font-weight: 800; color: #059669; line-height: 1; letter-spacing: -.03em; }
.mki-check-score-lbl { font-size: .58rem; color: #64748b; margin-top: .15rem; }
.mki-check-list { display: flex; flex-direction: column; gap: .4rem; }
.mki-check-item {
  display: flex; align-items: center; gap: .65rem;
  padding: .6rem .75rem;
  background: #fff; border: 1px solid #e2e8f0; border-radius: 10px;
}
.mki-check-item--ok {
  border-color: rgba(16,185,129,.22);
  background: linear-gradient(135deg, rgba(16,185,129,.04), #fff);
}
.mki-check-item--warn {
  border-color: rgba(245,158,11,.25);
  background: linear-gradient(135deg, rgba(245,158,11,.05), #fff);
}
.mki-check-icon {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .62rem; font-weight: 800;
}
.mki-check-icon--ok { background: rgba(16,185,129,.12); color: #059669; }
.mki-check-icon--warn { background: rgba(245,158,11,.12); color: #d97706; }
.mki-check-text { flex: 1; font-size: .78rem; font-weight: 600; color: #334155; }
.mki-check-tag { font-size: .62rem; font-weight: 700; white-space: nowrap; }
.mki-check-tag--ok { color: #059669; }
.mki-check-tag--warn { color: #d97706; }

.mki-metrics-header {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  padding: .85rem 1rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  margin-bottom: .85rem;
}
.mki-metrics-title { font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.92); }
.mki-metrics-sub { font-size: .65rem; color: rgba(255,255,255,.42); margin-top: .1rem; }
.mki-metrics-badge {
  font-size: .58rem; font-weight: 700; padding: .22rem .55rem; border-radius: 999px;
  background: rgba(139,92,246,.15); color: #c4b5fd;
  border: 1px solid rgba(139,92,246,.25); white-space: nowrap;
}
.mki-metric-list { display: flex; flex-direction: column; gap: .75rem; margin-bottom: .75rem; }
.mki-metric-row-head {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  margin-bottom: .35rem;
}
.mki-metric-label { font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.78); }
.mki-metric-val { font-size: .78rem; font-weight: 800; letter-spacing: -.02em; }
.mki-metric-val--green { color: #4ade80; }
.mki-metric-val--blue  { color: #93c5fd; }
.mki-metric-val--amber { color: #fcd34d; }
.mki-metric-track {
  height: 6px; border-radius: 99px; overflow: hidden;
  background: rgba(255,255,255,.1);
}
.mki-metric-fill { height: 100%; border-radius: 99px; }
.mki-metric-fill--green { background: linear-gradient(90deg, #10b981, #4ade80); }
.mki-metric-fill--blue  { background: linear-gradient(90deg, #3b82f6, #818cf8); }
.mki-metric-fill--amber { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.mki-metrics-foot {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  padding: .7rem .85rem;
  background: rgba(139,92,246,.12);
  border: 1px solid rgba(167,139,250,.25);
  border-radius: 12px;
  font-size: .72rem; color: rgba(255,255,255,.55); font-weight: 600;
}
.mki-metrics-foot strong { color: #c4b5fd; font-size: .78rem; }

.sol-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h, 72px) + 5.5rem) 0 5.5rem;
  background: linear-gradient(145deg, #020817 0%, #0f172a 30%, #1e1b4b 60%, #0f172a 100%);
  color: #fff;
}
.sol-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 75% 15%, rgba(59,130,246,.2), transparent),
    radial-gradient(ellipse 45% 45% at 20% 75%, rgba(99,102,241,.14), transparent),
    radial-gradient(circle 300px at 50% 50%, rgba(139,92,246,.06), transparent);
  pointer-events: none;
}
.sol-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,.3), rgba(59,130,246,.3), transparent);
}
.sol-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) {
  .sol-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
.sol-hero-copy { max-width: 560px; }
.sol-breadcrumb {
  font-size: .8125rem; color: rgba(255,255,255,.4); margin-bottom: 1.5rem;
  letter-spacing: .01em;
}
.sol-breadcrumb a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.sol-breadcrumb a:hover { color: #93c5fd; }
.sol-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .45rem 1.1rem; border-radius: 999px;
  font-size: .7rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 1.5rem;
  background: rgba(59,130,246,.1); border: 1px solid rgba(59,130,246,.22); color: #93c5fd;
  backdrop-filter: blur(8px);
}
.sol-title {
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 700; letter-spacing: -.025em; line-height: 1.15; margin-bottom: 1.25rem;
}
.sol-title-accent {
  background: linear-gradient(135deg, #93c5fd, #a78bfa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sol-sub {
  font-size: 1.08rem; color: rgba(255,255,255,.55); line-height: 1.8;
  margin-bottom: 2.25rem; max-width: 520px; font-weight: 400;
}
.sol-hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.sol-hero-visual {
  display: flex; align-items: center; justify-content: center;
  animation: sol-float 6s ease-in-out infinite;
}
@keyframes sol-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (max-width: 900px) { .sol-hero-visual { display: none; } }

/* ── Proof strip (social proof / stats) ───────────────────── */
.sol-proof {
  padding: 2.75rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border-bottom: 1px solid #e2e8f0;
}
.sol-proof-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 3.5rem; flex-wrap: wrap;
}
.sol-proof-stat { text-align: center; }
.sol-proof-val {
  font-size: 1.4rem; font-weight: 700; letter-spacing: -.02em;
  background: linear-gradient(135deg, #1e293b, #3b82f6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sol-proof-lbl { font-size: .8rem; color: #64748b; margin-top: .3rem; font-weight: 500; }
.sol-proof-sep { width: 1px; height: 32px; background: linear-gradient(180deg, transparent, #cbd5e1, transparent); }
@media (max-width: 640px) { .sol-proof-sep { display: none; } .sol-proof-inner { gap: 2rem; } }

/* ── Showcase (2-col problem/solution) ────────────────────── */
.sol-showcase {
  padding: 5rem 0;
}
.sol-showcase--light { background: #fff; color: #0f172a; }
.sol-showcase--dark {
  background: linear-gradient(160deg, #0f172a 0%, #1e1b4b 55%, #0f172a 100%);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.sol-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}
.sol-showcase-grid--reverse .sol-showcase-copy { order: 2; }
.sol-showcase-grid--reverse .sol-showcase-visual { order: 1; }
@media (max-width: 900px) {
  .sol-showcase-grid { grid-template-columns: 1fr; gap: 2rem; }
  .sol-showcase-grid--reverse .sol-showcase-copy,
  .sol-showcase-grid--reverse .sol-showcase-visual { order: unset; }
}
.sol-showcase-label {
  display: inline-flex; padding: .35rem 1rem; border-radius: 999px;
  font-size: .7rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.sol-showcase--light .sol-showcase-label { background: rgba(59,130,246,.08); border: 1px solid rgba(59,130,246,.18); color: #2563eb; }
.sol-showcase--dark .sol-showcase-label { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.8); }
.sol-showcase-copy h2 {
  font-size: clamp(1.5rem, 2.8vw, 1.95rem); font-weight: 650;
  margin-bottom: 1rem; line-height: 1.25; letter-spacing: -.015em;
}
.sol-showcase--light .sol-showcase-copy h2 { color: #0f172a; }
.sol-showcase--dark .sol-showcase-copy h2 { color: #f1f5f9; }
.sol-showcase-copy > p { line-height: 1.8; margin-bottom: 1.35rem; font-size: 1rem; font-weight: 400; }
.sol-showcase--light .sol-showcase-copy > p { color: #475569; }
.sol-showcase--dark .sol-showcase-copy > p { color: rgba(255,255,255,.5); }
.sol-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.sol-list li {
  position: relative; padding-left: 1.25rem; margin-bottom: .6rem;
  font-size: .9375rem; line-height: 1.55;
}
.sol-showcase--light .sol-list li { color: #334155; }
.sol-showcase--dark .sol-list li { color: rgba(255,255,255,.78); }
.sol-list li::before {
  content: ''; position: absolute; left: 0; top: .55rem;
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  box-shadow: 0 2px 6px rgba(59,130,246,.3);
}
.sol-showcase--dark .sol-list li::before { background: #60a5fa; box-shadow: none; }
.sol-links { display: flex; flex-wrap: wrap; gap: .6rem; }
.sol-links a {
  font-size: .8125rem; font-weight: 600;
  padding: .4rem .85rem; border-radius: 999px;
  transition: background .2s, border-color .2s;
}
.sol-showcase--light .sol-links a { color: #2563eb; border: 1px solid rgba(37,99,235,.2); background: rgba(59,130,246,.06); }
.sol-showcase--light .sol-links a:hover { background: rgba(59,130,246,.12); border-color: rgba(37,99,235,.35); }
.sol-showcase--dark .sol-links a { color: #93c5fd; border: 1px solid rgba(147,197,253,.25); background: rgba(255,255,255,.06); }
.sol-showcase--dark .sol-links a:hover { background: rgba(255,255,255,.1); border-color: rgba(147,197,253,.4); }

/* ── Benefits grid ────────────────────────────────────────── */
.sol-benefits {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  position: relative;
}
.sol-benefits::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}
.sol-benefits-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.sol-benefits-header h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.1rem); font-weight: 700;
  letter-spacing: -.02em; margin-bottom: .85rem; color: #0f172a;
}
.sol-benefits-header p { color: #64748b; line-height: 1.75; font-size: 1.02rem; }
.sol-benefits-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 640px) { .sol-benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .sol-benefits-grid { grid-template-columns: repeat(3, 1fr); } }
.sol-benefit-card {
  position: relative;
  background: #fff; border: 1px solid #e2e8f0; border-radius: var(--sol-radius);
  padding: 2.25rem 1.75rem;
  transition: transform .35s var(--sol-ease), box-shadow .35s var(--sol-ease), border-color .35s;
  overflow: hidden;
}
.sol-benefit-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--sol-blue), var(--sol-indigo));
  opacity: 0; transition: opacity .35s;
}
.sol-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(59,130,246,.1), 0 4px 12px rgba(0,0,0,.03);
  border-color: rgba(59,130,246,.2);
}
.sol-benefit-card:hover::before { opacity: 1; }
.sol-benefit-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; transition: transform .35s var(--sol-ease);
}
.sol-benefit-card:hover .sol-benefit-icon { transform: scale(1.1) rotate(-2deg); }
.sol-benefit-icon svg { width: 24px; height: 24px; stroke-width: 1.75; }
.sol-benefit-title { font-size: 1.0625rem; font-weight: 650; color: #0f172a; margin-bottom: .5rem; letter-spacing: -.01em; }
.sol-benefit-desc { font-size: .9rem; color: #64748b; line-height: 1.75; }

/* ── Workflow / How it works ──────────────────────────────── */
.sol-workflow {
  padding: 5.5rem 0;
  background: #fff;
  position: relative;
}
.sol-workflow-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.sol-workflow-header h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.1rem); font-weight: 700;
  letter-spacing: -.02em; margin-bottom: .85rem; color: #0f172a;
}
.sol-workflow-header p { color: #64748b; line-height: 1.75; font-size: 1.02rem; }
.sol-steps {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  position: relative;
}
@media (min-width: 768px) {
  .sol-steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .sol-steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 16%;
    right: 16%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(59,130,246,.35), rgba(99,102,241,.35), transparent);
    z-index: 0;
    pointer-events: none;
  }
}
.sol-step {
  text-align: center; position: relative; z-index: 1;
  padding: 0 1rem 1.5rem;
  border-radius: var(--sol-radius);
  background: transparent;
  border: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
@media (min-width: 768px) {
  .sol-step {
    padding: 0 1rem;
  }
}
.sol-step:hover {
  border-color: transparent;
  box-shadow: none;
}
.sol-step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sol-blue), var(--sol-indigo));
  color: #fff; font-size: 1.15rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 0 5px #fff, 0 4px 20px rgba(59,130,246,.2);
  position: relative;
  z-index: 2;
}
.sol-step h3 { font-size: 1rem; font-weight: 650; color: #0f172a; margin-bottom: .5rem; }
.sol-step p { font-size: .875rem; color: #64748b; line-height: 1.7; max-width: 280px; margin: 0 auto; }

/* ── Related features ─────────────────────────────────────── */
.sol-related {
  padding: 4.5rem 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}
.sol-related-header { text-align: center; margin-bottom: 2.5rem; }
.sol-related-header h2 { font-size: 1.35rem; font-weight: 650; color: #0f172a; letter-spacing: -.01em; }
.sol-related-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem;
}
.sol-related-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.35rem 1.5rem;
  background: #fff; border: 1px solid #e2e8f0; border-radius: 16px;
  text-decoration: none; color: inherit;
  transition: transform .3s var(--sol-ease), box-shadow .3s var(--sol-ease), border-color .3s;
}
.sol-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(59,130,246,.08);
  border-color: rgba(59,130,246,.2);
}
.sol-related-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.sol-related-icon svg { width: 22px; height: 22px; stroke-width: 1.75; }
.sol-related-name { font-size: .9375rem; font-weight: 650; color: #0f172a; }
.sol-related-desc { font-size: .8125rem; color: #64748b; margin-top: .2rem; }

/* ── FAQ ──────────────────────────────────────────────────── */
.sol-faq {
  padding: 5.5rem 0;
  background: #fff;
  position: relative;
}
.sol-faq::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}
.sol-faq-header { text-align: center; max-width: 640px; margin: 0 auto 2.75rem; }
.sol-faq-header h2 { font-size: 1.5rem; font-weight: 650; color: #0f172a; margin-bottom: .5rem; letter-spacing: -.01em; }
.sol-faq-list { max-width: 760px; margin: 0 auto; }
.sol-faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  margin-bottom: 1rem;
  background: #fff;
  overflow: hidden;
  transition: box-shadow .35s var(--sol-ease), border-color .35s, transform .35s var(--sol-ease);
}
.sol-faq-item:hover { box-shadow: 0 8px 28px rgba(59,130,246,.06); transform: translateY(-1px); }
.sol-faq-item[open] { border-color: rgba(59,130,246,.3); box-shadow: 0 6px 24px rgba(59,130,246,.08); }
.sol-faq-item summary {
  padding: 1.4rem 1.75rem;
  font-size: .975rem; font-weight: 600; color: #1e293b;
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transition: color .2s;
}
.sol-faq-item[open] summary { color: #0f172a; }
.sol-faq-item summary::-webkit-details-marker { display: none; }
.sol-faq-item summary::after {
  content: '+'; flex-shrink: 0;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 400; color: #94a3b8;
  background: #f1f5f9; border-radius: 8px;
  transition: all .3s var(--sol-ease);
}
.sol-faq-item[open] summary::after { content: '\2212'; color: #fff; background: linear-gradient(135deg, var(--sol-blue), var(--sol-indigo)); }
.sol-faq-item p {
  padding: 0 1.75rem 1.5rem;
  font-size: .925rem; color: #64748b; line-height: 1.8; margin: 0;
}

/* ── CTA (gradient) ───────────────────────────────────────── */
.sol-cta {
  padding: 6rem 0;
  text-align: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}
.sol-cta::before {
  content: '';
  position: absolute;
  top: -50%; left: -25%; width: 150%; height: 200%;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(59,130,246,.12) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 100%, rgba(99,102,241,.08) 0%, transparent 40%);
  pointer-events: none;
}
.sol-cta::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,.4), transparent);
}
.sol-cta h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 700; margin-bottom: 1rem; color: #fff; position: relative; letter-spacing: -.02em; }
.sol-cta p { color: rgba(255,255,255,.55); margin-bottom: 2.25rem; font-size: 1.02rem; position: relative; }
.sol-cta .btn { position: relative; }

/* ── Footer (dark) ────────────────────────────────────────── */
.sol-footer {
  background: #020817;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.sol-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .sol-footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .sol-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr; } }
.sol-footer-desc {
  font-size: .875rem; color: rgba(255,255,255,.4); line-height: 1.7;
  margin: 1rem 0 1.5rem; max-width: 280px;
}
.sol-footer-col-title {
  font-size: .8125rem; font-weight: 700; color: rgba(255,255,255,.6);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.25rem;
}
.sol-footer-links { display: flex; flex-direction: column; gap: .625rem; }
.sol-footer-links a { font-size: .9rem; color: rgba(255,255,255,.45); transition: color .2s; text-decoration: none; }
.sol-footer-links a:hover { color: rgba(255,255,255,.85); }
.sol-footer-bottom {
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.06);
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 1rem; text-align: center;
  font-size: .8125rem; color: rgba(255,255,255,.3);
}
@media (min-width: 768px) { .sol-footer-bottom { justify-content: space-between; text-align: left; } }
.sol-footer-legal { display: flex; gap: 1.5rem; }
.sol-footer-legal a { font-size: .8125rem; color: rgba(255,255,255,.3); transition: color .2s; text-decoration: none; }
.sol-footer-legal a:hover { color: rgba(255,255,255,.65); }

/* ── Smooth scroll ────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .sol-page { scroll-behavior: smooth; }
}
@media (prefers-reduced-motion: reduce) {
  .sol-hero-visual { animation: none; }
  .sol-benefit-card, .sol-faq-item, .sol-related-card, .sol-step { transition: none; }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 767px) {
  .sol-hero { padding: calc(var(--nav-h, 72px) + 3.5rem) 0 3.5rem; }
  .sol-title { font-size: clamp(1.5rem, 6vw, 1.9rem); }
  .sol-sub { font-size: 1rem; line-height: 1.65; margin-bottom: 1.75rem; }
  .sol-hero-cta { flex-direction: column; }
  .sol-hero-cta .btn { width: 100%; max-width: 320px; justify-content: center; }
  .sol-showcase { padding: 3.5rem 0; }
  .sol-benefits { padding: 3.5rem 0; }
  .sol-workflow { padding: 3.5rem 0; }
  .sol-faq { padding: 3.5rem 0; }
  .sol-cta { padding: 4rem 0; }
  .sol-step { padding: 1.5rem 1.25rem; }
}
