/* ============================================================
   SENTRUST — Design System «Digital Trust»
   Sectigo-inspiriert: Forest Teal · Spearmint · Sky · Coral
   Urbanist (Headings) · DM Sans (Body)
   ============================================================ */

:root {
  /* Farbpalette (Namen aus v1 beibehalten — Werte neu gemappt) */
  --navy-900: #041c2c;   /* Dark Navy — Footer, tiefste Fläche */
  --navy-800: #01333a;   /* Forest 800 */
  --navy-700: #014149;   /* Forest 700 — dunkle Sektionen */
  --navy-600: #015258;   /* Forest 600 — Headings */
  --slate-500: #525252;  /* Body-Text sekundär */
  --slate-400: #676767;
  --slate-300: #b2cbd2;  /* Sky 300 — Text auf dunklen Flächen */
  --slate-200: #d6d6d6;  /* Borders */
  --slate-100: #f0f5f7;  /* Sky 100 — helle Füllflächen */
  --paper: #ffffff;
  --white: #ffffff;
  --teal-500: #06dfc7;   /* Spearmint — Akzent, CTA-Border */
  --teal-600: #059e8e;   /* Spearmint 700 */
  --teal-100: #e6faf7;   /* Spearmint 100 */
  --teal-800: #016e77;
  --coral-500: #ff9479;
  --coral-600: #ff7f5e;
  --coral-100: #fff5f2;
  --coral-800: #b3461c;
  --tan-200: #f8f7f2;    /* warmes Off-White */
  --tan-800: #333132;    /* Body-Text primär */
  --sky-900: #1a4855;
  --amber: #f5a623;
  --red: #a30015;
  --green: #1a8f95;

  /* Typografie */
  --font-head: "Urbanist", "DM Sans", -apple-system, sans-serif;
  --font-sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* Layout */
  --maxw: 1160px;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 12px 36px rgba(4, 28, 44, .08);
  --shadow-sm: 0 2px 10px rgba(4, 28, 44, .05);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font-sans);
  color: var(--tan-800);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.16; letter-spacing: -0.01em; font-weight: 700; color: var(--navy-600); }
h1 { font-size: clamp(2.2rem, 4.6vw, 3.5rem); }
h2 { font-size: clamp(1.65rem, 3vw, 2.35rem); }
h3 { font-size: 1.25rem; }
p  { color: var(--slate-500); }
a  { color: var(--teal-800); text-decoration: none; }
a:hover { text-decoration: underline; }
strong { color: var(--navy-600); }
img, svg { max-width: 100%; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { padding: 92px 0; }
.section-tight { padding: 56px 0; }

/* Kicker / Eyebrow */
.kicker {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal-800);
  margin-bottom: 14px;
}
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head p { margin-top: 14px; font-size: 1.06rem; }
.center { text-align: center; }
.center.section-head { margin-left: auto; margin-right: auto; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #ebebeb;
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 1.24rem; color: var(--navy-900); letter-spacing: -0.01em; text-decoration: none; }
.logo:hover { text-decoration: none; }
.logo-mark {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  display: grid; place-items: center; color: var(--navy-900); font-size: 1rem; font-weight: 800;
}
.logo em { font-style: normal; color: var(--teal-600); }
.nav-links { display: flex; gap: 28px; align-items: center; list-style: none; }
.nav-links a { color: var(--tan-800); font-weight: 500; font-size: .95rem; }
.nav-links a:hover, .nav-links a.active { color: var(--navy-600); text-decoration: none; }
.nav-cta { margin-left: 8px; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--navy-600); margin: 5px 0; border-radius: 2px; }

/* ---------- Buttons (Sectigo-Pills) ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600; font-size: .96rem; cursor: pointer;
  border: 1.5px solid transparent; transition: all .18s ease; text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--white); color: var(--navy-900); border-color: var(--teal-500); }
.btn-primary:hover { background: var(--teal-100); border-color: var(--teal-600); }
.btn-secondary { background: transparent; color: var(--navy-600); border-color: var(--slate-200); }
.btn-secondary:hover { border-color: var(--navy-600); }
.btn-dark { background: var(--navy-900); color: var(--white); border-color: var(--navy-900); }
.btn-dark:hover { background: var(--navy-700); border-color: var(--navy-700); }
.btn-lg { padding: 16px 36px; font-size: 1.02rem; }
/* Auf dunklen Flächen bleibt btn-primary als weisse Pill mit Spearmint-Border wirksam */
.dark .btn-secondary, .hero .btn-secondary { color: inherit; }
.dark .btn-secondary { color: var(--white); border-color: rgba(255, 255, 255, .35); }
.dark .btn-secondary:hover { border-color: var(--teal-500); color: var(--teal-500); }

