/* =========================================================
   InsoPortal — Shared Styles
   ========================================================= */

:root {
  /* InsoPortal Branding */
  --orange-500: #F18A1E;
  --orange-600: #E67514;
  --orange-700: #C75F0A;
  --orange-50: #FFF6EC;
  --orange-100: #FFE9D0;

  /* Rollenfarben */
  --role-iv: #4FAFB7;
  --role-iv-bg: #E8F6F7;
  --role-glaeubiger: #6B7A90;
  --role-glaeubiger-bg: #EEF1F6;
  --role-schuldner: #E07556;
  --role-schuldner-bg: #FBEDE7;
  --role-gericht: #F2C94C;
  --role-gericht-bg: #FDF6E0;

  /* Neutrale */
  --ink-900: #0F172A;
  --ink-700: #334155;
  --ink-500: #64748B;
  --ink-300: #CBD5E1;
  --ink-100: #F1F5F9;
  --ink-50: #F8FAFC;
  --white: #FFFFFF;
  --border: #E5E7EB;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.06), 0 2px 6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 40px -12px rgba(15, 23, 42, 0.12), 0 8px 20px -8px rgba(15, 23, 42, 0.08);
  --shadow-orange: 0 12px 30px -8px rgba(241, 138, 30, 0.45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 22px; letter-spacing: -0.01em;
}
.logo-mark {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: block;
}
.logo-mark svg { width: 100%; height: 100%; display: block; }
.logo-text { color: var(--ink-900); }
.logo-text span { color: var(--orange-600); }

nav.primary { display: flex; gap: 32px; }
nav.primary a {
  font-size: 14px; font-weight: 500; color: var(--ink-700);
  transition: color .2s;
}
nav.primary a:hover, nav.primary a.active { color: var(--orange-600); }

.header-cta { display: flex; gap: 12px; align-items: center; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 10px;
  font-weight: 600; font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange-500);
  color: white;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover { background: var(--orange-600); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink-700); border-color: var(--border); }
.btn-ghost:hover { background: var(--ink-100); }
.btn-large { padding: 14px 26px; font-size: 15px; border-radius: 12px; }
.btn-dark { background: var(--ink-900); color: white; }
.btn-dark:hover { background: #1E293B; transform: translateY(-1px); }

@media (max-width: 900px) {
  nav.primary { display: none; }
}

/* =========================================================
   DEEP HERO — dunkler Hero mit Grid-Pattern (shared)
   ========================================================= */
.deep-hero {
  position: relative;
  padding: 120px 0 96px;
  background:
    radial-gradient(900px 500px at 80% 10%, rgba(241, 138, 30, 0.22), transparent 60%),
    radial-gradient(700px 500px at 10% 70%, rgba(224, 117, 86, 0.18), transparent 60%),
    radial-gradient(600px 400px at 50% 100%, rgba(79, 175, 183, 0.12), transparent 60%),
    var(--ink-900);
  color: white;
  overflow: hidden;
  isolation: isolate;
}
.deep-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: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  pointer-events: none;
}
.deep-hero-content {
  position: relative; text-align: center;
  max-width: 900px; margin: 0 auto; z-index: 1;
}
.deep-hero .crumb {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 999px;
  background: rgba(241, 138, 30, 0.15);
  color: var(--orange-500);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid rgba(241, 138, 30, 0.3);
  margin-bottom: 28px;
}
.deep-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 900;
  margin-bottom: 28px;
}
.deep-hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, #FFD9A8 0%, var(--orange-500) 50%, #E07556 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.deep-hero .lede {
  font-size: 19px; color: #CBD5E1;
  max-width: 760px; margin: 0 auto 36px; line-height: 1.6;
}
.deep-hero .meta {
  display: inline-flex; gap: 18px;
  flex-wrap: wrap; justify-content: center;
  font-size: 13px; color: #94A3B8;
}
.deep-hero .meta span { display: inline-flex; align-items: center; gap: 6px; }
.deep-hero .meta span::before {
  content: ''; width: 4px; height: 4px;
  border-radius: 50%; background: var(--orange-500);
}
.deep-hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}
.deep-hero-actions .btn-ghost {
  background: rgba(255,255,255,0.06);
  color: white;
  border-color: rgba(255,255,255,0.15);
}
.deep-hero-actions .btn-ghost:hover { background: rgba(255,255,255,0.12); }

