@import url('fonts.css');

/* ==========================================================================
   Byteguard IT-Support – Design-System
   Stil: sachlich-editorial (valantic) + dunkler Hero (eye.security)
   Keine externen Ressourcen (DSGVO: alles selbst gehostet)
   ========================================================================== */

:root {
  /* Farbe */
  --paper: #ffffff;
  --paper-alt: #f4f6f5;
  --dark: #08120e;
  --dark-2: #0e1a15;
  --dark-3: #14211b;

  --ink: #0a0f0d;
  --ink-2: #1c2723;
  --body: #4d5954;
  --muted: #6c7873;

  --line: #e4e8e6;
  --line-dark: rgba(255, 255, 255, .14);

  --accent: #0f7b4f;
  --accent-700: #0b6340;
  --accent-300: #6cbf9b;
  --accent-050: #e9f4ef;

  /* Typo */
  --font: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* Maße */
  --radius: 4px;
  --header-h: 68px;
  --subnav-h: 54px;
  --maxw: 1240px;

  --radius-pill: 999px;
  --radius-lg: 16px;
  --shadow-1: 0 1px 2px rgba(8, 18, 14, .04), 0 10px 26px -20px rgba(8, 18, 14, .45);
  --shadow-2: 0 2px 6px rgba(8, 18, 14, .05), 0 26px 54px -30px rgba(8, 18, 14, .5);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--subnav-h) + 20px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }

img, svg { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -.022em;
  margin: 0 0 .5em;
  font-weight: 500;
}
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.2em; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: 16px; top: -60px;
  z-index: 2000;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  font-weight: 500;
  transition: top .2s;
}
.skip-link:focus { top: 0; text-decoration: none; }

/* ---------- Hilfsklassen ---------- */
.kicker {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
}
.on-dark .kicker, .kicker--light { color: var(--accent-300); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .005em;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, color .2s ease,
              transform .25s var(--ease), box-shadow .25s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); opacity: .92; }
