/* ═══════════════════════════════════════════════════════════════
   SEVOCON — zentrales Stylesheet V10.1
   Editorial-Design-Pass. Palette unverändert (V9-Tokens).
   Gestaltungssprache: Präzision aus dem Audit — Hairlines,
   nummerierte Kapitel, tabellarische Klarheit, ein Akzent.
   ═══════════════════════════════════════════════════════════════ */

/* ── TOKENS (Farben fix) ────────────────────────────────────── */
:root {
  --ink:       #1C2B3A;
  --accent:    #26B5AA;
  --accent-dk: #1D9E93;
  --accent-lt: #F0FAFA;
  --teal-pale: #A8E6E1;
  --muted:     #64748B;
  --rule:      #E2E8F0;
  --bg:        #F8FAFC;
  --white:     #FFFFFF;
  --green:     #16A34A;
  --green-lt:  #F0FDF4;
  --dark:      #2D3748;
  --slate:     #334155;
  --amber:     #D97706;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --max-w: 1140px;
  --nav-h: 76px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.05), 0 3px 10px rgba(15,23,42,.05);
  --shadow-md: 0 14px 44px rgba(15,23,42,.11);
  --hairline: 1px solid var(--rule);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; scroll-padding-top: calc(var(--nav-h) + 16px); }
body { font-family: var(--font-body); color: var(--ink); background: var(--white); overflow-x: hidden; font-size: 1rem; line-height: 1.68; counter-reset: kapitel ucnum; }
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
strong { font-weight: 600; }
::selection { background: var(--teal-pale); color: var(--ink); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* Zahlen überall tabellarisch — Audit-Präzision */
.hero__card-val, .price-cell__val, .tier__price, .pricebox__amount,
.product-card__amount, .compare__price, .bignum__val, .step__num { font-variant-numeric: tabular-nums; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-size: .9375rem; font-weight: 600;
  padding: .85rem 1.7rem; border-radius: 9px; border: none; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  line-height: 1; text-align: center; letter-spacing: .005em;
}
.btn svg { flex-shrink: 0; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dk) 100%);
  color: var(--white);
  box-shadow: 0 1px 3px rgba(38,181,170,.35), 0 6px 18px rgba(38,181,170,.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 2px 6px rgba(38,181,170,.4), 0 12px 26px rgba(38,181,170,.32); }
.btn-primary:active { transform: translateY(0); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--rule); font-weight: 500; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent-dk); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.34); font-weight: 500; }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.65); }
.btn-white { background: var(--white); color: var(--accent-dk); }
.btn-white:hover { background: var(--bg); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.16); }
.btn-lg { font-size: 1rem; padding: 1.05rem 2.1rem; }
.btn:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid var(--teal-pale); outline-offset: 2px; }

/* ── NAV ────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: var(--hairline);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 6px 28px rgba(15,23,42,.09); }
.nav__inner {
  max-width: 1320px; margin: 0 auto; padding: 0 2rem;
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo svg { height: 42px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 1.3rem; }
.nav__links a { position: relative; font-size: .9rem; font-weight: 500; color: var(--muted); transition: color .2s; white-space: nowrap; padding: .35rem 0; }
.nav__links a:hover { color: var(--ink); }
.nav__links a.active { color: var(--ink); }
.nav__links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  background: var(--accent); border-radius: 2px;
}
.nav__links a.nav__cta, .nav__links a.nav__cta:hover { color: var(--white); }
.nav__cta { margin-left: .5rem; padding: .68rem 1.25rem; }
.nav__cta::after { display: none !important; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .3s; }

/* ── HERO (dunkel — Marken-Look, verdichtet) ────────────────── */
.hero {
  background: var(--dark);
  position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + 4.5rem) 0 4.5rem;
  display: flex; align-items: center;
  min-height: 92vh;
}
.hero--compact { min-height: 0; padding-bottom: 5rem; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(38,181,170,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38,181,170,.08) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
}
.hero__glow {
  position: absolute; width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(38,181,170,.18) 0%, transparent 70%);
  top: 50%; left: 63%; transform: translate(-50%,-50%);
  animation: pulse-glow 7s ease-in-out infinite;
}
.hero__glow-2 {
  position: absolute; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(38,181,170,.11) 0%, transparent 70%);
  top: 16%; left: 13%; transform: translate(-50%,-50%);
  animation: pulse-glow 9s ease-in-out infinite reverse;
}
@keyframes pulse-glow {
  0%,100% { opacity:.6; transform: translate(-50%,-50%) scale(1); }
  50%     { opacity: 1; transform: translate(-50%,-50%) scale(1.08); }
}
.hero__content {
  position: relative; z-index: 1; width: 100%;
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 4.5rem; align-items: center;
}
.hero__content--single { grid-template-columns: 1fr; max-width: 900px; }
.hero__left { animation: fade-up .8s ease both; }
.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(38,181,170,.14); border: 1px solid rgba(38,181,170,.32);
  border-radius: 100px; padding: .4rem .95rem;
  font-size: .8125rem; font-weight: 500; color: var(--teal-pale);
  margin-bottom: 1.7rem; letter-spacing: .01em;
}
.hero__badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: blink 2s ease infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero__headline {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.7rem, 5.4vw, 4.35rem);
  line-height: 1.05; color: var(--white);
  margin-bottom: 1.5rem; letter-spacing: -.015em;
}
.hero__headline em { font-style: italic; color: var(--teal-pale); }
.hero__sub { font-size: 1.09rem; line-height: 1.72; color: #94A3B8; max-width: 520px; margin-bottom: 2.5rem; }
.hero__sub strong { color: #E2E8F0; font-weight: 500; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__promise { margin-top: 2.1rem; display: flex; gap: 1.5rem; flex-wrap: wrap; }
.hero__promise-item { display: flex; align-items: center; gap: .45rem; font-size: .8125rem; color: #94A3B8; }
.hero__promise-item svg { color: var(--green); flex-shrink: 0; }

/* Hero rechts: klickbare Angebots-Karten */
.hero__right { display: flex; flex-direction: column; gap: .95rem; animation: fade-up .8s .25s ease both; }
.hero__card {
  position: relative;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 1.2rem 1.45rem;
  backdrop-filter: blur(4px);
  transition: border-color .3s, background .3s, transform .3s;
  display: block; overflow: hidden;
}
.hero__card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: transparent; transition: background .3s;
}
a.hero__card:hover { background: rgba(255,255,255,.075); border-color: rgba(38,181,170,.5); transform: translateX(5px); }
a.hero__card:hover::before { background: var(--accent); }
.hero__card--accent { border-color: rgba(38,181,170,.42); background: rgba(38,181,170,.09); }
.hero__card--accent::before { background: var(--accent); }
.hero__card-top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.hero__card-label { font-size: .74rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: #94A3B8; margin-bottom: .38rem; }
.hero__card--accent .hero__card-label { color: var(--teal-pale); }
.hero__card-val { font-family: var(--font-display); font-size: 1.78rem; color: var(--white); line-height: 1.12; white-space: nowrap; }
.hero__card-desc { font-size: .86rem; color: #94A3B8; margin-top: .32rem; line-height: 1.55; }
.hero__card-arrow { color: #64748B; transition: color .2s, transform .2s; flex-shrink: 0; align-self: center; }
.hero__card:hover .hero__card-arrow { color: var(--teal-pale); transform: translateX(3px); }
.hero__deadline {
  display: flex; align-items: center; gap: .6rem;
  font-size: .8125rem; color: #94A3B8; line-height: 1.5;
  padding: .85rem 1.45rem; border-radius: 12px;
  border: 1px dashed rgba(255,255,255,.18);
}
.hero__deadline strong { color: var(--teal-pale); font-weight: 600; }
.hero__deadline svg { color: var(--amber); flex-shrink: 0; }

/* ── FAKTEN-LEISTE ──────────────────────────────────────────── */
.facts { background: var(--white); border-bottom: var(--hairline); }
.facts__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 1.15rem 0; flex-wrap: wrap;
}
.facts__item { display: flex; align-items: center; gap: .55rem; font-size: .875rem; font-weight: 500; color: var(--slate); }
.facts__item svg { color: var(--accent); flex-shrink: 0; }

/* ── SECTIONS: nummerierte Kapitel ──────────────────────────── */
.section { padding: 7rem 0; }
.section--alt { background: var(--bg); }
.section--dark { background: var(--dark); border-top: 1px solid rgba(38,181,170,.3); }
.section--tight { padding: 4.5rem 0; }
.section__label {
  display: inline-flex; align-items: baseline; gap: .6rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--accent-dk); margin-bottom: .9rem;
}
.section__label::before {
  counter-increment: kapitel;
  content: counter(kapitel, decimal-leading-zero);
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 400;
  letter-spacing: 0; color: var(--accent);
  border-bottom: 2px solid var(--teal-pale); padding-bottom: 1px;
}
.section--dark .section__label { color: var(--teal-pale); }
.section--dark .section__label::before { color: var(--teal-pale); border-bottom-color: rgba(38,181,170,.5); }
.section__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2rem, 3.9vw, 3.05rem);
  line-height: 1.1; color: var(--ink); margin-bottom: 1.15rem; letter-spacing: -.012em;
}
.section__title em {
  font-style: italic; color: var(--accent-dk);
  background: linear-gradient(transparent 68%, rgba(38,181,170,.16) 68%);
  padding: 0 .06em;
}
.section__title--light { color: var(--white); }
.section__title--light em { color: var(--teal-pale); background: linear-gradient(transparent 68%, rgba(38,181,170,.22) 68%); }
.section__sub { font-size: 1.07rem; color: var(--muted); line-height: 1.72; max-width: 640px; }
.section__sub--light { color: #94A3B8; }
.section__head { margin-bottom: 3.4rem; }
.section__head--center { text-align: center; }
.section__head--center .section__sub { margin: 0 auto; }
.section__head--center .section__label { justify-content: center; }
.section__foot { margin-top: 3rem; text-align: center; }

/* ── PROBLEM-GRID (Zitat-Wand) ──────────────────────────────── */
.problem__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--rule); border: var(--hairline);
  border-radius: var(--radius); overflow: hidden;
}
.problem__item { background: var(--white); padding: 2.3rem 2.2rem; position: relative; transition: background .3s; }
.problem__item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: transparent; transition: background .3s; }
.problem__item:hover::before { background: var(--accent); }
.problem__item:hover { background: var(--accent-lt); }
.problem__quote {
  font-family: var(--font-display); font-size: 1.42rem; font-style: italic;
  color: var(--ink); line-height: 1.32; margin-bottom: .85rem; letter-spacing: -.01em;
}
.problem__quote::before { content: '„'; color: var(--accent); }
.problem__quote::after { content: '\201C'; color: var(--accent); }
.problem__text { font-size: .95rem; color: var(--muted); line-height: 1.68; }
.problem__text strong { color: var(--ink); }