/* Stats Bar — schwebt unter dem Hero */
.stats-bar { background: white; padding: 0 0 32px; position: relative; z-index: 5; margin-top: -48px; }
.stats-bar-inner {
  max-width: 1100px; margin: 0 auto;
  background: white; border-radius: 24px;
  padding: 36px 48px;
  box-shadow: 0 30px 60px -20px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(15, 23, 42, 0.04);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
@media (max-width: 800px) { .stats-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 28px 24px; } }
.qstat .qnum {
  font-size: 32px; font-weight: 800; line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, var(--orange-500), var(--orange-700));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.qstat .qlabel { font-size: 13px; color: var(--ink-500); font-weight: 500; line-height: 1.4; }

/* ---------- Hero (shared) ---------- */
.hero {
  position: relative;
  padding: 88px 0 64px;
  overflow: hidden;
  background:
    radial-gradient(1100px 500px at 80% -10%, rgba(241, 138, 30, 0.12), transparent 60%),
    radial-gradient(800px 400px at -10% 30%, rgba(79, 175, 183, 0.08), transparent 60%),
    linear-gradient(180deg, #FFFDFB 0%, #FFFFFF 100%);
}
.hero-centered {
  max-width: 820px; margin: 0 auto; text-align: center;
}
.hero-centered .hero-sub { margin-left: auto; margin-right: auto; }
.hero-centered .hero-actions { justify-content: center; }
.hero-bullets-centered {
  margin: 40px auto 0;
  max-width: 720px;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 14px 28px; padding: 0;
}
.hero-bullets-centered li {
  list-style: none;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--ink-700);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--orange-50);
  color: var(--orange-700);
  font-size: 13px; font-weight: 600;
  border: 1px solid var(--orange-100);
  margin-bottom: 24px;
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange-500);
}

h1.hero-title {
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 22px;
}
h1.hero-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--orange-500), var(--orange-700));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 18px;
  color: var(--ink-500);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--orange-50);
  color: var(--orange-600);
  display: grid; place-items: center;
  font-weight: 800; font-size: 12px;
}

/* ---------- Sections ---------- */
section.block { padding: 96px 0; }
.block.alt { background: var(--ink-50); }
.block.dark { background: var(--ink-900); color: white; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 14px;
}
.section-head p { font-size: 17px; color: var(--ink-500); }
.block.dark .section-head h2 { color: white; }
.block.dark .section-head p { color: #94A3B8; }
.block.dark .eyebrow {
  background: rgba(241, 138, 30, 0.15);
  color: var(--orange-500);
  border-color: rgba(241, 138, 30, 0.3);
}

/* ---------- Rollen-Karten (Futuristic) ---------- */
.roles-section {
  position: relative;
  background:
    radial-gradient(900px 500px at 15% 10%, rgba(241, 138, 30, 0.07), transparent 60%),
    radial-gradient(800px 500px at 90% 80%, rgba(79, 175, 183, 0.07), transparent 60%),
    linear-gradient(180deg, #FAFBFC 0%, #FFFFFF 100%);
  overflow: hidden;
}
.roles-section::before {
  content: ''; position: absolute;
  top: 10%; right: -100px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(241, 138, 30, 0.18), transparent 70%);
  filter: blur(40px); pointer-events: none;
}
.roles-section::after {
  content: ''; position: absolute;
  bottom: 5%; left: -120px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(224, 117, 86, 0.16), transparent 70%);
  filter: blur(40px); pointer-events: none;
}

