/* ==========================================================================
   KCERT – Zertifizierung im nicht akkreditierten Bereich
   Designsystem nach dem Muster von die-ki-agentur.de:
   hell, kräftiges Blau, Poppins + Inter, kinematische Foto-Sektionen.
   Gold bleibt als Siegel-Akzent erhalten.
   ========================================================================== */

:root {
  /* Farben */
  --primary: #1D4ED8;
  --primary-light: #3B82F6;
  --primary-soft: #EFF6FF;
  --primary-dark: #1E3A8A;
  --ink: #0B1220;
  --text: #334155;
  --muted: #64748B;
  --line: #E2E8F0;
  --line-soft: #F1F5F9;
  --bg: #FFFFFF;
  --bg-soft: #F8FAFC;
  --slate: #64748B;
  --slate-soft: #F1F5F9;

  /* Maße */
  --maxw: 1180px;
  --maxw-narrow: 780px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  /* Schatten */
  --shadow-sm: 0 1px 2px rgba(11,18,32,.04), 0 1px 3px rgba(11,18,32,.06);
  --shadow: 0 4px 6px -1px rgba(11,18,32,.05), 0 10px 20px -5px rgba(11,18,32,.08);
  --shadow-lg: 0 20px 40px -12px rgba(29,78,216,.18), 0 8px 16px -8px rgba(11,18,32,.08);

  /* Typo */
  --font-head: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
/* Kein overflow-x:clip auf html/body — das propagiert auf den Viewport und
   tötet das vertikale Scrollen. Überlauf wird an der Quelle verhindert. */
body { overflow-x: hidden; }
body {
  margin: 0; font-family: var(--font-body); color: var(--text); background: var(--bg);
  line-height: 1.7; font-size: 1.03rem; -webkit-font-smoothing: antialiased;
}
p, li, td, th, h1, h2, h3, dd { overflow-wrap: break-word; }
.grid > *, .layout > * { min-width: 0; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.18;
  letter-spacing: -.022em; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
h1, h2, h3, h4 { hyphens: manual; text-wrap: balance; }
h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); margin-top: 0; }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); font-weight: 600; }
p { margin: 0 0 1.15em; text-wrap: pretty; }
a { color: var(--primary); text-decoration-thickness: 1px; text-underline-offset: 2px; }
strong { color: var(--ink); font-weight: 600; }
img { max-width: 100%; height: auto; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.narrow { max-width: var(--maxw-narrow); }
.muted { color: var(--muted); }
.center { text-align: center; }

/* Abschnitte */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-soft { background: var(--bg-soft); }
.section-gradient {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--primary-soft) 55%, #FFFFFF 100%);
}
.eyebrow {
  text-transform: uppercase; letter-spacing: .1em; font-size: .76rem; font-weight: 700;
  color: var(--primary); margin: 0 0 .75rem; font-family: var(--font-body);
}
.lead { font-size: clamp(1.08rem, 1.6vw, 1.22rem); color: var(--muted); max-width: 64ch; }
.section-head { max-width: 780px; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head.center { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn, .btn-ghost {
  display: inline-flex; align-items: center; gap: .55rem; text-decoration: none;
  padding: .92rem 1.7rem; border-radius: 12px; font-weight: 600; font-size: 1rem;
  transition: transform .18s cubic-bezier(.34,1.4,.64,1), box-shadow .18s, background .18s;
  will-change: transform;
}
.btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff; box-shadow: 0 4px 14px rgba(29,78,216,.28);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(29,78,216,.34); }
.btn:active { transform: translateY(0); }
.btn-ghost { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

/* Karten */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .25s cubic-bezier(.34,1.2,.64,1), box-shadow .25s, border-color .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #CBD5E1; }
.grid { display: grid; gap: 1.3rem; }
.g2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.g3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.g4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* Platzhalter-Chips (Werte, die vor Livegang bestätigt werden) */
.tbd {
  display: inline-block; background: var(--primary-soft); border: 1px dashed var(--primary);
  border-radius: 6px; padding: 0 6px; font-weight: 600; color: var(--primary-dark);
}

/* ==========================================================================
   Header / Mega-Navigation
   ========================================================================== */

.skip { position: absolute; left: -9999px; top: 0; background: var(--primary); color: #fff;
  padding: .8rem 1.2rem; z-index: 100; border-radius: 0 0 8px 0; }
.skip:focus { left: 0; }

#kopf { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(12px); -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent; transition: border-color .25s, box-shadow .25s; }
#kopf.scrolled { border-bottom-color: var(--line); box-shadow: 0 2px 12px rgba(11,18,32,.05); }
.bar { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding-top: .8rem; padding-bottom: .8rem; }
.logo { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; }
.logo img { flex: 0 0 auto; }
.logo-txt { font-family: var(--font-head); font-weight: 700; color: var(--ink);
  font-size: 1.15rem; letter-spacing: -.01em; line-height: 1.15; }
.logo-txt b { color: var(--primary); font-weight: 700; }
.logo-txt small { display: block; font-family: var(--font-body); font-weight: 600;
  font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
#kopf nav { font-size: .96rem; }
.nav-list { list-style: none; margin: 0; padding: 0; display: flex; gap: .3rem; align-items: center; }
.nav-top { text-decoration: none; color: var(--text); font-weight: 500; position: relative;
  display: inline-flex; align-items: center; gap: .35rem; padding: .5rem .75rem; border-radius: 8px;
  background: none; border: 0; font: inherit; cursor: pointer; }
.nav-top:hover, .has-mega.open > .nav-top { color: var(--ink); background: var(--bg-soft); }
.caret { width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-1px,-1px); opacity: .55; transition: transform .2s; }
.has-mega.open > .nav-top .caret { transform: rotate(-135deg); opacity: .9; }

/* Mega-Panel */
.has-mega { position: static; }
/* Unsichtbare Brücke unter dem Trigger: schließt den Spalt zum Panel. */
.has-mega > .nav-top::before { content: ''; position: absolute; left: 0; right: 0; top: 100%;
  height: 16px; }
.mega { position: absolute; left: 0; right: 0; top: 100%; z-index: 60;
  background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 48px -24px rgba(11,18,32,.25);
  opacity: 0; visibility: hidden; transform: translateY(-6px); transition: none; }
.mega.open { opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity .16s ease, transform .16s ease; }
.mega-inner { padding: 1.6rem 22px 1.8rem; }
.mega-cols { display: grid; gap: .5rem 1.4rem; list-style: none; margin: 0; padding: 0; }
.mega-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.mega-cols li a { display: flex; gap: .65rem; align-items: center;
  padding: .45rem .5rem; border-radius: 9px; text-decoration: none; color: var(--ink);
  transition: background .15s; }
.mega-cols li a:hover { background: var(--primary-soft); }
.mega-ico { flex: 0 0 34px; width: 34px; height: 34px; border-radius: 9px; display: grid;
  place-items: center; color: var(--primary); background: var(--primary-soft);
  transition: background .15s, color .15s; }
.mega-cols li a:hover .mega-ico { background: var(--primary); color: #fff; }
.mega-txt { display: flex; flex-direction: column; min-width: 0; }
.mega-txt b { font-weight: 600; font-size: .92rem; line-height: 1.25; }
.mega-txt em { font-style: normal; color: var(--muted); font-size: .8rem; line-height: 1.3;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mega-overview { display: inline-block; margin-top: 1.2rem; font-weight: 600;
  color: var(--primary); text-decoration: none; }
.mega-overview:hover { text-decoration: underline; }

.nav-cta { background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff !important; padding: .6rem 1.2rem; border-radius: 10px; font-weight: 600;
  margin-left: .5rem; text-decoration: none;
  box-shadow: 0 3px 10px rgba(29,78,216,.25); transition: transform .18s, box-shadow .18s; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(29,78,216,.3); }
.burger { display: none; background: none; border: 0; cursor: pointer; padding: .4rem;
  min-width: 44px; min-height: 44px; align-items: center; justify-content: center;
  flex-direction: column; gap: 5px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform .25s, opacity .25s; }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 940px) {
  .burger { display: flex; }
  #kopf nav { position: absolute; left: 0; right: 0; top: 100%; background: #fff;
    border-bottom: 1px solid var(--line); padding: .5rem 22px 1.4rem; display: none;
    max-height: calc(100dvh - 68px); overflow-y: auto; }
  #kopf nav.open { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-top { justify-content: space-between; padding: .95rem .2rem; border-radius: 0;
    border-bottom: 1px solid var(--line-soft); width: 100%; }
  .nav-top:hover { background: none; }
  .has-mega > .nav-top::before { content: none; }
  .mega { position: static; box-shadow: none; border: 0; opacity: 1; visibility: visible;
    transform: none; transition: none; display: none; }
  .mega.open { display: block; }
  .mega-inner { padding: .6rem 0 1.2rem; }
  .mega-cols, .mega-cols-3 { grid-template-columns: 1fr; gap: .3rem; }
  .mega-txt em { white-space: normal; overflow: visible; }
  .nav-cta { margin: 1rem 0 0; text-align: center; justify-content: center; display: block; }
}

/* ==========================================================================
   Kinematische Bausteine (Vollbild-Bilder, dunkle Akzente)
   ========================================================================== */

.bleed { position: relative; width: 100vw; margin-left: calc(50% - 50vw); overflow: hidden; }

.cine { position: relative; min-height: clamp(460px, 62vh, 680px); display: grid;
  align-items: center; justify-items: stretch; background: var(--ink); isolation: isolate; }
.cine > .cine-img { position: absolute; inset: 0; z-index: -2; }
.cine > .cine-img img { width: 100%; height: 100%; object-fit: cover;
  object-position: 78% center; border-radius: 0; box-shadow: none; }
.cine::after { content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(95deg, rgba(11,18,32,.96) 0%, rgba(11,18,32,.92) 34%,
              rgba(11,18,32,.72) 52%, rgba(11,18,32,.28) 74%, rgba(11,18,32,.08) 100%); }
@media (max-width: 900px) {
  .cine::after { background: linear-gradient(180deg, rgba(11,18,32,.82) 0%,
                 rgba(11,18,32,.92) 55%, rgba(11,18,32,.96) 100%); }
  .cine > .cine-img img { object-position: 62% center; }
}
.cine-inner { width: 100%; padding: clamp(3rem, 7vw, 5.5rem) 22px; }
.cine h1, .cine h2, .cine h3 { color: #fff; }
.cine p { color: #CBD5E1; }
.cine .eyebrow { color: #7DA9FF; }
.cine .lead { color: #E2E8F0; }
.cine .btn-ghost { background: rgba(255,255,255,.08); color: #fff;
  border-color: rgba(255,255,255,.28); backdrop-filter: blur(6px); }
.cine .btn-ghost:hover { background: rgba(255,255,255,.16); border-color: #fff; color: #fff; }
.cine .tbd { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.45); color: #fff; }
.cine h1 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); letter-spacing: -.028em; }

/* Vollbild-Bildband als Trenner */
.band { position: relative; height: clamp(240px, 34vh, 400px); overflow: hidden; }
.band img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; box-shadow: none; }
.band::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,18,32,.55), rgba(11,18,32,.15)); }
.band-caption { position: absolute; inset: auto 0 0 0; padding: 1.6rem 0; z-index: 1; }
.band-caption .wrap { width: 100%; }
.band-caption p { color: #fff; margin: 0; font-family: var(--font-head);
  font-weight: 600; font-size: clamp(1.05rem, 2vw, 1.5rem); max-width: 34ch;
  text-shadow: 0 2px 12px rgba(0,0,0,.4); }