/* ---------- Hero (hell, Sectigo-Stil) ---------- */
.hero {
  background:
    radial-gradient(900px 480px at 85% -20%, rgba(6, 223, 199, .12), transparent 60%),
    linear-gradient(180deg, var(--tan-200) 0%, var(--white) 100%);
  color: var(--tan-800);
  padding: 104px 0 88px;
  border-bottom: 1px solid #ebebeb;
}
.hero h1 { color: var(--navy-600); max-width: 820px; font-weight: 700; }
.hero h1 em { font-style: normal; color: var(--teal-600); }
.hero p.lede { color: var(--slate-500); font-size: 1.18rem; max-width: 640px; margin: 22px 0 36px; }
.hero .kicker { color: var(--teal-800); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; margin-top: 64px; flex-wrap: wrap; }
.hero-stat b { display: block; font-family: var(--font-head); font-size: 2.2rem; color: var(--navy-600); letter-spacing: -0.01em; }
.hero-stat span { color: var(--slate-400); font-size: .9rem; }

/* Dunkle Sektion (Forest) */
.dark { background: var(--navy-700); color: var(--white); }
.dark h2, .dark h3 { color: var(--white); }
.dark p { color: var(--slate-300); }
.dark .kicker { color: var(--teal-500); }
.dark strong { color: var(--white); }

/* ---------- Cards & Grids ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: var(--white); border: 1px solid var(--slate-200);
  border-radius: var(--radius); padding: 32px; box-shadow: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.card:hover { border-color: var(--teal-500); box-shadow: var(--shadow-sm); }
.card h3 { margin-bottom: 10px; }
.card .card-icon {
  width: 46px; height: 46px; border-radius: var(--radius-sm); background: var(--teal-500);
  display: grid; place-items: center; margin-bottom: 18px; font-size: 1.3rem; color: var(--navy-900);
}
.card-dark { background: var(--navy-800); border-color: rgba(255, 255, 255, .12); }
.card-dark:hover { border-color: var(--teal-500); }
.card-dark h3 { color: var(--white); }
.card-dark p { color: var(--slate-300); }
.stat-badge { display: inline-block; margin-top: 14px; padding: 5px 12px; background: var(--teal-100); color: var(--teal-800); border-radius: 999px; font-weight: 700; font-size: .85rem; }

/* ---------- Kreismodell (Trust-Zyklus) ---------- */
.cycle-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.cycle-svg-wrap { position: relative; max-width: 520px; margin: 0 auto; width: 100%; }
.cycle-svg-wrap svg { width: 100%; height: auto; display: block; }
.cycle-seg { cursor: pointer; transition: opacity .2s ease, filter .2s ease; opacity: .42; }
.cycle-seg:hover { opacity: .8; }
.cycle-seg.active { opacity: 1; filter: drop-shadow(0 0 14px rgba(6, 223, 199, .5)); }
.cycle-num { font-family: var(--font-mono); font-size: 15px; font-weight: 700; fill: #fff; pointer-events: none; }
.cycle-center-label { fill: #fff; font-family: var(--font-head); font-weight: 800; }
.cycle-panel { min-height: 300px; }
.cycle-panel .phase-tag {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono);
  font-size: .8rem; font-weight: 700; color: var(--teal-500); letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 12px;
}
.cycle-panel h3 { font-size: 1.55rem; margin-bottom: 14px; }
.cycle-panel ul { margin: 18px 0 0 0; list-style: none; }
.cycle-panel ul li { padding: 7px 0 7px 30px; position: relative; color: var(--slate-300); }
.cycle-panel ul li::before {
  content: "✓"; position: absolute; left: 0; top: 7px;
  color: var(--teal-500); font-weight: 700;
}
.cycle-nav { display: flex; gap: 10px; margin-top: 26px; }
.cycle-nav button {
  width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid rgba(255, 255, 255, .3);
  background: transparent; color: var(--white); font-size: 1.1rem; cursor: pointer; transition: all .15s;
}
.cycle-nav button:hover { border-color: var(--teal-500); color: var(--teal-500); }
.cycle-dots { display: flex; gap: 8px; align-items: center; margin-left: 10px; }
.cycle-dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, .25); transition: all .2s; }
.cycle-dots i.on { background: var(--teal-500); width: 22px; border-radius: 999px; }

