/* Hyperlizer – Verkaufsseite. Systemschriften, keine externen Ressourcen. */

:root {
  --ink-900: #0a0c10;
  --ink-800: #12151b;
  --ink-700: #1b1f28;
  --ink-600: #2a303c;
  --paper: #f4f3ef;
  --paper-2: #e9e7e0;
  --paper-3: #dedbd2;
  --text: #15181d;
  --muted: #5d6472;
  --muted-dark: #9aa3b2;
  --accent: #f5c400;
  --accent-deep: #c79e00;
  --line: rgba(20, 24, 29, 0.14);
  --line-dark: rgba(255, 255, 255, 0.12);
  --ok: #2f8f5b;
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "Cascadia Code", "SF Mono", Consolas, "Liberation Mono", Menlo, monospace;
  --wrap: 1180px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --section: clamp(4rem, 8vw, 7.5rem);
  --radius: 4px;
  --radius-lg: 10px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.0625rem);
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { margin: 0; line-height: 1.12; letter-spacing: -0.02em; font-weight: 700; }
p { margin: 0 0 1em; }
a { color: inherit; }
code, pre { font-family: var(--mono); }
ul, ol { padding-left: 1.25rem; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.dark :focus-visible { outline-color: var(--accent); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--accent);
  color: var(--ink-900);
  padding: 0.6rem 1rem;
  font-weight: 700;
  z-index: 100;
  border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; }

.wrap {
  width: min(100% - 2 * var(--gutter), var(--wrap));
  margin-inline: auto;
}

/* ---------- Kopf ---------- */
.site-header {
  background: var(--ink-900);
  color: #fff;
  border-bottom: 1px solid var(--line-dark);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 4.25rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 1.15rem;
  white-space: nowrap;
}
.brand svg { width: 28px; height: 28px; flex: none; }
.brand small {
  display: none;
  font-weight: 500;
  color: var(--muted-dark);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (min-width: 900px) { .brand small { display: inline; margin-left: 0.4rem; } }

.site-nav { margin-left: auto; }
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.25rem;
  white-space: nowrap;
}
.site-nav a {
  display: inline-block;
  padding: 0.5rem 0.7rem;
  text-decoration: none;
  color: var(--muted-dark);
  font-size: 0.92rem;
  border-radius: var(--radius);
  transition: color 150ms, background-color 150ms;
}
.site-nav a:hover { color: #fff; background: var(--ink-700); }
.site-nav a.is-cta {
  color: var(--ink-900);
  background: var(--accent);
  font-weight: 700;
}
.site-nav a.is-cta:hover { background: #ffd83a; }

/* Burger-Menü: Knopf (drei Striche → X) und Schließen-Knopf im Menü */
.nav-toggle,
.nav-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-right: -10px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  cursor: pointer;
  transition: background-color 150ms;
}
.nav-toggle:hover,
.nav-close:hover { background: var(--ink-700); }
.nav-toggle { flex-direction: column; gap: 5px; }
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 200ms var(--ease), opacity 150ms;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-close svg { width: 24px; height: 24px; }
.nav-panel-head { display: none; }
html.menu-offen { overflow: hidden; }

@media (max-width: 899.98px) {
  .site-nav ul {
    position: fixed;
    inset: 0;
    z-index: 90;
    flex-direction: column;
    gap: 0;
    white-space: normal;
    padding: 0 var(--gutter) 2rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--ink-900);
    color: #fff;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-0.75rem);
    transition: opacity 200ms, transform 250ms var(--ease), visibility 0s linear 250ms;
  }
  .site-nav.is-open ul {
    visibility: visible;
    opacity: 1;
    transform: none;
    transition-delay: 0s;
  }
  .nav-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 4.25rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid var(--line-dark);
    font-family: var(--mono);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted-dark);
  }
  .site-nav ul li a {
    display: block;
    padding: 0.95rem 0;
    border-radius: 0;
    border-bottom: 1px solid var(--line-dark);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #fff;
  }
  .site-nav ul li a:hover { background: transparent; color: var(--accent); }
  .site-nav ul li a.is-cta {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    border: 0;
    border-radius: var(--radius);
    text-align: center;
    font-size: 1.1rem;
    background: var(--accent);
    color: var(--ink-900);
  }
  .site-nav ul li a.is-cta:hover { background: #ffd83a; color: var(--ink-900); }
}
@media (min-width: 900px) {
  .nav-toggle { display: none; }
}