@media (prefers-reduced-motion: no-preference) {
  .kenburns img { animation: kb 22s ease-out both alternate infinite; }
  @keyframes kb { from { transform: scale(1.04) translateY(0); }
                  to   { transform: scale(1.12) translateY(-1.5%); } }
}

/* Trust-Häkchenliste (unter dem Hero) */
.trust { list-style: none; margin: 1.8rem 0 0; padding: 0; display: flex;
  flex-wrap: wrap; gap: .5rem 1.6rem; font-size: .95rem; }
.trust li { display: inline-flex; align-items: center; gap: .5rem; color: #CBD5E1; }
.trust li::before { content: '✓'; color: #7DA9FF; font-weight: 700; }

/* Zahlen hervorheben */
.metric-value {
  font-family: var(--font-head); font-weight: 700; color: var(--primary);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem); line-height: 1.05; letter-spacing: -.03em;
}
.metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.3rem; }
.metrics .metric { text-align: center; padding: 1.4rem 1rem; }
.metric-label { color: var(--ink); font-weight: 600; margin-top: .3rem; }
.metric-note { color: var(--muted); font-size: .85rem; }

/* Glow-Hintergründe */
.glow { position: relative; overflow: hidden; }
.glow::before {
  content: ''; position: absolute; inset: -20% -10% auto -10%; height: 70%;
  background: radial-gradient(60% 60% at 30% 30%, rgba(59,130,246,.16), transparent 70%),
              radial-gradient(50% 50% at 80% 20%, rgba(29,78,216,.10), transparent 70%);
  pointer-events: none; z-index: -1; filter: blur(8px);
}