/* ── USE-CASE-KARTEN (nummeriert) ───────────────────────────── */
.uc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.uc-card {
  position: relative;
  background: var(--white); border: var(--hairline); border-radius: var(--radius);
  padding: 1.9rem; display: flex; flex-direction: column; gap: 1rem;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  overflow: hidden;
}
.uc-card::after {
  counter-increment: ucnum;
  content: counter(ucnum, decimal-leading-zero);
  position: absolute; top: -.55rem; right: .4rem;
  font-family: var(--font-display); font-size: 4.6rem; line-height: 1;
  color: rgba(38,181,170,.10); pointer-events: none;
  font-variant-numeric: tabular-nums;
}
.uc-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.uc-card__meta { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.uc-tag {
  font-size: .6875rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: .3rem .72rem; border-radius: 100px; background: var(--accent-lt); color: var(--accent-dk);
  display: inline-block;
}
.uc-tag--size { background: var(--bg); color: var(--muted); border: var(--hairline); }
.uc-card__title { font-family: var(--font-display); font-weight: 400; font-size: 1.4rem; line-height: 1.22; color: var(--ink); position: relative; z-index: 1; padding-right: 2.2rem; }
.uc-card__rows { display: flex; flex-direction: column; gap: .9rem; flex: 1; position: relative; z-index: 1; }
.uc-row { font-size: .905rem; line-height: 1.62; color: var(--slate); }
.uc-row__key {
  display: block; font-size: .6875rem; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--muted); margin-bottom: .18rem;
}
.uc-row--benefit { background: var(--accent-lt); border-radius: var(--radius-sm); padding: .85rem 1rem; border-left: 3px solid var(--accent); }
.uc-row--benefit .uc-row__key { color: var(--accent-dk); }
.uc-card__src { font-size: .78rem; color: var(--muted); border-top: 1px solid var(--bg); padding-top: .9rem; }

/* Branchen-Anker (use-cases.html) */
.branch-nav { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 1.9rem; }
.branch-nav a {
  font-size: .875rem; font-weight: 500; color: #CBD5E1;
  border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.05);
  border-radius: 100px; padding: .52rem 1.1rem; transition: all .2s;
}
.branch-nav a:hover { border-color: var(--accent); color: var(--teal-pale); background: rgba(38,181,170,.12); }
.branch-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.7rem; padding-top: .4rem; border-top: 2px solid var(--ink); }
.branch-head h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.85rem; color: var(--ink); }
.branch-head__src { font-size: .84rem; color: var(--muted); }
.branch-block { padding-top: 3.4rem; }

/* Hinweis-/Ehrlichkeits-Box */
.note-box {
  background: var(--accent-lt); border: 1px solid rgba(38,181,170,.28);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm); padding: 1.6rem 1.9rem;
  font-size: .95rem; color: var(--slate); line-height: 1.72;
}
.note-box strong { color: var(--ink); }