/* ---------- Knöpfe ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  line-height: 1.2;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  transition: transform 200ms var(--ease), background-color 150ms, border-color 150ms, color 150ms;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--accent); color: var(--ink-900); }
.btn-primary:hover { background: #ffd83a; }
.btn-ghost { border-color: var(--line-dark); color: #fff; background: transparent; }
.btn-ghost:hover { border-color: #fff; }
.btn-dark { background: var(--ink-900); color: #fff; }
.btn-dark:hover { background: var(--ink-700); }
.btn-outline { border-color: var(--text); color: var(--text); background: transparent; }
.btn-outline:hover { background: var(--text); color: #fff; }
.btn svg { width: 1em; height: 1em; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(60rem 30rem at 85% -10%, rgba(245, 196, 0, 0.16), transparent 60%),
    linear-gradient(180deg, var(--ink-900), var(--ink-800));
  color: #fff;
  padding-block: clamp(3rem, 7vw, 6rem) clamp(3rem, 7vw, 5.5rem);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), transparent 85%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), transparent 85%);
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 960px) {
  .hero .wrap { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); }
}
.eyebrow {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: currentColor;
}
.hero h1 {
  font-size: clamp(2rem, 1.2rem + 3vw, 3.3rem);
  max-width: 19ch;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero .lead {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem);
  color: var(--muted-dark);
  max-width: 48ch;
  margin-top: 1.25rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.hero-test, .kontakt-test { margin: 0.9rem 0 0; font-size: 0.92rem; }
.hero-test a, .kontakt-test a { color: var(--accent); font-weight: 700; text-decoration: none; border-bottom: 1px solid var(--accent); }
.hero-test a:hover, .kontakt-test a:hover { color: #ffd83a; }
.hero-facts {
  list-style: none;
  padding: 0;
  margin: 2.25rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.5rem;
  border-top: 1px solid var(--line-dark);
  padding-top: 1.5rem;
}
@media (min-width: 600px) { .hero-facts { grid-template-columns: repeat(4, 1fr); } }
.hero-facts strong {
  display: block;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.hero-facts span { color: var(--muted-dark); font-size: 0.9rem; }

/* Demo-Design-Auswahl neben dem Demo-Knopf (Studio = Standard) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.demo-designs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2rem 0;
  margin: 0.9rem 0 0;
  font-size: 0.88rem;
  color: var(--muted-dark);
}
.demo-designs-label { margin-right: 0.6rem; }
.demo-designs-list { white-space: nowrap; }
.demo-designs a {
  color: var(--muted-dark);
  text-decoration: none;
  padding: 0.3rem 0.1rem;
  border-bottom: 1px solid transparent;
  transition: color 150ms, border-color 150ms;
}
.demo-designs a + a::before {
  content: "·";
  margin: 0 0.55rem;
  color: var(--muted-dark);
  font-weight: 400;
}
.demo-designs a:hover { color: #fff; border-bottom-color: currentColor; }
.demo-designs a.is-standard {
  color: var(--accent);
  font-weight: 700;
  border-bottom-color: var(--accent);
}
.demo-designs a.is-standard:hover { color: #ffd83a; }
.demo-designs.is-compact { margin-top: 0.45rem; font-size: 0.82rem; }

/* ---------- Vorher/Nachher-Schieber ----------
   Wiederverwendbare Komponente: .compare > img.before + img.after + .divider + .handle + .tag + input[type=range]
   --pos (Prozent) steuert Clip, Linie und Griff. Der Griff (.handle) ist die einzige Zieh-Flaeche;
   der Range bleibt fuer Tastatur und Screenreader, ist aber unsichtbar. */
