/* =============================================
   RECIN Website 2.0 — "mega einfach"
   Apple-orientiert, aber nicht zu viel davon.
   Ein-Seiter (index) + Basis-Styles für die
   Unterseiten (kontakt, impressum, datenschutz).
   ============================================= */

/* ── Inter, selbst gehostet (woff2, kein Google-CDN) ── */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* ── PT Mono, selbst gehostet (Überschriften) ── */
@font-face {
  font-family: 'PT Mono';
  src: url('../fonts/PTMono-Regular.woff2') format('woff2'),
       url('../fonts/PTMono-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #4935e2;
  --primary-dark: #3714c0;
  --ink: #14161f;          /* Header/CTA-Hintergrund (Enterprise-Tinte) */
  --text: #14161f;
  --text-soft: #55555e;
  --text-faint: #86868b;
  --bg: #ffffff;
  --bg-soft: #f5f5f7;
  --line: #e4e6ef;
  --line-strong: #d2d5e2;
  --radius: 8px;           /* flach/architektonisch statt Apple-Pille */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI",
          "Helvetica Neue", Arial, sans-serif;
  --head: 'PT Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  --mono: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
}

/* ── Überschriften: PT Mono, technisch/präzise ── */
.lp-claim, .lp-pagetitle,
.lp-feature h2, .lp-cta h2, .lp-showcase-title,
.pf-copy h2, .pf-moretitle, .pf-ctaband h2, .pf-roadmap h3,
.sec-band h2 {
  font-family: var(--head);
  font-weight: 400;
  letter-spacing: -0.02em;
  word-spacing: -0.22em;   /* Mono-Leerzeichen sind sehr breit */
}
/* Mono braucht weniger Größe/Gewicht, sonst wirkt es zu breit */
.lp-claim { font-weight: 400 !important; }

/* ── Reset & Basis ─────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* ── Header: neutral, dunkel, weißes Logo ──── */
header {
  background: rgba(20, 22, 31, 0.82);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav {
  display: flex;
  align-items: center;
  min-height: 52px;
  gap: 24px;
}

.nav .logo img { height: 42px; display: block; }

.nav-links {
  display: flex;
  gap: 22px;
  margin-left: auto;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 4px;
}
.nav-links a:hover { color: #ffffff; }
.nav-links a.active { color: #ffffff; }

/* Buttons im Header: .nav-links a würde sonst die Schriftfarbe
   übersteuern (weiß auf weiß) — Spezifität gezielt erhöhen */
.nav-links a.btn-light { color: var(--ink); }
.nav-links a.btn-light:hover { color: var(--ink); }
.nav-links a.btn-primary { color: #ffffff; }

/* ── Dropdown-Menü (Produkt) ─────────────────── */
.nav-dd { position: relative; display: inline-flex; }
.nav-dd-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.82);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 4px;
}
.nav-dd-btn:hover, .nav-dd-btn.active { color: #ffffff; }
.nav-chev { transition: transform 0.16s ease; }
.nav-dd:hover .nav-chev, .nav-dd.open .nav-chev { transform: rotate(180deg); }
.nav-dd-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 210px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 16px 40px rgba(20,22,31,0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
  z-index: 60;
}
.nav-dd:hover .nav-dd-menu,
.nav-dd:focus-within .nav-dd-menu,
.nav-dd.open .nav-dd-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dd-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--text) !important;   /* überschreibt .nav-links a (weiß) */
  font-size: 14px;
  font-weight: 500;
}
.nav-dd-menu a:hover { background: var(--bg-soft); color: var(--primary) !important; }

/* Envelope-Icon (Kontakt) */
.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.82);
  padding: 6px;
}
.nav-icon:hover, .nav-icon.active { color: #ffffff; }
.nav-icon-txt { display: none; }   /* nur im mobilen Menü */

/* Hamburger-Button (nur mobil sichtbar) */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 9px;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  height: 2px;
  width: 22px;
  border-radius: 2px;
  background: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav.open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lang-switch select {
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  padding: 6px 10px;
  font-family: var(--font);
  font-size: 13px;
}
.lang-switch select:focus { outline: none; border-color: rgba(255,255,255,0.6); }
.lang-switch option { color: #111; }

/* ── Buttons ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius);   /* flach/architektonisch */
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: var(--font);
}

.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); color: #fff; }

