/* intoconvo Website — Styles based on V5 Concept */
:root {
  --gu: 32px;
  --half: 16px;
  --bg: #F4F4F6;
  --bg-dark: #111114;
  --bg-dark-s: #1A1A1F;
  --bg-dark-e: #222228;
  --text: #111114;
  --text-2: #5C5C6A;
  --text-3: #8E8E9C;
  --text-w: #F4F4F6;
  --text-w2: #8E8E9C;
  --gl: rgba(17,17,20,0.06);
  --gl-s: rgba(17,17,20,0.10);
  --gl-dark: rgba(244,244,246,0.04);
  --gl-dark-s: rgba(244,244,246,0.08);
  --p: #7C3AED;
  --p-soft: rgba(124,58,237,0.10);
  --p-glow: rgba(124,58,237,0.30);
  --p-text: #8B5CF6;
  --p-line: rgba(124,58,237,0.20);
  --serif: 'Newsreader', serif;
  --sans: 'Outfit', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

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

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

html { scroll-behavior: smooth; }
body.nav-open { overflow: hidden; }

/* ===== LABEL ===== */
.label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 8px;
  height: var(--gu);
  line-height: var(--gu);
}
.label::before {
  content: '';
  width: 5px;
  height: 5px;
  background: currentColor;
  flex-shrink: 0;
}
.label.lp { color: var(--p); }

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1{transition-delay:.08s}
.reveal-d2{transition-delay:.16s}
.reveal-d3{transition-delay:.24s}
.reveal-d4{transition-delay:.32s}
.reveal-d5{transition-delay:.4s}
.reveal-d6{transition-delay:.48s}

/* ===== CROSSHAIRS & TRACES ===== */
.cross {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}
.cross::before {
  content: '';
  position: absolute;
  width: 17px;
  height: 1px;
  background: var(--p);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  opacity: .45;
}
.cross::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 17px;
  background: var(--p);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  opacity: .45;
}
.trace {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.trace-h {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--p-line) 15%, var(--p) 50%, var(--p-line) 85%, transparent);
  animation: fadeTrace 5s ease-in-out infinite;
}
.trace-v {
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--p-line) 15%, var(--p) 50%, var(--p-line) 85%, transparent);
  animation: fadeTrace 7s ease-in-out infinite;
}
@keyframes fadeTrace { 0%,100%{opacity:0} 25%,75%{opacity:1} }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background-color .2s, border-color .2s;
}
.site-header.scrolled {
  background-color: rgba(244,244,246,0.85);
  border-bottom: 1px solid var(--gl-s);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 calc(var(--gu)*2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: calc(var(--gu)*2);
}
.logo {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 36;
  color: var(--text);
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: calc(var(--gu));
}
.nav-links a {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--text-2); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: calc(var(--gu)*1.5);
  padding: 0 28px;
  background: var(--text);
  color: var(--bg);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: .02em;
  text-decoration: none;
  transition: all .25s;
}
.btn:hover {
  background: var(--bg-dark-s);
  box-shadow: 0 4px 16px rgba(17,17,20,.12);
}
.btn-dark {
  background: var(--text-w);
  color: var(--text);
}
.btn-dark:hover {
  background: #e8e8ec;
  box-shadow: 0 4px 16px rgba(244,244,246,.15);
}
.btn-arrow {
  transition: transform .2s;
  display: inline-block;
}
.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ===== HERO ===== */
.hero-wrap {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero {
  position: relative;
  z-index: 1;
  padding: calc(var(--gu)*5) calc(var(--gu)*2) calc(var(--gu)*3);
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 88px;
  line-height: 88px;
  letter-spacing: -.025em;
  font-variation-settings: 'opsz' 72;
  margin-top: var(--gu);
  margin-bottom: var(--gu);
}
.hero h1 em { font-style: italic; color: var(--p); }
.hero-body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 28px;
  color: var(--text-2);
  max-width: 416px;
  margin-bottom: calc(var(--gu)*1.5);
}