.compare {
  position: relative;
  aspect-ratio: var(--ratio, 1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-700);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.8), 0 0 0 1px var(--line-dark);
  --pos: 50%;
  user-select: none;
  -webkit-user-select: none;
}
.compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}
.compare .after {
  clip-path: inset(0 0 0 var(--pos));
}
.compare .divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 2px;
  background: var(--accent);
  transform: translateX(-50%);
  pointer-events: none;
}
.compare .handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 44px;
  transform: translateX(-50%);
  cursor: ew-resize;
  touch-action: pan-y;
  z-index: 2;
}
.compare .handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
  background-image:
    linear-gradient(var(--ink-900), var(--ink-900)),
    linear-gradient(var(--ink-900), var(--ink-900));
  background-size: 2px 14px, 2px 14px;
  background-position: 15px center, 27px center;
  background-repeat: no-repeat;
  transition: transform 150ms var(--ease);
}
.compare .handle:hover::after,
.compare.is-dragging .handle::after { transform: translate(-50%, -50%) scale(1.08); }
.compare.is-dragging { cursor: ew-resize; }
.compare input[type="range"] {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}
.compare:has(input:focus-visible) { outline: 3px solid var(--accent); outline-offset: 3px; }
.compare .tag {
  position: absolute;
  top: 0.9rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(10, 12, 16, 0.75);
  color: #fff;
  pointer-events: none;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.compare .tag-before { left: 0.9rem; }
.compare .tag-after { right: 0.9rem; background: var(--accent); color: var(--ink-900); }
.compare-caption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted-dark);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.compare-caption code {
  font-size: 0.8rem;
  color: #fff;
}

/* ---------- Abschnitte ---------- */
.section { padding-block: var(--section); }
.section.alt { background: var(--paper-2); }
.section.dark {
  background: var(--ink-900);
  color: #fff;
}
.section-head {
  max-width: 62ch;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}
.section-head h2 {
  font-size: clamp(1.7rem, 1.2rem + 2.2vw, 2.75rem);
}
.section-head p {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 1rem 0 0;
}
.dark .section-head p { color: var(--muted-dark); }
.dark .eyebrow { color: var(--accent); }
.eyebrow.on-light { color: var(--accent-deep); }

/* Schritte */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
  counter-reset: schritt;
}
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.steps li {
  counter-increment: schritt;
  padding: 1.75rem 1.5rem 1.5rem;
  border-top: 2px solid var(--text);
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), transparent);
}
.steps li::before {
  content: "0" counter(schritt);
  font-family: var(--mono);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--accent-deep);
  display: block;
  line-height: 1;
  margin-bottom: 1rem;
}
.steps h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.steps p { color: var(--muted); margin: 0; }
.steps .dauer {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--line);
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
}