.btn svg { transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background-image: linear-gradient(135deg, #14895a, var(--accent-700));
  color: #fff;
  box-shadow: 0 8px 20px -12px rgba(15, 123, 79, .85);
}
.btn-primary:hover { color: #fff; box-shadow: 0 14px 28px -14px rgba(15, 123, 79, .9); }

.btn-dark { background: var(--ink); color: #fff; box-shadow: var(--shadow-1); }
.btn-dark:hover { background: var(--ink-2); color: #fff; box-shadow: var(--shadow-2); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--ink); color: var(--ink); background: rgba(8, 18, 14, .03); }

.btn-ghost-light {
  background: rgba(255, 255, 255, .04);
  color: #fff;
  border-color: rgba(255, 255, 255, .3);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .5); }

.btn-light { background: #fff; color: var(--ink); box-shadow: var(--shadow-1); }
.btn-light:hover { background: #f4f7f6; color: var(--ink); box-shadow: var(--shadow-2); }

.btn-sm { padding: 11px 20px; min-height: 44px; font-size: 15px; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  z-index: 1200;
  background-image: linear-gradient(90deg, var(--accent-300), var(--accent));
  transition: width .12s linear;
  pointer-events: none;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(255, 255, 255, .82);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  backdrop-filter: blur(16px) saturate(1.6);
  border-bottom: 1px solid rgba(228, 232, 230, .8);
  transition: box-shadow .3s ease, background .3s ease, border-color .3s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .94);
  border-bottom-color: transparent;
  box-shadow: 0 14px 34px -26px rgba(8, 18, 14, .55);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -.03em;
  color: var(--ink);
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 32px; height: 32px;
  border-radius: 3px;
  background: var(--ink);
  display: grid; place-items: center;
  color: var(--accent-300);
  flex: none;
}
.brand small {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1;
  margin-top: 4px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-link {
  display: block;
  position: relative;
  padding: 8px 13px;
  color: var(--ink-2);
  font-size: 15.5px;
  font-weight: 400;
  text-decoration: none;
  transition: color .16s;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 13px; right: 13px; bottom: 4px;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .34s var(--ease);
}
.nav-link:hover { color: var(--accent); text-decoration: none; }
.nav-link:hover::after,
.nav-link.is-active::after { transform: scaleX(1); }
.nav-link.is-active { color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
}
.header-phone:hover { color: var(--accent); text-decoration: none; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--ink);
  position: relative;
  transition: background .2s;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px; height: 1.5px;
  background: var(--ink);
  transition: transform .25s, top .25s;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Subnavigation (sticky) ---------- */
.subnav {
  position: sticky;
  top: var(--header-h);
  z-index: 880;
  height: var(--subnav-h);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.subnav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.subnav-list {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0; padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  white-space: nowrap;
  height: 100%;
}
.subnav-list::-webkit-scrollbar { display: none; }
.subnav-list a {
  display: flex; align-items: center; height: 100%;
  font-size: 14.5px;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .16s, border-color .16s;
}
.subnav-list a:hover { color: var(--ink); text-decoration: none; }
.subnav-list a.is-active { color: var(--ink); border-bottom-color: var(--accent); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(920px 540px at 78% 8%, rgba(15, 123, 79, .38), transparent 62%),
    radial-gradient(720px 460px at -5% 100%, rgba(108, 191, 155, .12), transparent 70%),
    var(--dark);
  color: #d6ded9;
  padding: 104px 0 96px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(1100px 620px at 75% 30%, #000 10%, transparent 80%);
  -webkit-mask-image: radial-gradient(1100px 620px at 75% 30%, #000 10%, transparent 80%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  right: -180px; top: -220px;
  width: 720px; height: 720px;
  border: 1px solid rgba(108, 191, 155, .22);
  border-top-color: rgba(108, 191, 155, .6);
  border-radius: 50%;
  animation: bg-spin 60s linear infinite;
  pointer-events: none;
}
@keyframes bg-spin { to { transform: rotate(360deg); } }
.hero > .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 68px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-300);
  border: 1px solid rgba(108, 191, 155, .35);
  background: rgba(108, 191, 155, .07);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-300);
  animation: live-pulse 2.4s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(108, 191, 155, .55); opacity: 1; }
  50% { box-shadow: 0 0 0 7px rgba(108, 191, 155, 0); opacity: .6; }
}
.hero h1 {
  font-size: clamp(2.5rem, 5.4vw, 4.35rem);
  font-weight: 300;
  letter-spacing: -.035em;
  line-height: 1.04;
  margin: 26px 0 22px;
  color: #fff;
  text-wrap: balance;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent-300);
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .hero h1 em {
    background-image: linear-gradient(105deg, #9be0c1, var(--accent-300) 55%, #35a374);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
.hero-lead {
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
  line-height: 1.65;
  color: #a9b6b0;
  max-width: 54ch;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 0;
  list-style: none; margin: 0; padding: 0;
  border-top: 1px solid var(--line-dark);
}
.hero-meta li {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #93a19b;
  padding: 16px 22px 0 0;
  margin-right: 22px;
}
.hero-meta svg { flex: none; color: var(--accent-300); }

/* SOC-/Statuspanel */
.support-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .01)), var(--dark-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 26px 26px 22px;
  box-shadow: 0 50px 90px -60px rgba(0, 0, 0, .95);
}
.sc-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; padding-bottom: 18px;
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 6px;
}
.sc-title {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #d6ded9;
}
.sc-status {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent-300);
  display: flex; align-items: center; gap: 8px;
}
.sc-status::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-300);
  animation: live-pulse 2.4s ease-in-out infinite;
}
.sc-list { list-style: none; margin: 0; padding: 0; }
.sc-item {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 15px;
}
.sc-item b { font-weight: 500; color: #eaf0ec; display: block; }
.sc-item span { color: #8c9a94; font-size: 13.5px; }
.sc-tag {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 9px;
  border: 1px solid var(--line-dark);
  border-radius: 3px;
  white-space: nowrap;
  color: #a9b6b0;
}
.sc-tag.ok { color: var(--accent-300); border-color: rgba(108,191,155,.4); }
.sc-tag.info { color: #9db4c9; border-color: rgba(157,180,201,.35); }
.sc-tag.warn { color: #d8c08a; border-color: rgba(216,192,138,.35); }
.sc-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px;
  font-family: var(--mono);
  font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
  color: #8c9a94;
}
.sc-foot b {
  display: block;
  font-family: var(--font);
  color: #fff;
  font-size: 26px;
  font-weight: 300;
  letter-spacing: -.03em;
  margin-top: 6px;
}

/* ---------- Sections ---------- */
.section { padding: 104px 0; }
.section.alt { background: var(--paper-alt); }
.section.dark {
  background: var(--dark);
  color: #a9b6b0;
}
.section.dark h2, .section.dark h3, .section.dark h4 { color: #fff; }
.section.dark .section-lead { color: #98a5a0; }

.section-head { max-width: 780px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.section.dark .eyebrow { color: var(--accent-300); }
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 300;
  letter-spacing: -.03em;
  line-height: 1.08;
  margin-bottom: 20px;
  text-wrap: balance;
}
.section-lead { font-size: 1.06rem; color: var(--body); margin: 0; line-height: 1.7; text-wrap: pretty; }
.section.dark .section-lead { color: #98a5a0; }

.grid { display: grid; gap: 0; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

/* ---------- Editorial Cards / Listen ---------- */
.card {
  position: relative;
  background: transparent;
  border-top: 1px solid var(--line);
  padding: 34px 34px 34px 0;
  transition: border-color .25s ease, background .35s var(--ease);
}
.card:hover {
  border-top-color: var(--accent);
  background: linear-gradient(180deg, rgba(15, 123, 79, .05), rgba(15, 123, 79, 0) 65%);
}
.grid-3 > .card:nth-child(3n+2),
.grid-3 > .card:nth-child(3n+3) { padding-left: 34px; border-left: 1px solid var(--line); }
.grid-3 > .card:nth-child(3n+3) { padding-right: 0; }
.section.dark .card { border-top-color: var(--line-dark); }
.section.dark .card:hover { border-top-color: var(--accent-300); background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, 0) 65%); }
.section.dark .grid-3 > .card:nth-child(3n+2),
.section.dark .grid-3 > .card:nth-child(3n+3) { border-left-color: var(--line-dark); }

.card::before {
  counter-increment: cardnum;
  content: counter(cardnum, decimal-leading-zero);
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 22px;
  transition: color .25s ease, transform .35s var(--ease);
}
.card:hover::before { color: var(--accent); }
.grid-3 { counter-reset: cardnum; }

.card-icon {
  width: auto; height: auto;
  background: none;
  border-radius: 0;
  margin-bottom: 18px;
  color: var(--accent);
  transition: transform .35s var(--ease);
}
.card:hover .card-icon { transform: translateY(-3px); }
.card h3 { font-size: 1.24rem; font-weight: 500; margin-bottom: 10px; }
.card p { color: var(--body); font-size: 16.2px; margin: 0; }
.section.dark .card p { color: #98a5a0; }
.card ul { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 10px; }
.card ul li {
  position: relative; padding-left: 20px;
  font-size: 15.2px; color: var(--body);
}
.section.dark .card ul li { color: #98a5a0; }
.card ul li::before {
  content: "";
  position: absolute; left: 0; top: 11px;
  width: 8px; height: 1px;
  background: var(--accent);
}

/* ---------- Kennzahlen ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 46px 0;
  margin-top: -1px;
  position: relative;
  z-index: 5;
}
.stat { text-align: left; padding: 0 30px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat-value {
  font-family: var(--font);
  font-size: clamp(2.1rem, 3.2vw, 3rem);
  font-weight: 300;
  letter-spacing: -.04em;
  color: var(--ink);
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
}

/* ---------- Ablauf ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
}
.step {
  padding: 34px 30px 8px 0;
  border-left: 1px solid var(--line-dark);
  padding-left: 30px;
}
.step:first-child { border-left: 0; padding-left: 0; }
.step-num {
  width: auto; height: auto;
  background: none;
  border-radius: 0;
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: .14em;
  color: var(--accent-300);
  margin-bottom: 26px;
}
.step h3 { font-size: 1.14rem; font-weight: 500; margin-bottom: 10px; color: #fff; }
.step p { font-size: 15.6px; color: #98a5a0; margin: 0; }

/* ---------- Preise ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 0;
  padding: 40px 34px;
  display: flex; flex-direction: column;
  position: relative;
}
.pricing .price-card:first-child { border-left: 1px solid var(--line); }
.price-card.featured {
  border-top: 3px solid var(--accent);
  z-index: 2;
  box-shadow: 0 0 0 1px var(--line), var(--shadow-2);
}
.price-badge {
  position: absolute; top: -14px; left: 34px;
  background: var(--accent); color: #fff;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 3px;
  white-space: nowrap;
}
.price-name {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 14px;
  font-weight: 500;
}
.price-desc { font-size: 15.4px; color: var(--muted); margin: 0 0 26px; min-height: 48px; }
.price {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 6px;
}
.price strong {
  font-size: clamp(2.2rem, 3vw, 2.9rem);
  font-weight: 300;
  letter-spacing: -.04em;
  color: var(--ink);
  line-height: 1;
}
.price span { font-size: 14.5px; color: var(--muted); }
.price-note {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.price-features { list-style: none; margin: 0 0 30px; padding: 0; display: grid; gap: 13px; flex: 1; }
.price-features li {
  position: relative; padding-left: 24px;
  font-size: 15.4px; color: var(--body);
}
.price-features li::before {
  content: "";
  position: absolute; left: 0; top: 11px;
  width: 11px; height: 5px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}
.price-features li strong { color: var(--ink); font-weight: 600; }

/* ---------- Referenzen ---------- */
.quote {
  background: transparent;
  border-top: 1px solid var(--line);
  border-radius: 0;
  padding: 36px 34px 36px 0;
  display: flex; flex-direction: column;
}
.grid-3 > .quote:nth-child(3n+2),
.grid-3 > .quote:nth-child(3n+3) { padding-left: 34px; border-left: 1px solid var(--line); }
.grid-3 > .quote:nth-child(3n+3) { padding-right: 0; }
.stars {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.quote blockquote { margin: 0; flex: 1; }
.quote p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink);
  letter-spacing: -.01em;
}
.quote-person {
  display: flex; align-items: center; gap: 14px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.avatar {
  width: 40px; height: 40px; border-radius: 3px;
  display: grid; place-items: center;
  background: var(--accent-050);
  color: var(--accent-700);
  font-family: var(--mono);
  font-weight: 500;
  font-size: 13px;
  flex: none;
}
.quote-person b { display: block; font-size: 15.4px; font-weight: 500; color: var(--ink); }
.quote-person span { font-family: var(--mono); font-size: 12.5px; color: var(--muted); line-height: 1.5; }

/* ---------- FAQ ---------- */
.faq {
  display: grid;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  overflow: visible;
  transition: none;
}
.faq-item.open { border-bottom-color: var(--line); box-shadow: none; }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: none; border: 0;
  padding: 26px 4px;
  font-family: var(--font);
  font-size: 17.5px;
  font-weight: 400;
  color: var(--ink);
  text-align: left; cursor: pointer;
  transition: color .2s ease;
}
.faq-q:hover { color: var(--accent); }
.faq-q:hover { color: var(--accent); }
.faq-icon {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 0;
  background: none;
  color: var(--muted);
  display: grid; place-items: center;
  font-family: var(--mono);
  font-size: 20px; font-weight: 400; line-height: 1;
  transition: transform .25s ease, color .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: none; color: var(--accent); }
.faq-a {
  padding: 0 4px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s ease, padding .32s ease;
}
.faq-item.open .faq-a { padding: 0 4px 28px; }
.faq-a p { margin: 0 0 .8em; font-size: 16.2px; color: var(--body); max-width: 74ch; }
.faq-a p:last-child { margin-bottom: 0; }

/* ---------- CTA ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(600px 300px at 85% 0%, rgba(15, 123, 79, .5), transparent 65%),
    var(--dark);
  border-radius: var(--radius-lg);
  padding: 60px 56px;
  color: #d6ded9;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
  box-shadow: 0 40px 70px -55px rgba(8, 18, 14, .9);
}
.cta-band::before {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 100%; height: 3px;
  background: var(--accent);
}
.cta-band h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 300;
  letter-spacing: -.03em;
  margin: 0 0 12px;
  color: #fff;
}
.cta-band p { margin: 0; color: #98a5a0; font-size: 16.2px; max-width: 58ch; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: start; }
.contact-list { list-style: none; margin: 34px 0 0; padding: 0; display: grid; gap: 0; }
.contact-list li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: 1px solid var(--line); }
.contact-ico {
  width: 22px; height: 22px; flex: none;
  background: none;
  border-radius: 0;
  color: var(--accent);
  display: grid; place-items: center;
  margin-top: 3px;
}
.contact-list b {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 4px;
}
.contact-list span, .contact-list a { font-size: 16.4px; color: var(--ink); }

.form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 9px;
}
.field .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 16.5px;
  padding: 14px 16px;
  min-height: 52px;
  color: var(--ink);
  background: var(--paper-alt);
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: border-color .16s, background .16s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  background: var(--paper);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(15, 123, 79, .13);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: #b4341f;
  background: #fdf3f1;
}
.error-msg {
  display: none;
  font-family: var(--mono);
  font-size: 12.5px;
  color: #b4341f;
  margin-top: 8px;
}
.error-msg.show { display: block; }
.hint { font-size: 14px; color: var(--muted); margin-top: 9px; }

.check {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; color: var(--body);
  line-height: 1.6;
  margin-bottom: 22px;
}
.check input {
  appearance: auto;
  -webkit-appearance: auto;
  width: 20px; height: 20px;
  min-height: 0;
  margin: 3px 0 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
  box-shadow: none;
  flex: none;
  accent-color: var(--accent);
  cursor: pointer;
}
.check input:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; box-shadow: none; }
.check a { text-decoration: underline; text-underline-offset: 3px; }

.field label.check {
  font-family: var(--font);
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--body);
  font-weight: 400;
  margin-bottom: 0;
}

.form-success {
  display: none;
  background: var(--accent-050);
  border: 1px solid #b9dfcd;
  color: var(--accent-700);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: 15.6px;
  margin-bottom: 22px;
}
.form-success.show { display: block; }

/* ---------- Hinweisboxen ---------- */
.note-box {
  background: var(--accent-050);
  border: 1px solid #cbe6d9;
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 26px 0;
  font-size: 15.6px;
  color: var(--accent-700);
}
.section.dark .note-box { background: rgba(15,123,79,.14); border-color: rgba(108,191,155,.35); color: #bfe6d5; }
.warn-box {
  background: #fdf6ea;
  border: 1px solid #efdcbb;
  border-left: 3px solid #b8860b;
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 26px 0;
  font-size: 15.6px;
  color: #7a5a12;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: #8c9a94;
  padding: 76px 0 34px;
  font-size: 15.4px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-dark);
}
.site-footer .brand { color: #fff; margin-bottom: 20px; }
.site-footer .brand-mark { background: #fff; color: var(--accent); }
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-col a { color: #8c9a94; text-decoration: none; transition: color .16s; }
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-about p { margin-bottom: 20px; max-width: 42ch; }
.footer-badge {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid var(--line-dark);
  color: var(--accent-300);
  padding: 8px 14px;
  border-radius: 3px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.footer-contact { display: grid; gap: 14px; }
.footer-contact div { display: flex; gap: 11px; align-items: flex-start; }
.footer-contact svg { color: var(--accent-300); }
.footer-bottom {
  padding-top: 30px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 12.5px;
  color: #6e7c76;
}
.footer-legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-legal a { color: #6e7c76; }
.footer-legal a:hover { color: #fff; }
.link-btn {
  background: none; border: 0; padding: 0;
  font: inherit;
  color: #6e7c76; cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.link-btn:hover { color: #fff; }

/* ---------- Unterseiten ---------- */
.page-hero {
  background: var(--dark);
  color: #d6ded9;
  padding: 70px 0 66px;
}
.page-hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 300;
  letter-spacing: -.03em;
  margin: 18px 0 16px;
  color: #fff;
}
.page-hero p { color: #98a5a0; max-width: 70ch; margin: 0; font-size: 1.05rem; }
.breadcrumb {
  display: flex; gap: 10px; align-items: center;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .06em;
  color: #7d8a85;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--accent-300); }
.breadcrumb span { opacity: .6; }

.legal-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 60px;
  align-items: start;
  padding: 76px 0 104px;
}
.legal-layout > * { min-width: 0; }
.toc {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  background: transparent;
  border: 0;
  border-top: 2px solid var(--ink);
  border-radius: 0;
  padding: 20px 0 0;
}
.toc h2 {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.toc ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.toc a { font-size: 14.6px; color: var(--body); font-weight: 400; display: block; line-height: 1.45; }
.toc a:hover { color: var(--accent); }

.prose { max-width: 76ch; }
.prose h2 {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -.02em;
  margin: 52px 0 18px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-h) + 20px);
}
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose h3 { font-size: 1.12rem; font-weight: 500; margin: 30px 0 12px; }
.prose p, .prose li { font-size: 16.4px; color: var(--body); }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose .muted { font-size: 14.8px; color: var(--muted); }

.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 26px 0; }
table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 15.4px;
  min-width: 560px;
  background: #fff;
  border: 1px solid var(--line);
}
table.data th, table.data td {
  text-align: left;
  padding: 15px 17px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
table.data th {
  background: var(--paper-alt);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
table.data td { color: var(--body); }
table.data tr:last-child td { border-bottom: 0; }
table.data code {
  font-family: var(--mono);
  font-size: 13px;
  background: var(--paper-alt);
  padding: 2px 6px;
  border-radius: 3px;
}

/* ---------- Cookie-Banner / Modal ---------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1200;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -1px 0 rgba(0,0,0,.02);
  padding: 24px 0;
  transform: translateY(110%);
  transition: transform .4s cubic-bezier(.22, 1, .36, 1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cookie-text { flex: 1 1 460px; }
.cookie-text h2 {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0 0 10px;
  display: flex; align-items: center; gap: 10px;
  color: var(--ink);
}
.cookie-text p { margin: 0; font-size: 15.2px; color: var(--body); max-width: 68ch; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.cookie-modal {
  position: fixed; inset: 0;
  z-index: 1300;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.cookie-modal.open { display: flex; }
.cookie-backdrop {
  position: absolute; inset: 0;
  background: rgba(8, 18, 14, .72);
}
.cookie-dialog {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  width: 100%;
  max-width: 640px;
  max-height: 88vh;
  overflow-y: auto;
  padding: 34px 34px 28px;
  border-top: 3px solid var(--accent);
}
.cookie-dialog h2 { font-size: 1.4rem; font-weight: 400; margin-bottom: 10px; }
.cookie-dialog > p { font-size: 15.4px; color: var(--body); }
.cookie-group {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 12px;
}
.cookie-group-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 18px;
}
.cookie-group h3 { font-size: 16.5px; font-weight: 500; margin: 0 0 6px; }
.cookie-group p { font-size: 14.5px; color: var(--body); margin: 0; }
.cookie-group .always {
  font-family: var(--mono);
  font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent-700);
  background: var(--accent-050);
  border: 1px solid #cbe6d9;
  padding: 5px 11px; border-radius: 3px; white-space: nowrap;
}
.switch { position: relative; display: inline-block; width: 50px; height: 28px; flex: none; }
.switch input { opacity: 0; width: 0; height: 0; position: absolute; }
.slider {
  position: absolute; inset: 0;
  background: #d5dbd8;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s;
}
.slider::before {
  content: "";
  position: absolute;
  width: 20px; height: 20px; left: 4px; top: 4px;
  background: #fff; border-radius: 50%;
  transition: transform .2s;
  box-shadow: 0 1px 2px rgba(0,0,0,.25);
}
.switch input:checked + .slider { background: var(--accent); }
.switch input:checked + .slider::before { transform: translateX(22px); }
.switch input:focus-visible + .slider { outline: 2px solid var(--accent); outline-offset: 2px; }
.switch input:disabled + .slider { background: var(--accent); opacity: .45; cursor: not-allowed; }

.cookie-foot { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.cookie-links { font-size: 13.6px; color: var(--muted); margin-top: 18px; }

/* ---------- Diverses ---------- */
.badge-list {
  display: flex; flex-wrap: wrap; gap: 10px;
  list-style: none; padding: 0; margin: 0;
  border: 0;
}
.badge-list li {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 20px;
  margin: 0;
  font-family: var(--mono);
  font-size: 13.5px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  transition: border-color .2s ease, background .2s ease,
              transform .3s var(--ease), box-shadow .3s ease;
}
.badge-list li:hover {
  border-color: rgba(15, 123, 79, .45);
  background: var(--accent-050);
  transform: translateY(-2px);
  box-shadow: var(--shadow-1);
}
.badge-list svg { color: var(--accent); }
.section.dark .badge-list li {
  color: #c6d0cb;
  background: rgba(255, 255, 255, .045);
  border-color: var(--line-dark);
}
.section.dark .badge-list li:hover {
  background: rgba(108, 191, 155, .12);
  border-color: rgba(108, 191, 155, .45);
}

.divider-note {
  text-align: center;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  margin-top: 34px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(7px);
  transition: opacity .7s var(--ease), transform .7s var(--ease), filter .7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; filter: none; }

/* ---------- 404 ---------- */
.err-wrap {
  min-height: 62vh;
  display: grid; place-items: center;
  text-align: center;
  padding: 80px 0;
}
.err-code {
  font-family: var(--mono);
  font-size: clamp(3.5rem, 12vw, 7rem);
  font-weight: 400;
  letter-spacing: -.02em;
  color: var(--accent);
  line-height: 1;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(3) { border-left: 0; padding-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-grid { gap: 48px; }
  .pricing { grid-template-columns: 1fr; }
  .price-card { border-left: 1px solid var(--line); border-top: 0; }
  .pricing .price-card:first-child { border-top: 1px solid var(--line); }
  .price-card.featured { border-top: 3px solid var(--accent); }
}

@media (max-width: 960px) {
  :root { --header-h: 64px; }
  .container { padding: 0 24px; }
  .section { padding: 76px 0; }
  .hero { padding: 72px 0 68px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .support-card { max-width: 560px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-3 > .card,
  .grid-3 > .quote { padding-left: 0 !important; padding-right: 0 !important; border-left: 0 !important; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 34px 0; padding: 40px 0; }
  .stat { padding: 0 24px; }
  .stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .legal-layout { grid-template-columns: minmax(0, 1fr); gap: 34px; padding: 54px 0 80px; }
  .toc { position: static; }

  .nav-toggle { display: grid; }
  .header-phone span { display: none; }
  .header-actions .btn-primary { display: none; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 26px;
    transform: translateY(-130%);
    opacity: 0;
    visibility: hidden;
    transition: transform .32s cubic-bezier(.22, 1, .36, 1), opacity .26s, visibility .26s;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list li { border-bottom: 1px solid var(--line); }
  .nav-link { padding: 16px 0; font-size: 17px; }
  .nav-link::after { left: 0; right: 0; bottom: 10px; }
  .nav-list .btn { margin-top: 18px; width: 100%; }
  .nav-sep { display: none; }
}

@media (max-width: 760px) {
  body { font-size: 16.5px; }
  .container { padding: 0 20px; }
  .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { border-left: 0; padding-left: 0; border-bottom: 1px solid var(--line-dark); padding-bottom: 28px; }
  .step:last-child { border-bottom: 0; }
  .stats { grid-template-columns: 1fr; gap: 28px; }
  .stat { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 22px; }
  .stat:first-child { border-top: 0; padding-top: 0; }
  .form { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .cta-band { padding: 42px 26px; flex-direction: column; align-items: flex-start; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { flex: 1 1 200px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cookie-inner { gap: 20px; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1 1 auto; }
  .cookie-foot { flex-direction: column; }
  .cookie-dialog { padding: 26px 20px 22px; max-height: 92vh; }
  .faq-q { padding: 22px 2px; font-size: 16.6px; }
  .hero-actions .btn { width: 100%; }
  .hero-meta li { padding-top: 14px; }
  .price-card { padding: 34px 24px; }
  .badge-list { gap: 8px; }
  .badge-list li { padding: 10px 16px; font-size: 12.8px; }
}

@media (max-width: 420px) {
  .brand small { display: none; }
  .sc-item { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .subnav, .site-footer, .cookie-banner, .cookie-modal, .cta-band, .toc, .scroll-progress { display: none !important; }
  body { font-size: 11pt; color: #000; }
  .prose a::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
}