/* ===== FEATURES (3-col with line accents) ===== */
.features-section {
  padding: calc(var(--gu)*3) calc(var(--gu)*2);
  max-width: 1280px;
  margin: 0 auto;
}
.features-header { margin-bottom: calc(var(--gu)*2); }
.features-header h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 52px;
  line-height: 56px;
  letter-spacing: -.015em;
  font-variation-settings: 'opsz' 72;
  margin-top: var(--half);
}
.features-header h2 .m { color: var(--text-3); }
.features-area {
  position: relative;
  padding: calc(var(--gu)*2);
  background-image: linear-gradient(90deg, var(--gl) 1px, transparent 1px), linear-gradient(0deg, var(--gl) 1px, transparent 1px);
  background-size: var(--gu) var(--gu);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: calc(var(--gu)*2);
}
.feat-item .fi-line {
  width: var(--gu);
  height: 1px;
  background: var(--gl-s);
  margin-bottom: var(--gu);
}
.feat-item .fi-line.purple {
  background: var(--p);
  box-shadow: 0 0 6px var(--p-glow);
}
.feat-item h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: var(--gu);
  font-variation-settings: 'opsz' 36;
  margin-bottom: var(--half);
}
.feat-item p {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  color: var(--text-2);
}

/* ===== KPIs ===== */
.kpi-section {
  border-top: 1px solid var(--gl-s);
  border-bottom: 1px solid var(--gl-s);
  margin-bottom: calc(var(--gu)*3);
}
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1280px;
  margin: 0 auto;
}
.kpi-cell {
  padding: calc(var(--gu)*2) calc(var(--gu)*1.5);
  border-right: 1px solid var(--gl-s);
  position: relative;
  overflow: hidden;
}
.kpi-cell:last-child { border-right: none; }
.kpi-cell::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, var(--gl) 1px, transparent 1px), linear-gradient(0deg, var(--gl) 1px, transparent 1px);
  background-size: var(--gu) var(--gu);
  opacity: 0;
  transition: opacity 1.2s;
  pointer-events: none;
}
.kpi-cell.grid-active::before { opacity: 1; }
.kpi-number {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 56px;
  line-height: calc(var(--gu)*2);
  letter-spacing: -.02em;
  font-variation-settings: 'opsz' 72;
  margin-bottom: var(--half);
}
.kpi-number .kpi-unit { font-size: 32px; color: var(--text-3); }
.kpi-number .kpi-accent { color: var(--p); }
.kpi-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
  height: var(--gu);
  line-height: var(--gu);
}
.kpi-desc {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  color: var(--text-2);
  margin-top: var(--half);
}

/* ===== DARK SECTION (Produkt UI) ===== */
.dark-section {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.dark-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, var(--gl-dark) 1px, transparent 1px), linear-gradient(0deg, var(--gl-dark) 1px, transparent 1px);
  background-size: var(--gu) var(--gu);
  pointer-events: none;
}
.dark-inner {
  position: relative;
  z-index: 3;
  padding: calc(var(--gu)*3) calc(var(--gu)*2);
  max-width: 1280px;
  margin: 0 auto;
}
.dark-inner h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 52px;
  line-height: 56px;
  letter-spacing: -.015em;
  font-variation-settings: 'opsz' 72;
  color: var(--text-w);
  margin-top: var(--half);
}
.dark-inner h2 em { font-style: italic; color: var(--p-text); }
.dark-desc {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 26px;
  color: var(--text-w2);
  max-width: 448px;
  margin-top: var(--gu);
}