/* ---------- Prozess-Schritte (linear) ---------- */
.steps { counter-reset: step; display: grid; gap: 22px; }
.step {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 22px; align-items: start;
  background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 28px 30px;
}
.dark .step { background: var(--navy-800); border-color: rgba(255, 255, 255, .12); }
.dark .step p { color: var(--slate-300); }
.step-num {
  counter-increment: step;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--teal-500); color: var(--navy-900);
  display: grid; place-items: center; font-weight: 800; font-size: 1.25rem; font-family: var(--font-head);
}
.step-num::before { content: counter(step); }
.step h3 { margin-bottom: 6px; }
.step .step-days { font-family: var(--font-mono); font-size: .82rem; color: var(--slate-400); background: var(--slate-100); padding: 6px 12px; border-radius: 999px; white-space: nowrap; }
.dark .step .step-days { background: rgba(255, 255, 255, .08); color: var(--slate-300); }
.step .step-why { margin-top: 10px; padding: 12px 16px; background: var(--teal-100); border-left: 3px solid var(--teal-500); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: .93rem; }
.step .step-why, .step .step-why p { color: var(--sky-900); }
.dark .step .step-why { background: rgba(6, 223, 199, .08); }
.dark .step .step-why, .dark .step .step-why b { color: var(--teal-100); }
.step .step-why b { color: var(--navy-600); }

/* ---------- Code-Blöcke ---------- */
.codeblock {
  background: var(--navy-900); border-radius: var(--radius-sm);
  border: 1px solid var(--navy-600);
  font-family: var(--font-mono); font-size: .84rem; line-height: 1.7;
  color: #e6f2f3; overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
}
.codeblock .code-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 16px; border-bottom: 1px solid var(--navy-600);
  font-size: .74rem; color: #7fa9b4; letter-spacing: .06em; text-transform: uppercase;
}
.codeblock pre { padding: 16px 18px; white-space: pre; }
.codeblock .c-key { color: var(--teal-500); }
.codeblock .c-val { color: var(--coral-500); }
.codeblock .c-com { color: #6690a0; }

/* ---------- Tabellen ---------- */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); border: 1px solid var(--slate-200); box-shadow: none; background: var(--white); }
table { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 640px; }
th { background: var(--navy-600); color: var(--white); text-align: left; padding: 14px 18px; font-family: var(--font-head); font-weight: 600; white-space: nowrap; }
td { padding: 13px 18px; border-top: 1px solid #ebebeb; color: var(--slate-500); vertical-align: top; }
td b, td strong { color: var(--navy-600); }
tr:nth-child(even) td { background: var(--tan-200); }
.td-yes { color: var(--green); font-weight: 700; }
.td-no { color: var(--slate-400); }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price-card {
  background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius);
  padding: 36px 32px; display: flex; flex-direction: column; position: relative;
}
.price-card.featured { border: 2px solid var(--teal-500); box-shadow: 0 16px 48px rgba(6, 223, 199, .16); }
.price-flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--teal-500); color: var(--navy-900); font-weight: 700; font-size: .78rem;
  padding: 5px 16px; border-radius: 999px; letter-spacing: .05em; white-space: nowrap;
}
.price-card .plan-for { font-size: .85rem; color: var(--slate-400); margin-bottom: 18px; min-height: 44px; }
.price-line { margin: 8px 0 2px; }
.price-line b { font-family: var(--font-head); font-size: 2rem; letter-spacing: -0.01em; color: var(--navy-600); }
.price-line span { color: var(--slate-400); font-size: .9rem; }
.price-once { font-size: .9rem; color: var(--slate-500); margin-bottom: 20px; }
.price-once b { color: var(--navy-600); }
.price-card ul { list-style: none; margin: 20px 0 28px; flex: 1; }
.price-card ul li { padding: 8px 0 8px 28px; position: relative; font-size: .93rem; color: var(--slate-500); border-bottom: 1px dashed #ebebeb; }
.price-card ul li:last-child { border-bottom: none; }
.price-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--teal-600); font-weight: 700; }
.price-card ul li.na { opacity: .45; }
.price-card ul li.na::before { content: "—"; color: var(--slate-300); }
.cost-split { display: flex; gap: 8px; margin: 14px 0 6px; }
.cost-split span { font-size: .72rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; letter-spacing: .04em; }
.tag-once { background: var(--slate-100); color: var(--sky-900); }
.tag-recur { background: var(--teal-100); color: var(--teal-800); }
.tag-cert { background: var(--coral-100); color: var(--coral-800); }