/* ── FIT-FILTER (Passt / Passt nicht) ───────────────────────── */
.fit { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 980px; margin: 0 auto; }
.fit__col { background: var(--white); border: var(--hairline); border-radius: var(--radius); padding: 1.9rem 2rem; }
.fit__col--yes { border-top: 3px solid var(--green); }
.fit__col--no { border-top: 3px solid var(--rule); }
.fit__title { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.1rem; }
.fit__col--yes .fit__title { color: var(--green); }
.fit__col--no .fit__title { color: var(--muted); }
.fit__item { display: flex; gap: .6rem; align-items: flex-start; font-size: .93rem; color: var(--slate); line-height: 1.58; padding: .42rem 0; }
.fit__item svg { flex-shrink: 0; margin-top: 3px; }
.fit__col--yes .fit__item svg { color: var(--green); }
.fit__col--no .fit__item svg { color: #CBD5E1; }

/* ── PRODUKT-KARTEN ─────────────────────────────────────────── */
.products__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto 1fr;
  column-gap: 2rem; max-width: 960px; margin: 0 auto;
}
.product-card {
  grid-row: span 3; display: grid; grid-template-rows: subgrid;
  background: var(--white); border: var(--hairline); border-radius: var(--radius);
  overflow: hidden; transition: box-shadow .3s, border-color .3s, transform .3s;
  box-shadow: var(--shadow-sm);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.product-card--featured { border: 2px solid var(--accent); }
.product-card__head { padding: 2.1rem 2.1rem 1.5rem; border-bottom: var(--hairline); }
.product-card__badge {
  font-size: .6875rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  padding: .28rem .75rem; border-radius: 100px; display: inline-block; margin-bottom: 1.05rem;
  background: var(--accent-lt); color: var(--accent-dk);
}
.product-card__name { font-family: var(--font-display); font-weight: 400; font-size: 1.82rem; margin-bottom: .45rem; color: var(--ink); letter-spacing: -.01em; }
.product-card__tagline { font-size: .94rem; color: var(--muted); line-height: 1.58; }
.product-card__price-row {
  display: flex; align-items: baseline; gap: .7rem; flex-wrap: wrap;
  padding: 1.45rem 2.1rem; border-bottom: var(--hairline);
  background: var(--bg);
}
.product-card__amount { font-family: var(--font-display); font-size: 2.5rem; color: var(--accent-dk); }
.product-card__vat { font-size: .8rem; color: var(--muted); }
.product-card__duration { font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-left: auto; }
.product-card__body { padding: 2.1rem; display: flex; flex-direction: column; }
.product-card__features { flex: 1; margin-bottom: 1.45rem; }
.product-card__feat {
  display: flex; gap: .62rem; align-items: flex-start;
  font-size: .93rem; color: var(--ink); padding: .5rem 0;
  border-bottom: 1px solid var(--bg); line-height: 1.52;
}
.product-card__feat:last-child { border-bottom: none; }
.product-card__feat svg { color: var(--green); flex-shrink: 0; margin-top: 3px; }
.product-card__note {
  font-size: .8125rem; color: var(--muted); margin-bottom: 1.3rem;
  padding: .85rem 1rem; background: var(--bg); border-radius: var(--radius-sm); line-height: 1.62;
  border-left: 3px solid var(--rule);
}
.product-card__note strong { color: var(--ink); display: block; margin-bottom: .18rem; }
.product-card__cta { width: 100%; }

/* ── GARANTIE ───────────────────────────────────────────────── */
.guarantee {
  background: var(--green-lt); border: 1px solid #BBF7D0; border-radius: var(--radius);
  padding: 2.3rem 2.6rem; display: flex; gap: 1.9rem; align-items: flex-start;
}
.guarantee__icon {
  width: 3.3rem; height: 3.3rem; border-radius: 50%;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.guarantee__title { font-family: var(--font-display); font-weight: 400; font-size: 1.45rem; color: var(--green); margin-bottom: .5rem; }
.guarantee__text { font-size: .94rem; color: #166534; line-height: 1.72; }

/* ── PREIS-KOMPONENTEN ──────────────────────────────────────── */
.price-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.price-cell {
  background: var(--white); border: var(--hairline); border-radius: var(--radius);
  padding: 2rem 1.9rem; text-align: left;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  box-shadow: var(--shadow-sm);
}
.price-cell:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.price-cell__label { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-dk); margin-bottom: .8rem; }
.price-cell__val { font-family: var(--font-display); font-size: 2.05rem; color: var(--ink); line-height: 1.08; letter-spacing: -.01em; }
.price-cell__val em { font-style: normal; font-size: 1rem; color: var(--muted); font-family: var(--font-body); }
.price-cell__desc { font-size: .885rem; color: var(--muted); margin-top: .65rem; line-height: 1.64; }

.price-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.tier {
  background: var(--white); border: var(--hairline); border-radius: var(--radius);
  padding: 2rem; display: flex; flex-direction: column; gap: .5rem;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  box-shadow: var(--shadow-sm);
}
.tier:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.tier__size { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-dk); }
.tier__name { font-family: var(--font-display); font-weight: 400; font-size: 1.38rem; color: var(--ink); }
.tier__price { font-family: var(--font-display); font-size: 2.1rem; color: var(--accent-dk); margin: .35rem 0 .1rem; letter-spacing: -.01em; }
.tier__meta { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); }
.tier__desc { font-size: .9rem; color: var(--slate); line-height: 1.66; margin-top: .6rem; }

/* ── WARUM (dunkel) ─────────────────────────────────────────── */
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.35rem; }
.why__item {
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px; padding: 1.9rem; transition: border-color .3s, background .3s;
}
.why__item:hover { background: rgba(255,255,255,.075); border-color: rgba(38,181,170,.38); }
.why__icon {
  width: 2.6rem; height: 2.6rem; border-radius: 9px;
  background: rgba(38,181,170,.16); color: var(--teal-pale);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.05rem;
}
.why__title { font-size: 1.07rem; font-weight: 600; color: var(--white); margin-bottom: .48rem; }
.why__desc { font-size: .93rem; color: #94A3B8; line-height: 1.68; }

/* ── GRÜNDER + ZITAT ────────────────────────────────────────── */
.founder { display: grid; grid-template-columns: 350px 1fr; gap: 3.8rem; align-items: center; }
.founder__photo { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.founder__photo::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(28,43,58,.08); border-radius: var(--radius); pointer-events: none; }
.founder__photo img { width: 100%; height: auto; }
.founder__text p { font-size: 1.01rem; color: var(--slate); line-height: 1.76; margin-bottom: 1rem; }
.founder__text p strong { color: var(--ink); }
.pills { display: flex; gap: .5rem; flex-wrap: wrap; margin: 1.35rem 0 1.75rem; }
.pill {
  font-size: .8125rem; font-weight: 600; color: var(--accent-dk);
  background: var(--accent-lt); border: 1px solid rgba(38,181,170,.28);
  border-radius: 100px; padding: .42rem 1rem;
}
.pill--plain { color: var(--slate); background: var(--bg); border-color: var(--rule); }

.pull {
  border-left: 4px solid var(--accent);
  padding: .4rem 0 .4rem 1.6rem; margin: 1.5rem 0;
}
.pull__text { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; line-height: 1.35; color: var(--ink); letter-spacing: -.01em; }
.pull__who { font-size: .82rem; color: var(--muted); margin-top: .5rem; }

/* ── SCHRITTE (Prozess-Schiene) ─────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; position: relative; }
.step {
  background: var(--white); border: var(--hairline); border-radius: var(--radius);
  padding: 2rem; position: relative; box-shadow: var(--shadow-sm);
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.step:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.step__num {
  font-family: var(--font-display); font-size: 3rem; line-height: 1;
  color: var(--accent); opacity: .32; margin-bottom: 1rem;
}
.step__title { font-size: 1.07rem; font-weight: 600; color: var(--ink); margin-bottom: .5rem; }
.step__desc { font-size: .92rem; color: var(--muted); line-height: 1.68; }

/* ── TIMELINE ───────────────────────────────────────────────── */
.timeline { position: relative; max-width: 780px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; top: 8px; bottom: 8px; left: 12px; width: 2px; background: linear-gradient(var(--teal-pale), var(--rule)); }
.tl-item { position: relative; padding: 0 0 2.2rem 3.2rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ''; position: absolute; left: 4px; top: 4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent-lt); border: 3px solid var(--accent);
}
.tl-item__when { font-size: .75rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--accent-dk); margin-bottom: .32rem; }
.tl-item__title { font-size: 1.08rem; font-weight: 600; color: var(--ink); margin-bottom: .3rem; }
.tl-item__desc { font-size: .93rem; color: var(--muted); line-height: 1.68; }

