/* ============================================================
   Termiverse – Vermarktungsseite · gemeinsames Stylesheet
   Aesthetik: "Infrastructure Console" – dunkel, technisch,
   Daten-Fluss-Akzent (Teal), Mono-Labels, viel Tiefe.
   ============================================================ */


:root {
  --bg:        #0a0d15;
  --bg-soft:   #0e131e;
  --surface:   #141926;
  --surface-2: #1a2030;
  --border:    rgba(150, 180, 220, 0.10);
  --border-str:rgba(150, 180, 220, 0.18);
  --text:      #eaedf5;
  --text-dim:  #93a1b3;
  --text-faint:#6a7686;
  --accent:    #54ddd0;   /* Cyan – Orbits / Verbindungen */
  --accent-dk: #2e8c86;
  --accent-2:  #f2a93c;   /* Bernstein – Prompt-Cursor */
  --warn:      #f2a93c;
  --radius:    16px;
  --radius-sm: 10px;
  --maxw:      1140px;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: 'Sora', system-ui, sans-serif;
  --display: 'Syne', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Atmosphäre: dezentes Punktraster + Glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(120,150,190,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: "";
  position: fixed;
  top: -30vh; left: 50%;
  width: 90vw; height: 90vh;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(84,221,208,0.14), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, .hero h1, .sec-head h2, .cta-band h2, .legal h1 { font-family: var(--display); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* ---------- Header / Nav ---------- */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8,11,17,0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 32px;
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 1.18rem; letter-spacing: -0.02em; flex: 0 0 auto; }
.brand:hover { text-decoration: none; }
.brand svg.logo { height: 34px; width: auto; display: block; }
.brand svg.logo-mark { height: 34px; width: 34px; display: block; }
.brand .wordmark { font-family: var(--display); font-weight: 800; font-size: 1.32rem; letter-spacing: -0.03em; }
.brand .wordmark b { color: var(--text); }
.brand .wordmark span { color: var(--accent-2); }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { color: var(--text-dim); font-size: 0.92rem; font-weight: 500; }
.nav-links a:hover { color: var(--text); text-decoration: none; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; font-size: 0.92rem;
  padding: 11px 20px; border-radius: 10px; cursor: pointer;
  border: 1px solid transparent; transition: all .18s ease; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #F6B94E, #EC9A26);
  color: #0a0d15; font-weight: 700; box-shadow: 0 4px 16px rgba(242,169,60,0.28);
}
.btn-primary:hover { transform: translateY(-1px); text-decoration: none; box-shadow: 0 9px 26px rgba(242,169,60,0.42); }
.btn-ghost { border-color: var(--border-str); color: var(--text); background: rgba(255,255,255,0.02); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }
.nav-toggle { display: none; background: none; border: 1px solid var(--border-str); color: var(--text); border-radius: 8px; padding: 8px 10px; cursor: pointer; }

/* ---------- Hero ---------- */
.hero { padding: 84px 0 64px; }
.eyebrow {
  font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent);
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--border-str); border-radius: 999px;
  padding: 6px 14px; background: rgba(84,221,208,0.06); margin-bottom: 26px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.35} }

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.3rem); font-weight: 800;
  letter-spacing: -0.035em; line-height: 1.04; max-width: 16ch;
}
.hero h1 .grad {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead {
  margin-top: 24px; font-size: 1.18rem; color: var(--text-dim);
  max-width: 60ch; font-weight: 300;
}
.hero-cta { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta { margin-top: 30px; display: flex; gap: 26px; flex-wrap: wrap; font-family: var(--mono); font-size: 0.82rem; color: var(--text-faint); }
.hero-meta span b { color: var(--accent); }

/* Terminal-Mockup */
.terminal {
  margin-top: 56px; border: 1px solid var(--border-str); border-radius: 14px;
  background: linear-gradient(180deg, var(--surface), var(--bg-soft));
  overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}
.terminal .bar { display: flex; align-items: center; gap: 8px; padding: 13px 16px; border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.015); }
.terminal .bar i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.terminal .bar .r { background: #ff5f57; } .terminal .bar .y { background: #febc2e; } .terminal .bar .g { background: #28c840; }
.terminal .bar .title { margin-left: 12px; font-family: var(--mono); font-size: 0.78rem; color: var(--text-faint); }
.terminal pre {
  font-family: var(--mono); font-size: 0.86rem; line-height: 1.85;
  padding: 22px 24px; color: var(--text-dim); white-space: pre-wrap; word-break: break-word;
}
.terminal pre .c1 { color: var(--accent); } .terminal pre .c2 { color: var(--accent-2); }
.terminal pre .ok { color: #59d98e; } .terminal pre .mut { color: var(--text-faint); }

/* ---------- Sections ---------- */
section { padding: 76px 0; position: relative; z-index: 1; }
.sec-head { max-width: 62ch; margin-bottom: 48px; }
.sec-head .kicker { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.sec-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; letter-spacing: -0.03em; margin-top: 14px; line-height: 1.1; }
.sec-head p { margin-top: 16px; color: var(--text-dim); font-size: 1.06rem; font-weight: 300; }

/* Feature-Grid */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.fcard {
  border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 24px;
  background: linear-gradient(180deg, var(--surface), rgba(13,17,25,0.6));
  transition: border-color .2s ease, transform .2s ease;
  position: relative; overflow: hidden;
}
.fcard:hover { border-color: var(--border-str); transform: translateY(-3px); }
.fcard::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transition: opacity .25s;
}
.fcard:hover::before { opacity: .8; }
.fcard .ic { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(84,221,208,0.10); border: 1px solid rgba(84,221,208,0.22); margin-bottom: 18px; }
.fcard .ic svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.7; }
.fcard h3 { font-size: 1.12rem; font-weight: 600; letter-spacing: -0.01em; }
.fcard p { margin-top: 10px; color: var(--text-dim); font-size: 0.95rem; font-weight: 300; }
.fcard ul { margin-top: 14px; list-style: none; display: flex; flex-direction: column; gap: 7px; }
.fcard li { font-family: var(--mono); font-size: 0.79rem; color: var(--text-faint); padding-left: 16px; position: relative; line-height: 1.5; }
.fcard li::before { content: "›"; position: absolute; left: 0; color: var(--accent); }

/* Integrationen-Band */
.integrations { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-family: var(--mono); font-size: 0.82rem; color: var(--text-dim);
  border: 1px solid var(--border); background: var(--surface);
  border-radius: 999px; padding: 8px 16px; transition: all .15s;
}
.chip:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 20px; align-items: stretch; }
.pcard {
  border: 1px solid var(--border); border-radius: 18px; padding: 32px 28px;
  background: linear-gradient(180deg, var(--surface), rgba(13,17,25,0.6));
  display: flex; flex-direction: column; position: relative;
}
.pcard.feature { border-color: var(--accent); box-shadow: 0 0 0 1px rgba(84,221,208,0.25), 0 24px 60px rgba(84,221,208,0.10); }
.pcard .tag { position: absolute; top: -12px; left: 28px; font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.08em; text-transform: uppercase; background: linear-gradient(135deg, var(--accent), var(--accent-dk));
  color: #03110f; padding: 5px 12px; border-radius: 999px; font-weight: 700; }
.pcard .tag.soon { background: rgba(240,179,94,0.16); color: var(--warn); border: 1px solid rgba(240,179,94,0.4); }
.pcard h3 { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; }
.pcard .ptype { font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.pcard .price { margin: 18px 0 6px; display: flex; align-items: baseline; gap: 6px; }
.pcard .price .amt { font-size: 2.9rem; font-weight: 800; letter-spacing: -0.03em; }
.pcard .price .per { color: var(--text-faint); font-family: var(--mono); font-size: 0.9rem; }
.pcard .price .plus { color: var(--accent); font-size: 1.6rem; font-weight: 700; }
.pcard .sub { color: var(--text-dim); font-size: 0.92rem; min-height: 42px; font-weight: 300; }
.pcard hr { border: none; border-top: 1px solid var(--border); margin: 22px 0; }
.plist { list-style: none; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.plist li { display: flex; gap: 11px; font-size: 0.93rem; color: var(--text); align-items: flex-start; }
.plist li svg { width: 18px; height: 18px; flex: none; margin-top: 3px; stroke: var(--accent); fill: none; stroke-width: 2.2; }
.plist li.muted { color: var(--text-faint); }
.plist li.muted svg { stroke: var(--text-faint); }
.pcard .btn { margin-top: 26px; justify-content: center; }
.pcard .hl { font-family: var(--mono); color: var(--accent); }

.price-note { margin-top: 28px; font-size: 0.86rem; color: var(--text-faint); font-family: var(--mono); text-align: center; }

/* ---------- CTA Band ---------- */
.cta-band {
  border: 1px solid var(--border-str); border-radius: 22px; padding: 56px 40px;
  background: linear-gradient(135deg, rgba(84,221,208,0.10), rgba(242,169,60,0.08));
  text-align: center; position: relative; overflow: hidden;
}
.cta-band h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 700; letter-spacing: -0.03em; }
.cta-band p { margin: 14px auto 30px; color: var(--text-dim); max-width: 52ch; font-weight: 300; }

/* ---------- Footer ---------- */
footer.site { border-top: 1px solid var(--border); padding: 56px 0 40px; margin-top: 40px; position: relative; z-index: 1; }
.foot-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 30px; }
.foot-grid p { color: var(--text-dim); font-size: 0.9rem; font-weight: 300; margin-top: 14px; max-width: 36ch; }
.foot-col h4 { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 16px; }
.foot-col a { display: block; color: var(--text-dim); font-size: 0.92rem; margin-bottom: 11px; }
.foot-col a:hover { color: var(--accent); text-decoration: none; }
.foot-bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.84rem; color: var(--text-faint); }
.foot-bottom .lnks { display: flex; gap: 20px; flex-wrap: wrap; }
.foot-bottom a { color: var(--text-faint); }