.roles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative; z-index: 1;
}
@media (max-width: 760px) { .roles { grid-template-columns: 1fr; } }

.role-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.65) 100%);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 40px 36px 32px;
  transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s ease;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 1px 1px rgba(15, 23, 42, 0.04), 0 8px 24px -8px rgba(15, 23, 42, 0.08);
}
.role-card::before {
  content: ''; position: absolute; inset: -1px;
  border-radius: 24px;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--accent), transparent 50%, var(--accent) 100%);
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
  z-index: 2;
}
.role-card::after {
  content: ''; position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--accent), transparent 65%);
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
  transition: opacity .4s ease, transform .4s ease;
}
.role-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 30px 60px -20px rgba(15, 23, 42, 0.15),
    0 0 0 1px rgba(15, 23, 42, 0.04),
    0 0 40px -8px var(--accent-glow);
}
.role-card:hover::before { opacity: 1; }
.role-card:hover::after { opacity: 0.25; transform: scale(1.15); }

.role-card > * { position: relative; z-index: 1; }

.role-step {
  position: absolute;
  top: 28px; right: 32px;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.35;
  z-index: 1;
}

.role-icon {
  width: 72px; height: 72px;
  border-radius: 22px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 70%, #000 30%));
  color: white;
  margin-bottom: 24px;
  font-size: 34px;
  box-shadow: 0 12px 28px -8px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
}
.role-card:hover .role-icon { transform: scale(1.08) rotate(-4deg); }

.role-card h3 {
  font-size: 24px; font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}
.role-card .role-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.role-card p {
  font-size: 15px; color: var(--ink-500);
  margin-bottom: 22px; line-height: 1.55;
}
.role-card ul { list-style: none; margin-bottom: 28px; display: grid; gap: 10px; }
.role-card ul li {
  font-size: 13.5px; color: var(--ink-700);
  display: flex; gap: 10px; align-items: flex-start;
  line-height: 1.5;
}
.role-card ul li .li-icon {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 6px;
  background: var(--accent-bg);
  color: var(--accent);
  display: grid; place-items: center;
  font-weight: 800; font-size: 10px;
  margin-top: 2px;
}
.role-card .role-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700;
  color: white; background: var(--accent);
  padding: 12px 20px;
  border-radius: 12px;
  transition: gap .25s ease, transform .25s ease, box-shadow .3s ease;
  box-shadow: 0 6px 16px -6px var(--accent-glow);
}
.role-card .role-cta:hover { gap: 14px; transform: translateY(-1px); box-shadow: 0 10px 24px -8px var(--accent-glow); }
.role-card .role-cta .arrow { transition: transform .25s ease; }
.role-card:hover .role-cta .arrow { transform: translateX(4px); }