/* ---------- FAQ / Accordion ---------- */
details.faq {
  background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius-sm);
  padding: 0; margin-bottom: 12px; overflow: hidden;
}
details.faq summary {
  cursor: pointer; padding: 18px 22px; font-weight: 600; color: var(--navy-600);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--teal-600); flex-shrink: 0; }
details.faq[open] summary::after { content: "–"; }
details.faq .faq-body { padding: 0 22px 20px; color: var(--slate-500); }

/* ---------- Formulare ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 600; font-size: .88rem; color: var(--navy-600); }
.form-field label span { color: var(--red); }
.form-field input, .form-field select, .form-field textarea {
  padding: 13px 16px; border: 1px solid var(--slate-200); border-radius: var(--radius-sm);
  font-family: var(--font-sans); font-size: .96rem; color: var(--tan-800); background: var(--white);
  transition: border-color .15s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--teal-500); box-shadow: 0 0 0 3px rgba(6, 223, 199, .18);
}
.form-note { font-size: .82rem; color: var(--slate-400); }

/* DMARC-Check Widget (bewusst dunkel — Kontrast-Anker) */
.dmarc-check {
  background: var(--navy-800); border-radius: var(--radius); padding: 36px;
  color: var(--white); box-shadow: var(--shadow);
}
.dmarc-check h3 { color: var(--white); }
.dmarc-check p { color: var(--slate-300); }
.dmarc-input-row { display: flex; gap: 12px; margin: 20px 0 8px; }
.dmarc-input-row input {
  flex: 1; padding: 15px 18px; border-radius: 999px; border: 1.5px solid rgba(255, 255, 255, .2);
  background: var(--navy-900); color: var(--white); font-family: var(--font-mono); font-size: .95rem;
}
.dmarc-input-row input:focus { outline: none; border-color: var(--teal-500); }
.dmarc-result { margin-top: 22px; display: none; }
.dmarc-result.show { display: block; }
.check-row {
  display: flex; align-items: center; gap: 14px; padding: 13px 16px;
  background: var(--navy-900); border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--radius-sm); margin-bottom: 10px;
}
.check-row .dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.dot-ok { background: var(--teal-500); box-shadow: 0 0 8px rgba(6, 223, 199, .6); }
.dot-warn { background: var(--amber); box-shadow: 0 0 8px rgba(245, 166, 35, .6); }
.dot-bad { background: var(--coral-600); box-shadow: 0 0 8px rgba(255, 127, 94, .6); }
.check-row b { color: var(--white); font-size: .92rem; min-width: 90px; }
.check-row span { color: var(--slate-300); font-size: .88rem; }