/* ==========================================================================
   Inhalts-Bausteine
   ========================================================================== */

/* Passt / passt nicht */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.fit-card { padding: 2rem 1.8rem; }
.fit-card.good { border-top: 4px solid var(--primary); }
.fit-card.bad { border-top: 4px solid var(--slate); }
.fit-card h3 { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.1rem; }
.fit-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; }
.fit-card li { display: flex; gap: .7rem; align-items: flex-start; font-size: .97rem; }
.fit-card li svg { width: 20px; height: 20px; flex: 0 0 auto; margin-top: 4px; }
.fit-card li b { color: var(--ink); }

/* Normen-Karten mit Bild */
.norm-card { display: flex; flex-direction: column; padding: 0; overflow: hidden;
  text-decoration: none; color: var(--text); }
.norm-thumb { display: block; aspect-ratio: 16/9; overflow: hidden; }
.norm-thumb picture { display: block; width: 100%; height: 100%; }
.norm-thumb img { width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s cubic-bezier(.22,.8,.3,1); }
.norm-card:hover .norm-thumb img { transform: scale(1.05); }
.norm-body { padding: 1.3rem 1.5rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.norm-num { font-family: var(--font-head); font-weight: 700; color: var(--primary);
  font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; }
.norm-card h3 { margin: .3rem 0 .4rem; font-size: 1.12rem; }
.norm-card p { font-size: .93rem; color: var(--muted); flex: 1; margin-bottom: .9rem; }
.norm-link { font-weight: 600; font-size: .93rem; color: var(--primary);
  display: inline-flex; align-items: center; gap: .4rem; }
.norm-link svg { width: 16px; height: 16px; transition: transform .2s; }
.norm-card:hover .norm-link svg { transform: translateX(4px); }
.norm-tag { display: inline-block; align-self: flex-start; font-size: .68rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; background: var(--primary-soft);
  color: var(--primary); border-radius: 999px; padding: .2rem .7rem; margin-bottom: .5rem; }

/* Ablauf / Schritte */
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.3rem; }
.steps li { counter-increment: step; position: relative; padding: 1.5rem 1.3rem; }
.steps .num { width: 44px; height: 44px; border-radius: 12px; display: grid;
  place-items: center; font-family: var(--font-head); font-weight: 700;
  background: var(--primary-soft); color: var(--primary); margin-bottom: .9rem; }
