
:root {
  --akzent:      #f94510;
  --akzent-hell: #ff6f42;
  --akzent-glut: #ffab8a;
  --navy:        #083c50;
  --navy-hell:   #1791b8;

  --bg-0: #05141c;
  --bg-1: #0a1e28;
  --tinte: #f5f3ef;
  --grau:  rgba(245,243,239,0.66);
  --grau-dim: rgba(245,243,239,0.44);

  --glas-bg:     linear-gradient(160deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  --glas-bg-hi:  linear-gradient(160deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03));
  --glas-rand:   rgba(255,255,255,0.10);
  --glas-rand-hi:rgba(255,255,255,0.18);

  --schrift: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --maxbreite: 1320px;

  --r-btn: 14px; --r-md: 18px; --r-lg: 26px; --r-xl: 32px;

  --sch-glas:  0 1px 0 rgba(255,255,255,0.09) inset, 0 24px 60px rgba(0,0,0,0.45);
  --sch-glas-hi: 0 1px 0 rgba(255,255,255,0.14) inset, 0 30px 70px rgba(0,0,0,0.55), 0 0 50px rgba(249,69,16,0.18);
  --sch-glow:  0 8px 30px rgba(249,69,16,0.4);
  --sch-glow-hi: 0 10px 46px rgba(249,69,16,0.6);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-0);
  color: var(--tinte);
  font-family: var(--schrift);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--akzent-hell); outline-offset: 3px; }
.seitenbreite { max-width: var(--maxbreite); margin: 0 auto; width: 100%; padding: 0 60px; position: relative; z-index: 1; }
@media (max-width: 900px) { .seitenbreite { padding: 0 24px; } }

/* ═══════════════════════════════════════════════════════════════
   HINTERGRUND-SYSTEM — fixiert, bleibt hinter dem scrollenden Inhalt
   ═══════════════════════════════════════════════════════════════ */
.bg-basis {
  position: fixed; inset: 0; z-index: -5;
  background: linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 45%, #02080b 100%);
}
.bg-glow {
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse 900px 620px at 12% -8%, rgba(249,69,16,0.30), transparent 60%),
    radial-gradient(ellipse 800px 800px at 108% 15%, rgba(23,145,184,0.24), transparent 55%),
    radial-gradient(ellipse 700px 500px at 30% 60%, rgba(249,69,16,0.10), transparent 60%),
    radial-gradient(ellipse 1000px 700px at 90% 100%, rgba(23,145,184,0.18), transparent 55%);
}
.bg-orb {
  position: fixed; border-radius: 50%; filter: blur(64px); z-index: -1; pointer-events: none; will-change: transform;
}
.bg-orb--1 { width: 440px; height: 440px; top: -160px; left: -140px; background: radial-gradient(circle, rgba(249,69,16,0.42), transparent 72%); animation: driftA 24s ease-in-out infinite alternate; }
.bg-orb--2 { width: 500px; height: 500px; bottom: -220px; right: -180px; background: radial-gradient(circle, rgba(23,145,184,0.34), transparent 72%); animation: driftB 28s ease-in-out infinite alternate; }
.bg-orb--3 { width: 320px; height: 320px; top: 46%; left: 62%; background: radial-gradient(circle, rgba(249,69,16,0.22), transparent 72%); animation: driftC 20s ease-in-out infinite alternate; }
@keyframes driftA { from { transform: translate(0,0) scale(1); } to { transform: translate(70px, 50px) scale(1.16); } }
@keyframes driftB { from { transform: translate(0,0) scale(1); } to { transform: translate(-60px,-40px) scale(1.1); } }
@keyframes driftC { from { transform: translate(0,0) scale(1); opacity:.6 } to { transform: translate(-40px, 60px) scale(1.2); opacity:.9 } }
.bg-grain {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; }
  .glas:hover, .karte:hover, .btn:hover { transform: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════════════
   TYPOGRAFIE & GRUNDBAUTEILE
   ═══════════════════════════════════════════════════════════════ */
.pille {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--grau); background: var(--glas-bg); border: 1px solid var(--glas-rand);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: 9px 18px 9px 14px; border-radius: 50px; margin-bottom: 26px;
}
.punkt { width: 7px; height: 7px; border-radius: 50%; background: var(--akzent-hell); flex-shrink: 0; box-shadow: 0 0 10px var(--akzent-hell); }