/* ── VERGLEICH ──────────────────────────────────────────────── */
.compare { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.compare--two { grid-template-columns: repeat(2, 1fr); max-width: 940px; margin: 0 auto; }
.compare__col {
  background: var(--white); border: var(--hairline); border-radius: var(--radius);
  padding: 2rem; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
}
.compare__col--win { border: 2px solid var(--accent); box-shadow: var(--shadow-md); position: relative; }
.compare__flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-dk));
  color: var(--white); font-size: .72rem; font-weight: 700;
  letter-spacing: .05em; padding: .32rem .95rem; border-radius: 100px; white-space: nowrap;
  box-shadow: 0 2px 8px rgba(38,181,170,.35);
}
.compare__name { font-size: 1.03rem; font-weight: 600; color: var(--ink); margin-bottom: .2rem; }
.compare__price { font-family: var(--font-display); font-size: 1.5rem; color: var(--muted); margin-bottom: 1.15rem; }
.compare__col--win .compare__price { color: var(--accent-dk); }
.compare__list { flex: 1; display: flex; flex-direction: column; gap: .58rem; margin-bottom: 1rem; }
.compare__item { display: flex; gap: .55rem; font-size: .89rem; color: var(--slate); line-height: 1.55; align-items: flex-start; }
.compare__item svg { flex-shrink: 0; margin-top: 3px; }
.compare__item--yes svg { color: var(--green); }
.compare__item--no { color: var(--muted); }
.compare__item--no svg { color: #CBD5E1; }
.compare__verdict { font-size: .82rem; font-weight: 600; color: var(--muted); border-top: 1px solid var(--bg); padding-top: .95rem; }
.compare__col--win .compare__verdict { color: var(--accent-dk); }

/* ── SÄULEN ─────────────────────────────────────────────────── */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pillar { background: var(--white); border: var(--hairline); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: border-color .3s, box-shadow .3s; }
.pillar:hover { border-color: var(--accent); box-shadow: var(--shadow-md); }
.pillar__head { padding: 1.6rem 1.8rem 1.25rem; border-bottom: 2px solid var(--accent); background: var(--bg); }
.pillar__kicker { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-dk); margin-bottom: .32rem; }
.pillar__title { font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; color: var(--ink); }
.pillar__sub { font-size: .85rem; color: var(--muted); margin-top: .3rem; }
.pillar__list { padding: 1.3rem 1.8rem 1.8rem; display: flex; flex-direction: column; gap: .9rem; flex: 1; }
.pillar__item { font-size: .9rem; color: var(--slate); line-height: 1.58; padding-left: 1.35rem; position: relative; }
.pillar__item::before { content: ''; position: absolute; left: 0; top: .5em; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.pillar__item strong { color: var(--ink); }

/* ── PREISBOX ───────────────────────────────────────────────── */
.pricebox { max-width: 780px; margin: 0 auto; background: var(--white); border: 2px solid var(--accent); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.pricebox__band { background: linear-gradient(135deg, var(--accent), var(--accent-dk)); color: var(--white); padding: 1.15rem 2.1rem; }
.pricebox__band-kicker { font-size: .72rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; color: rgba(255,255,255,.85); }
.pricebox__band-title { font-family: var(--font-display); font-size: 1.45rem; }
.pricebox__main { padding: 1.75rem 2.1rem; display: flex; align-items: baseline; gap: .8rem; flex-wrap: wrap; border-bottom: var(--hairline); }
.pricebox__amount { font-family: var(--font-display); font-size: 3rem; color: var(--accent-dk); line-height: 1; letter-spacing: -.01em; }
.pricebox__meta { font-size: .875rem; color: var(--muted); line-height: 1.55; }
.pricebox__list { padding: 1.55rem 2.1rem; display: grid; grid-template-columns: 1fr 1fr; gap: .62rem 1.7rem; }
.pricebox__item { display: flex; gap: .55rem; font-size: .9rem; color: var(--slate); align-items: flex-start; line-height: 1.55; }
.pricebox__item svg { color: var(--green); flex-shrink: 0; margin-top: 3px; }
.pricebox__foot { padding: 1.35rem 2.1rem 2.1rem; }
.pricebox__note { font-size: .8125rem; color: var(--muted); margin-bottom: 1.25rem; line-height: 1.6; }

.optional-box {
  max-width: 780px; margin: 1.7rem auto 0; background: var(--bg);
  border: var(--hairline); border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm); padding: 1.7rem 2rem;
}
.optional-box__kicker { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .32rem; }
.optional-box__title { font-size: 1.1rem; font-weight: 600; color: var(--ink); margin-bottom: .5rem; }
.optional-box__text { font-size: .92rem; color: var(--slate); line-height: 1.68; }
.optional-box__text strong { color: var(--ink); }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq__list { max-width: 760px; margin: 0 auto; border-top: var(--hairline); }
.faq__item { border-bottom: var(--hairline); }
.faq__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 1.35rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--font-body); font-size: 1.03rem; font-weight: 500; color: var(--ink);
  transition: color .2s;
}
.faq__q:hover { color: var(--accent-dk); }
.faq__icon { flex-shrink: 0; transition: transform .3s; color: var(--muted); }
.faq__item.open .faq__icon { transform: rotate(45deg); color: var(--accent); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height .35s ease; }
.faq__a-inner { padding: 0 0 1.4rem; font-size: .94rem; color: var(--muted); line-height: 1.76; }
.faq__a-inner strong { color: var(--slate); }