/* UI Mock */
.ui-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gl-dark-s);
  margin-top: calc(var(--gu)*2);
}
.ui-card { background: var(--bg-dark-s); padding: var(--gu); }
.uc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--gu);
  margin-bottom: var(--gu);
  padding-bottom: var(--half);
  border-bottom: 1px solid var(--gl-dark);
}
.uc-title { font-family: var(--sans); font-weight: 400; font-size: 13px; color: var(--text-w); }
.uc-badge { font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; background: var(--p-soft); color: var(--p-text); padding: 4px 10px; }
.mail-row {
  display: grid;
  grid-template-columns: 5px 1fr auto;
  gap: 12px;
  align-items: center;
  height: calc(var(--gu)*1.5);
  border-top: 1px solid var(--gl-dark);
}
.md { width: 5px; height: 5px; }
.md.ai { background: var(--p); box-shadow: 0 0 8px var(--p-glow); }
.md.df { background: rgba(244,244,246,.12); }
.ms { font-family: var(--sans); font-weight: 400; font-size: 13px; color: var(--text-w); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mt { font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; padding: 3px 8px; }
.mt.ai { background: var(--p-soft); color: var(--p-text); }
.mt.df { background: rgba(244,244,246,.04); color: var(--text-w2); }
.draft-block {
  margin-top: var(--gu);
  border-left: 2px solid var(--p);
  padding: var(--half) calc(var(--gu)*.75);
  background: rgba(124,58,237,.03);
}
.draft-label { font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--p-text); height: var(--gu); line-height: var(--gu); }
.draft-text { font-family: var(--sans); font-weight: 300; font-size: 13px; line-height: 22px; color: var(--text-w2); }
.draft-btns { display: flex; gap: 1px; margin-top: var(--half); }
.dbtn { font-family: var(--sans); font-weight: 400; font-size: 12px; height: var(--gu); line-height: var(--gu); padding: 0 var(--half); cursor: pointer; border: none; }
.dbtn.pri { background: var(--p); color: white; }
.dbtn.sec { background: var(--bg-dark-e); color: var(--text-w2); }

/* ===== ÜBERSICHT — Hover-only animations ===== */
.ov-section {
  padding: calc(var(--gu)*3) calc(var(--gu)*2);
  max-width: 1280px;
  margin: 0 auto;
}
.ov-header { margin-bottom: calc(var(--gu)*2); }
.ov-header h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 52px;
  line-height: 56px;
  letter-spacing: -.015em;
  font-variation-settings: 'opsz' 72;
  margin-top: var(--half);
}
.ov-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gl-s);
}
.ov-card {
  background: var(--bg);
  padding: calc(var(--gu)*1.5);
  min-height: calc(var(--gu)*9);
  display: flex;
  flex-direction: column;
  transition: box-shadow .4s;
  position: relative;
  overflow: hidden;
}
.ov-card:hover { box-shadow: 0 8px 32px rgba(17,17,20,.08); z-index: 2; }
.ov-card h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  line-height: var(--gu);
  font-variation-settings: 'opsz' 36;
  margin-bottom: var(--half);
}
.ov-card p {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  color: var(--text-2);
}
.ov-card .fc-mono {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: auto;
  height: var(--gu);
  line-height: var(--gu);
  border-top: 1px solid var(--gl);
}
.ov-anim {
  width: 100%;
  height: calc(var(--gu)*3);
  margin-bottom: var(--gu);
  position: relative;
  overflow: hidden;
}
.ov-anim * { animation-play-state: paused !important; }
.ov-card:hover .ov-anim * { animation-play-state: running !important; }

/* Folder animation */
.anim-folder .folder-box { position: absolute; right: 0; bottom: 0; width: 48px; height: 36px; border: 1.5px solid var(--gl-s); border-top: 3px solid var(--text-3); }
.anim-folder .folder-item { position: absolute; left: 0; height: 20px; width: 56px; border: 1px solid var(--gl-s); background: var(--bg); display: flex; align-items: center; padding-left: 6px; font-family: var(--mono); font-size: 7px; color: var(--text-3); opacity: 1; animation: slideToFolder 3s ease-in-out infinite; }
.anim-folder .folder-item:nth-child(2) { animation-delay: 1s; top: 24px; }
.anim-folder .folder-item:nth-child(3) { animation-delay: 2s; top: 48px; }
@keyframes slideToFolder { 0%{transform:translateX(0);opacity:1} 60%{transform:translateX(calc(100% - 20px));opacity:1} 80%{transform:translateX(calc(100% - 20px));opacity:0} 100%{transform:translateX(0);opacity:0} }