/* helle Fläche (auf dunklem Grund, z.B. Nav/CTA): solide, klar umrandet */
.btn-light { background: #ffffff; color: var(--ink); border-color: #ffffff; }
.btn-light:hover { background: #ececf1; color: var(--ink); }

/* Outline: klare 1px-Kante statt Pille */
.btn-ghost { background: #ffffff; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { background: #ffffff; color: var(--primary); border-color: var(--primary); }

.btn-big { padding: 13px 26px; font-size: 15px; }

/* Legacy-Alias (Unterseiten nutzen btn-secondary) */
.btn-secondary { background: #ffffff; color: var(--ink); border: 1px solid var(--line-strong); }
.btn-secondary:hover { background: #ffffff; color: var(--primary); border-color: var(--primary); }

/* ── Hero: asymmetrisch, editorial ─────────── */
.lp-hero {
  padding: 44px 0 70px;
  overflow: hidden;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  grid-template-areas: "copy chaos";
  column-gap: 40px;
  align-items: center;
}
.lp-hero-copy { grid-area: copy; }
.lp-chaos     { grid-area: chaos; }

/* Eyebrow-Label über der Headline (Mono, Versal) */
.lp-eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 16px;
}
/* Textlink mit Pfeil unter dem Lead */
.lp-textlink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.lp-textlink::after { content: "→"; transition: transform 0.16s ease; }
.lp-textlink:hover { color: var(--primary); }
.lp-textlink:hover::after { transform: translateX(3px); }

.lp-kicker {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}

.lp-claim {
  font-size: clamp(38px, 5vw, 64px);   /* Mono ist breiter → kleiner setzen */
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
}

/* das Wort "chaos": Buchstaben finden sich */
.w-chaos {
  font-weight: 400;
  color: var(--primary);
}

.w-chaos i {
  display: inline-block;
  font-style: normal;
}

@media (prefers-reduced-motion: no-preference) {
  .w-chaos i { animation: letterSettle 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
  .w-chaos i:nth-child(1) { --lr: -14deg; --ly: -18px; animation-delay: 0.15s; }
  .w-chaos i:nth-child(2) { --lr: 10deg;  --ly: 14px;  animation-delay: 0.25s; }
  .w-chaos i:nth-child(3) { --lr: -8deg;  --ly: -10px; animation-delay: 0.35s; }
  .w-chaos i:nth-child(4) { --lr: 16deg;  --ly: 20px;  animation-delay: 0.45s; }
  .w-chaos i:nth-child(5) { --lr: -12deg; --ly: -14px; animation-delay: 0.55s; }
  @keyframes letterSettle {
    from { transform: translateY(var(--ly)) rotate(var(--lr)); opacity: 0.4; }
    to   { transform: none; opacity: 1; }
  }
}

.lp-sub {
  margin: 24px 0 0;
  max-width: 560px;
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-soft);
}

.lp-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Story-Szene: der Graf baut sich auf ───── */
.lp-chaos {
  position: relative;
  height: 440px;
  margin-left: 28px;                 /* setzt die Szene von der Copy ab */
  padding: 40px 16px 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(30, 22, 80, 0.10);
}
/* Browser-Titelleiste */
.lp-chaos::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 30px;
  background: #f3f4fb;
  border-bottom: 1px solid var(--line);
  border-radius: 14px 14px 0 0;
}
/* Ampel-Punkte */
.lp-chaos::after {
  content: "";
  position: absolute;
  top: 11px; left: 14px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #e2554f;
  box-shadow: 16px 0 0 #e8b84b, 32px 0 0 #4fae5a;
}

/* ── Liquid-Glass: Audit-Panel, schwebt über der Szene ── */
.lp-glass {
  position: absolute;
  left: 20px; right: 20px; bottom: 18px;
  overflow: hidden;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.30), rgba(255,255,255,.10) 42%, rgba(255,255,255,.20));
  border: 1px solid rgba(255,255,255,.55);
  backdrop-filter: blur(20px) saturate(180%) brightness(1.06);
  -webkit-backdrop-filter: blur(20px) saturate(180%) brightness(1.06);
  box-shadow: 0 14px 40px rgba(28,22,80,.16),
              inset 0 1px 1px rgba(255,255,255,.75),
              inset 0 -1px 1px rgba(255,255,255,.20);
}
.lp-glass::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(120deg, transparent 34%, rgba(255,255,255,.42) 49%, transparent 64%);
  animation: lpSheen 6.5s ease-in-out infinite;
}
.lp-glass::after {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(220px circle at var(--mx,70%) var(--my,-10%), rgba(255,255,255,.28), transparent 60%);
  transition: background .12s ease-out;
}
.lp-glass > * { position: relative; z-index: 1; }
.lp-glass-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.lp-glass-head { margin-bottom: 8px; }
.lp-glass-k { font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--primary-dark); }
.lp-glass-tag { font-family: var(--mono); font-size: 10.5px; color: #0f6e56; border: 1px solid #bfe3d5; background: #eaf6f1; border-radius: 6px; padding: 2px 7px; }
.lp-glass-v { font-size: 13px; color: var(--ink); }
.lp-glass-src { font-family: var(--mono); font-size: 11px; color: var(--text-faint); white-space: nowrap; }
@keyframes lpSheen { 0%,100% { transform: translateX(-42%); } 50% { transform: translateX(42%); } }
@media (prefers-reduced-motion: reduce) {
  .lp-glass::before { animation: none; opacity: .4; }
}

.lp-story {
  width: 100%;
  height: 100%;
  font-family: var(--font);
}

/* Knoten im RECIN-Look: farbiger Kreis, Name darunter */
.st-node circle.st-dot {
  stroke: #ffffff;
  stroke-width: 2.5;
  filter: drop-shadow(0 6px 14px rgba(29, 29, 31, 0.18));
}

.st-name {
  font-size: 14px;
  font-weight: 700;
  fill: var(--text);
  paint-order: stroke;
  stroke: #ffffff;
  stroke-width: 4;
}

.st-name--small { font-size: 12px; font-weight: 500; }

.st-node {
  opacity: 0;
  transform: translateY(14px) scale(0.92);
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.st-node.on { opacity: 1; transform: none; }

/* Typ-Badge: erscheint, wenn RECIN die Rolle erkennt */
.st-badge {
  font-size: 12px;
  font-weight: 500;
  fill: var(--primary);
  paint-order: stroke;
  stroke: #ffffff;
  stroke-width: 4;
  opacity: 0;
  transform: translateY(6px);
  transform-box: fill-box;
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.st-node.typed .st-badge { opacity: 1; transform: none; }

/* Kanten: zeichnen sich, Label folgt */
.st-edge line {
  stroke: var(--primary);
  stroke-width: 2;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  opacity: 0.75;
  transition: stroke-dashoffset 0.8s ease;
}
.st-edge.on line { stroke-dashoffset: 0; }

.st-edge text {
  font-size: 12.5px;
  fill: var(--text-faint);
  paint-order: stroke;
  stroke: #ffffff;
  stroke-width: 4;
  opacity: 0;
  transition: opacity 0.5s ease 0.5s;
}
.st-edge.on text { opacity: 1; }

/* Szene blendet aus, Botschaft blendet zentriert ein */
#st-scene {
  transition: opacity 0.8s ease;
}
#st-scene.fade { opacity: 0; }

.st-msg text {
  font-weight: 500;
  font-size: 22px;
  fill: var(--text);
  opacity: 0;
  transform: translateY(10px);
  transform-box: fill-box;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.st-msg text:last-child { fill: var(--primary); }
.st-msg.on text { opacity: 1; transform: none; }
.st-msg.on text:last-child { transition-delay: 0.15s; }

/* ── Mono-Section-Label (Kicker über Sektionen) ── */
.sec-label {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ── Trust-Bar ─────────────────────────────── */
.trust-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 34px;
  align-items: center;
  padding: 18px 0;
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--text);
}
.trust-chip .tic {
  width: 18px; height: 18px;
  stroke: var(--primary);
  stroke-width: 1.8;
  fill: none;
  flex: none;
}

/* ── Security-Band (dunkel, Liquid-Glass-Karten) ── */
.sec-band {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #e9eaf2;
  padding: 72px 0;
}
.sec-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 90% at 85% 0%, rgba(73,53,226,0.30) 0%, transparent 60%);
  pointer-events: none;
}
.sec-band .container { position: relative; }
.sec-band .sec-label { color: #b7aef0; }
.sec-band h2 {
  font-size: clamp(24px, 3.4vw, 32px);
  line-height: 1.18;
  color: #fff;
  margin: 12px 0 10px;
}
.sec-sub {
  color: #a7abc4;
  font-size: 17px;
  max-width: 54ch;
  margin-bottom: 38px;
}
.sec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.sec-card {
  position: relative;
  overflow: hidden;
  padding: 24px 22px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(255,255,255,0.11), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.18), 0 12px 34px rgba(0,0,0,0.26);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.sec-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
}
.sec-card:hover { border-color: rgba(183,174,240,0.45); transform: translateY(-2px); }
.sec-card .sic {
  width: 26px; height: 26px;
  stroke: #b7aef0; stroke-width: 1.7; fill: none;
  margin-bottom: 14px;
}
.sec-card h3 { font-size: 16px; font-weight: 500; color: #fff; margin-bottom: 8px; letter-spacing: -0.01em; }
.sec-card p { font-size: 14.5px; color: #a7abc4; line-height: 1.6; }

@media (max-width: 900px) {
  .lp-hero-grid { grid-template-columns: 1fr; grid-template-areas: "copy" "chaos"; }
  .lp-chaos { height: 360px; margin-top: 10px; margin-left: 0; padding: 34px 10px 10px; }
  .sec-grid { grid-template-columns: 1fr; }
  .sec-band { padding: 52px 0; }
}

/* ── Stilisierter Screenshot ───────────────── */
.lp-visual {
  margin-top: 40px;
  max-width: 880px;          /* dezenter, nicht mehr volle Breite */
  margin-left: auto;
  margin-right: auto;
}

.lp-visual svg {
  width: 100%;
  height: auto;
  display: block;
}

.lp-caption {
  text-align: center;
  color: var(--text-faint);
  font-size: 13px;
  margin-top: 14px;
}

/* ── Icebreaker: Pain → Slogan ─────────────── */
.lp-icebreaker {
  padding: 58px 0;
  text-align: center;
  background: var(--ink);
}
.ice-pain {
  font-size: clamp(16px, 2vw, 20px);
  color: #a7abc4;
  margin-bottom: 12px;
}
.ice-slogan {
  font-family: var(--head);
  font-weight: 400;
  letter-spacing: -0.02em;
  word-spacing: -0.22em;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.1;
  color: #ffffff;
}

/* ── Produkt-Showcase mit Tabs ─────────────── */
.lp-showcase { padding: 84px 0 72px; }
.lp-showcase-title {
  font-size: clamp(24px, 3.4vw, 32px);
  line-height: 1.18;
  margin: 12px 0 26px;
}
.tabs {
  display: flex;
  gap: 2px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.tab {
  appearance: none;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-soft);
  padding: 12px 18px;
  cursor: pointer;
  position: relative;
  transition: color 0.16s ease;
}
.tab:hover { color: var(--ink); }
.tab[aria-selected="true"] { color: var(--ink); }
.tab[aria-selected="true"]::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: -1px;
  height: 2px;
  background: var(--primary);
}
.tab:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; border-radius: 4px; }
.tab-panel .lp-visual { margin-top: 0; }
.tab-demo {
  padding: 56px 40px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg-soft);
  text-align: center;
}
.tab-demo h3 {
  font-family: var(--head);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.tab-demo p {
  color: var(--text-soft);
  max-width: 56ch;
  margin: 0 auto;
}

/* ── 3 Argumente ───────────────────────────── */
.lp-features {
  background: var(--bg-soft);
  padding: 100px 0;
}

.lp-features .container {
  display: flex;
  flex-direction: column;
  gap: 84px;
}

.lp-feature {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: center;
}

.lp-feature--flip { direction: rtl; }
.lp-feature--flip .lp-feature-copy { direction: ltr; text-align: right; }
.lp-feature--flip .lp-num { direction: ltr; text-align: left; }

.lp-num {
  font-size: clamp(90px, 14vw, 170px);
  font-weight: 800;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 2px rgba(73, 53, 226, 0.35);
  text-stroke: 2px rgba(73, 53, 226, 0.35);
}

.lp-feature h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.lp-feature p {
  color: var(--text-soft);
  font-size: 17px;
  max-width: 520px;
}

.lp-feature--flip p { margin-left: auto; }

@media (max-width: 820px) {
  .lp-feature,
  .lp-feature--flip { grid-template-columns: 1fr; direction: ltr; gap: 8px; }
  .lp-feature--flip .lp-feature-copy { text-align: left; }
  .lp-num { font-size: 72px; }
}

/* ── CTA-Band ──────────────────────────────── */
.lp-cta {
  background: var(--ink);
  color: #ffffff;
  text-align: center;
  padding: 90px 0;
}

.lp-cta h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.lp-cta p {
  margin: 14px 0 30px;
  color: rgba(255,255,255,0.7);
  font-size: 17px;
}

/* ── Footer ────────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-faint);
  font-size: 13px;
}

.footer-tagline {
  flex-basis: 100%;
  color: var(--text-soft);
  font-size: 14px;
  letter-spacing: 0.01em;
}
.footer-links { display: flex; gap: 18px; }
.footer-links a { color: var(--text-faint); }
.footer-links a:hover { color: var(--text); }

/* =============================================
   Unterseiten (kontakt, impressum, datenschutz)
   ============================================= */

.hero {
  padding: 80px 0 50px;
}
.hero-center { text-align: center; }

.hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.hero p { color: var(--text-soft); margin-top: 14px; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.grad { color: var(--primary); }

.card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  max-width: 560px;
  margin: 0 auto 60px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.field { margin-bottom: 16px; text-align: left; }

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 14px;
  font-family: var(--font);
  font-size: 15px;
  background: var(--bg-soft);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
}

.form-hint { font-size: 12px; color: var(--text-faint); margin-top: 10px; }

/* Opt-in / Einwilligung */
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 20px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-soft);
  cursor: pointer;
}
.consent input[type="checkbox"] {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--primary);
  cursor: pointer;
}
.consent a { color: var(--primary); text-decoration: underline; }