/* ---------- Legal / Dokument-Seiten ---------- */
.legal { padding: 64px 0 40px; }
.legal .doc { max-width: 800px; margin: 0 auto; }
.legal .back { font-family: var(--mono); font-size: 0.84rem; color: var(--text-dim); display: inline-flex; gap: 8px; margin-bottom: 28px; }
.legal h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 8px; }
.legal .updated { font-family: var(--mono); font-size: 0.8rem; color: var(--text-faint); margin-bottom: 36px; }
.legal h2 { font-size: 1.3rem; font-weight: 600; margin: 38px 0 14px; letter-spacing: -0.01em; color: var(--text); }
.legal h3 { font-size: 1.05rem; font-weight: 600; margin: 24px 0 10px; color: var(--text); }
.legal p { color: var(--text-dim); margin-bottom: 14px; font-weight: 300; }
.legal ul, .legal ol { color: var(--text-dim); margin: 0 0 16px 22px; font-weight: 300; }
.legal li { margin-bottom: 8px; }
.legal strong { color: var(--text); font-weight: 600; }
.legal .ph { background: rgba(240,179,94,0.10); border: 1px dashed rgba(240,179,94,0.45);
  color: var(--warn); border-radius: 4px; padding: 1px 6px; font-family: var(--mono); font-size: 0.88em; }