/* Tags animation */
.anim-tags { display: flex; flex-wrap: wrap; gap: 6px; align-items: flex-start; align-content: flex-start; }
.anim-tags .tag { font-family: var(--mono); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; padding: 4px 8px; border: 1px solid var(--gl-s); color: var(--text-3); opacity: .4; animation: tagPop 4s ease-in-out infinite; }
.anim-tags .tag:nth-child(1){animation-delay:0s} .anim-tags .tag:nth-child(2){animation-delay:.4s} .anim-tags .tag:nth-child(3){animation-delay:.8s} .anim-tags .tag:nth-child(4){animation-delay:1.2s} .anim-tags .tag:nth-child(5){animation-delay:1.6s}
.anim-tags .tag.purple { border-color: var(--p); color: var(--p); background: var(--p-soft); }
@keyframes tagPop { 0%{opacity:.3;transform:scale(.9)} 15%{opacity:1;transform:scale(1)} 75%{opacity:1;transform:scale(1)} 100%{opacity:.3;transform:scale(.9)} }

/* Draft animation */
.anim-draft .draft-line { height: 8px; background: var(--gl-s); margin-bottom: 6px; transform-origin: left; transform: scaleX(1); animation: typeLine 3s ease-in-out infinite; border-radius: 1px; }
.anim-draft .draft-line:nth-child(1){width:85%;animation-delay:0s}
.anim-draft .draft-line:nth-child(2){width:70%;animation-delay:.3s}
.anim-draft .draft-line:nth-child(3){width:90%;animation-delay:.6s}
.anim-draft .draft-line:nth-child(4){width:40%;animation-delay:.9s}
.anim-draft .draft-line.purple { background: var(--p-soft); }
@keyframes typeLine { 0%{transform:scaleX(0);opacity:0} 20%{transform:scaleX(1);opacity:1} 80%{transform:scaleX(1);opacity:1} 100%{transform:scaleX(0);opacity:0} }

