/* ============================================================
   THUA – The Human Agency
   Globales Stylesheet  ·  v=1
   Strategie. Marke. Wachstum.
   ============================================================ */

:root {
  /* Farben */
  --accent:      #C6FF3D;            /* Neon-Grün – Highlights, CTAs, Akzente (nur auf dunkel!) */
  --accent-strong: #4e8c00;          /* Dunkleres Grün – lesbar auf hellem Grund */
  --accent-2:    #6EE7FF;            /* Cyan-Sekundärakzent */
  --accent-dim:  rgba(198,255,61,0.12);
  --navy:        #0A2540;            /* Tiefes Dunkelblau */
  --navy-dark:   #061626;            /* Fast Schwarz – Hero-BG */
  --anthracite:  #1C2530;            /* Anthrazit */
  --bg:          #050E1A;            /* Canvas-Hintergrund */
  --bg-tinted:   #f4f7fb;            /* Heller Abschnittshintergrund */
  --bg-card:     #0C2238;            /* Dunkle Karten */
  --text:        #e9eef5;
  --text-muted:  rgba(233,238,245,0.62);
  --text-dark:   #0A2540;
  --text-dark-muted: rgba(10,37,64,0.66);
  --border-light: rgba(255,255,255,0.09);
  --border-dark:  rgba(10,37,64,0.10);

  --max-w: 1200px;
  --pad-x: clamp(1rem, 5vw, 4rem);
  --nav-h: 76px;
  --r-sm: 0.5rem;
  --r-md: 0.75rem;
  --r-lg: 1rem;
  --r-xl: 1.5rem;

  --f-display:  'Bebas Neue', sans-serif;
  --f-headline: 'Barlow Condensed', sans-serif;
  --f-body:     'Barlow', sans-serif;

  --shadow-card: 0 10px 40px rgba(0,0,0,0.18);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Canvas Hintergrund ---------- */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 12% 18%, rgba(10,37,64,0.95) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 88% 82%, rgba(6,22,38,0.85) 0%, transparent 60%),
    var(--bg);
}