/* Honeypot: aus dem Sichtbereich, aber nicht display:none
   (manche Bots überspringen display:none-Felder) */
.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-ok  { margin-top: 14px; color: #1a7f37; font-weight: 600; }
.form-err { margin-top: 14px; color: #c0392b; font-weight: 600; }
.form-ok[hidden], .form-err[hidden] { display: none; }

.legal {
  max-width: 720px;
  padding: 60px 0 80px;
}
.legal h1 { font-size: 34px; margin-bottom: 24px; letter-spacing: -0.01em; }
.legal h2 { font-size: 20px; margin: 28px 0 10px; }
.legal p  { color: var(--text-soft); margin-bottom: 12px; }
.legal h3 { font-size: 16px; margin: 20px 0 8px; }
.legal a  { color: var(--primary); text-decoration: underline; }
[data-lang-block][hidden] { display: none !important; }
.legal-note { font-size: 13px; color: var(--text-faint); border-left: 3px solid var(--primary); padding: 6px 12px; margin-bottom: 24px; }

.todo {
  background: #fdf2d9;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  color: #8a6d1f;
}

/* ── Sanftes Erscheinen (dezent, kein Spektakel) ── */
.reveal { animation: lp-fade 0.7s ease both; }

@keyframes lp-fade {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/* =============================================
   LEBENDIGE GRAFIK (14.07.2026)
   Akt 1: Karte kommt an → Akt 2: Vorschlag wird
   bestätigt → Akt 3: Frage & Antwort mit Quellen.
   12s-Loop, startet erst im Viewport (.play),
   respektiert prefers-reduced-motion.
   ============================================= */

.lp-shot { position: relative; }

.lp-shot svg * { transform-box: fill-box; }

@media (prefers-reduced-motion: no-preference) {

  /* Akt 1 (0–12%): neue Karte gleitet ein */
  .lp-visual.play .anim-card {
    animation: lpCard 12s ease-in-out infinite;
  }
  @keyframes lpCard {
    0%       { opacity: 0; transform: translateY(46px); }
    5%       { opacity: 0; transform: translateY(46px); }
    10%      { opacity: 1; transform: none; }
    97%      { opacity: 1; }
    100%     { opacity: 0; }
  }
  .lp-visual.play .halo-card {
    animation: lpHaloCard 12s ease-in-out infinite;
  }
  @keyframes lpHaloCard {
    0%, 10%  { opacity: 0; }
    13%      { opacity: 0.9; }
    18%      { opacity: 0; }
    74%      { opacity: 0; }
    78%      { opacity: 0.9; }
    86%, 100%{ opacity: 0; }
  }

  /* Akt 2 (33–50%): Vorschlag (gestrichelt) → Bestätigung */
  .lp-visual.play .anim-edge {
    animation: lpEdge 12s ease-in-out infinite;
  }
  @keyframes lpEdge {
    0%, 32%  { opacity: 0;    stroke-dasharray: 8 7; }
    35%      { opacity: 1;    stroke-dasharray: 8 7; }
    38%      { opacity: 0.45; stroke-dasharray: 8 7; }
    41%      { opacity: 1;    stroke-dasharray: 8 7; }
    44%      { stroke-dasharray: 1 0; }
    97%      { opacity: 1;    stroke-dasharray: 1 0; }
    100%     { opacity: 0;    stroke-dasharray: 1 0; }
  }
  .lp-visual.play .anim-node {
    animation: lpNode 12s ease-in-out infinite;
  }
  @keyframes lpNode {
    0%, 43%  { fill: #d6dae6; }
    47%      { fill: #a6d8b8; }
    100%     { fill: #a6d8b8; }
  }
  .lp-visual.play .halo-node {
    animation: lpHaloNode 12s ease-in-out infinite;
  }
  @keyframes lpHaloNode {
    0%, 44%  { opacity: 0; }
    48%      { opacity: 0.9; }
    54%      { opacity: 0; }
    74%      { opacity: 0; }
    78%      { opacity: 0.9; }
    86%, 100%{ opacity: 0; }
  }

  /* Akt 3 (58–90%): Frage tippt, Antwort kommt, Quellen leuchten */
  .lp-visual.play .anim-q {
    animation: lpQ 12s ease-in-out infinite;
  }
  @keyframes lpQ {
    0%, 58%  { opacity: 0; transform: translateY(10px); }
    62%      { opacity: 1; transform: none; }
    97%      { opacity: 1; }
    100%     { opacity: 0; }
  }
  .lp-visual.play .anim-dots {
    animation: lpDots 12s linear infinite;
  }
  @keyframes lpDots {
    0%, 62%  { opacity: 0; }
    63%      { opacity: 1; }
    71%      { opacity: 1; }
    72%, 100%{ opacity: 0; }
  }
  .lp-visual.play .anim-dots circle {
    animation: lpDotBounce 0.9s ease-in-out infinite;
  }
  .lp-visual.play .anim-dots circle:nth-child(2) { animation-delay: 0.15s; }
  .lp-visual.play .anim-dots circle:nth-child(3) { animation-delay: 0.3s; }
  @keyframes lpDotBounce {
    0%, 100% { transform: translateY(0); }
    40%      { transform: translateY(-6px); }
  }
  .lp-visual.play .anim-a {
    animation: lpA 12s ease-in-out infinite;
  }
  @keyframes lpA {
    0%, 71%  { opacity: 0; transform: translateY(10px); }
    75%      { opacity: 1; transform: none; }
    97%      { opacity: 1; }
    100%     { opacity: 0; }
  }
}

/* ── Hotspots: Klick für echten Ausschnitt ──── */
.lp-hotspot {
  position: absolute;
  border: 0;
  background: transparent;
  border-radius: 18px;
  cursor: zoom-in;
  padding: 0;
}

.lp-hotspot:hover,
.lp-hotspot:focus-visible {
  background: rgba(73, 53, 226, 0.05);
  box-shadow: inset 0 0 0 2px rgba(73, 53, 226, 0.45);
  outline: none;
}

.lp-hotspot::after {
  content: "+";
  position: absolute;
  right: 12px;
  top: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 27px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.lp-hotspot:hover::after,
.lp-hotspot:focus-visible::after { opacity: 1; }

.lp-hint { margin-top: 6px; font-size: 13px; }

/* ── Lightbox ──────────────────────────────── */
.lp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* WICHTIG: display:flex würde das hidden-Attribut übersteuern —
   Lightbox lag sonst ab Seitenaufruf über der ganzen Seite */
.lp-lightbox[hidden] { display: none; }

.lp-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 18, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lp-lightbox figure {
  position: relative;
  z-index: 1;
  max-width: min(920px, 92vw);
  margin: 0;
  animation: lp-fade 0.3s ease both;
}

.lp-lightbox img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  background: #ffffff;
}

.lp-lightbox figcaption {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin-top: 16px;
}

.lp-lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: var(--ink);
  font-size: 22px;
  line-height: 34px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}


/* ── Körnung: feine Textur über der ganzen Seite ── */
body.lp::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 4;                 /* unter Header (50) und Lightbox (100) */
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}


/* ── Unterseiten: Preis-Karten & Grid (Altbestand) ── */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 820px) { .grid-3 { grid-template-columns: 1fr; } }

.card.tier { margin: 0; max-width: none; text-align: center; }
.card.tier.featured { border-color: var(--primary); box-shadow: 0 16px 40px rgba(73, 53, 226, 0.15); }

.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(73, 53, 226, 0.08);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 10px;
}

.price { font-size: 40px; font-weight: 800; letter-spacing: -0.02em; }
.per { color: var(--text-faint); font-size: 14px; }
.pricing-note { text-align: center; color: var(--text-faint); font-size: 13px; margin-top: 24px; }

/* ── Produkt-Seite 2.0: editoriale Präsentation ── */
.pf-rows { padding: 10px 0 30px; }

.pf-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}
.pf-row:last-child { border-bottom: none; }
.pf-row--flip { direction: rtl; }
.pf-row--flip > * { direction: ltr; }

.pf-visual {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 42px 18px 18px;
  box-shadow: 0 14px 40px rgba(30, 22, 80, 0.08);
}
/* Browser-Titelleiste + Ampel wie auf der Startseite */
.pf-visual::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 30px;
  background: #f3f4fb;
  border-bottom: 1px solid var(--line);
  border-radius: 14px 14px 0 0;
}
.pf-visual::after {
  content: "";
  position: absolute;
  top: 11px; left: 14px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #e2554f;
  box-shadow: 16px 0 0 #e8b84b, 32px 0 0 #4fae5a;
}
.pf-visual svg { position: relative; }