/* Check animation */
.anim-check .check-item { display: flex; align-items: center; gap: 8px; height: 20px; margin-bottom: 6px; opacity: .4; animation: checkIn 4s ease-in-out infinite; }
.anim-check .check-item:nth-child(1){animation-delay:0s} .anim-check .check-item:nth-child(2){animation-delay:.5s} .anim-check .check-item:nth-child(3){animation-delay:1s} .anim-check .check-item:nth-child(4){animation-delay:1.5s}
.check-box { width: 12px; height: 12px; border: 1.5px solid var(--gl-s); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.check-box.done { border-color: var(--p); background: var(--p-soft); }
.check-box.done::after { content: '\2713'; font-size: 8px; color: var(--p); }
.check-bar { height: 6px; background: var(--gl-s); border-radius: 1px; }
@keyframes checkIn { 0%{opacity:.3;transform:translateX(-8px)} 15%{opacity:1;transform:translateX(0)} 80%{opacity:1;transform:translateX(0)} 100%{opacity:.3;transform:translateX(-8px)} }

/* Ping animation */
.anim-ping { position: relative; }
.anim-ping .pg { position: absolute; }
.anim-ping .pg-dot { width: 6px; height: 6px; background: var(--p); border-radius: 50%; }
.anim-ping .pg-ring { position: absolute; top: -8px; left: -8px; width: 22px; height: 22px; border: 1px solid var(--p); border-radius: 50%; animation: pingOut 2.5s ease-out infinite; opacity: 0; }
.ov-card:hover .anim-ping .pg-ring { opacity: 1; }
.pg-1{top:20px;left:20px} .pg-2{top:40px;left:70px} .pg-3{top:10px;left:120px}
.pg-2 .pg-ring{animation-delay:1s} .pg-3 .pg-ring{animation-delay:2s}
@keyframes pingOut { 0%{transform:scale(.5);opacity:.8} 100%{transform:scale(2.5);opacity:0} }

/* Progress animation */
.anim-progress .prog-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.prog-label { font-family: var(--mono); font-size: 7px; letter-spacing: .08em; color: var(--text-3); width: 28px; flex-shrink: 0; }
.prog-track { flex: 1; height: 6px; background: var(--gl); position: relative; overflow: hidden; }
.prog-fill { height: 100%; position: absolute; left: 0; top: 0; transform: scaleX(1); transform-origin: left; animation: fillBar 3s ease-in-out infinite; }
.prog-fill.gray { background: var(--text-3); }
.prog-fill.purple { background: var(--p); }
.anim-progress .prog-row:nth-child(1) .prog-fill{width:75%;animation-delay:0s}
.anim-progress .prog-row:nth-child(2) .prog-fill{width:45%;animation-delay:.3s}
.anim-progress .prog-row:nth-child(3) .prog-fill{width:90%;animation-delay:.6s}
@keyframes fillBar { 0%{transform:scaleX(0);transform-origin:left} 30%{transform:scaleX(1);transform-origin:left} 70%{transform:scaleX(1);transform-origin:right} 100%{transform:scaleX(0);transform-origin:right} }

/* ===== TESTIMONIALS ===== */
.testi-section {
  padding: calc(var(--gu)*3) calc(var(--gu)*2);
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid var(--gl-s);
}
.testi-header { margin-bottom: calc(var(--gu)*2); }
.testi-header h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 52px;
  line-height: 56px;
  letter-spacing: -.015em;
  font-variation-settings: 'opsz' 72;
  margin-top: var(--half);
}
.testi-header h2 em { font-style: italic; color: var(--p); }
.testi-scroll {
  display: flex;
  gap: calc(var(--gu)*.75);
  overflow-x: auto;
  padding-bottom: var(--half);
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.testi-scroll::-webkit-scrollbar { display: none; }
.testi-card {
  min-width: 380px;
  max-width: 420px;
  flex-shrink: 0;
  border: 1px solid var(--gl-s);
  padding: calc(var(--gu)*1.5);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow .3s;
}
.testi-card:hover { box-shadow: 0 8px 32px rgba(17,17,20,.06); }
.testi-card .tq-mark {
  font-family: var(--serif);
  font-size: 80px;
  line-height: .7;
  color: var(--gl-s);
  position: absolute;
  top: var(--gu);
  right: calc(var(--gu)*1.25);
  pointer-events: none;
  user-select: none;
}
.testi-card .tq-text {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 18px;
  line-height: 30px;
  font-variation-settings: 'opsz' 20;
  color: var(--text);
  position: relative;
  z-index: 1;
  margin-bottom: calc(var(--gu)*1.5);
}
.testi-card .tq-author {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: var(--half);
  border-top: 1px solid var(--gl);
  padding-top: var(--half);
}
.tq-avatar {
  width: calc(var(--gu)*1.25);
  height: calc(var(--gu)*1.25);
  background: var(--bg);
  border: 1px solid var(--gl-s);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
  flex-shrink: 0;
}
.tq-name { font-family: var(--sans); font-weight: 400; font-size: 13px; color: var(--text); }
.tq-role { font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-top: 2px; }
.tq-stars { margin-bottom: var(--gu); display: flex; gap: 3px; }
.tq-stars .star { width: 14px; height: 14px; color: var(--p); }

/* ===== TRUST / DATENSCHUTZ ===== */
.trust-section {
  padding: calc(var(--gu)*3) calc(var(--gu)*2);
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid var(--gl-s);
}
.trust-header { margin-bottom: calc(var(--gu)*2); }
.trust-header h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 52px;
  line-height: 56px;
  letter-spacing: -.015em;
  font-variation-settings: 'opsz' 72;
  margin-top: var(--half);
}
.trust-header h2 .m { color: var(--text-3); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gl-s);
}
.trust-card {
  background: var(--bg);
  padding: calc(var(--gu)*1.5);
  min-height: calc(var(--gu)*9);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s;
}
.trust-card:hover { box-shadow: 0 8px 24px rgba(17,17,20,.06); z-index: 2; }
.trust-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, var(--gl) 1px, transparent 1px), linear-gradient(0deg, var(--gl) 1px, transparent 1px);
  background-size: var(--gu) var(--gu);
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
}
.trust-card:hover::before { opacity: 1; }
.trust-card .scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--p) 50%, transparent 100%);
  transform: translateY(-1px);
  opacity: 0;
  pointer-events: none;
}
.trust-card.scan-active .scan-line { opacity: 1; animation: scanDown 1.5s cubic-bezier(.16,1,.3,1) forwards; }
@keyframes scanDown { 0%{transform:translateY(0);opacity:.8} 100%{transform:translateY(288px);opacity:0} }