/* ---------- Layout-Helfer ---------- */
.wrap { max-width: var(--max-w); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
main { position: relative; z-index: 1; }
section { position: relative; }

.section-tinted {
  background: var(--bg-tinted);
  color: var(--text-dark);
  position: relative;
  z-index: 1;
}
.section-tinted .text-muted { color: var(--text-dark-muted); }
.section-warum {
  background-color: var(--bg-tinted);
  background-image: url('/bg3.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ---------- Typografie ---------- */
h1, h2, h3, h4 { line-height: 1.05; font-weight: 700; }
.eyebrow {
  font-family: var(--f-headline);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 1rem;
}
.section-tinted .eyebrow { color: var(--navy); }

.display {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.92;
  text-transform: uppercase;
}
.h-xxl { font-family: var(--f-display); font-size: clamp(3rem, 9vw, 7rem); line-height: 0.9; text-transform: uppercase; }
.h-xl  { font-family: var(--f-display); font-size: clamp(2.4rem, 5.5vw, 4.2rem); line-height: 0.95; text-transform: uppercase; }
.h-lg  { font-family: var(--f-display); font-size: clamp(1.9rem, 4vw, 3rem); text-transform: uppercase; }
.h-md  { font-family: var(--f-headline); font-size: clamp(1.4rem, 2.4vw, 2rem); font-weight: 800; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--text-muted); max-width: 56ch; }
.section-tinted .lead { color: var(--text-dark-muted); }
.text-muted { color: var(--text-muted); }
.accent-text { color: var(--accent); }
.section-tinted .accent-text { color: var(--navy); font-weight: 700; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--f-headline);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #06140a;
  font-weight: 800;
  box-shadow: 0 6px 28px rgba(198,255,61,0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 34px rgba(198,255,61,0.42); }
.btn-ghost {
  border: 1.5px solid var(--border-light);
  color: var(--text);
}
.section-tinted .btn-ghost { border-color: var(--border-dark); color: var(--navy); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.section-tinted .btn-ghost:hover { color: var(--navy); border-color: var(--navy); }

/* ---------- Header / Nav ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.header.scrolled {
  background: rgba(6, 18, 32, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border-light);
}
.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: var(--f-display);
  font-size: 1.75rem;
  letter-spacing: 0.08em;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.brand .dot { color: var(--accent); }
.brand-logo { height: 34px; width: auto; display: block; }
.brand-logo-footer { height: 40px; }
@media (max-width: 600px) { .brand-logo { height: 30px; } }
.hero-logo { height: clamp(56px, 11vw, 96px); width: auto; display: block; }
.cta-logo { height: clamp(48px, 9vw, 72px); width: auto; display: block; margin: 0 auto; }
.brand-sub {
  font-family: var(--f-headline);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-family: var(--f-headline);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.85;
  transition: opacity 0.18s ease, color 0.18s ease;
}
.nav-links a:hover { opacity: 1; color: var(--accent); }
.nav-cta { padding: 0.65rem 1.3rem !important; font-size: 0.85rem !important; color: #06140a !important; opacity: 1 !important; }
.nav-cta:hover { color: #06140a !important; opacity: 1; }

/* Dropdown-Subnavi */
.nav-item.has-sub { position: relative; display: flex; align-items: center; }
.nav-top { display: inline-flex; align-items: center; gap: 0.4rem; cursor: pointer; }
.caret { width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-top: -3px; transition: transform 0.2s ease; opacity: 0.7; }
.nav-item.has-sub:hover .caret { transform: rotate(225deg); margin-top: 2px; }
.submenu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
  padding-top: 18px; min-width: 340px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav-item.has-sub:hover .submenu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.submenu-inner {
  background: rgba(8, 22, 38, 0.97);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 0.6rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.submenu-inner a {
  display: flex; flex-direction: column; gap: 0.15rem;
  padding: 0.7rem 0.9rem; border-radius: var(--r-sm);
  text-transform: none !important; opacity: 1 !important;
  transition: background 0.15s ease;
}
.submenu-inner a:hover { background: rgba(198,255,61,0.08); color: var(--text) !important; }
.submenu-inner .sm-t { font-family: var(--f-headline); font-weight: 700; font-size: 1rem; letter-spacing: 0.01em; color: #fff; }
.submenu-inner a:hover .sm-t { color: var(--accent); }
.submenu-inner .sm-d { font-family: var(--f-body); font-weight: 400; font-size: 0.82rem; text-transform: none; letter-spacing: 0; color: var(--text-muted); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 110; }
.nav-toggle span { width: 26px; height: 2px; background: #fff; transition: 0.3s; border-radius: 2px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(80vw, 320px);
    background: var(--navy-dark);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(.4,0,.2,1);
    box-shadow: -20px 0 60px rgba(0,0,0,.5);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.3rem; }
  .nav-item.has-sub { flex-direction: column; align-items: flex-start; }
  .submenu {
    position: static; transform: none; min-width: 0; padding-top: 0.5rem;
    opacity: 1; visibility: visible; pointer-events: auto;
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  }
  .nav-item.has-sub.open .submenu { max-height: 600px; }
  .submenu-inner { background: transparent; border: none; box-shadow: none; padding: 0; }
  .submenu-inner a { padding: 0.5rem 0; }
  .submenu-inner .sm-t { font-size: 1.05rem; }
  .submenu-inner .sm-d { display: none; }
  .nav-item.has-sub.open .caret { transform: rotate(225deg); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 70% 90% at 80% 30%, rgba(198,255,61,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 80% 70% at 10% 80%, rgba(110,231,255,0.06) 0%, transparent 55%);
}
.hero-photo {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('/bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-photo-overlay {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(90deg, rgba(5,14,26,0.70) 0%, rgba(5,14,26,0.35) 45%, rgba(5,14,26,0.15) 100%),
    linear-gradient(180deg, rgba(5,14,26,0.40) 0%, rgba(5,14,26,0.50) 55%, rgba(5,14,26,0.78) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}
.hero h1 { margin-bottom: 1.5rem; color: #fff; }
.hero h1 .line2 { color: var(--accent); display: block; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-trust { margin-top: 2.5rem; display: flex; gap: 2rem; flex-wrap: wrap; align-items: center; }
.hero-trust-item { display: flex; flex-direction: column; }
.hero-trust-num { font-family: var(--f-display); font-size: 2.4rem; color: var(--accent); line-height: 1; }
.hero-trust-label { font-family: var(--f-headline); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }

.hero-visual {
  position: relative;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-orb {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(198,255,61,0.22), rgba(10,37,64,0.05) 60%);
  filter: blur(6px);
  animation: float 8s ease-in-out infinite;
}
.hero-ring {
  position: absolute;
  border: 1.5px solid var(--border-light);
  border-radius: 50%;
  animation: spin 40s linear infinite;
}
.hero-ring.r1 { inset: 0; border-top-color: var(--accent); }
.hero-ring.r2 { inset: 14%; border-right-color: var(--accent-2); animation-duration: 28s; animation-direction: reverse; }
.hero-ring.r3 { inset: 28%; border-bottom-color: var(--accent); animation-duration: 20s; }
.hero-core {
  position: relative; z-index: 3;
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #fff;
  text-align: center;
  line-height: 0.85;
}
.hero-core .dot { color: var(--accent); }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.hero-badges {
  position: absolute; top: 0; right: 0; z-index: 5;
  display: flex; flex-direction: column; gap: 0.5rem; align-items: flex-end;
}
.hero-badges-label {
  font-family: var(--f-headline); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45);
}
.badge {
  display: flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  padding: 0.4rem 0.7rem; border-radius: 999px;
  font-family: var(--f-headline); font-size: 0.8rem; font-weight: 700; color: #fff;
}
.stars { display: inline-flex; gap: 1px; }
.stars svg { width: 13px; height: 13px; fill: var(--accent); }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { max-width: 360px; margin: 0 auto; }
  .hero-badges { position: static; flex-direction: row; flex-wrap: wrap; margin-top: 1rem; align-items: center; }
}

/* ---------- Section-Header ---------- */
.section-pad { padding: clamp(4rem, 9vw, 8rem) 0; }
.section-head { max-width: 60ch; margin-bottom: 3.5rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Karten-Grid (Leistungen) ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: 0 20px 50px rgba(0,0,0,0.35); }

/* Sechs-Hebel-Sektion mit bg2-Hintergrund */
.section-hebel {
  position: relative;
  z-index: 1;
  background-color: var(--navy-dark);
  background-image: url('/bg2.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.section-hebel > .wrap { position: relative; z-index: 2; }
.section-hebel .card {
  background: rgba(12, 34, 56, 0.66);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-color: rgba(255, 255, 255, 0.10);
}
.section-hebel .card:hover { background: rgba(12, 34, 56, 0.82); border-color: var(--accent); }
.card-num {
  font-family: var(--f-display); font-size: 1.1rem; color: var(--accent);
  letter-spacing: 0.1em; margin-bottom: 1rem; opacity: 0.7;
}
.card-icon {
  width: 48px; height: 48px; border-radius: var(--r-md);
  background: var(--accent-dim); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.card-icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 1.8; }
.card h3 { font-family: var(--f-headline); font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 0.7rem; }
.card p { color: var(--text-muted); font-size: 0.98rem; }
.card-link {
  display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 1.25rem;
  font-family: var(--f-headline); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--accent);
}
.card-link svg { width: 16px; height: 16px; transition: transform 0.2s; }
.card:hover .card-link svg { transform: translateX(4px); }

/* Karten auf hellem Hintergrund */
.section-tinted .card { background: var(--navy); border-color: rgba(255,255,255,0.06); }
.section-tinted .card h3 { color: #fff; }
.section-tinted .card p { color: var(--text-muted); }

/* ---------- Zwei-Typen-Sektion ---------- */
.sw-section { padding: clamp(4rem, 9vw, 8rem) 0; }
.sw-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; position: relative; margin-top: 3rem; }
.sw-col {
  background: var(--bg-card); border: 1px solid var(--border-light);
  border-radius: var(--r-xl); padding: 2.5rem; position: relative;
}
.sw-tag {
  display: inline-block; font-family: var(--f-headline); font-weight: 700;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--navy-dark); background: var(--accent);
  padding: 0.25rem 0.7rem; border-radius: 999px; margin-bottom: 1rem;
}
.sw-col h3 { font-family: var(--f-display); font-size: 1.8rem; color: #fff; margin-bottom: 1rem; text-transform: uppercase; }
.sw-col ul li { padding: 0.6rem 0; display: flex; gap: 0.7rem; color: var(--text-muted); border-bottom: 1px solid var(--border-light); }
.sw-col ul li:last-child { border-bottom: none; }
.sw-col ul li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 4px; stroke: var(--accent); fill: none; stroke-width: 2; }

/* Slide-in aus beiden Richtungen */
.sw-left { transform: translateX(-40px); opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease; }
.sw-right { transform: translateX(40px); opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease; }
.sw-left.in, .sw-right.in { transform: translateX(0); opacity: 1; }

.sw-connector {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 64px; height: 64px; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.5s ease 0.4s;
}
.sw-connector.in { opacity: 1; }
.sw-plus {
  width: 64px; height: 64px; border-radius: 50%; background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); color: var(--navy-dark); font-size: 1.6rem;
  box-shadow: 0 0 0 0 rgba(198,255,61,0.5); animation: swpulse 2.4s ease-out infinite;
}
@keyframes swpulse {
  0% { box-shadow: 0 0 0 0 rgba(198,255,61,0.45); }
  70% { box-shadow: 0 0 0 22px rgba(198,255,61,0); }
  100% { box-shadow: 0 0 0 0 rgba(198,255,61,0); }
}

/* Merge zur Ergebniszeile */
.sw-merge { margin-top: 2.5rem; text-align: center; }
.sw-merge-line {
  width: 2px; height: 0; margin: 0 auto; background: linear-gradient(var(--accent), transparent);
  transition: height 0.6s ease 0.3s;
}
.sw-merge.in .sw-merge-line { height: 48px; }
.sw-result {
  display: inline-flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: center;
  background: var(--bg-card); border: 1px solid var(--border-light);
  border-radius: 999px; padding: 1rem 2rem; margin-top: 0.5rem;
}
.sw-result-eq { font-family: var(--f-display); font-size: 2rem; color: var(--accent); line-height: 1; }
.sw-result-text { font-family: var(--f-display); font-size: clamp(1.2rem, 3vw, 1.9rem); color: #fff; text-transform: uppercase; }

@media (max-width: 760px) {
  .sw-grid { grid-template-columns: 1fr; }
  .sw-connector { position: static; transform: none; margin: -0.5rem auto; }
  .sw-left, .sw-right { transform: translateY(28px); }
  .sw-left.in, .sw-right.in { transform: translateY(0); }
}

/* Prosa-Spalten (SEO-Block) */
.prose-wrap { max-width: 1100px; }
.prose-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 2.5rem; }
.prose-cols .prose h3:first-child { margin-top: 0; }
@media (max-width: 820px) { .prose-cols { grid-template-columns: 1fr; gap: 1.5rem; } }

/* ---------- Check-Liste (Warum) ---------- */
.check-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem 2.5rem; }
.check-item { display: flex; gap: 1rem; align-items: flex-start; }
.check-mark {
  width: 32px; height: 32px; flex-shrink: 0; border-radius: 50%;
  background: rgba(198,255,61,0.14); border: 1px solid rgba(198,255,61,0.45);
  display: flex; align-items: center; justify-content: center;
}
.check-mark svg { width: 17px; height: 17px; stroke: var(--accent-strong, #5a9e0a); fill: none; stroke-width: 2.5; }
.check-item .check-h {
  font-family: var(--f-headline); font-size: 1.2rem; font-weight: 800; color: var(--navy);
  margin-bottom: 0.5rem; padding-bottom: 0.5rem; position: relative;
}
.check-item .check-h::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 34px; height: 2px; background: var(--accent); border-radius: 2px;
}
.check-item p { color: var(--text-dark-muted); font-size: 0.97rem; }

/* ---------- Prozess ---------- */
.tape {
  background: var(--accent); color: #04140a;
  font-family: var(--f-headline); font-weight: 900; letter-spacing: 0.15em;
  text-transform: uppercase; font-size: 0.9rem; text-align: center;
  padding: 0.7rem; overflow: hidden; white-space: nowrap;
}
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.process-card { position: relative; padding: 2rem 1.5rem; background: var(--navy); border-radius: var(--r-lg); }
.process-step {
  font-family: var(--f-display); font-size: 3rem; line-height: 1;
  color: var(--accent); opacity: 0.85; margin-bottom: 0.75rem;
}
.process-card h3 { font-family: var(--f-headline); font-size: 1.25rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem; }
.process-card p { color: var(--text-muted); font-size: 0.93rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-q {
  width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: 1.5rem 0; font-family: var(--f-headline); font-size: 1.25rem;
  font-weight: 700; color: var(--text);
}
.faq-q .ico { flex-shrink: 0; width: 24px; height: 24px; position: relative; transition: transform 0.3s; }
.faq-q .ico::before, .faq-q .ico::after {
  content: ''; position: absolute; background: var(--accent); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.faq-q .ico::before { width: 16px; height: 2px; }
.faq-q .ico::after { width: 2px; height: 16px; transition: transform 0.3s; }
.faq-item.open .faq-q .ico::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding-bottom: 1.5rem; color: var(--text-muted); }
.section-tinted .faq-q { color: var(--navy); }
.section-tinted .faq-a p { color: var(--text-dark-muted); }
.section-tinted .faq-item { border-bottom-color: var(--border-dark); }

/* ---------- CTA-Section ---------- */
.cta-section {
  background: var(--navy-dark); text-align: center;
  padding: clamp(5rem, 10vw, 9rem) 0; position: relative; overflow: hidden;
}
.cta-section .wrap { position: relative; z-index: 2; }

/* Aufsteigende Blasen im CTA */
.cta-bubbles { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.cta-bubbles .bubble {
  position: absolute; bottom: -120px; border-radius: 50%;
  animation: bubble-rise linear infinite;
  will-change: transform, opacity;
}
@keyframes bubble-rise {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  85%  { opacity: 0.7; }
  100% { transform: translateY(-115vh) scale(1.05); opacity: 0; }
}
/* Groesse, Farbe, Position, Tempo pro Blase */
.cta-bubbles .b1  { left: 6%;  width: 16px; height: 16px; background: rgba(198,255,61,0.55); animation-duration: 13s; animation-delay: 0s; }
.cta-bubbles .b2  { left: 14%; width: 42px; height: 42px; background: rgba(198,255,61,0.16); animation-duration: 18s; animation-delay: 3s; }
.cta-bubbles .b3  { left: 22%; width: 10px; height: 10px; background: rgba(110,231,255,0.45); animation-duration: 11s; animation-delay: 1.5s; }
.cta-bubbles .b4  { left: 30%; width: 64px; height: 64px; background: rgba(150,220,70,0.10); animation-duration: 22s; animation-delay: 5s; }
.cta-bubbles .b5  { left: 40%; width: 22px; height: 22px; background: rgba(198,255,61,0.35); animation-duration: 15s; animation-delay: 2s; }
.cta-bubbles .b6  { left: 48%; width: 12px; height: 12px; background: rgba(198,255,61,0.60); animation-duration: 12s; animation-delay: 6s; }
.cta-bubbles .b7  { left: 57%; width: 50px; height: 50px; background: rgba(110,231,255,0.12); animation-duration: 20s; animation-delay: 1s; }
.cta-bubbles .b8  { left: 66%; width: 18px; height: 18px; background: rgba(198,255,61,0.40); animation-duration: 14s; animation-delay: 4s; }
.cta-bubbles .b9  { left: 74%; width: 34px; height: 34px; background: rgba(150,220,70,0.18); animation-duration: 17s; animation-delay: 2.5s; }
.cta-bubbles .b10 { left: 82%; width: 9px;  height: 9px;  background: rgba(198,255,61,0.55); animation-duration: 10s; animation-delay: 0.5s; }
.cta-bubbles .b11 { left: 89%; width: 56px; height: 56px; background: rgba(198,255,61,0.09); animation-duration: 24s; animation-delay: 7s; }
.cta-bubbles .b12 { left: 95%; width: 20px; height: 20px; background: rgba(110,231,255,0.30); animation-duration: 16s; animation-delay: 3.5s; }
@media (prefers-reduced-motion: reduce) {
  .cta-bubbles { display: none; }
}
.glitch-logo { position: relative; display: inline-block; margin-bottom: 1.5rem; }
.glitch-text {
  font-family: var(--f-display); font-size: clamp(3rem, 10vw, 7rem);
  color: #fff; line-height: 0.9; position: relative; text-transform: uppercase;
}
.glitch-text .dot { color: var(--accent); }
.glitch-text::before, .glitch-text::after {
  content: 'THUA'; position: absolute; top: 0; left: 0; width: 100%;
}
.glitch-text::before { color: var(--accent); animation: glitch-1 4s steps(2) infinite; mix-blend-mode: screen; }
.glitch-text::after { color: var(--accent-2); animation: glitch-2 4s steps(2) infinite; mix-blend-mode: screen; }
@keyframes glitch-1 {
  0%,82%,100% { transform: none; clip-path: none; opacity: 0; }
  83% { transform: translate(-3px,1px); clip-path: polygon(0 15%,100% 15%,100% 40%,0 40%); opacity: 1; }
  86% { transform: translate(2px,-1px); clip-path: polygon(0 55%,100% 55%,100% 78%,0 78%); opacity: 1; }
  89% { transform: none; opacity: 0; }
}
@keyframes glitch-2 {
  0%,82%,100% { transform: none; clip-path: none; opacity: 0; }
  84% { transform: translate(3px,-1px); clip-path: polygon(0 25%,100% 25%,100% 55%,0 55%); opacity: 1; }
  87% { transform: translate(-2px,1px); clip-path: polygon(0 60%,100% 60%,100% 90%,0 90%); opacity: 1; }
  90% { transform: none; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .glitch-text::before, .glitch-text::after { animation: none; opacity: 0; }
  .hero-ring, .hero-orb { animation: none; }
  .sw-plus { animation: none; }
  .reveal, .sw-left, .sw-right, .sw-connector, .sw-merge { opacity: 1 !important; transform: none !important; transition: none; }
  .sw-merge-line { height: 48px !important; }
}

/* ---------- Footer ---------- */
.footer { background: var(--navy-dark); padding: 4rem 0 2rem; position: relative; z-index: 1; border-top: 1px solid var(--border-light); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand .brand { margin-bottom: 1rem; }
.footer p { color: var(--text-muted); font-size: 0.95rem; }
.footer h4, .footer-h { font-family: var(--f-headline); font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.2rem; }
.footer ul li { margin-bottom: 0.6rem; }
.footer ul li a { color: var(--text-muted); font-size: 0.95rem; transition: color 0.18s; }
.footer ul li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border-light); padding-top: 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  color: var(--text-muted); font-size: 0.85rem;
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--accent); }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- WhatsApp Float ---------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4); transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 120;
  background: var(--navy-dark); border-top: 1px solid var(--border-light);
  padding: 1.25rem var(--pad-x); display: flex; align-items: center;
  justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  transform: translateY(100%); transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { color: var(--text-muted); font-size: 0.9rem; max-width: 70ch; }
.cookie-banner a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Unterseiten-Hero ---------- */
.sub-hero {
  background-color: var(--navy-dark);
  padding-top: 140px; padding-bottom: 4rem;
  position: relative; overflow: hidden; z-index: 1;
}
.sub-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image: url('/bg.webp');
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.sub-hero::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(5,14,26,0.74) 0%, rgba(5,14,26,0.88) 100%);
}
.sub-hero-photo {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('/bg.webp');
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.sub-hero-photo-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(5,14,26,0.74) 0%, rgba(5,14,26,0.88) 100%);
}
.sub-hero .wrap { position: relative; z-index: 2; }
.crumb {
  font-family: var(--f-headline); font-size: 0.85rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.5rem;
}
.crumb a { color: var(--text-muted); }
.crumb a:hover { color: var(--accent); }
.crumb span { color: var(--accent); }

/* ---------- 2-Spalten Layout (Leistungen / Agentur) ---------- */
.split-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3.5rem; align-items: start; }
.split-sidebar { position: sticky; top: calc(var(--nav-h) + 2rem); display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card { background: var(--navy); border: 1px solid var(--border-light); border-radius: var(--r-lg); padding: 1.75rem; }
.sidebar-card h4, .sidebar-card .card-h { font-family: var(--f-headline); font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 1rem; }
.sidebar-card p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 1rem; }
.sidebar-card ul li { margin-bottom: 0.6rem; }
.sidebar-card ul li a { color: var(--text-muted); font-size: 0.92rem; display: flex; gap: 0.4rem; transition: color 0.18s; }
.sidebar-card ul li a:hover { color: var(--accent); }
.sidebar-phone { font-family: var(--f-display); font-size: 1.6rem; color: var(--accent); }
@media (max-width: 860px) { .split-layout { grid-template-columns: 1fr; } .split-sidebar { position: static; } }

/* ---------- Prose ---------- */
.prose { max-width: none; }
.prose > * + * { margin-top: 1.2rem; }
.prose h2 { font-family: var(--f-display); font-size: clamp(1.7rem,3vw,2.4rem); color: var(--navy); margin-top: 2.5rem; text-transform: uppercase; }
.section-tinted .prose h2 { color: var(--navy); }
.prose-dark h2 { color: #fff; }
.prose h3 { font-family: var(--f-headline); font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-top: 1.8rem; }
.prose-dark h3 { color: #fff; }
.prose p, .prose li { color: var(--text-dark-muted); }
.prose-dark p, .prose-dark li { color: var(--text-muted); }
.prose ul { padding-left: 0; }
.prose ul li { padding: 0.4rem 0 0.4rem 1.7rem; position: relative; }
.prose ul li::before { content: ''; position: absolute; left: 0; top: 0.95rem; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }
.prose-dark ul li::before { background: var(--accent); }
.prose strong { color: var(--navy); }
.prose-dark strong { color: #fff; }
.prose a { color: var(--navy); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(10,37,64,0.35); transition: text-decoration-color 0.18s ease; }
.prose a:hover { text-decoration-color: var(--navy); }
.prose-dark a { color: var(--accent); text-decoration-color: rgba(198,255,61,0.4); }
.prose-dark a:hover { text-decoration-color: var(--accent); }

/* Glossar */
.glossar-jump { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 2rem 0 2.5rem; }
.glossar-jump a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: var(--r-sm);
  background: var(--navy); color: #fff; font-family: var(--f-headline);
  font-weight: 700; font-size: 0.95rem; transition: background 0.15s ease, color 0.15s ease;
}
.glossar-jump a:hover { background: var(--accent); color: var(--navy-dark); }
.glossar-letter {
  font-family: var(--f-display); font-size: 2.2rem; color: var(--accent-strong, var(--navy));
  margin-top: 2.5rem; padding-bottom: 0.3rem; border-bottom: 2px solid var(--border-dark);
  scroll-margin-top: 100px;
}
.glossar-term { scroll-margin-top: 100px; margin-top: 1.6rem; }
.glossar-term h3 { font-family: var(--f-headline); font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 0.4rem; }
.glossar-term p { color: var(--text-dark-muted); }

/* ---------- Blog-Karten ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; }
.blog-card {
  background: var(--navy); border: 1px solid var(--border-light); border-radius: var(--r-lg);
  overflow: hidden; transition: transform 0.22s, border-color 0.22s; display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); border-color: var(--accent); }
.blog-card-img { aspect-ratio: 2.5/1; background: linear-gradient(135deg, var(--navy) 0%, var(--bg-card) 100%); position: relative; overflow: hidden; }
.blog-card-img .ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--f-display); font-size: 2.5rem; color: rgba(198,255,61,0.18); }
.blog-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.bc-cat { font-family: var(--f-headline); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.6rem; }
.blog-card h3 { font-family: var(--f-headline); font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 0.6rem; line-height: 1.15; }
.blog-card p { color: var(--text-muted); font-size: 0.93rem; flex: 1; }
.bc-read { font-family: var(--f-headline); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent); margin-top: 1rem; }

/* ---------- Stat-Reihe ---------- */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2rem; }
.stat { text-align: center; }
.stat-num { font-family: var(--f-display); font-size: clamp(2.5rem, 5vw, 4rem); color: var(--accent); line-height: 1; }
.stat-label { font-family: var(--f-headline); font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.4rem; }

/* ---------- Reveal-Animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- Region-Tags ---------- */
.region-tags { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.5rem; }
.region-tag {
  font-family: var(--f-headline); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 0.45rem 1rem; border-radius: 999px; border: 1px solid var(--border-light);
  color: var(--text-muted);
}
.section-tinted .region-tag { border-color: var(--border-dark); color: var(--navy); }

/* ---------- Kontakt-Block ---------- */
.contact-methods { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.contact-card {
  background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--r-lg);
  padding: 2rem; text-align: center;
}
.contact-card .ci { width: 52px; height: 52px; margin: 0 auto 1rem; border-radius: 50%; background: var(--accent-dim); display: flex; align-items: center; justify-content: center; }
.contact-card .ci svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 1.8; }
.contact-card h4, .contact-card .contact-h { font-family: var(--f-headline); font-size: 1.1rem; color: #fff; margin-bottom: 0.5rem; }
.contact-card a { color: var(--accent); font-family: var(--f-headline); font-size: 1.15rem; font-weight: 700; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; }
.divider { height: 1px; background: var(--border-light); margin: 3rem 0; }
