/* =================================================================
   createtim — Stylesheet
   Tim Lietzow · Webdesign · Wartung · SEO
   ================================================================= */

/* ---------- Fonts (self-hosted, DSGVO-konform) ----------
   Variable WOFF2 (Google-Fonts-Latin-Subset, inkl. äöüß€), lokal eingebunden –
   kein externer Request. Per fonttools instanziert: Inter wght 400–700,
   Sora wght 600–800. */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url("../fonts/sora-latin.woff2") format("woff2");
}

/* ---------- Design Tokens ---------- */
:root {
  /* Colors */
  --ink:        #0c1322;
  --ink-soft:   #1e293b;
  --muted:      #5b6679;
  --muted-2:    #646c7e;
  --line:       #e7eaf0;
  --bg:         #ffffff;
  --bg-soft:    #f6f8fc;
  --bg-dark:    #0b1020;
  --bg-dark-2:  #111733;

  --brand:      #4f46e5;
  --brand-600:  #4338ca;
  --brand-700:  #3730a3;
  --accent:     #06b6d4;
  --accent-2:   #22d3ee;

  --grad:        linear-gradient(120deg, #4f46e5 0%, #6366f1 45%, #06b6d4 100%);
  --grad-soft:   linear-gradient(120deg, rgba(79,70,229,.12), rgba(6,182,212,.12));

  /* Type */
  --font-head: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Radius & shadow */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --shadow-sm: 0 1px 2px rgba(12,19,34,.06), 0 1px 3px rgba(12,19,34,.05);
  --shadow:    0 10px 30px -12px rgba(12,19,34,.18);
  --shadow-lg: 0 30px 60px -20px rgba(12,19,34,.28);

  /* Layout */
  --container: 1140px;
  --gut: clamp(20px, 5vw, 48px);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gut); }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--brand); color: #fff; padding: .7rem 1.2rem;
  border-radius: 0 0 var(--r-sm) 0; font-weight: 600;
}
.skip-link:focus { left: 0; }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--soft { background: var(--bg-soft); }
/* Akzent-Abschnitt: dezenter Marken-Verlauf + feine Trennlinien als klarer
   farblicher Bruch zu den weißen/grauen Nachbar-Abschnitten. */