.trust-illus { width: 100%; height: calc(var(--gu)*3.5); margin-bottom: var(--gu); position: relative; }
.trust-illus svg { width: 100%; height: 100%; }
.trust-illus svg .il-line { stroke: var(--gl-s); stroke-width: 1; fill: none; transition: stroke .4s; }
.trust-illus svg .il-accent { stroke: var(--text-3); stroke-width: 1.2; fill: none; transition: stroke .4s; }
.trust-illus svg .il-fill { fill: var(--gl-s); stroke: none; transition: fill .4s; }
.trust-illus svg .il-dot { fill: var(--text-3); transition: fill .4s; }
.trust-card:hover .il-accent { stroke: var(--p); }
.trust-card:hover .il-fill { fill: var(--p-soft); }
.trust-card:hover .il-dot { fill: var(--p); }
.trust-illus svg .il-float { transition: transform .4s ease; }
.trust-card:hover .il-float { animation: ilFloat 3s ease-in-out infinite; }
@keyframes ilFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }
.trust-illus svg .il-pulse { opacity: .5; transition: opacity .3s; }
.trust-card:hover .il-pulse { animation: ilPulse 2s ease-in-out infinite; }
@keyframes ilPulse { 0%,100%{opacity:.3} 50%{opacity:.8} }
.trust-card h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  line-height: var(--gu);
  font-variation-settings: 'opsz' 36;
  margin-bottom: var(--half);
}
.trust-card p {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  color: var(--text-2);
}

/* ===== FAQ ===== */
.faq-section {
  padding: calc(var(--gu)*3) calc(var(--gu)*2);
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid var(--gl-s);
}
.faq-header { margin-bottom: calc(var(--gu)*2); }
.faq-header h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 52px;
  line-height: 56px;
  letter-spacing: -.015em;
  font-variation-settings: 'opsz' 72;
  margin-top: var(--half);
}
.faq-list { max-width: 800px; }
.faq-item { border-top: 1px solid var(--gl-s); }
.faq-item:last-child { border-bottom: 1px solid var(--gl-s); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(var(--gu)*.75) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq-question span:first-child {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--text);
  padding-right: var(--gu);
}
.faq-icon {
  flex-shrink: 0;
  color: var(--text-3);
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.16,1,.3,1);
}
.faq-answer.open { max-height: 500px; }
.faq-answer p {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 26px;
  color: var(--text-2);
  padding-bottom: calc(var(--gu)*.75);
}

/* ===== DARK HERO / CTA ===== */
.dark-hero {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  min-height: calc(var(--gu)*16);
  display: flex;
  align-items: center;
}
.dark-hero .dh-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, var(--gl-dark-s) 1px, transparent 1px), linear-gradient(0deg, var(--gl-dark-s) 1px, transparent 1px);
  background-size: var(--gu) var(--gu);
  pointer-events: none;
}
.dh-content {
  position: relative;
  z-index: 3;
  padding: calc(var(--gu)*3) calc(var(--gu)*2);
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.dh-content h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 80px;
  line-height: 80px;
  letter-spacing: -.025em;
  font-variation-settings: 'opsz' 72;
  color: var(--text-w);
  margin-top: var(--gu);
}
.dh-content h2 em { font-style: italic; color: var(--p-text); }
.dh-content .dh-sub {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  color: var(--text-w2);
  max-width: 416px;
  margin-top: var(--gu);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--gl-dark-s);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(var(--gu)*3) calc(var(--gu)*2) calc(var(--gu)*2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: calc(var(--gu)*2);
  margin-bottom: calc(var(--gu)*2);
}
.footer-grid .logo { color: var(--text-w); }
.footer-claim {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  color: var(--text-w2);
  margin-top: var(--half);
}
.footer-col-title {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-w2);
  margin-bottom: var(--half);
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 14px;
  color: var(--text-w2);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--text-w); }
.footer-bottom {
  border-top: 1px solid var(--gl-dark-s);
  padding-top: var(--gu);
}
.footer-bottom p {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--gu);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -.01em;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
}