.steps .num::before { content: counter(step, decimal-leading-zero); }
.steps h3 { font-size: 1.02rem; margin-bottom: .35rem; }
.steps p { font-size: .88rem; color: var(--muted); margin: 0 0 .6rem; }
.steps .dur { display: inline-block; font-size: .72rem; font-weight: 600;
  color: var(--primary); background: var(--primary-soft); padding: .15rem .7rem;
  border-radius: 999px; }

/* Tabellen (Vergleich) */
.tablewrap {
  overflow-x: auto; margin: 1.6rem 0; border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background:
    linear-gradient(to right, #fff 30%, rgba(255,255,255,0)) left center,
    linear-gradient(to left,  #fff 30%, rgba(255,255,255,0)) right center,
    radial-gradient(farthest-side at 0    50%, rgba(15,23,42,.18), transparent) left center,
    radial-gradient(farthest-side at 100% 50%, rgba(15,23,42,.18), transparent) right center;
  background-repeat: no-repeat;
  background-size: 34px 100%, 34px 100%, 14px 100%, 14px 100%;
  background-attachment: local, local, scroll, scroll;
}
table { border-collapse: collapse; width: 100%; min-width: 640px; font-size: .96rem; }
th, td { text-align: left; padding: .85rem 1rem; border-bottom: 1px solid var(--line);
  vertical-align: top; }
th { background: var(--bg-soft); font-weight: 600; color: var(--ink);
  font-family: var(--font-head); }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: var(--primary-soft); }
.compare thead th { background: var(--ink); color: #fff; }
.compare thead th:nth-child(2) { background: var(--primary); }
.compare tbody th { width: 210px; background: var(--bg-soft); font-family: var(--font-body); }
.compare td:nth-child(2) { background: var(--primary-soft); }
.compare td small, .compare th small { color: var(--muted); display: block; margin-top: .2rem;
  font-size: .82rem; font-weight: 400; }
.th-flag { display: inline-block; font-size: .64rem; letter-spacing: .08em;
  text-transform: uppercase; background: #fff; color: var(--primary); border-radius: 999px;
  padding: .15rem .6rem; margin-left: .5rem; vertical-align: middle; }

/* Preise */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem;
  align-items: stretch; }
.price-card { display: flex; flex-direction: column; position: relative; padding: 2rem 1.8rem; }
.price-card.featured { border: 2px solid var(--primary); box-shadow: var(--shadow-lg); }
.price-flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #fff;
  font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem 1rem; border-radius: 999px; white-space: nowrap; }