/* Mono-Section-Label auf der Produktseite */
.pf-seclabel { margin-bottom: 14px; }
.pf-rows .pf-seclabel { display: inline-block; margin-bottom: 4px; }
.pf-visual svg { width: 100%; height: auto; display: block; font-family: var(--font); }

/* Grafik-Bausteine im RECIN-Look */
.pfv-edge  { stroke: var(--primary); stroke-width: 2; opacity: 0.55; }
.pfv-dot   { stroke: #ffffff; stroke-width: 2.5; filter: drop-shadow(0 4px 10px rgba(29,29,31,0.15)); }
.pfv-label { font-size: 12px; font-weight: 500; fill: var(--text-soft); }
.pfv-bubble { fill: #ffffff; stroke: var(--line); }
.pfv-bubble--q { fill: var(--primary); stroke: none; }
.pfv-text  { font-size: 12.5px; fill: var(--text-soft); }
.pfv-text--dark  { fill: var(--text); font-weight: 500; }
.pfv-text--light { fill: #ffffff; }
.pfv-chip  { fill: rgba(73, 53, 226, 0.08); }
.pfv-chiptext { font-size: 9.5px; fill: var(--primary); font-weight: 600; }
.pfv-search { fill: #ffffff; stroke: var(--line); }
.pfv-lens  { fill: none; stroke: var(--text-faint); stroke-width: 2; }
.pfv-lensline { stroke: var(--text-faint); stroke-width: 2; stroke-linecap: round; }
.pfv-result { fill: #ffffff; }
.pfv-result--hit { fill: rgba(73, 53, 226, 0.08); }
.pfv-user  { fill: var(--ink); stroke: #ffffff; stroke-width: 2; }
.pfv-user--b { fill: var(--primary); }
.pfv-usertext { font-size: 10px; font-weight: 700; fill: #ffffff; }

.pf-copy h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.pf-copy p { color: var(--text-soft); font-size: 16.5px; max-width: 520px; }

/* Weitere Funktionen: Linien-Icons, ruhiges Raster */
.pf-more { background: var(--bg-soft); padding: 64px 0; }

.pf-moretitle {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.pf-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.pf-item { display: flex; gap: 14px; align-items: flex-start; }
.pf-item svg {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  margin-top: 2px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pf-item h3 { font-size: 16px; margin-bottom: 6px; }
.pf-item p { color: var(--text-soft); font-size: 14px; }

/* Roadmap: eine dezente Zeile, kein Karten-Look */
.pf-roadmap { padding: 56px 0 20px; }
.pf-roadmap .container {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}
.pf-roadmaplabel {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 2px;
}
.pf-roadmap h3 { font-size: 17px; margin-bottom: 6px; }
.pf-roadmap p { color: var(--text-soft); font-size: 14.5px; max-width: 680px; }

/* Abschluss-Band */
.pf-ctaband {
  background: var(--ink);
  margin-top: 56px;
  padding: 64px 0;
}
.pf-ctainner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.pf-ctaband h2 {
  color: #ffffff;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

@media (max-width: 820px) {
  .pf-row, .pf-row--flip { grid-template-columns: 1fr; direction: ltr; gap: 20px; padding: 32px 0; }
  .pf-items { grid-template-columns: 1fr; }
  .pf-roadmap .container { grid-template-columns: 1fr; gap: 10px; }
}

/* ── Produkt-Seite: Feature-Karten ─────────── */
.lp-featgrid { padding: 10px 0 80px; }

.card.feat {
  margin: 0;
  max-width: none;
  text-align: left;
}
.card.feat .icon { font-size: 26px; margin-bottom: 10px; }
.card.feat h3 { font-size: 18px; margin-bottom: 8px; letter-spacing: -0.01em; }
.card.feat p { color: var(--text-soft); font-size: 14.5px; }

.card.feat--planned {
  margin-top: 24px;
  border: 1px dashed rgba(73, 53, 226, 0.4);
  background: rgba(73, 53, 226, 0.03);
  box-shadow: none;
}

.lp-pagecta { text-align: center; margin-top: 44px; }

/* Preiskarten: Feature-Listen */
.card.tier ul {
  list-style: none;
  margin: 18px 0 22px;
  padding: 0;
}
.card.tier li {
  padding: 7px 0;
  font-size: 14.5px;
  color: var(--text-soft);
  border-bottom: 1px solid var(--bg-soft);
}
.card.tier li:last-child { border-bottom: none; }
.card.tier h3 { font-size: 17px; margin-bottom: 10px; }
.card.tier .price { margin-top: 4px; }

/* Buttons bündig unten: Karte als Flex-Spalte, Liste füllt den
   Restraum, Button schiebt sich per margin-top:auto nach unten.
   align-self:center verhindert das Aufziehen auf volle Breite. */
.card.tier {
  display: flex;
  flex-direction: column;
}
.card.tier ul { flex: 1 1 auto; }
.card.tier .btn {
  margin-top: auto;
  align-self: center;
}

/* ── Unterseiten-Hero im Startseiten-Stil ──── */
.lp-pagehero {
  padding: 80px 0 50px;
  text-align: center;
}

.lp-pagehero .lp-sub { margin-left: auto; margin-right: auto; }

.lp-pagetitle {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

/* ── Zweiphasige Nodes: erst schwarz + Element, dann Farbe + Typ ──
   (Test an st-firma; --morph-fill = Zielfarbe pro Node) */
.st-node--morph .st-dot {
  fill: var(--ink);
  transition: fill 0.6s ease;
}
.st-node--morph.typed .st-dot { fill: var(--morph-fill, #e8cb8b); }

.st-node--morph .st-eltype {
  font-size: 13px;
  font-weight: 500;
  fill: var(--text-soft);
  paint-order: stroke;
  stroke: #ffffff;
  stroke-width: 4;
  transition: opacity 0.4s ease;
}
.st-node--morph.typed .st-eltype { opacity: 0; }

.st-node--morph .st-final {
  opacity: 0;
  transition: opacity 0.45s ease 0.15s;
}
.st-node--morph.typed .st-final { opacity: 1; }

.st-eltype--small { font-size: 11px; }

/* Reset-Helfer: alle Übergänge in der Story kurzzeitig aus */
.st-noanim, .st-noanim * { transition: none !important; }

/* =============================================
   MOBILE-OPTIMIERUNG (alle Seiten, 19.07.2026)
   Ein konsolidierter Block statt verstreuter Fixes.
   ============================================= */

/* ── Tablets & schmale Fenster ── */
@media (max-width: 900px) {
  .pf-visual svg { max-width: 420px; margin: 0 auto; }
}

/* ── Smartphones ── */
@media (max-width: 720px) {

  /* Header: Hamburger-Menü (apple-Stil) */
  .nav {
    position: relative;
    flex-wrap: nowrap;
    gap: 12px;
    padding: 8px 0;
    min-height: 0;
  }
  .nav .logo img { height: 42px; }
  .nav-burger { display: flex; }

  /* nav-links wird zum Dropdown-Panel */
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    background: var(--ink);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;
    padding: 8px 0;
    box-shadow: 0 24px 50px rgba(0,0,0,0.35);
    z-index: 60;
  }
  .nav.open .nav-links { display: flex; }
  .nav-links > * { width: 100%; }
  .nav-links > a,
  .nav-dd-btn { padding: 13px 22px; font-size: 15px; }

  /* Produkt: inline aufklappbar statt Hover-Panel */
  .nav-dd { display: block; }
  .nav-dd-btn { width: 100%; justify-content: space-between; }
  .nav-dd-menu {
    position: static;
    min-width: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  .nav-dd:hover .nav-dd-menu { display: none; }   /* kein Hover-Öffnen mobil */
  .nav-dd.open .nav-dd-menu { display: block; }
  .nav-dd-menu a {
    color: rgba(255,255,255,0.82) !important;
    padding: 11px 22px 11px 36px;
    border-radius: 0;
  }
  .nav-dd-menu a:hover { background: rgba(255,255,255,0.06); color: #ffffff !important; }

  /* Kontakt: Icon + Text als Zeile */
  .nav-icon { justify-content: flex-start; gap: 10px; padding: 13px 22px; }
  .nav-icon-txt { display: inline; font-size: 15px; }

  /* Sprachwähler als volle Zeile */
  .lang-switch { padding: 10px 22px 4px; }
  .lang-switch select { width: 100%; padding: 9px 10px; }

  /* Heros: weniger Luft, volle Buttons */
  .lp-hero { padding: 44px 0 36px; }
  .lp-pagehero { padding: 44px 0 28px; }
  .lp-kicker { margin-bottom: 12px; }
  .lp-sub { font-size: 16px; }
  .lp-actions { margin-top: 24px; }
  .lp-actions .btn-big,
  .lp-pagecta .btn-big { width: 100%; text-align: center; }

  /* Story-Animation: Höhe aus dem Seitenverhältnis statt fix */
  .lp-chaos { height: auto; margin-left: 0; }
  .lp-story { height: auto; aspect-ratio: 480 / 440; }

  /* Startseiten-Sektionen kompakter */
  .lp-visual { margin-top: 36px; }
  .lp-features { padding: 52px 0; }
  .lp-features .container { gap: 44px; }
  .lp-cta { padding: 56px 0; }

  /* Produktseite */
  .pf-rows { padding: 0 0 10px; }
  .pf-visual { padding: 12px; }
  .pf-copy p { font-size: 15.5px; }
  .pf-more { padding: 40px 0; }
  .pf-items { gap: 24px; }
  .pf-roadmap { padding: 36px 0 8px; }
  .pf-ctaband { padding: 44px 0; margin-top: 36px; }
  .pf-ctainner { justify-content: center; text-align: center; }
  .pf-ctainner .btn-big { width: 100%; text-align: center; }

  /* Formulare: 16px verhindert Auto-Zoom in iOS Safari */
  .card { padding: 20px; }
  .field input,
  .field textarea,
  .field select { font-size: 16px; }
  .card .btn-big { width: 100%; text-align: center; }

  /* Preiskarten */
  .price { font-size: 34px; }

  /* Rechtsseiten & Footer */
  .legal { padding: 40px 0 56px; }
  footer { padding: 18px 0; }
  .footer-inner { justify-content: center; text-align: center; }

  /* Lightbox: nahezu volle Breite */
  .lp-lightbox figure { width: 94vw; max-width: 94vw; }
}

/* ── Sehr kleine Geräte: Header-CTA weglassen
     (Kontakt-Link bleibt, kein Funktionsverlust) ── */
@media (max-width: 420px) {
  .nav-links a.btn-light[href="kontakt.html"] { display: none; }
  .nav-links { gap: 12px; }
  .lp-claim { font-size: 40px; }
  .lp-pagetitle { font-size: 34px; }
}


/* ── Ressourcen / Artikel ──────────────────── */
.res-hero { padding: 64px 0 8px; }
.res-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; padding: 24px 0 72px; }
.res-card {
  display: block;
  padding: 24px 24px 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg);
  transition: border-color 0.16s ease, transform 0.16s ease;
}
.res-card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.res-card .res-kicker { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); }
.res-card h3 { font-family: var(--head); font-weight: 400; font-size: 19px; letter-spacing: -0.01em; margin: 10px 0 8px; color: var(--text); }
.res-card p { color: var(--text-soft); font-size: 15px; }
.res-card .res-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 14px; font-weight: 500; color: var(--primary); }

.article { max-width: 760px; margin: 0 auto; padding: 56px 0 72px; }
.article .art-crumb { font-family: var(--mono); font-size: 12px; color: var(--text-faint); margin-bottom: 18px; }
.article .art-crumb a { color: var(--text-faint); }
.article h1 { font-family: var(--head); font-weight: 400; font-size: clamp(30px, 4.4vw, 44px); line-height: 1.12; letter-spacing: -0.02em; word-spacing: -0.22em; margin-bottom: 14px; }
.article .art-lead { font-size: 19px; color: var(--text-soft); line-height: 1.6; margin-bottom: 34px; }
.article h2 { font-family: var(--head); font-weight: 400; font-size: 24px; letter-spacing: -0.01em; margin: 40px 0 12px; }
.article h3 { font-size: 18px; font-weight: 600; margin: 26px 0 8px; }
.article p { color: var(--text); line-height: 1.75; margin-bottom: 16px; }
.article ul { margin: 0 0 16px 22px; color: var(--text); line-height: 1.75; }
.article ul li { margin-bottom: 8px; }
.article a { color: var(--primary); text-decoration: underline; }
.article .art-cta { margin-top: 40px; padding: 28px 30px; border-radius: 16px; background: var(--ink); color: #e9eaf2; }
.article .art-cta h2 { color: #fff; margin: 0 0 8px; font-size: 22px; }
.article .art-cta p { color: #a7abc4; margin-bottom: 18px; }

/* ── Unternehmen-Seite: Fakten ─────────────── */
.company-facts {
  margin: 28px 0 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.cf-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.cf-item:last-child { border-bottom: none; }
.cf-k { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-faint); align-self: center; }
.cf-v { color: var(--text); font-weight: 500; text-align: right; }
.company-legal { font-size: 14px; color: var(--text-soft); margin-top: 14px; }