/* Funnel-Steps */
.funnel-progress { display: flex; gap: 8px; margin-bottom: 30px; }
.funnel-progress i { flex: 1; height: 5px; border-radius: 999px; background: #ebebeb; }
.funnel-progress i.done { background: var(--teal-500); }
.funnel-step { display: none; }
.funnel-step.active { display: block; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 20px 0; }
.choice {
  border: 1px solid var(--slate-200); border-radius: var(--radius-sm);
  padding: 18px; cursor: pointer; transition: all .15s; background: var(--white);
}
.choice:hover { border-color: var(--teal-500); }
.choice.selected { border-color: var(--teal-600); background: var(--teal-100); }
.choice b { display: block; margin-bottom: 4px; color: var(--navy-600); }
.choice span { font-size: .85rem; color: var(--slate-500); }

/* ---------- Glossar ---------- */
.glossary-toolbar { position: sticky; top: 76px; z-index: 50; background: rgba(255, 255, 255, .95); backdrop-filter: blur(10px); padding: 18px 0; border-bottom: 1px solid #ebebeb; }
.glossary-search {
  width: 100%; padding: 15px 22px; border-radius: 999px; border: 1px solid var(--slate-200);
  font-size: 1rem; font-family: var(--font-sans); background: var(--white);
}
.glossary-search:focus { outline: none; border-color: var(--teal-500); box-shadow: 0 0 0 3px rgba(6, 223, 199, .18); }
.glossary-cats { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.glossary-cats button {
  padding: 7px 16px; border-radius: 999px; border: 1px solid var(--slate-200); background: var(--white);
  font-family: var(--font-sans); font-size: .82rem; font-weight: 600; color: var(--slate-500); cursor: pointer; transition: all .15s;
}
.glossary-cats button.on, .glossary-cats button:hover { background: var(--navy-600); color: var(--white); border-color: var(--navy-600); }
.gl-cat-title { margin: 56px 0 20px; padding-bottom: 12px; border-bottom: 2px solid var(--teal-500); }
.gl-entry {
  background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius);
  padding: 30px 32px; margin-bottom: 18px; scroll-margin-top: 190px;
  transition: border-color .18s ease;
}
.gl-entry:hover { border-color: var(--teal-500); }
.gl-entry h3 { font-size: 1.28rem; margin-bottom: 4px; }
.gl-entry h3 code { font-family: var(--font-mono); font-size: 1.05rem; background: var(--slate-100); padding: 2px 8px; border-radius: 6px; color: var(--navy-600); }
.gl-syn { font-size: .82rem; color: var(--slate-400); font-family: var(--font-mono); margin-bottom: 14px; }
.gl-block { margin-top: 14px; }
.gl-block .gl-label {
  display: inline-block; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 999px; margin-bottom: 6px;
}
.gl-def .gl-label { background: var(--teal-100); color: var(--teal-800); }
.gl-biz .gl-label { background: var(--coral-100); color: var(--coral-800); }
.gl-tech .gl-label { background: var(--slate-100); color: var(--sky-900); }
.gl-st .gl-label { background: var(--navy-600); color: var(--teal-500); }
.gl-block p { font-size: .95rem; }
.gl-block p code { font-family: var(--font-mono); font-size: .84rem; background: var(--slate-100); padding: 1px 6px; border-radius: 4px; }
.gl-entry.hidden { display: none; }

/* ---------- Footer ---------- */
footer { background: var(--navy-900); color: #d7e3ea; padding: 64px 0 40px; margin-top: 0; }
footer p { color: #d7e3ea; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 44px; }
footer h4, footer .footer-title { color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: .92rem; margin-bottom: 16px; letter-spacing: .04em; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 9px; }
footer a { color: #e6eef3; font-size: .92rem; }
footer a:hover { color: var(--teal-500); text-decoration: none; }
footer .logo-mark { color: var(--navy-900); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .12); padding-top: 26px; font-size: .84rem; color: #b8c9d4; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

/* ---------- CTA-Band ---------- */
.cta-band {
  background: var(--navy-700);
  border-radius: 16px; padding: 56px; color: var(--white);
  display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); max-width: 560px; }
.cta-band p { color: var(--slate-300); margin-top: 10px; }

/* ---------- Utility ---------- */
.badge-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.badge-row span {
  padding: 9px 18px; border: 1px solid var(--slate-200); border-radius: 999px;
  font-size: .85rem; font-weight: 600; color: var(--slate-500); background: var(--white);
}
.dark .badge-row span, .hero .badge-row span { background: var(--white); border-color: var(--slate-200); color: var(--slate-500); }
.dark .badge-row span { background: transparent; border-color: rgba(255, 255, 255, .3); color: var(--slate-300); }
.two-col-text { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.notice {
  background: var(--teal-100); border-left: 4px solid var(--teal-500);
  padding: 18px 22px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 22px 0;
}
.notice p { color: var(--sky-900); font-size: .95rem; }
.breadcrumb { font-size: .85rem; color: var(--slate-400); margin-bottom: 20px; }
.anchor-toc { display: flex; gap: 10px; flex-wrap: wrap; margin: 24px 0; }
.anchor-toc a {
  font-size: .85rem; padding: 8px 18px; background: var(--white); border: 1px solid var(--slate-200);
  border-radius: 999px; color: var(--slate-500); font-weight: 600;
}
.anchor-toc a:hover { border-color: var(--teal-500); color: var(--teal-800); text-decoration: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-3, .grid-4, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .cycle-wrap, .two-col-text { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  section { padding: 60px 0; }
  .grid-2, .grid-3, .grid-4, .pricing-grid, .form-grid, .choice-grid { grid-template-columns: 1fr; }
  .nav-links {
    display: none; position: absolute; top: 76px; left: 0; right: 0;
    background: var(--white); flex-direction: column; padding: 24px; gap: 18px;
    border-bottom: 1px solid #ebebeb; box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-burger { display: block; }
  .step { grid-template-columns: 48px 1fr; }
  .step .step-days { grid-column: 2; justify-self: start; }
  .step-num { width: 42px; height: 42px; font-size: 1rem; }
  .hero { padding: 72px 0 60px; }
  .hero-stats { gap: 28px; }
  .cta-band { padding: 36px 28px; }
  .dmarc-input-row { flex-direction: column; }
  .dmarc-input-row input { border-radius: var(--radius-sm); }
  .footer-grid { grid-template-columns: 1fr; }
  th, td { padding: 11px 14px; }
  .glossary-toolbar { top: 0; position: static; }
  .gl-entry { padding: 22px 20px; scroll-margin-top: 90px; }
}

/* ============================================================
   ERWEITERUNGEN v2 — Scrollytelling · A11y · Glossar · Legal
   ============================================================ */

/* ---------- Trust-Zyklus: Scroll-Führung ---------- */
.cycle-scrolly { position: relative; }
.cycle-sticky {
  position: sticky; top: 0; min-height: 100vh;
  display: flex; align-items: center;
  padding: 48px 0; overflow: hidden;
}
.cycle-sticky .section-head { margin-bottom: 32px; }
.cycle-hint { color: var(--teal-500); font-weight: 600; }
.cycle-progress {
  height: 4px; border-radius: 999px; background: rgba(255, 255, 255, .14);
  margin-top: 36px; overflow: hidden;
}
.cycle-progress i {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--teal-600), var(--teal-500));
  border-radius: 999px; transition: width .15s linear;
}

/* ---------- Barrierefreiheit ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--navy-900); color: var(--white);
  padding: 12px 22px; border-radius: 0 0 var(--radius-sm) 0; font-weight: 600;
}
.skip-link:focus { left: 0; text-decoration: none; outline: 3px solid var(--teal-500); }
:focus-visible { outline: 3px solid var(--teal-600); outline-offset: 2px; border-radius: 2px; }
.dark :focus-visible, .hero :focus-visible { outline-color: var(--teal-500); }
.cycle-seg:focus-visible { outline: none; opacity: 1; filter: drop-shadow(0 0 0 3px var(--teal-500)) drop-shadow(0 0 10px rgba(6,223,199,.8)); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
@media (prefers-contrast: more) {
  .btn-primary { border-width: 2px; }
  .gl-entry, .card, .price-card { border-color: var(--tan-800); }
}

/* ---------- Glossar: echte Eintrags-Anatomie ---------- */
.gl-azbar {
  display: flex; gap: 4px; flex-wrap: wrap; margin-top: 12px;
}
.gl-azbar a {
  min-width: 30px; text-align: center; padding: 4px 6px; border-radius: 6px;
  font-size: .82rem; font-weight: 700; color: var(--teal-800); border: 1px solid transparent;
}
.gl-azbar a:hover { background: var(--teal-100); text-decoration: none; }
.gl-azbar span { min-width: 30px; text-align: center; padding: 4px 6px; font-size: .82rem; color: #c9c9c9; }
.gl-entry .gl-head { display: flex; align-items: baseline; gap: 10px; }
.gl-entry .gl-anchor {
  font-size: 1rem; color: var(--slate-200); opacity: 0; transition: opacity .15s, color .15s;
}
.gl-entry:hover .gl-anchor, .gl-entry .gl-anchor:focus-visible { opacity: 1; color: var(--teal-600); text-decoration: none; }
.gl-lead { margin-top: 10px; font-size: 1rem; color: var(--tan-800); }
.gl-lead::first-letter { }
details.gl-more { margin-top: 16px; border-top: 1px dashed #ebebeb; }
details.gl-more summary {
  cursor: pointer; list-style: none; padding: 12px 0 2px;
  font-size: .85rem; font-weight: 700; color: var(--teal-800);
  display: inline-flex; align-items: center; gap: 8px;
}
details.gl-more summary::-webkit-details-marker { display: none; }
details.gl-more summary::before { content: "+"; font-size: 1.1rem; line-height: 1; color: var(--teal-600); }
details.gl-more[open] summary::before { content: "–"; }
details.gl-more summary:hover { text-decoration: underline; }
.gl-related { margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.gl-related b { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--slate-400); font-weight: 700; }
.gl-related a {
  font-size: .82rem; font-weight: 600; padding: 4px 12px; border-radius: 999px;
  background: var(--slate-100); color: var(--sky-900); border: 1px solid transparent;
}
.gl-related a:hover { border-color: var(--teal-500); text-decoration: none; }

/* ---------- Legal / Prosa-Seiten ---------- */
.prose { max-width: 760px; }
.prose h2 { margin: 44px 0 14px; font-size: 1.5rem; }
.prose h3 { margin: 28px 0 10px; font-size: 1.12rem; }
.prose p, .prose li { color: var(--slate-500); font-size: .98rem; }
.prose ul, .prose ol { margin: 12px 0 12px 22px; }
.prose li { margin-bottom: 6px; }
.prose .legal-updated { font-size: .85rem; color: var(--slate-400); font-family: var(--font-mono); }

@media (max-width: 860px) {
  .cycle-scrolly { height: auto !important; }
  .cycle-sticky { position: static; min-height: 0; display: block; padding: 0; overflow: visible; }
  .cycle-progress { display: none; }
}

/* Funnel-Choices als echte Buttons (A11y) */
button.choice { width: 100%; text-align: left; font: inherit; font-family: var(--font-sans); }
.gl-azlist { padding: 6px 0 12px; font-size: .9rem; line-height: 2; }
.gl-azlist a { color: var(--teal-800); }

/* ============================================================
   ERWEITERUNGEN v3 — Personas · Cases · Visuals · Detailseiten
   ============================================================ */

/* Scroll-Reveal (deaktiviert bei prefers-reduced-motion) */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

/* Persona-Kacheln (Startseite) */
.persona-card { display: flex; flex-direction: column; }
.persona-card .persona-role { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal-800); margin-bottom: 8px; }
.persona-card ul { list-style: none; margin: 14px 0 20px; flex: 1; }
.persona-card ul li { padding: 6px 0 6px 26px; position: relative; font-size: .92rem; color: var(--slate-500); }
.persona-card ul li::before { content: "→"; position: absolute; left: 0; color: var(--teal-600); font-weight: 700; }
.persona-card .btn { align-self: flex-start; }

/* Pain → Gain Gegenüberstellung */
.pain-gain { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.pain-gain .pg-col { border-radius: var(--radius); padding: 30px 32px; border: 1px solid var(--slate-200); background: var(--white); }
.pain-gain .pg-pain { border-top: 4px solid var(--coral-600); }
.pain-gain .pg-gain { border-top: 4px solid var(--teal-500); }
.pain-gain h3 { margin-bottom: 14px; }
.pain-gain ul { list-style: none; }
.pain-gain li { padding: 9px 0 9px 30px; position: relative; font-size: .95rem; color: var(--slate-500); border-bottom: 1px dashed #ebebeb; }
.pain-gain li:last-child { border-bottom: none; }
.pg-pain li::before { content: "✕"; position: absolute; left: 0; color: var(--coral-600); font-weight: 700; }
.pg-gain li::before { content: "✓"; position: absolute; left: 0; color: var(--teal-600); font-weight: 700; }

/* Case Study (Modellfall) — flaches, robustes Layout */
.case-study { background: var(--tan-200); border: 1px solid var(--slate-200); border-radius: 16px; padding: 48px 52px; margin-top: 8px; }
.case-head { max-width: 820px; }
.case-study .case-tag { display: inline-block; background: var(--navy-600); color: var(--teal-500); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; margin-bottom: 18px; }
.case-study h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); margin-bottom: 18px; }
.case-meta { list-style: none; display: flex; gap: 12px; flex-wrap: wrap; margin: 0 0 30px; padding: 0; }
.case-meta li { background: var(--white); border: 1px solid var(--slate-200); border-radius: 999px; padding: 7px 16px; font-size: .84rem; display: flex; gap: 8px; align-items: baseline; }
.case-meta li span { color: var(--slate-400); }
.case-meta li b { color: var(--navy-600); font-weight: 700; }
.case-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 34px; }
.case-kpi { background: var(--white); border: 1px solid var(--slate-200); border-top: 3px solid var(--teal-500); border-radius: var(--radius-sm); padding: 20px 18px; }
.case-kpi b { display: block; font-family: var(--font-head); font-size: clamp(1.3rem, 1.9vw, 1.7rem); color: var(--teal-800); line-height: 1.2; margin-bottom: 6px; }
.case-kpi span { font-size: .84rem; color: var(--slate-400); line-height: 1.4; display: block; }
.case-body { max-width: 780px; }
.case-body p { margin-bottom: 14px; }
.case-bars { max-width: 560px; margin: 28px 0 6px; }
.case-quote { margin: 28px 0 0; padding: 22px 26px; border-left: 4px solid var(--teal-500); background: var(--white); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; max-width: 780px; }
.case-quote p { font-style: italic; color: var(--sky-900); font-size: 1.02rem; margin: 0; }
.case-quote cite { display: block; font-style: normal; font-size: .84rem; color: var(--slate-400); margin-top: 10px; }
.case-note { font-size: .8rem; color: var(--slate-400); margin-top: 22px; max-width: 780px; }

/* KPI-Vergleichsbalken (vorher/nachher) */
.viz-bars { display: grid; gap: 18px; margin: 22px 0; }
.viz-bar label { display: flex; justify-content: space-between; font-size: .85rem; font-weight: 600; color: var(--navy-600); margin-bottom: 6px; }
.viz-bar .bar-track { height: 14px; background: var(--slate-100); border-radius: 999px; overflow: hidden; }
.viz-bar .bar-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--teal-600), var(--teal-500)); }
.viz-bar .bar-fill.before { background: var(--slate-200); }
@media (prefers-reduced-motion: no-preference) {
  .viz-bar .bar-fill { width: var(--w) !important; transform: scaleX(0); transform-origin: left; transition: transform 1.1s cubic-bezier(.2,.7,.3,1); }
  .viz-bar.in .bar-fill { transform: scaleX(1); }
}
@media (prefers-reduced-motion: reduce) { .viz-bar .bar-fill { width: var(--w) !important; } }

/* Illustrationen (Inline-SVG-Container) */
.viz-figure { background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 22px; }
.viz-figure figcaption { font-size: .82rem; color: var(--slate-400); margin-top: 12px; text-align: center; }

/* Glossar-Detailseiten */
.term-hero { padding: 64px 0 40px; }
.term-tldr { background: var(--teal-100); border-left: 4px solid var(--teal-500); border-radius: 0 var(--radius) var(--radius) 0; padding: 22px 26px; margin: 26px 0; }
.term-tldr .tldr-label { font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-800); display: block; margin-bottom: 6px; }
.term-tldr p { color: var(--sky-900); font-size: 1.05rem; }
.term-section { margin: 36px 0; }
.term-section h2 { font-size: 1.35rem; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--teal-500); display: inline-block; }
.term-case { background: var(--tan-200); border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 28px 30px; }
.term-case h2 { border: none; padding: 0; }
.review-box { display: flex; gap: 16px; align-items: flex-start; background: var(--slate-100); border-radius: var(--radius-sm); padding: 18px 22px; margin: 36px 0 0; font-size: .88rem; color: var(--slate-500); }
.review-box .review-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--teal-500), var(--teal-600)); display: grid; place-items: center; font-weight: 800; color: var(--navy-900); flex-shrink: 0; }
.review-box b { color: var(--navy-600); }
.term-nav { display: flex; justify-content: space-between; gap: 14px; margin-top: 40px; flex-wrap: wrap; }
.term-nav a { font-size: .9rem; font-weight: 600; padding: 12px 20px; border: 1px solid var(--slate-200); border-radius: 999px; color: var(--navy-600); max-width: 46%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.term-nav a:hover { border-color: var(--teal-500); text-decoration: none; }
.term-sources { font-size: .86rem; color: var(--slate-400); }
.term-sources ul { list-style: none; }
.term-sources li { padding: 4px 0 4px 22px; position: relative; }
.term-sources li::before { content: "¶"; position: absolute; left: 0; color: var(--teal-600); }

@media (max-width: 860px) {
  .pain-gain { grid-template-columns: 1fr; }
  .case-kpis { grid-template-columns: 1fr 1fr; }
  .case-study { padding: 28px 22px; }
  .term-nav a { max-width: 100%; }
}

/* Glossar-Hub: Link zum Fachartikel */
.gl-fullarticle { font-size: .9rem; }
.gl-fullarticle a { color: var(--teal-800); }

@media (max-width: 480px) {
  .case-kpis { grid-template-columns: 1fr; }
  .glossary-cats button { padding: 6px 12px; font-size: .78rem; }
  .hero-stat b { font-size: 1.7rem; }
}

/* Logo (SVG-Siegel) */
.logo-mark-svg { flex-shrink: 0; display: block; }
footer address a { color: var(--teal-500); }
footer address { color: #d7e3ea; }

/* Logo-Wortmarke: zusammenhängend, kein Flex-Gap zwischen Sen und trust */
.logo-word { display: inline; letter-spacing: -0.01em; white-space: nowrap; }

/* Honeypot-Feld: für Menschen unsichtbar, für Bots ein Köder (Anti-Spam) */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