.price-card h3 { font-size: 1.12rem; margin-bottom: .2rem; }
.price-card .for { font-size: .86rem; color: var(--muted); margin: 0 0 1.2rem; }
.price-num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700;
  color: var(--ink); line-height: 1.1; }
.price-num small { font-size: .85rem; font-weight: 500; color: var(--muted); }
.price-sub { font-size: .82rem; color: var(--muted); margin: .3rem 0 0; }
.price-card ul { list-style: none; margin: 1.3rem 0 1.6rem; padding: 0; display: grid;
  gap: .6rem; flex: 1; }
.price-card li { display: flex; gap: .55rem; font-size: .92rem; align-items: flex-start; }
.price-card li::before { content: '✓'; color: var(--primary); font-weight: 700; flex: 0 0 auto; }
.price-card .btn, .price-card .btn-ghost { justify-content: center; }
.price-footnote { text-align: center; margin-top: 1.8rem; font-size: .86rem; color: var(--muted); }

/* Über / Inhaber */
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center; }
.about-grid > * { min-width: 0; }
.about-points { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: .8rem; }
.about-points li { display: flex; gap: .7rem; align-items: flex-start; font-size: .97rem; }
.about-points li::before { content: '✓'; color: var(--primary); font-weight: 700; margin-top: 1px; }
.about-points b { color: var(--ink); }
.owner-figure { position: relative; }
.owner-figure img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.owner-figure figcaption { display: flex; align-items: center; gap: .8rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); padding: .8rem 1.1rem; position: absolute;
  left: 1.2rem; bottom: 1.2rem; right: auto; }
.owner-figure figcaption img { width: 40px; height: 40px; border-radius: 0; box-shadow: none; }
.owner-figcap b { display: block; color: var(--ink); font-family: var(--font-head);
  font-size: .95rem; line-height: 1.2; }
.owner-figcap span { color: var(--muted); font-size: .78rem; }
.owner-contact { margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .6rem 1.6rem;
  font-size: .95rem; }
.owner-contact a { display: inline-flex; gap: .5rem; align-items: center; font-weight: 500;
  text-decoration: none; }
.owner-contact svg { width: 17px; height: 17px; }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: .8rem; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: 1.1rem 1.4rem; background: none; border: none; cursor: pointer;
  font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--ink);
  text-align: left; }
.faq-q svg { width: 20px; height: 20px; flex: 0 0 auto; transition: transform .25s;
  color: var(--primary); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 1.4rem 1.2rem; font-size: .95rem; color: var(--muted); }
.faq-a-inner b { color: var(--ink); }

/* CTA im cine-Stil */
.cta-cine { max-width: 640px; }
.cta-contact-row { display: flex; flex-wrap: wrap; gap: .6rem 1.8rem; margin-top: 1.8rem;
  font-size: .95rem; }
.cta-contact-row a { color: #fff; font-weight: 500; display: inline-flex; gap: .55rem;
  align-items: center; text-decoration: none; }
.cta-contact-row svg { width: 18px; height: 18px; }

/* ==========================================================================
   Unterseiten (Norm-Detail, Rechtliches)
   ========================================================================== */

.subhero { position: relative; min-height: clamp(340px, 44vh, 480px); }
.breadcrumb { font-size: .84rem; color: #94A3B8; margin: 0 0 1.2rem; display: flex;
  gap: .5rem; align-items: center; flex-wrap: wrap; }