/* Finishes */
.finish-chips {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(8.5rem, 1fr));
  gap: 0.75rem;
}
.finish-chips li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}
.swatch {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  flex: none;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.12);
}
.swatch-glanz { background: radial-gradient(circle at 30% 25%, #ffffff 0, #b0202a 22%, #5c0b12 100%); }
.swatch-matt { background: #5f6572; }
.swatch-satin { background: linear-gradient(135deg, #3a4a63 0%, #6b7f9e 50%, #3a4a63 100%); }
.swatch-chrom { background: linear-gradient(160deg, #ffffff 0%, #9aa3ad 35%, #ffffff 50%, #6b737c 65%, #e8ecef 100%); }
.swatch-satin-chrom { background: linear-gradient(160deg, #e4e7ea 0%, #a7adb4 45%, #d9dde1 100%); }
.swatch-gebuerstet { background: repeating-linear-gradient(90deg, #8d939a 0 1px, #b5bbc2 1px 3px); }
.swatch-carbon { background: repeating-linear-gradient(45deg, #202226 0 3px, #34373d 3px 6px), #202226; }
.swatch-color-shift { background: conic-gradient(from 200deg, #4b2c9b, #2b7fb8, #3dbb8a, #b445a2, #4b2c9b); }

.finish-hint {
  margin: -1.25rem 0 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.finish-grid {
  display: grid;
  gap: 1.5rem 1.25rem;
}
@media (min-width: 540px) { .finish-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .finish-grid { grid-template-columns: repeat(3, 1fr); } }
.finish-grid figure { margin: 0; min-width: 0; }
.finish-grid .compare {
  box-shadow: 0 0 0 1px var(--line), 0 20px 40px -28px rgba(0, 0, 0, 0.45);
}
.finish-grid figcaption {
  padding: 0.85rem 0.25rem 0;
  display: flex;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
  align-items: baseline;
  flex-wrap: wrap;
}
.finish-grid figcaption strong { font-size: 1rem; }
.finish-grid figcaption span {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.second-compare {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  gap: 1.5rem 3rem;
  align-items: center;
}
@media (min-width: 900px) { .second-compare { grid-template-columns: 1fr 1.4fr; } }
.second-compare h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
.second-compare p { color: var(--muted); }
.second-compare .compare { --ratio: 3 / 2; box-shadow: 0 0 0 1px var(--line); }
.second-compare .compare-caption { color: var(--muted); }
.second-compare .compare-caption code { color: var(--text); }

/* Einbindung */
.integration {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 700px) { .integration { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .integration { grid-template-columns: repeat(4, 1fr); } }
.card {
  background: var(--ink-800);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.card h3 { font-size: 1.2rem; overflow-wrap: anywhere; }
.card .badge {
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(245, 196, 0, 0.4);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}
.card p { color: var(--muted-dark); margin: 0; }
.card ul { margin: 0; padding-left: 1.1rem; color: var(--muted-dark); }
.card li { margin-bottom: 0.3rem; }
.card li::marker { color: var(--accent); }

.code-block {
  margin: 2rem 0 0;
  background: #06070a;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.code-block .code-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-dark);
}
.code-block pre {
  margin: 0;
  padding: 1.1rem 1.25rem;
  overflow-x: auto;
  font-size: 0.86rem;
  line-height: 1.6;
  color: #e6e9ef;
}
.code-block .tok-attr { color: #9ad0ff; }
.code-block .tok-val { color: var(--accent); }
.code-block .tok-tag { color: #ff8fa3; }
.code-notes {
  margin: 1.25rem 0 0;
  color: var(--muted-dark);
  font-size: 0.95rem;
  display: grid;
  gap: 0.4rem;
  padding-left: 1.1rem;
}
.code-notes code { color: #fff; font-size: 0.85em; }

/* Preise */
.pricing {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 820px) { .pricing { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }
.price {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price.is-featured {
  border-color: var(--text);
  box-shadow: 0 30px 50px -30px rgba(0,0,0,0.4);
}
.price.is-featured::before {
  content: "Empfehlung";
  position: absolute;
  top: -0.75rem;
  left: 1.5rem;
  background: var(--accent);
  color: var(--ink-900);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}
.price h3 {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.price .amount {
  font-size: clamp(2.4rem, 2rem + 1.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0.75rem 0 0.25rem;
}
.price .amount small {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
  margin-left: 0.25rem;
}
.price .per {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}
.price .per strong { color: var(--text); }
.price ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.price li::before {
  content: "";
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.6rem;
  background: var(--accent);
  transform: rotate(45deg);
}
.price .btn { margin-top: auto; justify-content: center; }
.pricing-notes {
  margin-top: 1.75rem;
  display: grid;
  gap: 0.75rem 2rem;
  color: var(--muted);
  font-size: 0.95rem;
}
@media (min-width: 820px) { .pricing-notes { grid-template-columns: 1fr 1fr; } }
.pricing-notes strong { color: var(--text); }

/* Feature-Leiste unter den Schritten (Logo, Dauer, Datenschutz) */
.feature-strip {
  list-style: none;
  padding: 0;
  margin: clamp(2.5rem, 5vw, 4rem) 0 0;
  display: grid;
  gap: 1rem;
}
@media (min-width: 760px) { .feature-strip { grid-template-columns: repeat(3, 1fr); } }
.feature-strip li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1.25rem 1.35rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.feature-strip svg {
  width: 1.75rem;
  height: 1.75rem;
  flex: none;
  color: var(--accent-deep);
  margin-top: 0.1rem;
}
.feature-strip h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.feature-strip p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* Im Laden */
.laden {
  background:
    radial-gradient(40rem 20rem at 100% 0%, rgba(245, 196, 0, 0.14), transparent 65%),
    var(--paper);
}
.laden-grid {
  display: grid;
  gap: 2.5rem 3.5rem;
  align-items: center;
}
@media (min-width: 900px) { .laden-grid { grid-template-columns: 1.15fr 1fr; } }
.laden .section-head { margin-bottom: 1.75rem; }
.laden-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
  counter-reset: punkt;
}
.laden-points li {
  counter-increment: punkt;
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 0.25rem 0.9rem;
  padding: 1.1rem 1.25rem 1.1rem 1rem;
  border-left: 3px solid var(--accent);
  background: #fff;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.laden-points li::before {
  content: "0" counter(punkt);
  grid-row: 1 / span 2;
  font-family: var(--mono);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--accent-deep);
  line-height: 1.2;
}
.laden-points h3 { font-size: 1.05rem; }
.laden-points p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* Mockup-Fotos (iPad im Laden, Laptop mit Widget) */
.mockup { margin: 0; min-width: 0; }
.mockup img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 70px -35px rgba(0, 0, 0, 0.7), 0 0 0 1px var(--line);
}
.mockup figcaption {
  margin-top: 0.8rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.dark .mockup img { box-shadow: 0 40px 70px -35px rgba(0, 0, 0, 0.9), 0 0 0 1px var(--line-dark); }
.dark .mockup figcaption { color: var(--muted-dark); }
.mockup-wide { max-width: 60rem; }
.mockup-duo {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: end;
  margin: 0 0 clamp(2rem, 4vw, 3rem);
}
.mockup-phone { max-width: 22rem; }
@media (min-width: 900px) {
  .mockup-duo { grid-template-columns: minmax(0, 1fr) minmax(0, 17rem); }
  .mockup-phone { max-width: none; }
}

/* Zusatzoptionen unter den Tarifen */
.addons {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1rem;
}
@media (min-width: 820px) { .addons { grid-template-columns: repeat(3, 1fr); } }
.addons li {
  display: grid;
  gap: 0.3rem;
  padding: 1.2rem 1.35rem;
  background: var(--paper-2);
  border: 1px dashed rgba(20, 24, 29, 0.28);
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  color: var(--muted);
}
.addons strong { color: var(--text); }
.addon-price {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}
.addon-price small {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
  margin-left: 0.3rem;
}

/* Datenschutz kurz */
.privacy-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 760px) { .privacy-grid { grid-template-columns: repeat(2, 1fr); } }
.privacy-grid div {
  padding: 1.25rem 1.35rem;
  border-left: 3px solid var(--accent);
  background: #fff;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.privacy-grid h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.privacy-grid p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* FAQ */
.faq {
  max-width: 62rem;
  border-top: 1px solid var(--line);
}
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 3rem 1.15rem 0;
  font-weight: 700;
  font-size: 1.05rem;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--mono);
  font-size: 1.4rem;
  color: var(--accent-deep);
  transition: transform 200ms var(--ease);
}
.faq details[open] summary::after { content: "–"; }
.faq summary:hover { color: var(--accent-deep); }
.faq .answer {
  padding: 0 0 1.25rem;
  color: var(--muted);
  max-width: 70ch;
}
.faq .answer p:last-child { margin-bottom: 0; }

/* Kontakt */
.contact .wrap {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) { .contact .wrap { grid-template-columns: 1.2fr 1fr; } }
.contact h2 { font-size: clamp(1.8rem, 1.2rem + 2.4vw, 3rem); }
.contact p { color: var(--muted-dark); font-size: 1.08rem; }
.contact-box {
  background: var(--ink-800);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.contact-box dl { margin: 0; display: grid; gap: 0.9rem; }
.contact-box dt {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-dark);
}
.contact-box dd { margin: 0.15rem 0 0; font-size: 1.05rem; }
.contact-box a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.contact-box a:hover { color: #ffd83a; }

/* Kontaktformular (dunkler Abschnitt): Felder wie die Box, Fokus in Akzentgelb */
.contact-form { display: grid; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line-dark); }
.contact-form .form-row { display: grid; gap: 1rem; }
@media (min-width: 600px) { .contact-form .form-row { grid-template-columns: 1fr 1fr; } }
.contact-form .field { display: grid; gap: 0.35rem; min-width: 0; }
.contact-form label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-dark);
}
.contact-form .req { color: var(--accent); }
.contact-form .optional { text-transform: none; letter-spacing: 0; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: #fff;
  background: var(--ink-900);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 0.7rem 0.85rem;
  transition: border-color 150ms;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(154, 163, 178, 0.7); }
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.4rem;
  background: var(--ink-900) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' fill='none' stroke='%239aa3b2' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 0.85rem center / 1rem;
}
.contact-form select option { color: var(--text); background: #fff; }
.contact-form textarea { resize: vertical; min-height: 7.5rem; }
.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover { border-color: rgba(255, 255, 255, 0.3); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--accent); outline: none; }
.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.contact-form .field-check {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.65rem;
}
.contact-form .field-check input {
  width: 1.15rem;
  height: 1.15rem;
  margin: 0.15rem 0 0;
  padding: 0;
  accent-color: var(--accent);
}
.contact-form .field-check label {
  font-family: var(--font);
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
  color: #fff;
}
.contact-form .hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.contact-form .form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem 1rem; }
.contact-form .form-hint { font-size: 0.85rem; color: var(--muted-dark); }
.contact-form button[disabled] { opacity: 0.6; cursor: wait; transform: none; }
.form-status { margin: 0; font-size: 0.98rem; }
.form-status:empty { display: none; }
.form-status.is-ok { color: var(--accent); font-weight: 700; }
.form-status.is-fehler { color: #ff9b8f; }
.contact-form.is-gesendet { border-bottom: 0; padding-bottom: 0; }

/* Fuß */
.site-footer {
  background: var(--ink-900);
  color: var(--muted-dark);
  border-top: 1px solid var(--line-dark);
  padding-block: 2rem;
  font-size: 0.9rem;
}
.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: center;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
}
.site-footer a { color: inherit; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Rechtstexte ---------- */
.legal-hero {
  background: var(--ink-900);
  color: #fff;
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.legal-hero h1 { font-size: clamp(1.9rem, 1.3rem + 2.5vw, 3rem); }
.legal-hero p { color: var(--muted-dark); margin: 0.75rem 0 0; }
.legal {
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
}
.legal .wrap { max-width: 50rem; }
.legal h2 {
  font-size: 1.35rem;
  margin: 2.5rem 0 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.legal h2:first-of-type { margin-top: 0; border-top: 0; padding-top: 0; }
.legal h3 { font-size: 1.08rem; margin: 1.5rem 0 0.5rem; }
.legal p, .legal li { color: #2b3038; }
.legal li { margin-bottom: 0.35rem; }
.legal table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin: 1rem 0;
}
.legal th, .legal td {
  text-align: left;
  vertical-align: top;
  padding: 0.6rem 0.7rem;
  border-bottom: 1px solid var(--line);
}
.legal th { font-weight: 700; background: var(--paper-2); }
.table-scroll { overflow-x: auto; }
.legal address { font-style: normal; }
.platzhalter {
  background: #fff3bf;
  color: #5a4500;
  padding: 0 0.2em;
  border-radius: 2px;
  font-family: var(--mono);
  font-size: 0.92em;
}
.entwurf {
  background: #fff3bf;
  border: 1px dashed #c79e00;
  color: #5a4500;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.entwurf strong { color: #3f3000; }
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.legal-nav a {
  font-size: 0.85rem;
  text-decoration: none;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
}
.legal-nav a[aria-current="page"] { background: var(--text); color: #fff; border-color: var(--text); }
.legal-nav a:hover { border-color: var(--text); color: var(--text); }
.legal-nav a[aria-current="page"]:hover { color: #fff; }

/* ---------- Bewegung ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