/* ── CTA-BAND ───────────────────────────────────────────────── */
.cta-band { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dk) 100%); padding: 5.5rem 0; position: relative; overflow: hidden; }
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-band__inner { position: relative; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.45rem; }
.cta-band__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.1rem, 4.2vw, 3.1rem); color: var(--white); line-height: 1.08; letter-spacing: -.012em; }
.cta-band__sub { font-size: 1.07rem; color: #D9F2F0; max-width: 560px; line-height: 1.68; }
.cta-band__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.cta-band__note { font-size: .875rem; color: var(--teal-pale); }
.cta-band__note a { color: var(--white); text-decoration: underline; }

/* ── KALENDER (Klick-zum-Laden) ─────────────────────────────── */
.cal-shell {
  max-width: 860px; margin: 0 auto;
  background: var(--white); border: var(--hairline); border-radius: var(--radius);
  box-shadow: var(--shadow-md); overflow: hidden;
}
.cal-shell__head { padding: 1.15rem 1.8rem; border-bottom: var(--hairline); display: flex; align-items: center; gap: .7rem; background: var(--bg); }
.cal-shell__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.cal-shell__title { font-size: .9rem; font-weight: 600; color: var(--slate); }
.cal-shell__body { padding: 3rem 2rem; text-align: center; min-height: 340px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.1rem; }
.cal-shell__hint { font-size: .875rem; color: var(--muted); max-width: 460px; line-height: 1.65; }
.cal-shell__frame { min-height: 640px; padding: 0; display: block; }
.cal-shell__frame iframe { width: 100%; min-height: 640px; border: 0; display: block; }
.cal-fallback { font-size: .875rem; color: var(--muted); text-align: center; margin-top: 1rem; }
.cal-fallback a { color: var(--accent-dk); text-decoration: underline; }

/* ── AKTUELLES (Wissensbereich) ─────────────────────────────── */
.post-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.7rem; }
.post {
  background: var(--white); border: var(--hairline); border-radius: var(--radius);
  padding: 2.1rem 2.3rem; box-shadow: var(--shadow-sm);
  transition: border-color .3s, box-shadow .3s;
}
.post:hover { border-color: var(--accent); box-shadow: var(--shadow-md); }
.post__meta { display: flex; align-items: center; gap: .7rem; margin-bottom: .9rem; flex-wrap: wrap; }
.post__date {
  font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent-dk); background: var(--accent-lt); border-radius: 100px; padding: .3rem .8rem;
  font-variant-numeric: tabular-nums;
}
.post__tag { font-size: .74rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.post__title { font-family: var(--font-display); font-weight: 400; font-size: 1.62rem; line-height: 1.2; color: var(--ink); margin-bottom: .85rem; letter-spacing: -.01em; }
.post__text { font-size: .96rem; color: var(--slate); line-height: 1.74; margin-bottom: 1rem; }
.post__takeaway {
  background: var(--accent-lt); border-left: 3px solid var(--accent); border-radius: var(--radius-sm);
  padding: .9rem 1.1rem; font-size: .92rem; color: var(--slate); line-height: 1.65;
}
.post__takeaway strong { color: var(--accent-dk); display: block; font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; margin-bottom: .25rem; }
.post__src { font-size: .78rem; color: var(--muted); margin-top: 1rem; }
.post__src a { color: var(--accent-dk); }
.post__src a:hover { text-decoration: underline; }
.stand-note { text-align: center; font-size: .85rem; color: var(--muted); margin-top: 2.4rem; }

/* ── UNTERSEITEN-HERO ───────────────────────────────────────── */
.page-hero { background: var(--dark); padding: calc(var(--nav-h) + 4.2rem) 0 4.2rem; position: relative; overflow: hidden; }
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(38,181,170,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38,181,170,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 100% at 20% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 100% at 20% 50%, black 20%, transparent 80%);
}
.page-hero__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; position: relative; }
.page-hero__label { font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-pale); margin-bottom: .8rem; }
.page-hero__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.1rem, 4.3vw, 3.3rem); color: var(--white); line-height: 1.08; letter-spacing: -.012em; }
.page-hero__title em { font-style: italic; color: var(--teal-pale); }
.page-hero__sub { font-size: 1.04rem; color: #94A3B8; line-height: 1.72; max-width: 660px; margin-top: 1.05rem; }

/* ── LEGAL-INHALT ───────────────────────────────────────────── */
.content { max-width: 720px; margin: 0 auto; padding: 5rem 2rem 6rem; }
.section-block { margin-bottom: 3rem; }
.section-block:last-child { margin-bottom: 0; }
.block-title {
  font-size: .6875rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-dk); margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: var(--hairline);
}
.block-body { font-size: .9375rem; line-height: 1.8; color: var(--ink); }
.block-body p { margin-bottom: .5rem; }
.block-body p:last-child { margin-bottom: 0; }
.block-body a { color: var(--accent-dk); }
.block-body a:hover { text-decoration: underline; }
.block-body ul { list-style: disc; padding-left: 1.3rem; margin-bottom: .5rem; }
.block-body li { margin-bottom: .25rem; }
.notice {
  background: var(--accent-lt); border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0; padding: 1rem 1.25rem; margin-top: 2rem;
  font-size: .875rem; color: var(--muted); line-height: 1.65;
}
.notice strong { color: var(--ink); }