/* ===== LEGAL PAGES ===== */
.legal-section {
  padding: calc(var(--gu)*5) calc(var(--gu)*2) calc(var(--gu)*3);
  max-width: 1280px;
  margin: 0 auto;
}
.legal-content { max-width: 700px; }
.legal-content h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 52px;
  line-height: 56px;
  letter-spacing: -.015em;
  font-variation-settings: 'opsz' 72;
  margin-bottom: calc(var(--gu)*2);
}
.legal-content h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  color: var(--text);
  margin-top: calc(var(--gu)*2);
  margin-bottom: var(--half);
}
.legal-content p {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-2);
  margin-bottom: var(--half);
}
.legal-content ul {
  list-style-type: disc;
  padding-left: 24px;
  margin-bottom: var(--half);
}
.legal-content li {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-2);
  margin-bottom: 8px;
}
.legal-content .rechtsgrundlage {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-3);
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  padding: calc(var(--gu)*5) calc(var(--gu)*2) calc(var(--gu)*3);
  max-width: 1280px;
  margin: 0 auto;
}
.about-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 72px;
  line-height: 72px;
  letter-spacing: -.025em;
  font-variation-settings: 'opsz' 72;
  margin-top: var(--gu);
  margin-bottom: var(--gu);
}
.about-hero h1 em { font-style: italic; color: var(--p); }
.about-body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 28px;
  color: var(--text-2);
  max-width: 560px;
}

.about-section {
  padding: calc(var(--gu)*3) calc(var(--gu)*2);
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid var(--gl-s);
}
.about-section h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 52px;
  line-height: 56px;
  letter-spacing: -.015em;
  font-variation-settings: 'opsz' 72;
  margin-top: var(--half);
  margin-bottom: var(--gu);
}
.about-section h2 em { font-style: italic; color: var(--p); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gl-s);
  margin-top: calc(var(--gu)*2);
}
.team-card {
  background: var(--bg);
  padding: calc(var(--gu)*1.5);
  display: flex;
  flex-direction: column;
}
.team-avatar {
  width: 100%;
  aspect-ratio: 1;
  background: var(--gl-s);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--gu);
}
.team-avatar span {
  font-family: var(--serif);
  font-size: 48px;
  color: var(--text-3);
  font-variation-settings: 'opsz' 72;
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.team-name {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 18px;
  color: var(--text);
}
.team-role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 4px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gl-s);
  margin-top: calc(var(--gu)*2);
}
.value-card {
  background: var(--bg);
  padding: calc(var(--gu)*1.5);
  transition: box-shadow .3s;
}
.value-card:hover { box-shadow: 0 8px 24px rgba(17,17,20,.06); z-index: 2; position: relative; }
.value-card h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: var(--gu);
  font-variation-settings: 'opsz' 36;
  margin-bottom: var(--half);
}
.value-card p {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  color: var(--text-2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .header-inner { padding: 0 var(--gu); }
  .hero { padding: calc(var(--gu)*4) var(--gu) calc(var(--gu)*2); }
  .hero h1 { font-size: 56px; line-height: 56px; }
  .features-section, .ov-section, .testi-section, .trust-section, .faq-section,
  .dark-inner, .dh-content, .about-hero, .about-section, .legal-section { padding-left: var(--gu); padding-right: var(--gu); }
  .features-grid { grid-template-columns: 1fr; gap: var(--gu); }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .kpi-cell:nth-child(2) { border-right: none; }
  .ui-row { grid-template-columns: 1fr; }
  .ov-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--gu); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .dark-inner h2, .dh-content h2 { font-size: 40px; line-height: 44px; }
  .features-header h2, .ov-header h2, .testi-header h2, .trust-header h2, .faq-header h2, .about-section h2 { font-size: 36px; line-height: 40px; }
  .about-hero h1 { font-size: 48px; line-height: 48px; }
  .legal-content h1 { font-size: 36px; line-height: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links + .btn { display: none; }
  .hamburger { display: block; }
  .hero h1 { font-size: 40px; line-height: 42px; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .ov-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .testi-card { min-width: 300px; }
  .dh-content h2 { font-size: 36px; line-height: 40px; }
  .about-hero h1 { font-size: 36px; line-height: 38px; }
}