.role-card.iv { --accent: var(--role-iv); --accent-bg: var(--role-iv-bg); --accent-glow: rgba(79, 175, 183, 0.5); }
.role-card.glaeubiger { --accent: #5A6B85; --accent-bg: var(--role-glaeubiger-bg); --accent-glow: rgba(90, 107, 133, 0.5); }
.role-card.schuldner { --accent: var(--role-schuldner); --accent-bg: var(--role-schuldner-bg); --accent-glow: rgba(224, 117, 86, 0.5); }
.role-card.gericht { --accent: #D6AB28; --accent-bg: var(--role-gericht-bg); --accent-glow: rgba(214, 171, 40, 0.5); }

/* ---------- Vergleichstabelle ---------- */
.vs-table {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.vs-table thead th {
  padding: 22px 24px;
  text-align: left;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.vs-table thead th:first-child {
  background: var(--ink-50);
  color: var(--ink-500);
  width: 24%;
}
.vs-table thead th.col-bad { background: #FEF2F2; color: #991B1B; }
.vs-table thead th.col-good {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
  color: white;
}
.vs-table tbody td {
  padding: 18px 24px;
  border-top: 1px solid var(--border);
  font-size: 14.5px;
  color: var(--ink-700);
  vertical-align: top;
}
.vs-table tbody td:first-child {
  font-weight: 700;
  color: var(--ink-900);
  background: var(--ink-50);
}
.vs-table tbody td.cell-good {
  background: var(--orange-50);
  color: var(--ink-900);
  font-weight: 500;
}
@media (max-width: 720px) {
  .vs-table, .vs-table thead, .vs-table tbody, .vs-table tr, .vs-table td, .vs-table th { display: block; }
  .vs-table thead { display: none; }
  .vs-table tbody tr { padding: 14px 0; border-top: 1px solid var(--border); }
  .vs-table tbody td { border-top: none; padding: 8px 18px; }
  .vs-table tbody td:first-child { background: transparent; padding-top: 14px; font-size: 13px; text-transform: uppercase; color: var(--ink-500); }
  .vs-table tbody td.cell-bad::before { content: '✗  '; color: #B91C1C; font-weight: 700; }
  .vs-table tbody td.cell-good::before { content: '✓  '; color: var(--orange-600); font-weight: 700; }
}

/* ---------- Highlight-Bar ---------- */
.highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .highlights { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .highlights { grid-template-columns: 1fr; } }
.highlight {
  background: white;
  border-radius: var(--radius-md);
  padding: 22px 20px;
  border: 1px solid var(--border);
}
.highlight .num {
  font-size: 28px; font-weight: 800;
  color: var(--orange-600);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.highlight .label { font-size: 14px; color: var(--ink-500); line-height: 1.4; }

/* ---------- Integrationen ---------- */
.integrations { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.integration-chip {
  padding: 10px 18px;
  background: white;
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
  color: var(--ink-700);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.integration-chip strong { color: var(--orange-600); }

/* ---------- CTA-Box ---------- */
.cta-final {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 80% 20%, rgba(255,255,255,0.18), transparent 60%),
    radial-gradient(500px 250px at 10% 90%, rgba(255,255,255,0.12), transparent 60%);
  pointer-events: none;
}
.cta-final h2 {
  position: relative;
  font-size: clamp(28px, 3.4vw, 38px);
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 14px;
}
.cta-final p {
  position: relative;
  font-size: 17px;
  opacity: 0.92;
  max-width: 580px;
  margin: 0 auto 28px;
}
.cta-final .btn { position: relative; background: white; color: var(--orange-700); border: none; }
.cta-final .btn:hover { background: var(--orange-50); }

/* ---------- Footer ---------- */
footer {
  padding: 48px 0 32px;
  background: var(--ink-900);
  color: #94A3B8;
  font-size: 14px;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.footer-inner .logo-text { color: white; }
.footer-inner .logo-text span { color: var(--orange-500); }
footer .links a:hover { color: white; }
footer .links { display: flex; gap: 22px; flex-wrap: wrap; }

/* ---------- Quote / Merksatz ---------- */
.merksatz {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 32px;
  background: linear-gradient(135deg, var(--ink-900), #1E293B);
  color: white;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.merksatz .quote-mark {
  font-size: 48px;
  color: var(--orange-500);
  line-height: 1;
  margin-bottom: 8px;
  font-family: Georgia, serif;
}
.merksatz blockquote {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.merksatz cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-size: 13px;
  color: var(--orange-500);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- Fade-in animation ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .8s ease forwards; }

/* =========================================================
   FÜR-WEN-SEITE
   ========================================================= */

/* Journey banner — die Geschichte über dem Hero */
.journey {
  position: relative;
  margin-top: 36px;
  padding: 24px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  backdrop-filter: blur(10px);
}
.journey-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.journey-flow::-webkit-scrollbar { display: none; }
.jstep {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 88px;
  flex-shrink: 0;
}
.jstep .javatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--jcolor, var(--orange-500));
  display: grid; place-items: center;
  font-size: 26px;
  color: var(--jcolor, var(--orange-500));
  box-shadow: 0 10px 24px -8px rgba(0,0,0,0.25);
  margin-bottom: 10px;
}
.jstep .jlabel {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: white;
  margin-bottom: 2px;
}
.jstep .jaction {
  font-size: 10px;
  color: #94A3B8;
  line-height: 1.3;
  max-width: 110px;
}
.jstep.schuldner { --jcolor: var(--role-schuldner); }
.jstep.gericht { --jcolor: #D6AB28; }
.jstep.iv { --jcolor: var(--role-iv); }
.jstep.glaeubiger { --jcolor: #8B9AB0; }
.jstep.portal { --jcolor: var(--orange-500); }

.jarrow {
  flex-shrink: 0;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(241, 138, 30, 0.5), transparent);
  position: relative;
}
.jarrow::after {
  content: '';
  position: absolute;
  right: -1px; top: 50%;
  width: 0; height: 0;
  border-left: 6px solid rgba(241, 138, 30, 0.7);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  transform: translateY(-50%);
}
@media (max-width: 720px) {
  .journey-flow { justify-content: flex-start; }
  .jarrow { width: 20px; }
  .jstep { min-width: 76px; }
  .jstep .javatar { width: 46px; height: 46px; font-size: 20px; border-width: 2px; }
}

/* Story section (narrative hook) */
.story-section {
  background: linear-gradient(180deg, #FFFDFB 0%, var(--ink-50) 100%);
  position: relative;
  overflow: hidden;
}
.story-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.story-intro {
  text-align: center;
  margin-bottom: 48px;
}
.story-intro h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 14px;
}
.story-intro p {
  font-size: 17px;
  color: var(--ink-500);
  max-width: 640px;
  margin: 0 auto;
}

.story-timeline {
  position: relative;
  padding: 16px 0 16px 32px;
  border-left: 2px solid var(--orange-100);
}
.story-day {
  position: relative;
  padding-bottom: 28px;
}
.story-day:last-child { padding-bottom: 0; }
.story-day::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--orange-500);
  box-shadow: 0 0 0 4px rgba(241, 138, 30, 0.12);
}
.story-day .stag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--orange-600);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.story-day h4 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  margin-bottom: 8px;
}
.story-day p {
  font-size: 15px;
  color: var(--ink-700);
  line-height: 1.6;
  margin: 0;
}

/* Pain-Point Role-Bands */
.role-band {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}
.role-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .role-band { padding: 64px 0; }
  .role-band-inner { grid-template-columns: 1fr; gap: 40px; }
  .role-band .rb-visual { order: -1; }
}
.role-band.alt .role-band-inner { direction: rtl; }
.role-band.alt .role-band-inner > * { direction: ltr; }
@media (max-width: 900px) {
  .role-band.alt .role-band-inner { direction: ltr; }
  .role-band.alt .role-band-inner .rb-visual { order: -1; }
}

.rb-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--rb-tag-bg);
  color: var(--rb-accent);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--rb-tag-bg);
  margin-bottom: 18px;
}
.rb-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--rb-accent); }