.legal .notice {
  border: 1px solid rgba(240,179,94,0.35); background: rgba(240,179,94,0.07);
  border-radius: var(--radius-sm); padding: 18px 20px; margin-bottom: 32px;
  color: var(--text-dim); font-size: 0.92rem;
}
.legal .notice strong { color: var(--warn); }
.legal table { width: 100%; border-collapse: collapse; margin: 8px 0 20px; font-size: 0.92rem; }
.legal th, .legal td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); color: var(--text-dim); }
.legal th { font-family: var(--mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-faint); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--bg-soft); border-bottom: 1px solid var(--border); padding: 8px 24px 20px; }
  .nav-links.open a { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: inline-block; }
}
@media (max-width: 560px) {
  .features { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 40px; }
}

/* ============================================================
   Erweiterungen: Multi-Page, Dropdown-Nav, Sprachumschalter,
   Sub-Page-Hero, Besonderheiten, Vergleichstabellen
   ============================================================ */

/* Sprachumschalter */
.lang-toggle { display: inline-flex; border: 1px solid var(--border-str); border-radius: 999px; overflow: hidden; font-family: var(--mono); font-size: 0.76rem; }
.lang-toggle button { background: none; border: none; color: var(--text-dim); padding: 6px 11px; cursor: pointer; font-family: inherit; font-size: inherit; transition: all .15s; }
.lang-toggle button.active { background: var(--accent-2); color: #1a1205; font-weight: 700; }
.lang-toggle button:not(.active):hover { color: var(--text); }

/* Dropdown-Navigation */
.has-drop { position: relative; }
.has-drop > a::after { content: " ▾"; font-size: 0.7em; color: var(--text-faint); }
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--bg-soft); border: 1px solid var(--border-str); border-radius: 12px;
  padding: 8px; min-width: 210px; opacity: 0; visibility: hidden; transition: all .16s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5); z-index: 60;
}
.has-drop:hover .dropdown, .has-drop:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(4px); }
.dropdown a { display: block; padding: 9px 12px; border-radius: 8px; color: var(--text-dim); font-size: 0.9rem; }
.dropdown a:hover { background: var(--surface); color: var(--accent); text-decoration: none; }