.section--brand {
  background: linear-gradient(180deg, rgba(79,70,229,.06) 0%, rgba(6,182,212,.06) 100%), var(--bg);
  border-block: 1px solid var(--line);
}
.center { text-align: center; }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.12; letter-spacing: -.02em; color: var(--ink); }
h2 { font-size: clamp(1.9rem, 1rem + 2.6vw, 2.9rem); }
h3 { font-size: 1.2rem; letter-spacing: -.01em; }
p  { color: var(--muted); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600;
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand-600);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--grad); border-radius: 2px; }
.eyebrow--center::before { display: none; }

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { margin-inline: auto; }
.section-head p { margin-top: 1rem; font-size: 1.06rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.5rem; border-radius: 999px;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  border: 1px solid transparent; transition: transform .2s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 8px 20px -8px rgba(79,70,229,.7); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -8px rgba(79,70,229,.7); }
.btn--ghost { background: rgba(255,255,255,.06); color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--brand); color: var(--brand-600); }
.btn--light { background:#fff; color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline-light { border-color: rgba(255,255,255,.3); color:#fff; }
.btn--outline-light:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.btn--lg { padding: 1rem 1.8rem; font-size: 1rem; }

/* =================================================================
   Header / Nav
   ================================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 rgba(12,19,34,.06);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: .65rem; font-family: var(--font-head); font-weight: 700; font-size: 1.22rem; letter-spacing: -.02em; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px; background: var(--grad);
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: .95rem;
  box-shadow: 0 6px 16px -6px rgba(79,70,229,.8);
}
.brand b { font-weight: 700; }
.brand .dot { color: var(--brand); }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-weight: 500; font-size: .96rem; color: var(--ink-soft); position: relative; transition: color .2s; }
.nav-links a::after { content:""; position:absolute; left:0; bottom:-4px; width:0; height:2px; background: var(--grad); border-radius:2px; transition: width .25s ease; }
.nav-links a:hover { color: var(--brand-600); }
.nav-links a:hover::after { width:100%; }
.nav-cta { display: flex; align-items: center; gap: 1rem; }

.nav-toggle { display:none; width:44px; height:44px; border:1px solid var(--line); background:#fff; border-radius:12px; position:relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content:""; position:absolute; left:50%; top:50%; width:18px; height:2px; background: var(--ink); border-radius:2px;
  transform: translate(-50%,-50%); transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle span::before { transform: translate(-50%, -7px); }
.nav-toggle span::after  { transform: translate(-50%,  7px); }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translate(-50%,0) rotate(45deg); }
body.nav-open .nav-toggle span::after  { transform: translate(-50%,0) rotate(-45deg); }

/* =================================================================
   Hero
   ================================================================= */
.hero { position: relative; padding-top: 150px; padding-bottom: clamp(60px, 8vw, 110px); overflow: hidden; }
.hero-bg { position:absolute; inset:0; z-index:-1; pointer-events:none; }
.hero-bg .blob { position:absolute; border-radius:50%; filter: blur(60px); opacity:.5; }
.hero-bg .b1 { width:520px; height:520px; background: radial-gradient(circle at 30% 30%, #6366f1, transparent 70%); top:-160px; right:-120px; }
.hero-bg .b2 { width:460px; height:460px; background: radial-gradient(circle at 70% 70%, #22d3ee, transparent 70%); bottom:-180px; left:-140px; opacity:.4; }
.hero-bg .grid {
  position:absolute; inset:0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(circle at 50% 35%, #000 0%, transparent 72%);
          mask-image: radial-gradient(circle at 50% 35%, #000 0%, transparent 72%);
  opacity:.55;
}
.hero-inner { display:grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items:center; }

.hero-badge {
  display:inline-flex; align-items:center; gap:.5rem; padding:.4rem .85rem; border-radius:999px;
  background: var(--grad-soft); border:1px solid rgba(79,70,229,.18); color: var(--brand-700);
  font-size:.82rem; font-weight:600;
}
.hero-badge .pulse { width:8px; height:8px; border-radius:50%; background:#22c55e; box-shadow:0 0 0 0 rgba(34,197,94,.5); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(34,197,94,.5)} 70%{box-shadow:0 0 0 8px rgba(34,197,94,0)} 100%{box-shadow:0 0 0 0 rgba(34,197,94,0)} }

.hero h1 { font-size: clamp(2.3rem, 1.1rem + 4.2vw, 4rem); margin-top: 1.3rem; }
.hero h1 .gradient-text { display:inline; }
.hero .lead { font-size: clamp(1.05rem, 1rem + .35vw, 1.22rem); margin-top: 1.4rem; max-width: 30ch; }
.hero-actions { display:flex; flex-wrap:wrap; gap: .9rem; margin-top: 2rem; }
.hero-meta { display:flex; flex-wrap:wrap; gap: 1.5rem 2rem; margin-top: 2.4rem; padding-top: 1.8rem; border-top:1px solid var(--line); }
.hero-meta .num { font-family:var(--font-head); font-weight:700; font-size:1.5rem; color:var(--ink); }
.hero-meta .lbl { font-size:.82rem; color:var(--muted-2); }

/* ---------- Hero illustration (.hero-art) ----------
   Rein dekorative Komponente (aria-hidden im Markup). Alle Selektoren unter
   .hero-art gescopt und Keyframes mit ha--Präfix, damit nichts mit den
   globalen Klassen (.card, .cards, .chip, .bar, @keyframes pulse) kollidiert. */
.hero-visual { position:relative; }
.hero-art {
  --violet: var(--brand); --violet-2: #6366f1; --cyan: var(--accent-2);
  --ha-ink:#0f172a; --ha-dim:#64748b; --ha-line:#e2e8f0; --ha-soft:#f1f5f9;
  --green:#16a34a; --green-bg:#dcfce7;
  position:relative; width:min(620px, 100%); margin-inline:auto; aspect-ratio:5/4.2;
}

/* Grid-Hintergrund + Blobs */
.hero-art .grid-bg {
  position:absolute; inset:-5%; z-index:0;
  background-image:
    linear-gradient(to right, rgba(99,102,241,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(99,102,241,.06) 1px, transparent 1px);
  background-size:32px 32px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.hero-art .blob { position:absolute; border-radius:50%; filter:blur(40px); opacity:.5; z-index:0; pointer-events:none; }
.hero-art .blob.b1 { width:200px; height:200px; background:radial-gradient(circle,#a5b4fc,transparent 70%); top:-30px; right:-30px; }
.hero-art .blob.b2 { width:160px; height:160px; background:radial-gradient(circle,#67e8f9,transparent 70%); bottom:-10px; left:-20px; }

/* Browser-Mockup */
.hero-art .browser {
  position:absolute; inset:9% 4% 6% 14%;
  background:#fff; border-radius:16px;
  box-shadow:0 1px 2px rgba(15,23,42,.04), 0 30px 60px -18px rgba(79,70,229,.28), 0 10px 24px -10px rgba(15,23,42,.10);
  overflow:hidden; z-index:2;
  animation: ha-float 6s ease-in-out infinite;
}
@keyframes ha-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.hero-art .ha-bar { display:flex; align-items:center; gap:10px; padding:11px 14px; border-bottom:1px solid var(--ha-line); background:#fafbfc; }
.hero-art .dots { display:flex; gap:5px; }
.hero-art .dots i { width:9px; height:9px; border-radius:50%; display:block; }
.hero-art .dots i:nth-child(1){background:#fca5a5} .hero-art .dots i:nth-child(2){background:#fcd34d} .hero-art .dots i:nth-child(3){background:#86efac}
.hero-art .url {
  flex:1; background:var(--ha-soft); border-radius:7px; padding:6px 12px; font-size:11px; color:var(--ha-dim);
  font-weight:500; display:flex; align-items:center; gap:6px; overflow:hidden; max-width:240px;
}
.hero-art .url::before { content:"🔒"; font-size:9px; opacity:.7; }
.hero-art .typing { overflow:hidden; white-space:nowrap; animation: ha-type 5s steps(20,end) infinite; }
@keyframes ha-type { 0%{width:0} 35%{width:100%} 70%{width:100%} 85%{width:0} 100%{width:0} }
.hero-art .caret { display:inline-block; width:1px; height:10px; background:var(--violet); margin-left:1px; animation: ha-blink 1s steps(2) infinite; }
@keyframes ha-blink { 50%{opacity:0} }
.hero-art .barright { display:flex; gap:6px; margin-left:auto; }
.hero-art .barright span { width:14px; height:14px; border-radius:4px; background:#eef2ff; display:block; }

/* Faux-Website im Browser */
.hero-art .navbar { display:flex; align-items:center; padding:10px 16px; border-bottom:1px solid var(--ha-soft); background:#fff; }
.hero-art .navbar .logo { font-weight:800; font-size:12px; color:var(--ha-ink); display:flex; align-items:center; gap:5px; }
.hero-art .navbar .logo b { display:inline-block; width:14px; height:14px; border-radius:4px; background:linear-gradient(135deg,var(--violet),var(--cyan)); }
.hero-art .navbar .links { display:flex; gap:12px; margin-left:18px; font-size:10px; color:var(--ha-dim); font-weight:500; }
.hero-art .navbar .cta { margin-left:auto; background:var(--ha-ink); color:#fff; font-size:9.5px; font-weight:700; padding:5px 10px; border-radius:999px; }

.hero-art .content { padding:14px 16px 16px; background:#fff; }
.hero-art .hero-banner {
  height:80px; border-radius:10px; position:relative; overflow:hidden;
  background:linear-gradient(110deg, var(--violet) 0%, var(--violet-2) 45%, var(--cyan) 100%);
  background-size:200% 100%; animation: ha-shimmer 6s ease-in-out infinite;
  display:flex; align-items:center; justify-content:space-between; padding:0 16px; color:#fff;
}
.hero-art .hero-banner::after {
  content:""; position:absolute; inset:0;
  background:linear-gradient(120deg, transparent 30%, rgba(255,255,255,.25) 50%, transparent 70%);
  transform:translateX(-100%); animation: ha-sweep 4s ease-in-out infinite;
}
@keyframes ha-shimmer { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }
@keyframes ha-sweep { 0%{transform:translateX(-100%)} 50%{transform:translateX(120%)} 100%{transform:translateX(120%)} }
.hero-art .htitle { font-size:13px; font-weight:800; line-height:1.15; max-width:60%; }
.hero-art .hbtn { background:rgba(255,255,255,.95); color:var(--violet); font-size:9.5px; font-weight:700; padding:5px 10px; border-radius:999px; white-space:nowrap; }

.hero-art .row2 { display:grid; grid-template-columns:1fr 1fr; gap:8px; margin-top:10px; }
.hero-art .mini { background:var(--ha-soft); border-radius:7px; padding:8px 10px; display:flex; align-items:center; gap:8px; }
.hero-art .mini .mi { width:22px; height:22px; border-radius:6px; display:grid; place-items:center; flex-shrink:0; font-size:11px; }
.hero-art .mini.a .mi { background:var(--green-bg); color:var(--green); }
.hero-art .mini.b .mi { background:#fef3c7; color:#d97706; }
.hero-art .mini .mt { display:flex; flex-direction:column; gap:2px; flex:1; }
.hero-art .mini .mt b { font-size:9.5px; color:var(--ha-ink); font-weight:700; }
.hero-art .mini .mt span { font-size:8.5px; color:var(--ha-dim); }

.hero-art .ha-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin-top:10px; }
.hero-art .ha-card { height:60px; border-radius:8px; background:#fff; border:1px solid var(--ha-line); padding:8px; display:flex; flex-direction:column; gap:5px; }
.hero-art .ha-card .ph { width:22px; height:22px; border-radius:6px; background:linear-gradient(135deg,var(--violet),var(--cyan)); display:grid; place-items:center; color:#fff; font-size:11px; font-weight:800; }
.hero-art .ha-card .l1 { height:5px; background:#cbd5e1; border-radius:3px; width:80%; }
.hero-art .ha-card .l2 { height:4px; background:#e2e8f0; border-radius:3px; width:55%; }

/* Schwebende Badges & Chips */
.hero-art .badge {
  position:absolute; background:#fff; border-radius:14px; padding:10px 14px;
  display:flex; align-items:center; gap:10px;
  box-shadow:0 1px 2px rgba(15,23,42,.04), 0 20px 40px -14px rgba(15,23,42,.22), 0 4px 10px -2px rgba(15,23,42,.06);
  border:1px solid rgba(226,232,240,.6); white-space:nowrap; z-index:5;
}
.hero-art .badge .ic { width:34px; height:34px; border-radius:9px; display:grid; place-items:center; flex-shrink:0; }
.hero-art .badge .ic svg { width:18px; height:18px; }
.hero-art .badge .txt { display:flex; flex-direction:column; gap:1px; line-height:1.15; }
.hero-art .badge .t1 { font-size:13px; font-weight:700; color:var(--ha-ink); }
.hero-art .badge .t2 { font-size:11px; color:var(--ha-dim); font-weight:500; }
.hero-art .badge.b-seo { top:6%; left:0; animation: ha-floatA 6s ease-in-out infinite; }
.hero-art .badge.b-seo .ic { background:var(--green-bg); color:var(--green); }
.hero-art .badge.b-fast { bottom:14%; right:-3%; animation: ha-floatB 6s ease-in-out infinite; }
.hero-art .badge.b-fast .ic { background:linear-gradient(135deg,var(--violet),var(--cyan)); color:#fff; }

.hero-art .ha-chip {
  position:absolute; background:#fff; border-radius:999px; padding:7px 12px;
  font-size:11px; font-weight:600; color:var(--ha-ink);
  box-shadow:0 1px 2px rgba(15,23,42,.04), 0 12px 28px -10px rgba(15,23,42,.18);
  border:1px solid rgba(226,232,240,.6); display:flex; align-items:center; gap:7px; z-index:4; white-space:nowrap;
}
.hero-art .ha-chip .dot { width:8px; height:8px; border-radius:50%; background:var(--green); box-shadow:0 0 0 3px rgba(22,163,74,.18); animation: ha-pulse 2.5s ease-in-out infinite; }
@keyframes ha-pulse { 0%,100%{box-shadow:0 0 0 3px rgba(22,163,74,.18)} 50%{box-shadow:0 0 0 6px rgba(22,163,74,.08)} }
.hero-art .ha-chip.c-mobile { top:42%; left:-2%; animation: ha-floatA 7s ease-in-out infinite; animation-delay:-1s; }
.hero-art .ha-chip.c-dsgvo { bottom:32%; right:3%; animation: ha-floatB 7s ease-in-out infinite; animation-delay:-2s; }
.hero-art .ha-chip.c-stars { top:18%; right:8%; animation: ha-floatA 8s ease-in-out infinite; animation-delay:-3s; background:linear-gradient(135deg,#fef3c7,#fff); padding:6px 11px; }
.hero-art .ha-chip .star { color:#f59e0b; font-size:13px; line-height:1; }

/* Mini-Analytics-Karte */
.hero-art .analytics {
  position:absolute; bottom:0; left:-2%; background:#fff; border-radius:13px; padding:11px 13px;
  box-shadow:0 1px 2px rgba(15,23,42,.04), 0 18px 38px -14px rgba(15,23,42,.22);
  border:1px solid rgba(226,232,240,.6); z-index:5; display:flex; flex-direction:column; gap:7px;
  animation: ha-floatA 7s ease-in-out infinite; animation-delay:-1.5s;
}
.hero-art .analytics .row { display:flex; align-items:center; gap:9px; }
.hero-art .analytics .lbl { font-size:10px; font-weight:600; color:var(--ha-dim); text-transform:uppercase; letter-spacing:.04em; }
.hero-art .analytics .val { font-size:14px; font-weight:800; color:var(--ha-ink); }
.hero-art .analytics .trend { color:var(--green); font-size:10px; font-weight:700; background:var(--green-bg); padding:2px 6px; border-radius:6px; }
.hero-art .spark { height:22px; width:90px; display:flex; align-items:flex-end; gap:2px; }
.hero-art .spark i { flex:1; background:linear-gradient(to top,var(--violet),var(--cyan)); border-radius:1.5px; display:block; animation: ha-grow 3s ease-in-out infinite; }
.hero-art .spark i:nth-child(1){height:40%;animation-delay:0s}
.hero-art .spark i:nth-child(2){height:55%;animation-delay:.2s}
.hero-art .spark i:nth-child(3){height:35%;animation-delay:.4s}
.hero-art .spark i:nth-child(4){height:70%;animation-delay:.6s}
.hero-art .spark i:nth-child(5){height:50%;animation-delay:.8s}
.hero-art .spark i:nth-child(6){height:85%;animation-delay:1s}
.hero-art .spark i:nth-child(7){height:65%;animation-delay:1.2s}
.hero-art .spark i:nth-child(8){height:100%;animation-delay:1.4s}
@keyframes ha-grow { 0%,100%{opacity:.7;transform:scaleY(.85)} 50%{opacity:1;transform:scaleY(1)} }

@keyframes ha-floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes ha-floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

/* Reduced motion: URL statisch zeigen statt Tipp-Animation */
@media (prefers-reduced-motion: reduce) {
  .hero-art .typing { animation: none; }
  .hero-art .caret { display: none; }
}
@media (max-width: 560px) {
  .hero-art .badge { padding:8px 11px; }
  .hero-art .badge .t1 { font-size:12px; } .hero-art .badge .t2 { font-size:10px; }
  .hero-art .badge .ic { width:28px; height:28px; } .hero-art .badge .ic svg { width:14px; height:14px; }
  .hero-art .ha-chip { font-size:10px; padding:6px 10px; }
  .hero-art .analytics { padding:9px 11px; }
  .hero-art .analytics .val { font-size:12px; }
  .hero-art .spark { width:60px; height:18px; }
  .hero-art .navbar .links { display:none; }
}

/* ---------- Marquee / trust ---------- */
.marquee { border-block:1px solid var(--line); background:#fff; padding-block:1.3rem; overflow:hidden; }
.marquee-track { display:flex; gap:3.5rem; align-items:center; width:max-content; animation: scroll 26s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family:var(--font-head); font-weight:600; color:var(--muted-2); font-size:1rem; white-space:nowrap; display:inline-flex; align-items:center; gap:.6rem; }
.marquee-track span::before { content:"●"; color:var(--brand); font-size:.55rem; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* =================================================================
   Services
   ================================================================= */
.cards { display:grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.card {
  position:relative; background:#fff; border:1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.8rem; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  overflow:hidden;
}
.card::before { content:""; position:absolute; inset:0 0 auto 0; height:3px; background:var(--grad); transform:scaleX(0); transform-origin:left; transition: transform .35s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card .ic {
  width:54px; height:54px; border-radius:15px; display:grid; place-items:center; margin-bottom:1.2rem;
  background: var(--grad-soft); color: var(--brand-600);
}
.card .ic svg { width:26px; height:26px; }
.card h3 { margin-bottom:.55rem; }
.card p { font-size:.96rem; }
.card .tags { display:flex; flex-wrap:wrap; gap:.45rem; margin-top:1.1rem; }
.card .tags span { font-size:.74rem; font-weight:600; color:var(--muted); background:var(--bg-soft); border:1px solid var(--line); padding:.25rem .6rem; border-radius:999px; }

/* =================================================================
   Skills / Tech
   ================================================================= */
.skills-wrap { display:grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px,6vw,80px); align-items:center; }
.skill-list { display:grid; gap:1.4rem; }
.skill { }
.skill-top { display:flex; justify-content:space-between; align-items:baseline; margin-bottom:.5rem; }
.skill-top b { font-family:var(--font-head); font-weight:600; font-size:1rem; }
.skill-top span { font-size:.85rem; color:var(--muted-2); font-weight:600; }
.bar { height:9px; border-radius:999px; background:#eaeef6; overflow:hidden; }
.bar i { display:block; height:100%; border-radius:999px; background: var(--grad); width:0; transition: width 1.2s cubic-bezier(.2,.8,.2,1); }

.chips { display:flex; flex-wrap:wrap; gap:.6rem; margin-top:2rem; }
.chip { display:inline-flex; align-items:center; gap:.45rem; padding:.5rem .9rem; border:1px solid var(--line); border-radius:999px; background:#fff; font-size:.86rem; font-weight:600; color:var(--ink-soft); transition: transform .2s, border-color .2s, color .2s; }
.chip:hover { transform:translateY(-2px); border-color:var(--brand); color:var(--brand-600); }
.chip .d { width:7px; height:7px; border-radius:50%; background:var(--grad); }

/* =================================================================
   Process
   ================================================================= */
.steps { display:grid; grid-template-columns: repeat(4,1fr); gap: 1.3rem; counter-reset: step; }
.step { position:relative; padding-top: 1rem; }
.step .n {
  width:48px; height:48px; border-radius:14px; display:grid; place-items:center; margin-bottom:1.1rem;
  font-family:var(--font-head); font-weight:700; font-size:1.1rem; color:#fff; background:var(--grad);
  box-shadow:0 10px 22px -10px rgba(79,70,229,.8);
}
.step h3 { font-size:1.1rem; margin-bottom:.4rem; }
.step p { font-size:.93rem; }
.step:not(:last-child)::after {
  content:""; position:absolute; top:24px; left:62px; right:-12px; height:2px;
  background: linear-gradient(90deg, var(--line), transparent);
}

/* =================================================================
   About
   ================================================================= */
.about { display:grid; grid-template-columns: .85fr 1.15fr; gap: clamp(36px,6vw,72px); align-items:center; }
.about-card {
  position:relative; border-radius: var(--r-xl); padding: 2.4rem; color:#fff; overflow:hidden;
  background: linear-gradient(155deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
  box-shadow: var(--shadow-lg);
}
.about-card::before { content:""; position:absolute; width:300px; height:300px; border-radius:50%; background:radial-gradient(circle,#6366f1,transparent 70%); top:-120px; right:-90px; opacity:.5; filter:blur(20px); }
.about-avatar { width:84px; height:84px; border-radius:22px; background:var(--grad); display:grid; place-items:center; font-family:var(--font-head); font-weight:800; font-size:1.8rem; color:#fff; box-shadow:0 12px 30px -10px rgba(79,70,229,.9); }
.about-card h3 { color:#fff; font-size:1.5rem; margin-top:1.3rem; }
.about-card .role { color:var(--accent-2); font-weight:600; font-size:.95rem; margin-top:.2rem; }
.about-card p { color:rgba(255,255,255,.72); margin-top:1rem; font-size:.97rem; }
.about-contact { display:grid; gap:.7rem; margin-top:1.6rem; position:relative; }
.about-contact a { display:flex; align-items:center; gap:.7rem; color:rgba(255,255,255,.9); font-size:.92rem; font-weight:500; transition:color .2s; }
.about-contact a:hover { color:var(--accent-2); }
.about-contact svg { width:18px; height:18px; color:var(--accent-2); flex:none; }

.about-text h2 { margin-bottom:1.1rem; }
.about-text p { font-size:1.04rem; margin-bottom:1rem; }
.feature-list { display:grid; gap:.9rem; margin-top:1.6rem; }
.feature-list li { display:flex; gap:.8rem; align-items:flex-start; color:var(--ink-soft); font-weight:500; }
.feature-list .tick { flex:none; width:24px; height:24px; border-radius:8px; background:var(--grad-soft); color:var(--brand-600); display:grid; place-items:center; }
.feature-list .tick svg { width:14px; height:14px; }

/* =================================================================
   CTA banner
   ================================================================= */
.cta-banner { position:relative; border-radius: var(--r-xl); padding: clamp(40px,6vw,72px); text-align:center; color:#fff; overflow:hidden; background: var(--grad); box-shadow: var(--shadow-lg); }
.cta-banner::before, .cta-banner::after { content:""; position:absolute; border-radius:50%; background:rgba(255,255,255,.12); }
.cta-banner::before { width:300px; height:300px; top:-140px; left:-60px; }
.cta-banner::after { width:240px; height:240px; bottom:-130px; right:-40px; }
.cta-banner h2 { color:#fff; position:relative; }
.cta-banner p { color:rgba(255,255,255,.9); max-width:540px; margin:1rem auto 2rem; position:relative; font-size:1.08rem; }
.cta-banner .hero-actions { justify-content:center; position:relative; }

/* =================================================================
   Contact
   ================================================================= */
.contact-grid { display:grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px,5vw,64px); }
.contact-info .info-item { display:flex; gap:1rem; align-items:flex-start; margin-bottom:1.6rem; }
.contact-info .ic { flex:none; width:48px; height:48px; border-radius:14px; background:var(--grad-soft); color:var(--brand-600); display:grid; place-items:center; }
.contact-info .ic svg { width:22px; height:22px; }
.contact-info b { font-family:var(--font-head); font-size:1rem; }
.contact-info a, .contact-info span { color:var(--muted); display:block; }
.contact-info a:hover { color:var(--brand-600); }

.form { background:#fff; border:1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.6rem,3vw,2.2rem); box-shadow: var(--shadow-sm); }
.field { margin-bottom:1.1rem; }
.field-row { display:grid; grid-template-columns:1fr 1fr; gap:1.1rem; }
.field label { display:block; font-weight:600; font-size:.88rem; margin-bottom:.45rem; color:var(--ink-soft); }
.field input, .field textarea {
  width:100%; padding:.85rem 1rem; border:1px solid var(--line); border-radius: var(--r-sm);
  font:inherit; color:var(--ink); background:var(--bg-soft); transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { resize:vertical; min-height:130px; }
.field input:focus, .field textarea:focus { outline:none; border-color:var(--brand); background:#fff; box-shadow:0 0 0 4px rgba(79,70,229,.12); }
.form .hp { display:none !important; } /* Honeypot gegen Spam-Bots */
.form-check { display:flex; gap:.7rem; align-items:flex-start; font-size:.85rem; color:var(--muted); margin-bottom:1.3rem; }
.form-check input { margin-top:.25rem; accent-color: var(--brand); flex:none; }
.form-check a { color:var(--brand-600); text-decoration:underline; }
.form .btn { width:100%; }
.form-note { font-size:.8rem; color:var(--muted-2); margin-top:1rem; text-align:center; }
.form-status { margin-top:1rem; font-size:.9rem; font-weight:600; padding:.8rem 1rem; border-radius:var(--r-sm); display:none; }
.form-status.ok { display:block; background:#ecfdf5; color:#047857; border:1px solid #a7f3d0; }
.form-status.err { display:block; background:#fef2f2; color:#b91c1c; border:1px solid #fecaca; }

/* =================================================================
   FAQ
   ================================================================= */
.faq { max-width:760px; margin-inline:auto; display:grid; gap:.9rem; }
.faq-item { border:1px solid var(--line); border-radius:var(--r); background:#fff; overflow:hidden; transition:box-shadow .25s, border-color .25s; }
.faq-item[open] { box-shadow: var(--shadow-sm); border-color:transparent; }
.faq-item summary { list-style:none; cursor:pointer; padding:1.2rem 1.4rem; display:flex; justify-content:space-between; align-items:center; gap:1rem; font-family:var(--font-head); font-weight:600; font-size:1.02rem; }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary .plus { flex:none; width:26px; height:26px; border-radius:8px; background:var(--grad-soft); color:var(--brand-600); display:grid; place-items:center; transition:transform .3s; font-size:1.1rem; line-height:1; }
.faq-item[open] summary .plus { transform:rotate(45deg); }
.faq-item .faq-body { padding:0 1.4rem 1.3rem; color:var(--muted); }

/* =================================================================
   Footer
   ================================================================= */
.site-footer { background: var(--bg-dark); color:rgba(255,255,255,.7); padding-top: clamp(56px,7vw,84px); }
.footer-top { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap:2.5rem; padding-bottom:3rem; }
.site-footer .brand { color:#fff; }
.site-footer .brand .dot { color: var(--accent-2); }
.footer-about { margin-top:1.1rem; max-width:30ch; font-size:.93rem; color:rgba(255,255,255,.6); }
.footer-col h3 { color:#fff; font-size:.95rem; margin-bottom:1rem; letter-spacing:.02em; }
.footer-col a, .footer-col p { display:block; color:rgba(255,255,255,.62); font-size:.92rem; margin-bottom:.6rem; transition:color .2s; }
.footer-col a:hover { color:var(--accent-2); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.1); padding-block:1.6rem; display:flex; flex-wrap:wrap; gap:1rem; justify-content:space-between; align-items:center; font-size:.86rem; color:rgba(255,255,255,.5); }
.footer-bottom a { color:rgba(255,255,255,.7); }
.footer-bottom a:hover { color:var(--accent-2); }
.footer-bottom .links { display:flex; gap:1.5rem; }

/* ---------- Back to top ---------- */
.to-top { position:fixed; bottom:24px; right:24px; width:46px; height:46px; border-radius:14px; background:var(--grad); color:#fff; display:grid; place-items:center; box-shadow:var(--shadow); opacity:0; visibility:hidden; transform:translateY(10px); transition:.3s; z-index:40; border:none; }
.to-top.show { opacity:1; visibility:visible; transform:translateY(0); }
.to-top svg { width:20px; height:20px; }

/* =================================================================
   Legal pages (Impressum / Datenschutz)
   ================================================================= */
.legal { padding-top: 130px; padding-bottom: clamp(60px,8vw,100px); }
.legal-head { max-width:760px; margin-bottom:2.5rem; }
.legal-head .eyebrow { margin-bottom:.8rem; }
.legal-body { max-width:760px; }
.legal-body h2 { font-size:1.4rem; margin-top:2.4rem; margin-bottom:.8rem; }
.legal-body h3 { font-size:1.08rem; margin-top:1.6rem; margin-bottom:.5rem; }
.legal-body p, .legal-body li { color:var(--ink-soft); margin-bottom:.7rem; line-height:1.7; }
.legal-body ul { list-style:disc; padding-left:1.4rem; margin-bottom:1rem; }
.legal-body a { color:var(--brand-600); text-decoration:underline; }
.legal-body strong { color:var(--ink); }
.legal-card { background:var(--bg-soft); border:1px solid var(--line); border-radius:var(--r); padding:1.4rem 1.6rem; margin-block:1.2rem; }
.back-link { display:inline-flex; align-items:center; gap:.5rem; color:var(--brand-600); font-weight:600; margin-top:2.5rem; }
.back-link svg { width:18px; height:18px; }

/* =================================================================
   Scroll reveal
   ================================================================= */
.reveal { opacity:0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity:1; transform:none; }
.reveal.d1{transition-delay:.08s} .reveal.d2{transition-delay:.16s} .reveal.d3{transition-delay:.24s} .reveal.d4{transition-delay:.32s}

/* =================================================================
   Responsive
   ================================================================= */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order:-1; max-width:480px; margin-inline:auto; }
  .hero .lead { max-width:46ch; }
  .skills-wrap, .about, .contact-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .step:not(:last-child)::after { display:none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap:2rem; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta .btn { display:none; }
  .nav-toggle { display:block; }
  .mobile-menu .nav-links { display:flex; }
  .cards { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero-meta { gap:1.2rem 1.6rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }

  /* Mobile menu panel */
  .mobile-menu {
    position: fixed; inset: 76px 0 auto 0; background:#fff; border-bottom:1px solid var(--line);
    box-shadow: var(--shadow); padding: 1.2rem var(--gut) 1.6rem; z-index:49;
    max-height: calc(100vh - 76px); max-height: calc(100dvh - 76px); overflow-y: auto;
    transform: translateY(-12px); opacity:0; visibility:hidden; transition:.25s;
  }
  body.nav-open .mobile-menu { transform:none; opacity:1; visibility:visible; }
  .mobile-menu .nav-links { flex-direction:column; align-items:stretch; gap:.3rem; }
  .mobile-menu .nav-links a { padding:.7rem 0; border-bottom:1px solid var(--line); }
  .mobile-menu .btn { width:100%; margin-top:1rem; }
}
@media (min-width: 721px) { .mobile-menu { display:none; } }
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .hero-actions .btn { width:100%; }
}