.rb-content h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--ink-900);
}
.rb-content h2 em {
  font-style: normal;
  color: var(--rb-accent);
}
.rb-content .rb-empathy {
  font-size: 18px;
  color: var(--ink-700);
  line-height: 1.6;
  margin-bottom: 22px;
}
.rb-pain {
  background: white;
  border-left: 3px solid #DC2626;
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.rb-pain-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #B91C1C;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.rb-pain p {
  font-size: 14.5px;
  color: var(--ink-700);
  margin: 0;
  line-height: 1.55;
}
.rb-promise {
  background: linear-gradient(135deg, var(--rb-accent), color-mix(in srgb, var(--rb-accent) 75%, #000 25%));
  color: white;
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 26px;
  box-shadow: 0 10px 24px -8px var(--rb-glow);
}
.rb-promise-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 4px;
}
.rb-promise p { font-size: 15.5px; line-height: 1.5; margin: 0; font-weight: 500; }

.rb-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 28px;
  list-style: none;
}
@media (max-width: 500px) { .rb-features { grid-template-columns: 1fr; } }
.rb-features li {
  font-size: 14px;
  color: var(--ink-700);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.45;
}
.rb-features li::before {
  content: '✓';
  color: var(--rb-accent);
  font-weight: 800;
  flex-shrink: 0;
}