.sek-titel { font-size: clamp(28px, 3.6vw, 44px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.12; margin-bottom: 18px; color: var(--tinte); }
.sek-lead { font-size: 17px; color: var(--grau); max-width: 600px; line-height: 1.7; font-weight: 400; }
.sek-innen { padding: 118px 0; position: relative; }
@media (max-width: 900px) { .sek-innen { padding: 80px 0; } }

.grad-text {
  background: linear-gradient(95deg, var(--akzent-glut) 0%, var(--akzent-hell) 45%, var(--akzent-glut) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shine 7s linear infinite;
}
@keyframes shine { to { background-position: -220% center; } }

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%; z-index: 300;
  background: linear-gradient(90deg, var(--akzent), var(--navy-hell));
  box-shadow: 0 0 12px rgba(249,69,16,0.55); pointer-events: none;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--akzent-hell), var(--akzent));
  color: #fff; padding: 17px 32px; font-size: 15px; font-weight: 700; font-family: var(--schrift);
  letter-spacing: -0.01em; border-radius: var(--r-btn); box-shadow: var(--sch-glow);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--sch-glow-hi); }
.btn--puls { animation: puls 3.2s ease-in-out infinite; }
@keyframes puls { 0%,100% { box-shadow: var(--sch-glow); } 50% { box-shadow: var(--sch-glow-hi); } }
.btn--geist {
  background: var(--glas-bg); color: var(--tinte); border: 1px solid var(--glas-rand);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: none;
}
.btn--geist:hover { border-color: var(--glas-rand-hi); background: var(--glas-bg-hi); transform: translateY(-3px); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Glas-Oberfläche — Grundbaustein für alles ── */
.glas {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--glas-bg);
  backdrop-filter: blur(13px) saturate(130%); -webkit-backdrop-filter: blur(13px) saturate(130%);
  border: 1px solid var(--glas-rand); border-radius: var(--r-lg);
  box-shadow: var(--sch-glas);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s, box-shadow .35s, background .35s;
}
.glas:hover { transform: translateY(-7px); border-color: rgba(249,69,16,0.45); box-shadow: var(--sch-glas-hi); background: var(--glas-bg-hi); }

/* ═══════════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════════ */
#hauptnav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; transition: background .35s, border-color .35s, backdrop-filter .35s; border-bottom: 1px solid transparent; }
.nav-innen { max-width: var(--maxbreite); margin: 0 auto; padding: 26px 60px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 700; letter-spacing: -0.01em; color: #fff; }
.nav-logo .punkt { animation: puls-punkt 2.6s ease-in-out infinite; }
@keyframes puls-punkt { 0%,100% { opacity:1; transform:scale(1);} 50% { opacity:.6; transform:scale(1.3);} }
#hauptnav ul { display: flex; align-items: center; gap: 38px; }
#hauptnav ul a { font-size: 14px; font-weight: 500; color: var(--grau); transition: color .25s; }
#hauptnav ul a:hover { color: #fff; }
#hauptnav .btn { padding: 12px 24px; font-size: 13px; }
#hauptnav.is-stuck { background: rgba(8,7,12,0.68); backdrop-filter: blur(20px) saturate(150%); -webkit-backdrop-filter: blur(20px) saturate(150%); border-bottom-color: rgba(255,255,255,0.08); }
#hauptnav.is-stuck .nav-innen { padding: 15px 60px; }

.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 210; }
.nav-burger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s ease; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 860px) {
  .nav-innen { padding: 20px 24px; } #hauptnav.is-stuck .nav-innen { padding: 14px 24px; }
  #hauptnav ul.nav-links { display: none; } .nav-innen > a.btn { display: none; } .nav-burger { display: flex; }
}
@media (max-width: 400px) { .nav-logo { font-size: 15px; } }