/* ── DANKE-SEITEN ───────────────────────────────────────────── */
.thanks { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: calc(var(--nav-h) + 3rem) 2rem 4rem; background: var(--bg); }
.thanks__card {
  max-width: 580px; background: var(--white); border: var(--hairline); border-radius: var(--radius);
  padding: 3.1rem 2.7rem; text-align: center; box-shadow: var(--shadow-md);
}
.thanks__icon { width: 3.4rem; height: 3.4rem; border-radius: 50%; background: var(--green-lt); color: var(--green); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.4rem; }
.thanks__title { font-family: var(--font-display); font-weight: 400; font-size: 2.1rem; color: var(--ink); margin-bottom: 1rem; }
.thanks__text { font-size: .95rem; color: var(--slate); line-height: 1.72; margin-bottom: .9rem; }
.thanks__text a { color: var(--accent-dk); text-decoration: underline; }
.thanks__actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; margin-top: 1.7rem; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer { background: var(--dark); padding: 4rem 0 2rem; border-top: 1px solid rgba(38,181,170,.28); }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.9rem; }
.footer__logo { margin-bottom: .85rem; }
.footer__logo svg { height: 38px; width: auto; }
.footer__desc { font-size: .875rem; color: #94A3B8; line-height: 1.72; max-width: 310px; }
.footer__col-title { font-size: .74rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; color: #94A3B8; margin-bottom: 1rem; }
.footer__col a { display: block; font-size: .875rem; color: #CBD5E1; padding: .32rem 0; transition: color .2s; }
.footer__col a:hover { color: var(--white); }
.footer__col-note { font-size: .78rem; color: #94A3B8; margin-top: .55rem; line-height: 1.5; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.09); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer__legal { font-size: .8125rem; color: #94A3B8; }
.footer__legal a { color: #CBD5E1; transition: color .2s; }
.footer__legal a:hover { color: var(--white); }

/* ── ANIMATION ──────────────────────────────────────────────── */
@keyframes fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ── SCROLL-TOP ─────────────────────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 99;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--accent); color: var(--white); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(38,181,170,.4);
  opacity: 0; transform: translateY(10px); transition: opacity .3s, transform .3s, background .3s;
  pointer-events: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { background: var(--accent-dk); transform: translateY(-2px); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .nav__links { gap: 1.05rem; }
  .nav__links a { font-size: .86rem; }
}
@media (max-width: 1024px) {
  .hero__content { grid-template-columns: 1fr; gap: 2.8rem; }
  .hero { min-height: 0; }
  .uc-grid { grid-template-columns: 1fr 1fr; }
  .price-strip, .price-tiers, .steps, .compare, .pillars { grid-template-columns: 1fr 1fr; }
  .products__grid { grid-template-columns: 1fr; grid-template-rows: auto; row-gap: 2rem; max-width: 600px; }
  .product-card { grid-row: auto; display: flex; flex-direction: column; }
  .founder { grid-template-columns: 1fr; gap: 2.3rem; }
  .founder__photo { max-width: 400px; }
}
@media (max-width: 1140px) {
  .nav__links { display: none; }
  .nav__links.mobile-open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--white); border-bottom: var(--hairline);
    padding: 1.5rem 2rem; gap: 1rem; box-shadow: 0 8px 24px rgba(0,0,0,.1);
  }
  .nav__links.mobile-open a.active::after { display: none; }
  .nav__links.mobile-open .nav__cta { margin-left: 0; }
  .nav__burger { display: flex; }
}
@media (max-width: 768px) {
  .section { padding: 4.8rem 0; }
  .uc-grid, .price-strip, .price-tiers, .steps, .compare, .compare--two, .pillars, .fit { grid-template-columns: 1fr; }
  .problem__grid, .why__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .pricebox__list { grid-template-columns: 1fr; }
  .facts__inner { justify-content: flex-start; gap: 1rem 1.5rem; }
  .post { padding: 1.7rem 1.5rem; }
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .guarantee { flex-direction: column; gap: 1rem; padding: 1.8rem; }
  .product-card__price-row { flex-direction: column; gap: .25rem; }
  .product-card__duration { margin-left: 0; }
  .container { padding: 0 1.25rem; }
  .hero__card-top { flex-direction: column; gap: .1rem; }
  .hero__card-arrow { display: none; }
  .pull__text { font-size: 1.25rem; }
}

/* ════════════════════════════════════════════════════════════
   V10.2 · ARBEITSPAPIER-LAYER (freigegeben 10.07.2026)
   Struktur-Pass über dem Basissystem: Randspalte je Kapitel,
   Leistungsspiegel im Hero, linierte Blätter statt Karten-Boxen,
   Akzent-Diät (Teal fast nur für Interaktion), DM Mono für Vermerke.
   Boxen bleiben nur, wo etwas ein Angebot oder Werkzeug ist:
   Produktblätter, Preisspalten, Kalender, Foto.
   Farben: ausschließlich die bestehenden Tokens.
   ════════════════════════════════════════════════════════════ */
:root { --font-mono: 'DM Mono', ui-monospace, 'Cascadia Code', Consolas, monospace; --rail: 218px; --rail-gap: 4rem; }

/* ── HERO (Startseite): volle Breite + Leistungsspiegel ────── */
.hero { min-height: 0; padding: calc(var(--nav-h) + 5rem) 0 3.8rem; }
.hero__glow, .hero__glow-2 { display: none; }
.hero__content { grid-template-columns: 1fr; gap: 0; }
.hero__badge {
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .07em; text-transform: uppercase;
  border-radius: 5px; background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .2); color: #CBD5E1;
}
.hero__headline { font-size: clamp(3rem, 6.4vw, 5.3rem); letter-spacing: -.024em; line-height: 1.01; max-width: 18ch; }
.hero__headline em { color: var(--teal-pale); }
.hero__sub { font-size: 1.13rem; max-width: 58ch; }
.hero__actions { margin-bottom: 1.6rem; }
.hero__promise { margin-bottom: 3.6rem; }
.hero__promise-item::before { content: '✓'; font-family: var(--font-mono); color: var(--teal-pale); }
.hero__right { gap: 0; animation: none; }
.hero__card {
  background: none; border: none; border-top: 1px solid rgba(255, 255, 255, .22);
  border-radius: 0; padding: 1.3rem .2rem 1.2rem; backdrop-filter: none;
}
.hero__card--accent { background: none; border-top: 2px solid var(--accent); }
.hero__card--accent::before { display: none; }
.hero__card:hover { background: rgba(255, 255, 255, .035); transform: none; }
.hero__card-top { display: grid; grid-template-columns: 300px 235px 1fr; column-gap: 2.5rem; align-items: baseline; }
.hero__card-top > div { display: contents; }
.hero__card-label { font-family: var(--font-mono); font-weight: 400; font-size: .72rem; letter-spacing: .09em; margin: 0; align-self: center; }
.hero__card-val { font-size: 1.9rem; }
.hero__card-desc { margin: 0; align-self: center; }
.hero__card::after {
  content: '→'; position: absolute; right: .2rem; top: 50%; transform: translateY(-50%);
  font-family: var(--font-mono); color: #94A3B8; transition: color .2s, transform .2s;
}
.hero__card:hover::after { color: var(--teal-pale); transform: translateY(-50%) translateX(3px); }
.hero__deadline {
  border: none; border-top: 1px solid rgba(255, 255, 255, .22); border-radius: 0;
  padding: 1.2rem .2rem 0; font-family: var(--font-mono); font-size: .74rem;
}

/* ── PAGE-HERO (Unterseiten): Vermerk-Rubrik ───────────────── */
.page-hero__label { font-family: var(--font-mono); font-weight: 500; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }

/* ── RANDSPALTE: Kapitel wie im Prüfbericht ────────────────── */
.section .container:has(> .section__head) {
  display: grid; grid-template-columns: var(--rail) 1fr; column-gap: var(--rail-gap); row-gap: 0;
  background: linear-gradient(var(--rule), var(--rule)) no-repeat calc(var(--rail) + var(--rail-gap) / 2) 0 / 1px 100%;
}
.section--dark .container:has(> .section__head) {
  background-image: linear-gradient(rgba(255, 255, 255, .22), rgba(255, 255, 255, .22));
}
.section .container:has(> .section__head) > :not(.section__head) { grid-column: 2; }
.section__head { display: contents; }
.section__label {
  grid-column: 1; grid-row: 1; margin: 0; padding-top: .45rem; align-items: flex-start;
  font-family: var(--font-mono); font-weight: 500; font-size: .72rem; letter-spacing: .12em; color: var(--slate);
  display: flex; flex-direction: column; gap: .55rem; text-align: left; position: static;
}
.section__label::before {
  content: counter(kapitel, decimal-leading-zero);
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 400; line-height: 1;
  color: var(--ink); letter-spacing: 0; padding: 0 0 .35rem;
  border-bottom: 2px solid var(--ink); width: 2.6rem;
}
.section--dark .section__label { color: rgba(255, 255, 255, .66); }
.section--dark .section__label::before { color: var(--white); border-bottom-color: rgba(255, 255, 255, .6); }
.section__title { grid-column: 2; grid-row: 1; text-align: left; font-size: clamp(2.05rem, 3.8vw, 3rem); }
.section__title em { background: none; padding: 0; color: inherit; }
.section__sub { grid-column: 2; text-align: left; margin: 0 0 3rem; justify-self: start; }
.section__head--center .section__sub { margin: 0 0 3rem; }
.section__head--center { text-align: left; }
.section__foot { text-align: left; }
.section__title:last-child { margin-bottom: 3rem; }

/* ── BLÄTTER STATT BOXEN ───────────────────────────────────── */
.problem__grid { gap: 0 3.5rem; background: none; border: none; box-shadow: none; border-radius: 0; padding: 0; }
.problem__item { background: none; padding: 2.1rem 0 2rem; border-top: 1px solid var(--ink); }
.problem__quote { font-size: 1.5rem; }
.uc-card { background: none; border: none; border-radius: 0; box-shadow: none; border-top: 1px solid var(--ink); padding: 1.5rem 0 0; }
.uc-card:hover { transform: none; box-shadow: none; }
.uc-card__meta { padding-right: 3.2rem; min-height: 3.55rem; align-content: flex-start; }
.uc-tag { font-size: .62rem; padding: .24rem .6rem; letter-spacing: .04em; }
.uc-card::after {
  content: 'UC·' counter(ucnum, decimal-leading-zero);
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .06em;
  color: var(--muted); top: 1.6rem; right: .1rem; opacity: 1;
}
.why__item { background: none; border: none; border-radius: 0; border-top: 1px solid rgba(255, 255, 255, .28); padding: 1.7rem 0 0; }
.why__icon { display: none; }
.step { background: none; border: none; border-radius: 0; box-shadow: none; border-top: 1px solid var(--ink); padding: 1.6rem 0 0; }
.step:hover { transform: none; box-shadow: none; }
.step__num {
  font-family: var(--font-mono); font-size: .8rem; font-weight: 500; color: var(--slate); opacity: 1;
  border: 1px solid var(--ink); border-radius: 4px; width: 2.1rem; height: 2.1rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem;
}
.pillar { background: none; border: none; border-radius: 0; box-shadow: none; border-top: 1px solid var(--ink); padding: 1.7rem 0 0; }
.post { background: none; border: none; border-radius: 0; box-shadow: none; border-top: 1px solid var(--ink); padding: 2rem 0 0; }
.fit__col { background: none; border: none; border-radius: 0; box-shadow: none; padding: 1.4rem 0 0; }
.fit__col--yes { border-top: 2px solid var(--green); }
.fit__col--no { border-top: 2px solid var(--slate); }
.fit { gap: 3.5rem; }

/* ── AKZENT-DIÄT + MONO-DETAILS ────────────────────────────── */
.btn svg, .facts__item svg, .hero__promise-item svg, .fit__item svg,
.hero__card-arrow, .hero__deadline svg { display: none; }
.fit__col--yes .fit__item::before { content: '✓'; font-family: var(--font-mono); font-weight: 500; color: var(--green); }
.fit__col--no .fit__item::before { content: '×'; font-family: var(--font-mono); font-weight: 500; color: var(--muted); }
.facts__item { font-family: var(--font-mono); font-size: .72rem; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; color: var(--slate); }
.btn { border-radius: 6px; }
.btn-primary { background: var(--accent); box-shadow: none; }
.btn-primary:hover { background: var(--accent-dk); }
.guarantee { border: 1.5px solid var(--green); outline: 1px solid var(--green); outline-offset: 4px; border-radius: 6px; }
.guarantee__title { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .09em; font-size: .95rem; font-weight: 500; }
.pill { font-family: var(--font-mono); font-size: .7rem; font-weight: 400; letter-spacing: .05em; text-transform: uppercase; border-radius: 5px; }
.cta-band { background: var(--ink); }
.cta-band::before { display: none; }
.footer { border-top: 1px solid rgba(255, 255, 255, .14); }

/* ── MOBIL: Randspalte fällt auf eine Spalte zusammen ──────── */
@media (max-width: 900px) {
  .section .container:has(> .section__head) { display: block; background: none; }
  .section__head { display: block; margin-bottom: 2.4rem; }
  .section__label { flex-direction: row; align-items: baseline; gap: .8rem; margin-bottom: 1rem; padding-top: 0; }
  .section__label::before { font-size: 1.6rem; width: auto; padding-bottom: 2px; }
  .section__title:last-child, .section__sub { margin-bottom: 0; }
  .section__sub { margin-top: 1rem; }
  .hero__card-top { grid-template-columns: 1fr; row-gap: .3rem; }
  .hero__headline { max-width: none; }
  .problem__grid { gap: 0; }
  .fit { gap: 2.2rem; }
}

/* ── V10.2 · Verifier-Fixes (10.07.2026) ───────────────────── */
/* 1: Hero-Zeilen-Hover — a.hero__card-Basisregeln übersteuern, kein Seitwärts-Ruck, kein Teal-Balken */
.hero__card::before { display: none; }
a.hero__card:hover { background: rgba(255, 255, 255, .035); border-color: rgba(255, 255, 255, .22); transform: none; }
a.hero__card--accent:hover { border-color: var(--accent); }
/* 2: Qualifikationen auf ueber-mich sind keine Use Cases — neutrale Nummer statt UC-Stempel */
.uc-card--plain::after { content: counter(ucnum, decimal-leading-zero); }
/* 7: Puffer, damit der Pfeil nicht in den Text läuft */
.hero__card-top { padding-right: 2.2rem; }
/* 4+5: Vermerk-Kästen ins Blatt-Vokabular, Kicker-Labels durchgehend in Mono */
.uc-row--benefit, .post__takeaway { background: none; border-left: none; border-radius: 0; border-top: 1px solid var(--ink); padding: .85rem 0 0; }
.note-box, .optional-box { background: none; border: none; border-radius: 0; border-top: 1px solid var(--ink); padding: 1.4rem 0 0; }
.price-cell__label, .tier__size, .pillar__kicker, .tl-item__when, .uc-row__key,
.post__date, .post__tag, .optional-box__kicker, .block-title, .fit__title, .branch-head__src {
  font-family: var(--font-mono); font-weight: 500; letter-spacing: .08em;
}
.post__date, .post__tag { background: none; border: none; color: var(--slate); padding: 0; text-transform: uppercase; font-size: .7rem; }
.uc-row--benefit .uc-row__key, .post__takeaway strong { color: var(--ink); }

@media (max-width: 900px) {
  /* 3: Kapitelzeile mobil überall linksbündig */
  .section__head--center .section__label { justify-content: flex-start; }
  /* 6: Kopf-Fade mobil abschalten — gleiches Verhalten wie Desktop */
  .section__head.reveal { opacity: 1; transform: none; }
}

/* ── V10.2.1 · Feinschliff nach Inhaber-Review (10.07.2026) ── */
/* (2) Nav-CTA: mehr Luft im Pill */
.nav__cta { margin-left: .75rem; padding: .78rem 1.55rem; }
/* (3) Weniger Terminal-Optik: Mono bleibt Vermerk, nicht Grundton */
.hero__card-label { font-family: var(--font-body); font-weight: 600; font-size: .74rem; letter-spacing: .09em; color: #94A3B8; }
.facts__item { font-family: var(--font-body); font-size: .875rem; font-weight: 500; letter-spacing: .01em; text-transform: none; }
/* (1) Kalender: volle Kapitelbreite und mehr Höhe */
.section .container:has(> .section__head) > .cal-shell { grid-column: 1 / -1; max-width: none; margin: 0; }
.cal-shell__frame iframe { min-height: 760px; }
.section .container:has(> .section__head) > .cal-fallback { grid-column: 1 / -1; }
/* (4+5) Use-Case-Karten: Nutzen-Vermerk ans Kartenende, Quellzeile bündig */
.uc-card { display: flex; flex-direction: column; }
.uc-row--benefit { margin-top: auto; }
.uc-card__src { margin-top: 1.1rem; }
/* (5) Säulen: Kopf offen, Linie auf einer Höhe */
.pillar__head { background: none; padding: 0 0 1.15rem; }
.pillar__sub { min-height: calc(1.55em * 2); }
/* (6) Preis-Karten: Buttons einheitlich am unteren Rand */
.price-cell { display: flex; flex-direction: column; }
.price-cell .btn { margin-top: auto; align-self: flex-start; }
.price-cell__desc { margin-bottom: 1.2rem; }
/* (7) Beiträge: kein Hover-Kasten */
.post:hover { border-color: var(--ink); box-shadow: none; }
/* (8) Über-mich: Text und Foto wieder nebeneinander */
.hero__content:has(.founder__photo) { grid-template-columns: 1.05fr .9fr; gap: 4.5rem; align-items: center; }
@media (max-width: 900px) {
  .hero__content:has(.founder__photo) { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── V10.2.1b · Designer-Restbefunde (10.07.2026) ──────────── */
/* (1) Nav-CTA: Spezifität gegen .nav__links a { padding } gewinnen */
.nav__links a.nav__cta { padding: .78rem 1.55rem; }
/* (2) Gründungsidee-Zweispalter: Desktop mit Randnotiz, mobil eine Spalte */
.founder--aside { grid-template-columns: 1fr 340px; align-items: start; }
@media (max-width: 900px) { .founder--aside { grid-template-columns: 1fr; } }
/* (3) Preis-Buttons einzeilig */
.price-cell .btn { white-space: nowrap; padding-left: 1.3rem; padding-right: 1.3rem; }
/* (4) Größen-Reihe: Preiszeile auf einer Höhe */
.tier__name { min-height: 3.35em; }
/* (6) Branchenkopf: Quellvermerk immer unter dem Titel */
.branch-head { display: block; }
.branch-head__src { display: block; margin-top: .5rem; }
/* (7) Mobil: Primär-CTAs einzeilig halten */
@media (max-width: 480px) { .hero__actions .btn, .cal-shell__body .btn { padding-left: .9rem; padding-right: .9rem; } }
/* (8) Statische Zertifikats-Pills: neutral statt anfassbar-teal */
.pills .pill { border-color: var(--rule); color: var(--slate); background: var(--white); }

/* ── V10.2.2 · Zeilen-Synchronisation + Farbimpuls (10.07.2026) ─ */
/* V10.2.3 (17.07.2026): Engpass und „Was die KI tut" sind jetzt eigene
   Rasterzeilen (Wrapper .uc-card__rows aufgelöst) — Meta, Titel, Engpass,
   KI-Text, Nutzen und Quelle fluchten in jeder Reihe exakt,
   unabhängig von der Textlänge. */
.uc-grid:has(> .uc-card > .uc-row--benefit) { row-gap: 0; }
.uc-grid:has(> .uc-card > .uc-row--benefit) > .uc-card {
  display: grid; grid-template-rows: subgrid; grid-row: span 6;
  row-gap: 0; align-content: start;
}
.uc-grid:has(> .uc-card > .uc-row--benefit) > .uc-card:not(:has(> .uc-card__src)) { grid-row: span 5; }
.uc-grid:has(> .uc-card > .uc-row--benefit) .uc-card__meta { min-height: 0; }
.uc-grid:has(> .uc-card > .uc-row--benefit) > .uc-card > .uc-row:not(.uc-row--benefit) { margin-top: .9rem; }
.uc-card > .uc-row--benefit { margin-top: 1.2rem; }
.uc-card__rows { margin-top: 0; }
/* Nutzen-Vermerk als bewusster Teal-Moment — bringt Farbe auf die Use-Case-Seiten */
.uc-row--benefit { border-top: 2px solid var(--accent); }
.uc-row--benefit .uc-row__key { color: var(--accent-dk); }
/* Preis-Karten: Zahl bleibt auf einer Zeile, Zusatz einheitlich darunter */
.price-cell__val { white-space: nowrap; }
.price-cell__val em { display: block; white-space: normal; margin-top: .2rem; }
/* Produktblatt: Preis + MwSt. in Zeile 1, Laufzeit einheitlich in Zeile 2 — beide Karten gleich */
.product-card__duration { flex-basis: 100%; width: 100%; margin-top: .25rem; white-space: nowrap; }

/* ── V10.2.3 · Gutachten-Auflagen (freigegeben 10.07.2026) ──── */
/* Buttontext auf Teal: Tinte statt Weiß — Kontrast 5,68:1 statt 2,54:1 */
.btn-primary, .btn-primary:hover { color: var(--ink); }
.nav__links a.nav__cta, .nav__links a.nav__cta:hover { color: var(--ink); }

/* ── V10.2.4 · Hover-Beruhigung + Kalender direkt (10.07.2026) ── */
/* Offene Blätter und statische Karten bekommen keinen Schwebe-Kasten mehr */
.pillar:hover { border-color: var(--ink); box-shadow: none; }
.why__item:hover { background: none; border-color: rgba(255, 255, 255, .28); }
.problem__item:hover::before { background: none; }
.tier:hover, .price-cell:hover { border-color: var(--rule); box-shadow: var(--shadow-sm); transform: none; }
/* Kalender ohne Klick sichtbar */
.cal-shell__frame { display: block; }
.cal-shell__frame iframe { min-height: 780px; }

/* ── V10.2.5 · Über-mich Qualifikationen: Untertitel fluchten (12.07.2026) ─ */
/* Karten-Titel reservieren 2 Zeilen, damit die Quell-Untertitel (uc-row__key)
   in jeder Reihe auf einer Höhe stehen — unabhängig von der Titel-Länge. */
@media (min-width: 769px) {
  #qualifikationen .uc-card__title { min-height: calc(1.22em * 2); }
}