.rb-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 700;
  color: white; background: var(--rb-accent);
  padding: 14px 26px;
  border-radius: 12px;
  transition: gap .25s ease, transform .25s ease, box-shadow .3s ease;
  box-shadow: 0 8px 20px -6px var(--rb-glow);
}
.rb-cta:hover { gap: 12px; transform: translateY(-1px); box-shadow: 0 12px 26px -8px var(--rb-glow); }

/* Preis-Tag in der Rollen-Band */
.rb-price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 18px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.rb-price::before {
  content: '';
  position: absolute;
  left: -1px; top: -1px; bottom: -1px;
  width: 4px;
  background: var(--rb-accent);
  border-radius: 14px 0 0 14px;
}
.rb-price-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.rb-price-amount {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}
.rb-price-period {
  font-size: 12px;
  color: var(--ink-500);
  font-weight: 500;
}

/* Preis-Badge im Login-Picker (kompakt) */
.lp-price {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lp-accent);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 4px 12px;
  margin: 0 auto 16px;
  width: max-content;
}

/* Preis im Rollen-Chip auf der Startseite */
.role-chip-price {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rc-accent);
  background: var(--rc-bg);
  border-radius: 999px;
  padding: 3px 10px;
}

/* Visual side */
.rb-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--rb-tag-bg) 0%, white 100%);
  border-radius: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  overflow: hidden;
}
.rb-visual::before {
  content: '';
  position: absolute;
  width: 60%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rb-accent), transparent 65%);
  opacity: 0.20;
  filter: blur(30px);
  top: 20%; right: -10%;
}
.rb-visual-emoji {
  font-size: 160px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
  z-index: 1;
}
.rb-visual-tag {
  position: absolute;
  bottom: 24px; left: 24px;
  background: white;
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  font-size: 12px; font-weight: 700;
  color: var(--ink-900);
  display: flex; align-items: center; gap: 8px;
  z-index: 2;
}
.rb-visual-tag .vdot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rb-accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--rb-accent) 20%, transparent 80%);
}