.nav-abdunklung { position: fixed; inset: 0; z-index: 190; background: rgba(4,3,6,0.75); backdrop-filter: blur(8px); opacity: 0; pointer-events: none; transition: opacity .3s; }
.nav-abdunklung.is-open { opacity: 1; pointer-events: auto; }
.nav-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 195; width: min(360px, 84vw);
  background: linear-gradient(165deg, #0d1a20 0%, var(--bg-0) 100%); border-left: 1px solid var(--glas-rand);
  transform: translateX(100%); transition: transform .4s cubic-bezier(.2,.8,.2,1);
  display: flex; flex-direction: column; justify-content: center; gap: 28px; padding: 40px;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer a { font-size: 23px; font-weight: 700; color: #fff; }
.nav-drawer a:hover { color: var(--akzent-hell); }
.nav-drawer .btn { width: fit-content; margin-top: 10px; }

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
#hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 150px 0 90px; }
.hero-foto {
  position: absolute; inset: 0; z-index: -3;
  background:
    linear-gradient(100deg, rgba(5,20,28,0.85) 0%, rgba(5,20,28,0.62) 45%, rgba(5,20,28,0.34) 75%, rgba(5,20,28,0.18) 100%),
    url('office.jpg') center 30% / cover no-repeat;
  filter: saturate(0.8) brightness(0.72) contrast(1.05);
}
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.hero-titel { font-size: clamp(34px, 5.6vw, 72px); font-weight: 700; letter-spacing: -0.035em; line-height: 1.06; color: #fff; margin-bottom: 24px; }
.hero-lead { font-size: 18px; color: var(--grau); max-width: 520px; line-height: 1.7; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }

.hero-panel { padding: 8px; }
.hero-panel-item { padding: 22px 24px; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; gap: 16px; align-items: flex-start; }
.hero-panel-item:last-child { border-bottom: none; }
.hero-panel-icon { width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(155deg, rgba(249,69,16,0.24), rgba(249,69,16,0.06)); border: 1px solid rgba(249,69,16,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-panel-icon svg { width: 18px; height: 18px; stroke: var(--akzent-glut); }
.hero-panel-item h3 { font-size: 15.5px; font-weight: 700; color: #fff; margin-bottom: 3px; letter-spacing: -0.01em; }
.hero-panel-item p { font-size: 13px; color: var(--grau-dim); line-height: 1.5; }

.schweb-leiste { margin-top: 52px; padding: 22px 30px; display: flex; align-items: center; gap: 34px; overflow-x: auto; scrollbar-width: none; }
.schweb-leiste::-webkit-scrollbar { display: none; }
.schweb-item { display: flex; align-items: center; gap: 10px; white-space: nowrap; font-size: 13.5px; font-weight: 600; color: var(--grau); }
.schweb-item svg { width: 16px; height: 16px; stroke: var(--akzent-glut); flex-shrink: 0; }

@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  #hero { padding: 130px 0 60px; }
  .hero-foto { background: linear-gradient(180deg, rgba(5,20,28,0.88) 0%, rgba(5,20,28,0.72) 55%, rgba(5,20,28,0.62) 100%), url('office.jpg') center 30% / cover no-repeat; }
  .schweb-leiste { margin-top: 34px; }
}

/* ── Seiten-Hero (Unterseiten) ── */
#seiten-hero { position: relative; padding: 160px 0 90px; overflow: hidden; }
#seiten-hero .hero-foto { position: absolute; }
.seiten-hero-titel { font-size: clamp(32px, 4.6vw, 58px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; color: #fff; margin-bottom: 20px; }
.seiten-hero-lead { font-size: 17px; color: var(--grau); max-width: 620px; line-height: 1.7; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--grau-dim); margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb a { color: var(--grau-dim); transition: color .25s; }
.breadcrumb a:hover { color: var(--akzent-glut); }
.breadcrumb span { opacity: 0.5; }

/* ── Statement ── */
.statement-wrap { padding: 90px 0; text-align: center; }
.statement-text { font-size: clamp(24px, 3.6vw, 42px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.25; max-width: 880px; margin: 0 auto; }

/* ═══════════════════════════════════════════════════════════════
   KARTEN-GRIDS
   ═══════════════════════════════════════════════════════════════ */
.karten-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 54px; }
@media (max-width: 980px) { .karten-grid { grid-template-columns: 1fr; } }
.karte { padding: 38px 32px; display: flex; flex-direction: column; }
.karte-icon { width: 54px; height: 54px; border-radius: 16px; background: linear-gradient(155deg, rgba(249,69,16,0.22), rgba(249,69,16,0.05)); border: 1px solid rgba(249,69,16,0.28); display: flex; align-items: center; justify-content: center; margin-bottom: 26px; transition: transform .35s, background .35s; }
.karte-icon svg { width: 23px; height: 23px; stroke: var(--akzent-glut); }
.karte:hover .karte-icon { transform: scale(1.08) rotate(-4deg); background: linear-gradient(155deg, rgba(249,69,16,0.42), rgba(249,69,16,0.12)); }
.karte h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 10px; color: #fff; }
.karte p { font-size: 14.5px; color: var(--grau); line-height: 1.65; margin-bottom: 18px; }
.karte-preis { font-size: 13px; font-weight: 700; color: var(--akzent-glut); margin-top: auto; margin-bottom: 14px; }
.karte-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--grau); padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); transition: color .25s, gap .25s; }
.karte:hover .karte-link { color: var(--akzent-glut); gap: 10px; }
.karte-link svg { width: 12px; height: 12px; }

.cta-band { display: flex; align-items: center; justify-content: space-between; gap: 22px 34px; flex-wrap: wrap; margin-top: 54px; padding: 34px 40px; }
.cta-text { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; color: #fff; }
@media (max-width: 700px) { .cta-band { padding: 26px 24px; } .cta-band .btn { width: 100%; justify-content: center; } }

/* ── Zweispaltig ── */
.zweispaltig { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: start; margin-top: 54px; }
@media (max-width: 900px) { .zweispaltig { grid-template-columns: 1fr; gap: 34px; } }
.warum-text p { color: var(--grau); line-height: 1.8; margin-bottom: 16px; font-size: 15.5px; }
.warum-text p strong { color: #fff; }
.warum-text a.inline-link { color: var(--akzent-glut); font-weight: 700; border-bottom: 1.5px solid rgba(255,171,107,0.35); }
.warum-text a.inline-link:hover { border-color: var(--akzent-glut); }
.feature-liste { display: flex; flex-direction: column; gap: 12px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px 22px; }
.feature-icon { width: 38px; height: 38px; border-radius: 11px; background: linear-gradient(155deg, rgba(249,69,16,0.22), rgba(249,69,16,0.05)); border: 1px solid rgba(249,69,16,0.28); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-icon svg { width: 17px; height: 17px; stroke: var(--akzent-glut); }
.feature-item h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 3px; letter-spacing: -0.01em; }
.feature-item p { font-size: 13.5px; color: var(--grau-dim); line-height: 1.55; }

/* ── Seitenkasten (Preisbox etc.) ── */
.seitenkasten { padding: 40px 36px; }
.seitenkasten-ab { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grau-dim); }
.seitenkasten-preis { font-size: 46px; font-weight: 700; color: #fff; letter-spacing: -0.03em; margin: 6px 0 4px; }
.seitenkasten-note { font-size: 13px; color: var(--grau-dim); margin-bottom: 22px; }
.seitenkasten hr { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin-bottom: 22px; }
.seitenkasten-liste { display: flex; flex-direction: column; gap: 12px; }
.seitenkasten-liste li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--grau); }
.seitenkasten-liste li::before {
  content: ''; display: block; width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  background: rgba(249,69,16,0.16) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23ffab8a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center;
}

/* ── Prozess ── */
.schiene { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; margin-top: 58px; }
.schiene-linie { position: absolute; top: 27px; left: 0; right: 0; height: 1px; background: linear-gradient(to right, var(--akzent) 0%, rgba(255,255,255,0.06) 100%); z-index: 0; }
.schritt { position: relative; z-index: 1; padding: 30px 24px; }
.karte-nr { width: 52px; height: 52px; border-radius: 16px; background: linear-gradient(150deg, rgba(249,69,16,0.3), rgba(249,69,16,0.08)); border: 1px solid rgba(249,69,16,0.4); color: #fff; font-size: 16px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.schritt h4 { font-size: 16.5px; font-weight: 700; color: #fff; margin-bottom: 8px; letter-spacing: -0.01em; }
.schritt p { font-size: 13.5px; color: var(--grau-dim); line-height: 1.6; }
@media (max-width: 900px) { .schiene { grid-template-columns: 1fr 1fr; row-gap: 24px; } .schiene-linie { display: none; } }
@media (max-width: 560px) { .schiene { grid-template-columns: 1fr; } }

/* ── Referenzen ── */
.ref-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; margin-top: 54px; }
.ref-karte { padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.ref-kopf { display: flex; align-items: center; gap: 14px; }
.ref-icon { width: 44px; height: 44px; border-radius: 13px; background: linear-gradient(155deg, rgba(255,255,255,0.09), rgba(255,255,255,0.02)); border: 1px solid var(--glas-rand); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ref-icon svg { width: 19px; height: 19px; stroke: var(--akzent-glut); }
.ref-name { font-weight: 700; font-size: 15px; color: #fff; line-height: 1.25; }
.ref-name span { display: block; font-weight: 400; color: var(--grau-dim); font-size: 12.5px; margin-top: 2px; }
.ref-karte p { font-size: 13.5px; color: var(--grau); line-height: 1.6; }
.ref-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.08); }
.tag { font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 5px 12px; border-radius: 50px; background: rgba(249,69,16,0.14); color: var(--akzent-glut); border: 1px solid rgba(249,69,16,0.24); }
.ref-cta { padding: 28px; display: flex; flex-direction: column; justify-content: space-between; gap: 16px; background: linear-gradient(160deg, rgba(249,69,16,0.16), rgba(249,69,16,0.03)); border-color: rgba(249,69,16,0.28); }
.ref-cta p:first-child { font-size: 18px; font-weight: 700; color: #fff; line-height: 1.3; }
.ref-cta p:nth-child(2) { font-size: 13.5px; color: var(--grau); line-height: 1.6; }
.ref-cta a { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: #fff; border: 1.5px solid rgba(255,255,255,0.28); padding: 11px 20px; border-radius: 50px; width: fit-content; transition: border-color .25s, color .25s; }
.ref-cta a:hover { border-color: var(--akzent-glut); color: var(--akzent-glut); }

/* ── Parallax-Moment ── */
.parallax-band { position: relative; padding: 140px 0; overflow: hidden; }
.parallax-foto {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, rgba(5,20,28,0.72) 0%, rgba(5,20,28,0.82) 100%),
    url('office.jpg') center 45% / cover no-repeat;
  background-attachment: fixed, fixed;
  filter: saturate(0.65) brightness(0.62) contrast(1.05);
}
@media (max-width: 900px) {
  .parallax-band { padding: 96px 0; }
  .parallax-foto { background-attachment: scroll, scroll; }
}

/* ── Testimonial ── */
.testimonial { max-width: 780px; margin: 0 auto; text-align: center; padding: 56px 60px; }
.testimonial-mark { font-size: 84px; line-height: 0.5; background: linear-gradient(135deg, var(--akzent-glut), var(--akzent)); -webkit-background-clip: text; background-clip: text; color: transparent; opacity: 0.7; display: block; margin-bottom: 18px; font-family: Georgia, serif; }
.testimonial blockquote { font-size: clamp(19px, 2.4vw, 26px); font-weight: 500; line-height: 1.55; color: #fff; margin-bottom: 26px; letter-spacing: -0.015em; }
.testimonial-autor { display: flex; align-items: center; justify-content: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--akzent-hell), var(--akzent)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; color: #fff; }
.testimonial-autor p:first-child { font-weight: 700; font-size: 14px; color: #fff; }
.testimonial-autor p:last-child { font-size: 12.5px; color: var(--grau-dim); }

/* ── Region ── */
.region-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; margin-top: 54px; }
.region-karte { padding: 28px; }
.region-karte h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: #fff; letter-spacing: -0.01em; }
.region-karte p { font-size: 13.5px; color: var(--grau); line-height: 1.6; margin-bottom: 16px; }
.region-karte a { font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--akzent-glut); }

/* ── FAQ ── */
.frage-liste { display: flex; flex-direction: column; gap: 12px; margin-top: 46px; }
.frage { overflow: hidden; }
.frage-frage { width: 100%; background: none; border: none; text-align: left; cursor: pointer; padding: 24px 28px; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: 16px; font-weight: 600; color: #fff; font-family: var(--schrift); }
.frage-icon { width: 26px; height: 26px; border: 1.5px solid var(--akzent-glut); border-radius: 50%; color: var(--akzent-glut); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; transition: transform .25s, background .25s, color .25s; }
.frage.open .frage-icon { transform: rotate(45deg); background: var(--akzent); color: #fff; border-color: var(--akzent); }
.frage-antwort { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.2,.8,.2,1); }
.frage.open .frage-antwort { max-height: 400px; }
.frage-antwort p { padding: 0 28px 24px; font-size: 14.5px; color: var(--grau); line-height: 1.75; }

/* ── Kontakt ── */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 54px; }
@media (max-width: 900px) { .kontakt-grid { grid-template-columns: 1fr; } }
.kontakt-karte { padding: 36px; }
.kontakt-karte h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.kontakt-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.kontakt-item:last-child { margin-bottom: 0; }
.kontakt-icon { width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(155deg, rgba(249,69,16,0.22), rgba(249,69,16,0.05)); border: 1px solid rgba(249,69,16,0.28); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.kontakt-icon svg { width: 17px; height: 17px; stroke: var(--akzent-glut); }
.kontakt-item-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grau-dim); margin-bottom: 3px; }
.kontakt-item-wert { font-size: 15px; font-weight: 600; color: #fff; }
.kontakt-item-wert a:hover { color: var(--akzent-glut); }

/* ── Rechtstexte (Impressum/Datenschutz) ── */
.rechtstext { max-width: 780px; }
.rechtstext h2 { font-size: 20px; font-weight: 700; color: #fff; margin: 34px 0 12px; }
.rechtstext h2:first-child { margin-top: 0; }
.rechtstext h3 { font-size: 15px; font-weight: 700; color: #fff; margin: 20px 0 8px; }
.rechtstext p { font-size: 14.5px; color: var(--grau); line-height: 1.8; margin-bottom: 10px; }
.rechtstext a { color: var(--akzent-glut); }
.rechtstext a:hover { text-decoration: underline; }
.rechtstext ul { padding-left: 20px; margin-bottom: 10px; }
.rechtstext ul li { font-size: 14.5px; color: var(--grau); line-height: 1.8; list-style: disc; }

/* ── Abschluss ── */
.abschluss-panel { padding: 64px 56px; text-align: center; background: linear-gradient(160deg, rgba(249,69,16,0.18), rgba(23,145,184,0.08)); border-color: rgba(249,69,16,0.3); }
.abschluss-panel h2 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.15; color: #fff; margin-bottom: 30px; }
@media (max-width: 700px) { .abschluss-panel { padding: 48px 28px; } }

/* ── Footer ── */
footer { position: relative; padding-top: 40px; }
.footer-raster { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; padding: 0 0 50px; }
@media (max-width: 900px) { .footer-raster { grid-template-columns: 1fr; } }
.footer-panel { padding: 30px 32px; }
.footer-marke { display: flex; align-items: center; gap: 10px; font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-about { font-size: 13.5px; color: var(--grau); line-height: 1.75; margin-bottom: 18px; }
.footer-xmind { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; color: var(--grau); border: 1px solid var(--glas-rand); padding: 9px 16px; border-radius: 50px; transition: all .25s; }
.footer-xmind:hover { color: #fff; border-color: var(--akzent-glut); }
.footer-col-titel { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grau-dim); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 14px; color: var(--grau); transition: color .25s; }
.footer-col ul a:hover { color: var(--akzent-glut); }
.footer-nap p { font-size: 13.5px; line-height: 1.9; color: var(--grau); }
.footer-unten { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding: 26px 0 60px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 12.5px; color: var(--grau-dim); }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { color: var(--grau-dim); transition: color .25s; }
.footer-legal a:hover { color: #fff; }

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(38px) scale(0.94); transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1); }
.reveal.sichtbar { opacity: 1; transform: translateY(0) scale(1); }
.reveal--v1 { transition-delay: .1s; } .reveal--v2 { transition-delay: .2s; } .reveal--v3 { transition-delay: .3s; }

/* ═══════════════════════════════════════════════════════════════
   BILDER
   Bis echte Dateien vorliegen, greift .bild-leer als sichtbarer
   Platzhalter — so bleibt das Layout stabil und es ist auf einen
   Blick erkennbar, wo noch Material fehlt.
   ═══════════════════════════════════════════════════════════════ */
figure { margin: 0; }
.bild-figur { border-radius: var(--r-lg); overflow: hidden; position: relative; background: var(--glas-bg); border: 1px solid var(--glas-rand); }
.bild-figur img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bild-figur figcaption { padding: 14px 20px; font-size: 12.5px; color: var(--grau-dim); line-height: 1.6; border-top: 1px solid rgba(255,255,255,0.07); }
.bild-leer {
  aspect-ratio: 16 / 10; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; text-align: center; padding: 24px;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.035) 0 12px, rgba(255,255,255,0.012) 12px 24px);
  color: var(--grau-dim); font-size: 12px; letter-spacing: 0.04em;
}
.bild-leer svg { stroke: var(--akzent-glut); opacity: .7; }
.bild-leer span { letter-spacing: 0.08em; text-transform: uppercase; font-size: 11px; font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════
   CASE STUDIES
   ═══════════════════════════════════════════════════════════════ */
.fall-grid { display: flex; flex-direction: column; gap: 26px; margin-top: 50px; }
.fall { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 0; overflow: hidden; padding: 0; }
.fall:nth-child(even) { grid-template-columns: 1.15fr 0.85fr; }
.fall:nth-child(even) .fall-bild { order: 2; }
.fall-bild { min-height: 100%; border-radius: 0; border: none; border-right: 1px solid rgba(255,255,255,0.07); }
.fall:nth-child(even) .fall-bild { border-right: none; border-left: 1px solid rgba(255,255,255,0.07); }
.fall-bild .bild-leer { aspect-ratio: auto; height: 100%; min-height: 260px; }
.fall-text { padding: 38px 42px; display: flex; flex-direction: column; gap: 14px; }
.fall-kopf { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.fall-kunde { font-size: 21px; font-weight: 700; color: #fff; letter-spacing: -0.02em; }
.fall-ort { font-size: 12.5px; color: var(--akzent-glut); font-weight: 600; }
.fall-branche { font-size: 11px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--grau-dim); }
.fall-text p { font-size: 14.5px; color: var(--grau); line-height: 1.75; }
.fall-label { font-size: 11px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--grau-dim); margin-top: 6px; }
.fall-leistung { display: flex; flex-wrap: wrap; gap: 8px; }
.fall-leistung span { font-size: 12.5px; padding: 6px 13px; border-radius: 999px; background: rgba(255,255,255,0.06); border: 1px solid var(--glas-rand); color: var(--grau); }
.fall-ergebnis { margin-top: 4px; padding: 16px 20px; border-radius: var(--r-md); background: linear-gradient(150deg, rgba(249,69,16,0.16), rgba(249,69,16,0.03)); border: 1px solid rgba(249,69,16,0.28); }
.fall-ergebnis p { color: #fff; font-size: 14px; font-weight: 500; }
@media (max-width: 900px) {
  .fall, .fall:nth-child(even) { grid-template-columns: 1fr; }
  .fall:nth-child(even) .fall-bild { order: 0; border-left: none; }
  .fall-bild { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .fall-text { padding: 28px 24px; }
}

/* ═══════════════════════════════════════════════════════════════
   KUNDENSTIMMEN — Raster mehrerer Zitate
   ═══════════════════════════════════════════════════════════════ */
.stimmen-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; margin-top: 50px; }
.stimme { padding: 30px 32px; display: flex; flex-direction: column; gap: 18px; }
.stimme blockquote { font-size: 15px; line-height: 1.8; color: var(--grau); font-style: italic; }
.stimme-autor { display: flex; align-items: center; gap: 13px; margin-top: auto; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); }
.stimme-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(150deg, var(--akzent), var(--akzent-hell)); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #fff; flex-shrink: 0; }
.stimme-autor p:first-of-type { font-size: 14px; font-weight: 700; color: #fff; }
.stimme-autor p:last-of-type { font-size: 12.5px; color: var(--grau-dim); }

/* ═══════════════════════════════════════════════════════════════
   LANGTEXT — Fließtext mit Zwischenüberschriften
   ═══════════════════════════════════════════════════════════════ */
.textblock { max-width: 780px; }
.textblock h3 { font-size: clamp(20px, 2.4vw, 27px); font-weight: 700; color: #fff; letter-spacing: -0.025em; line-height: 1.25; margin: 44px 0 16px; }
.textblock h3:first-child { margin-top: 0; }
.textblock h4 { font-size: 17px; font-weight: 700; color: #fff; margin: 28px 0 10px; }
.textblock p { font-size: 15.5px; color: var(--grau); line-height: 1.85; margin-bottom: 18px; }
.textblock ul, .textblock ol { margin: 0 0 22px; display: flex; flex-direction: column; gap: 11px; }
.textblock ol { counter-reset: pos; }
.textblock li { font-size: 15px; color: var(--grau); line-height: 1.75; padding-left: 30px; position: relative; }
.textblock ul li::before { content: ''; position: absolute; left: 6px; top: 10px; width: 7px; height: 7px; border-radius: 50%; background: var(--akzent); }
.textblock ol li { counter-increment: pos; }
.textblock ol li::before { content: counter(pos); position: absolute; left: 0; top: 1px; width: 21px; height: 21px; border-radius: 50%; background: rgba(249,69,16,0.18); border: 1px solid rgba(249,69,16,0.4); color: var(--akzent-glut); font-size: 11.5px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.textblock strong { color: #fff; font-weight: 600; }
.textblock a:not(.btn) { color: var(--akzent-glut); font-weight: 600; border-bottom: 1px solid rgba(255,171,138,0.4); transition: border-color .25s; }
.textblock a:not(.btn):hover { border-bottom-color: var(--akzent-glut); }
.textblock blockquote { margin: 26px 0; padding: 20px 26px; border-left: 3px solid var(--akzent); background: rgba(255,255,255,0.04); border-radius: 0 var(--r-md) var(--r-md) 0; font-size: 15.5px; color: var(--grau); font-style: italic; line-height: 1.8; }

/* ═══════════════════════════════════════════════════════════════
   VERGLEICHSTABELLE
   ═══════════════════════════════════════════════════════════════ */
.tabelle-huelle { overflow-x: auto; margin: 30px 0; border-radius: var(--r-lg); border: 1px solid var(--glas-rand); background: var(--glas-bg); }
.vergleich { width: 100%; border-collapse: collapse; min-width: 520px; }
.vergleich th, .vergleich td { padding: 15px 20px; text-align: left; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.vergleich th { font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grau-dim); background: rgba(255,255,255,0.035); }
.vergleich td { color: var(--grau); }
.vergleich td:first-child { color: #fff; font-weight: 600; }
.vergleich tr:last-child td { border-bottom: none; }
.vergleich .ja { color: #6ee7a8; font-weight: 700; }
.vergleich .nein { color: var(--grau-dim); }

/* ═══════════════════════════════════════════════════════════════
   RATGEBER
   ═══════════════════════════════════════════════════════════════ */
.ratgeber-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; margin-top: 50px; }
.ratgeber-karte { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.ratgeber-karte .bild-leer { aspect-ratio: 16 / 9; }
.ratgeber-karte-text { padding: 26px 28px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.ratgeber-karte h3 { font-size: 18px; font-weight: 700; color: #fff; letter-spacing: -0.02em; line-height: 1.35; }
.ratgeber-karte p { font-size: 14px; color: var(--grau); line-height: 1.7; }
.artikel-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 12.5px; color: var(--grau-dim); }
.artikel-meta time { color: var(--akzent-glut); font-weight: 600; }
.artikel-layout { display: grid; grid-template-columns: 240px 1fr; gap: 56px; align-items: start; }
@media (max-width: 950px) { .artikel-layout { grid-template-columns: 1fr; gap: 34px; } }
.inhalt-nav { position: sticky; top: 110px; padding: 24px 26px; }
.inhalt-nav p { font-size: 11px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--grau-dim); margin-bottom: 15px; }
.inhalt-nav ul { display: flex; flex-direction: column; gap: 11px; }
.inhalt-nav a { font-size: 13.5px; color: var(--grau); line-height: 1.5; transition: color .25s; display: block; }
.inhalt-nav a:hover { color: var(--akzent-glut); }
@media (max-width: 950px) { .inhalt-nav { position: static; } }