.breadcrumb a { color: #CBD5E1; text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.subhero .breadcrumb { position: relative; }

.facts-strip { margin-top: -3.2rem; position: relative; z-index: 2; }
.facts-strip .card { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem 1.6rem; padding: 1.4rem 1.8rem; }
.facts-strip dl { margin: 0; }
.facts-strip dt { font-size: .76rem; text-transform: uppercase; letter-spacing: .07em;
  color: var(--muted); font-weight: 600; }
.facts-strip dd { margin: .15rem 0 0; font-weight: 600; color: var(--ink); font-size: .97rem; }

.benefit-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem;
  max-width: 760px; }
.benefit-list li { display: flex; gap: .9rem; align-items: flex-start; }
.benefit-list svg { width: 24px; height: 24px; flex: 0 0 auto; margin-top: 3px; }
.benefit-list b { color: var(--ink); }
.benefit-list p { font-size: .95rem; color: var(--muted); margin: 0; }

.content-card { border-left: 4px solid var(--primary); }
.content-card h3 { font-size: 1.02rem; margin-bottom: .5rem; }
.content-card h3 small { color: var(--primary); font-weight: 700; font-size: .72rem;
  display: block; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .2rem; }
.content-card p { font-size: .92rem; color: var(--muted); margin: 0; }

.callout { margin: 1.8rem 0; padding: 1.05rem 1.3rem; border: 1px solid; border-left-width: 4px;
  border-radius: 12px; background: #fff; }
.callout > :first-child { margin-top: 0; }
.callout > :last-child { margin-bottom: 0; }
.callout .c-t { font-family: var(--font-head); font-weight: 700; color: var(--ink);
  margin-bottom: .35rem; }
.callout-info { border-color: color-mix(in srgb, var(--primary) 30%, var(--line));
  background: var(--primary-soft); }

/* Rechtsseiten */
.legal-content { max-width: 820px; }
.legal-content h2 { font-size: 1.28rem; margin: 2.6rem 0 .7rem; }
.legal-content p, .legal-content address, .legal-content li { color: var(--muted);
  font-style: normal; font-size: .97rem; }
.legal-content ul { margin: 0 0 1rem 1.2rem; padding: 0; }
.legal-content b, .legal-content strong { color: var(--ink); }
.legal-content address { line-height: 1.8; margin-bottom: 1rem; }

/* ==========================================================================
   Footer (hell wie die-ki-agentur)
   ========================================================================== */

footer.site { border-top: 1px solid var(--line); margin-top: 5rem; padding: 3rem 0 1.5rem;
  background: var(--bg-soft); font-size: .93rem; }
footer.site.flush { margin-top: 0; }
.fgrid { display: grid; gap: 2rem; grid-template-columns: 1.5fr repeat(3, 1fr); }
@media (max-width: 900px) { .fgrid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); } }
.fbrand p { color: var(--muted); max-width: 34ch; margin: .8rem 0; }
.fgrid strong { display: block; margin-bottom: .7rem; color: var(--ink);
  font-family: var(--font-head); }
.fgrid > div > a { display: block; color: var(--muted); text-decoration: none;
  margin-bottom: .4rem; transition: color .2s; }
.fgrid > div > a:hover { color: var(--primary); }
.flegal { border-top: 1px solid var(--line); margin-top: 2.2rem; padding-top: 1.2rem;
  color: var(--muted); display: flex; justify-content: space-between; gap: 1rem;
  flex-wrap: wrap; font-size: .87rem; }
.flegal p { margin: 0; }
.flegal a { color: var(--muted); }
.ai-hint { font-size: .82rem; }

/* ==========================================================================
   Animation: Einblenden beim Scrollen (JS setzt .visible)
   ========================================================================== */

@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px);
    transition: opacity .7s cubic-bezier(.22,.8,.3,1), transform .7s cubic-bezier(.22,.8,.3,1); }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal-d1 { transition-delay: .08s; }
  .reveal-d2 { transition-delay: .16s; }
  .reveal-d3 { transition-delay: .24s; }
  .reveal-d4 { transition-delay: .32s; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1020px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .owner-figure { max-width: 480px; }
}
@media (max-width: 760px) {
  .fit-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
}