/* Role band color schemes */
.role-band.schuldner {
  background: linear-gradient(180deg, #FFF9F6 0%, #FBEDE7 100%);
  --rb-accent: var(--role-schuldner);
  --rb-tag-bg: var(--role-schuldner-bg);
  --rb-glow: rgba(224, 117, 86, 0.5);
}
.role-band.gericht {
  background: linear-gradient(180deg, #FFFDF6 0%, #FDF6E0 100%);
  --rb-accent: #D6AB28;
  --rb-tag-bg: var(--role-gericht-bg);
  --rb-glow: rgba(214, 171, 40, 0.5);
}
.role-band.iv {
  background: linear-gradient(180deg, #F6FBFB 0%, #E8F6F7 100%);
  --rb-accent: var(--role-iv);
  --rb-tag-bg: var(--role-iv-bg);
  --rb-glow: rgba(79, 175, 183, 0.5);
}
.role-band.glaeubiger {
  background: linear-gradient(180deg, #F8FAFD 0%, #EEF1F6 100%);
  --rb-accent: #5A6B85;
  --rb-tag-bg: var(--role-glaeubiger-bg);
  --rb-glow: rgba(90, 107, 133, 0.5);
}

/* "Wähle dein Login" Picker */
.login-picker {
  background: linear-gradient(135deg, var(--ink-900), #1E293B);
  color: white;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.login-picker::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(241, 138, 30, 0.25), transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}
.login-picker .section-head h2 { color: white; }
.login-picker .section-head p { color: #94A3B8; }
.login-picker .section-head .eyebrow {
  background: rgba(241, 138, 30, 0.15);
  color: var(--orange-500);
  border-color: rgba(241, 138, 30, 0.3);
}

.lp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 960px) { .lp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .lp-grid { grid-template-columns: 1fr; } }

.lp-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  transition: transform .3s cubic-bezier(.22,.61,.36,1), border-color .3s ease, background .3s ease;
  backdrop-filter: blur(12px);
}
.lp-card:hover {
  transform: translateY(-6px);
  border-color: var(--lp-accent);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 24px 40px -16px var(--lp-glow);
}
.lp-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--lp-accent), color-mix(in srgb, var(--lp-accent) 70%, #000 30%));
  display: grid; place-items: center;
  font-size: 30px;
  color: white;
  box-shadow: 0 10px 22px -6px var(--lp-glow), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: transform .3s ease;
}
.lp-card:hover .lp-icon { transform: scale(1.06) rotate(-3deg); }
.lp-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  color: white;
}
.lp-card p {
  font-size: 13px;
  color: #94A3B8;
  line-height: 1.5;
  margin-bottom: 22px;
  min-height: 60px;
}
.lp-card .lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  background: var(--lp-accent);
  color: white;
  transition: gap .25s ease;
}
.lp-card .lp-btn:hover { gap: 10px; }

.lp-card.iv { --lp-accent: var(--role-iv); --lp-glow: rgba(79, 175, 183, 0.5); }
.lp-card.glaeubiger { --lp-accent: #8B9AB0; --lp-glow: rgba(139, 154, 176, 0.4); }
.lp-card.schuldner { --lp-accent: var(--role-schuldner); --lp-glow: rgba(224, 117, 86, 0.5); }
.lp-card.gericht { --lp-accent: #D6AB28; --lp-glow: rgba(214, 171, 40, 0.5); }

/* Kompakte Rollen-Teaser auf Startseite */
.role-teaser {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}
@media (max-width: 800px) { .role-teaser { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .role-teaser { grid-template-columns: 1fr; } }

.role-chip {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 20px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.role-chip:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--rc-accent);
}
.role-chip-icon {
  width: 48px; height: 48px;
  margin: 0 auto 12px;
  border-radius: 14px;
  background: var(--rc-bg);
  color: var(--rc-accent);
  display: grid; place-items: center;
  font-size: 22px;
}
.role-chip h4 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.role-chip p { font-size: 12.5px; color: var(--ink-500); line-height: 1.4; margin: 0; }

.role-chip.iv { --rc-accent: var(--role-iv); --rc-bg: var(--role-iv-bg); }
.role-chip.glaeubiger { --rc-accent: #5A6B85; --rc-bg: var(--role-glaeubiger-bg); }
.role-chip.schuldner { --rc-accent: var(--role-schuldner); --rc-bg: var(--role-schuldner-bg); }
.role-chip.gericht { --rc-accent: #D6AB28; --rc-bg: var(--role-gericht-bg); }

/* =========================================================
   SHOWCASE-Sektion mit Grafik + Lightbox + Download
   ========================================================= */

.showcase-section {
  background:
    radial-gradient(900px 500px at 90% 10%, rgba(241, 138, 30, 0.08), transparent 60%),
    radial-gradient(700px 400px at 10% 90%, rgba(79, 175, 183, 0.06), transparent 60%),
    var(--white);
  position: relative;
  overflow: hidden;
}

.showcase-card {
  max-width: 1100px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px -20px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(15, 23, 42, 0.03);
  overflow: hidden;
  position: relative;
}

.showcase-image-wrap {
  position: relative;
  background: linear-gradient(180deg, var(--ink-50), var(--white));
  cursor: zoom-in;
  overflow: hidden;
  transition: background .3s ease;
}
.showcase-image-wrap:hover { background: var(--orange-50); }
.showcase-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .5s cubic-bezier(.22,.61,.36,1);
}
.showcase-image-wrap:hover img { transform: scale(1.015); }

.showcase-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 20px;
  pointer-events: none;
}
.showcase-zoom-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 42, 0.85);
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px -6px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}
.showcase-image-wrap:hover .showcase-zoom-pill {
  opacity: 1;
  transform: translateY(0);
}
.showcase-zoom-pill svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.showcase-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 36px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--white) 0%, var(--ink-50) 100%);
  flex-wrap: wrap;
}
.showcase-footer-text {
  flex: 1; min-width: 240px;
}
.showcase-footer-text h4 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  margin-bottom: 4px;
}
.showcase-footer-text p {
  font-size: 13.5px;
  color: var(--ink-500);
  margin: 0;
}
.showcase-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.92);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeIn .25s ease;
}
.lightbox.open { display: flex; }
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.lightbox img {
  max-width: 95vw;
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6);
  animation: zoomIn .35s cubic-bezier(.22,.61,.36,1);
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox-close {
  position: fixed;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  display: grid; place-items: center;
  font-size: 22px;
  font-weight: 400;
  transition: background .2s ease, transform .2s ease;
  backdrop-filter: blur(8px);
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); transform: scale(1.05); }
.lightbox-actions {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 12px;
}
.lightbox-actions .btn { backdrop-filter: blur(8px); }
.lightbox-actions .btn-ghost {
  background: rgba(255,255,255,0.12);
  color: white;
  border-color: rgba(255,255,255,0.25);
}
.lightbox-actions .btn-ghost:hover { background: rgba(255,255,255,0.22); }