/* Sub-Page Hero */
.page-hero { padding: 64px 0 28px; }
.page-hero .crumb { font-family: var(--mono); font-size: 0.78rem; color: var(--text-faint); letter-spacing: 0.04em; margin-bottom: 18px; }
.page-hero .crumb a { color: var(--text-dim); }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.06; max-width: 20ch; }
.page-hero h1 .grad { background: linear-gradient(120deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.page-hero p.lead { margin-top: 20px; font-size: 1.12rem; color: var(--text-dim); max-width: 64ch; font-weight: 300; }

/* Besonderheit-Band (Highlight) */
.highlight { display: grid; grid-template-columns: 1.1fr 1fr; gap: 26px; align-items: center; border: 1px solid var(--border); border-radius: 20px; padding: 34px; background: linear-gradient(135deg, rgba(84,221,208,0.07), rgba(242,169,60,0.05)); margin-bottom: 22px; }
.highlight.rev { grid-template-columns: 1fr 1.1fr; }
.highlight .badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-2); border: 1px solid rgba(242,169,60,0.35); background: rgba(242,169,60,0.08); border-radius: 999px; padding: 5px 12px; margin-bottom: 16px; }
.highlight h3 { font-family: var(--display); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 12px; }
.highlight p { color: var(--text-dim); font-weight: 300; }
.highlight ul { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 9px; }
.highlight li { padding-left: 24px; position: relative; color: var(--text); font-size: 0.95rem; }
.highlight li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.highlight .visual { border-radius: 14px; border: 1px solid var(--border); background: var(--bg-soft); padding: 22px; font-family: var(--mono); font-size: 0.82rem; color: var(--text-dim); line-height: 1.9; white-space: pre-wrap; }
.highlight .visual .c1 { color: var(--accent); } .highlight .visual .c2 { color: var(--accent-2); } .highlight .visual .ok { color: #59d98e; } .highlight .visual .mut { color: var(--text-faint); }

/* Vergleichstabelle */
.cmp-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: 16px; background: var(--surface); }
table.cmp { width: 100%; border-collapse: collapse; min-width: 720px; }
table.cmp th, table.cmp td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.92rem; }
table.cmp thead th { font-family: var(--mono); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-faint); background: rgba(255,255,255,0.015); }
table.cmp thead th.us { color: var(--accent); }
table.cmp tbody th { font-weight: 500; color: var(--text); }
table.cmp td { color: var(--text-dim); }
table.cmp col.us, table.cmp td.us { background: rgba(84,221,208,0.06); color: var(--text); font-weight: 500; }
table.cmp tr:last-child td, table.cmp tr:last-child th { border-bottom: none; }
.yes { color: #59d98e; font-weight: 700; } .no { color: #e0736b; font-weight: 700; } .partial { color: var(--accent-2); font-weight: 700; }

/* Verdict / faire Einordnung */
.verdict { border: 1px solid var(--border); border-radius: 16px; padding: 24px 26px; background: var(--surface); margin-top: 18px; }
.verdict h4 { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.verdict h4.fair { color: var(--accent-2); } .verdict h4.win { color: var(--accent); }
.verdict p { color: var(--text-dim); font-weight: 300; font-size: 0.96rem; }

/* Karten-Raster für Anwendungsfälle */
.use-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

@media (max-width: 860px) {
  .highlight, .highlight.rev { grid-template-columns: 1fr; }
  .use-grid { grid-template-columns: 1fr; }
}

/* Startseite: Schritt-Nummern & Differenzierungs-Karten */
.fcard .step-n { width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-weight: 700; font-size: 1rem; color: #042925; background: linear-gradient(135deg, #6ee7da, #46cfc1); margin-bottom: 16px; }
.diff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.diff-card { border: 1px solid var(--border); border-radius: 16px; padding: 24px; background: linear-gradient(160deg, rgba(84,221,208,0.05), rgba(255,255,255,0.01)); }
.diff-card h3 { font-family: var(--display); font-size: 1.08rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 10px; }
.diff-card h3::before { content: "→ "; color: var(--accent); }
.diff-card p { color: var(--text-dim); font-size: 0.92rem; font-weight: 300; line-height: 1.6; }
@media (max-width: 980px) { .diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .diff-grid { grid-template-columns: 1fr; } }

/* Kontaktformular (#kontakt) */
.contact-card { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 32px; border: 1px solid var(--border); border-radius: 20px; padding: 34px; background: linear-gradient(160deg, rgba(84,221,208,0.05), rgba(255,255,255,0.01)); }
.contact-intro p { color: var(--text-dim); font-weight: 300; }
.contact-list { list-style: none; margin: 18px 0 14px; display: flex; flex-direction: column; gap: 11px; }
.contact-list li { display: flex; align-items: center; gap: 11px; color: var(--text); font-size: 0.95rem; }
.contact-list .cl-ic { color: var(--accent); width: 18px; text-align: center; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form .fg { display: flex; flex-direction: column; gap: 6px; }
.contact-form label { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-faint); }
.contact-form input, .contact-form select, .contact-form textarea { background: var(--bg-soft); border: 1px solid var(--border-str); border-radius: 10px; padding: 11px 13px; color: var(--text); font-family: var(--sans); font-size: 0.95rem; width: 100%; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(84,221,208,0.12); }
.contact-form textarea { resize: vertical; }
.contact-form .btn { margin-top: 4px; align-self: flex-start; }
.form-note { font-size: 0.8rem; color: var(--text-faint); }
@media (max-width: 860px) { .contact-card { grid-template-columns: 1fr; } }

/* Kontakt-Popup (AJAX) */
.tv-modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.tv-modal.open { display: flex; }
.tv-modal-overlay { position: absolute; inset: 0; background: rgba(4,6,10,0.72); backdrop-filter: blur(4px); }
.tv-modal-card { position: relative; z-index: 1; width: 100%; max-width: 520px; max-height: 92vh; overflow-y: auto; background: var(--surface); border: 1px solid var(--border-str); border-radius: 18px; padding: 30px 30px 26px; box-shadow: 0 40px 90px rgba(0,0,0,0.6); animation: tvpop .18s ease; }
@keyframes tvpop { from { opacity: 0; transform: translateY(10px) scale(.98); } to { opacity: 1; transform: none; } }
.tv-modal-card h3 { font-family: var(--display); font-size: 1.4rem; font-weight: 700; letter-spacing: -0.02em; margin: 6px 0 8px; }
.tv-modal-sub { color: var(--text-dim); font-weight: 300; margin-bottom: 18px; }
.tv-modal-x { position: absolute; top: 14px; right: 16px; background: none; border: none; color: var(--text-faint); font-size: 1.7rem; line-height: 1; cursor: pointer; padding: 4px; }
.tv-modal-x:hover { color: var(--text); }
.tv-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.tv-status { margin-top: 4px; padding: 11px 13px; border-radius: 10px; font-size: 0.9rem; }
.tv-status.sending { background: rgba(150,180,220,0.10); color: var(--text-dim); }
.tv-status.ok { background: rgba(89,217,142,0.12); color: #8ee7b0; border: 1px solid rgba(89,217,142,0.3); }
.tv-status.err { background: rgba(224,115,107,0.12); color: #f0a59e; border: 1px solid rgba(224,115,107,0.3); }
.tv-status .form-note a, .form-note a { color: var(--text-dim); text-decoration: underline; }

/* CTA-Band: zwei Buttons */
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Preise: Verfügbarkeits-/Veröffentlichungshinweis */
.avail-note { margin-top: 12px; font-family: var(--mono); font-size: 0.78rem; color: var(--accent-2); text-align: center; }

/* Rechtsseiten: dezenter Schlusshinweis */
.legal-note { margin-top: 28px; padding-top: 16px; border-top: 1px solid var(--border); font-size: 0.82rem; color: var(--text-faint); }

/* FAQ (mit FAQPage-Schema) */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; background: var(--surface); overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 16px 20px; font-weight: 600; color: var(--text); list-style: none; position: relative; padding-right: 44px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); color: var(--accent); font-size: 1.3rem; font-weight: 700; transition: transform .18s; }
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { color: var(--accent); }
.faq-a { padding: 0 20px 18px; color: var(--text-dim); font-weight: 300; line-height: 1.65; }

/* Landingpages: Intro-Prosa + Feature-Liste (mehr Inhalt/SEO) */
.lead-prose { max-width: 68ch; color: var(--text-dim); font-weight: 300; font-size: 1.05rem; line-height: 1.72; }
.lead-prose + .lead-prose { margin-top: 14px; }
.feature-list { max-width: 860px; margin: 0 auto; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 30px; }
.feature-list li { position: relative; padding-left: 28px; color: var(--text-dim); line-height: 1.5; }
.feature-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; color: var(--accent); font-weight: 700; }
@media (max-width: 720px) { .feature-list { grid-template-columns: 1fr; } }