/* ---------- Teaser für Warum besser ---------- */
.teaser {
  position: relative;
  background:
    radial-gradient(800px 400px at 80% 20%, rgba(241, 138, 30, 0.12), transparent 60%),
    radial-gradient(700px 400px at 10% 80%, rgba(15, 23, 42, 0.05), transparent 60%),
    var(--ink-900);
  color: white;
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  overflow: hidden;
  isolation: isolate;
}
.teaser::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(241, 138, 30, 0.25), transparent 65%);
  filter: blur(50px);
  pointer-events: none;
  z-index: -1;
}
.teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .teaser-grid { grid-template-columns: 1fr; gap: 40px; } }

.teaser-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(241, 138, 30, 0.15);
  color: var(--orange-500);
  font-size: 13px; font-weight: 600;
  border: 1px solid rgba(241, 138, 30, 0.3);
  margin-bottom: 22px;
}
.teaser-eyebrow::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--orange-500);
}
.teaser h2 {
  font-size: clamp(32px, 3.6vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 18px;
}
.teaser h2 em {
  font-style: normal;
  background: linear-gradient(120deg, #FFD9A8, var(--orange-500));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.teaser p {
  font-size: 17px;
  color: #CBD5E1;
  margin-bottom: 28px;
  line-height: 1.6;
}
.teaser .btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

.teaser-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.tstat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px 22px;
  backdrop-filter: blur(10px);
  transition: transform .3s ease, border-color .3s ease;
}
.tstat:hover {
  transform: translateY(-3px);
  border-color: rgba(241, 138, 30, 0.4);
}
.tstat-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
  display: grid; place-items: center;
  font-size: 18px; color: white;
  margin-bottom: 14px;
  box-shadow: 0 8px 20px -8px rgba(241, 138, 30, 0.6);
}
.tstat-title {
  font-size: 15px; font-weight: 700;
  color: white;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.tstat-desc {
  font-size: 13px;
  color: #94A3B8;
  line-height: 1.5;
}
