/* ============================================================
   lehmi webdesign — Haupt-Stylesheet
   ============================================================ */

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --bg:#050508;
  --bg2:#0a0a0f;
  --bg3:#12121a;
  --ink:#ffffff;
  --ink2:rgba(255,255,255,0.7);
  --ink3:rgba(255,255,255,0.5);
  --border:rgba(255,255,255,0.1);
  --border2:rgba(255,255,255,0.2);
  --v:#0066FF;--v2:#3385ff;--v3:#e6f0ff;--v4:#f2f7ff;
  --ease-out:cubic-bezier(0.23,1,0.32,1);
}

html{scroll-behavior:smooth; scroll-padding-top: 90px; color-scheme: dark;}
body{background:var(--bg);color:var(--ink2);font-family:'Inter',sans-serif;-webkit-font-smoothing:antialiased;overflow-x:hidden;line-height:1.6}

/* ── ACCESSIBILITY HELPERS ── */
.visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0}
.skip-link{position:absolute;top:-48px;left:16px;z-index:999;background:var(--v);color:#fff;padding:10px 18px;border-radius:0 0 10px 10px;font-size:13px;font-weight:600;text-decoration:none;transition:top 200ms ease}
.skip-link:focus{top:0}
a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible{outline:2px solid var(--v2);outline-offset:2px}

/* ── SPRACH-LOGIK (CSS) ── */
body.lang-de .en { display: none !important; }
body.lang-en .de { display: none !important; }

/* ── SERIF ── */
.serif{font-family:'Fraunces',Georgia,serif;font-style:italic;font-weight:300}

/* ── BREADCRUMBS ── */
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 13.5px; color: rgba(255,255,255,0.6); list-style: none; margin: 0; padding: 0; font-family: 'Inter', sans-serif; }
.breadcrumb-item { display: inline-flex; align-items: center; gap: 6px; }
.breadcrumb-link { color: inherit; text-decoration: none; transition: color 150ms ease; font-weight: 500;}
.breadcrumb-link:hover { color: #fff; }
.breadcrumb-separator { opacity: 0.5; display: flex; align-items: center; color: inherit; }
.breadcrumb-separator svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.breadcrumb-page { color: #fff; font-weight: 500; }

footer .breadcrumb { color: rgba(255,255,255,0.35); }
footer .breadcrumb-link:hover { color: rgba(255,255,255,0.8); }

/* ── NEON BUTTONS ── */
.btn-neon-solid {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--v);
  padding: 12px 28px;
  border-radius: 100px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
  overflow: visible;
}
.btn-neon-solid:hover {
  background: var(--v2);
  border-color: rgba(255,255,255,0.5);
}
.btn-neon-solid::before {
  content: ''; position: absolute; top: 0; left: 12.5%; width: 75%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  opacity: 0; transition: opacity 500ms ease-in-out;
}
.btn-neon-solid::after {
  content: ''; position: absolute; bottom: -1px; left: 12.5%; width: 75%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  opacity: 0; transition: opacity 500ms ease-in-out;
}
.btn-neon-solid:hover::before { opacity: 1; }
.btn-neon-solid:hover::after { opacity: 0.3; }

.btn-neon-ghost {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: rgba(0, 102, 255, 0.05);
  border: 1px solid rgba(0, 102, 255, 0.2);
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}
.btn-neon-ghost:hover {
  background: transparent;
  border-color: rgba(255,255,255,0.2);
}
.btn-neon-ghost::before {
  content: ''; position: absolute; top: 0; left: 12.5%; width: 75%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--v), transparent);
  opacity: 0; transition: opacity 500ms ease-in-out;
}
.btn-neon-ghost::after {
  content: ''; position: absolute; bottom: -1px; left: 12.5%; width: 75%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--v), transparent);
  opacity: 0; transition: opacity 500ms ease-in-out;
}
.btn-neon-ghost:hover::before { opacity: 1; }
.btn-neon-ghost:hover::after { opacity: 0.3; }
.btn-neon-solid:active, .btn-neon-ghost:active { transform: scale(0.96); }

/* ── NAV (IMMER TRANSPARENT MIT GLASSMORPHISM) ── */
nav#mainNav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  background: rgba(5, 5, 8, 0.1);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.3s, border-color 0.3s;
}
nav#mainNav.scrolled {
  background: rgba(5, 5, 8, 0.85);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-inner{max-width:1080px;margin:0 auto;padding:0 28px;height:64px;display:flex;align-items:center;justify-content:space-between;position:relative;}

/* ── BRAND LOGO (HEXAGON & TEXT) ── */
.brand-logo { display: flex; align-items: center; gap: 10px; color: #fff; text-decoration: none; transition: color 0.3s; }
.hex-icon { position: relative; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; }
.hex-icon svg { position: absolute; inset: 0; width: 100%; height: 100%; stroke: currentColor; stroke-width: 1.2; stroke-linejoin: round; fill: none; }
.hex-icon span { font-family: 'Fraunces', serif; font-size: 14px; font-weight: 400; letter-spacing: 0.04em; margin-top: 1px; margin-left: 1px;}
.brand-text { font-family: 'Fraunces', serif; font-size: 19px; font-weight: 300; letter-spacing: 0.08em; }

.nav-right{display:flex;align-items:center;gap:12px}
.lang-toggle { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8); background: transparent; border: 1px solid rgba(255,255,255,0.2); padding: 6px 12px; border-radius: 100px; cursor: pointer; transition: color 150ms ease, background 150ms ease, border-color 150ms ease; font-family: 'Inter', sans-serif;}
.lang-toggle:hover { color: #fff; background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); }

/* Mobile Navigation */
.mobile-toggle { display: none; background: none; border: none; color: #fff; cursor: pointer; padding: 4px; transition:opacity 0.3s;}
.mobile-toggle:hover { opacity: 0.7;}
.mobile-menu { display: none; position: fixed; top: 64px; left: 0; right: 0; background: rgba(5, 5, 8, 0.95); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255,255,255,0.1); padding: 16px 28px; flex-direction: column; gap: 12px; z-index: 299; }
.mobile-menu.open { display: flex; }
.nav-link-mob { font-size: 15px; font-weight: 600; color: #fff; text-decoration: none; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }

/* ── 3D HERO WAVE OPENER ── */
.wave-hero { position: relative; width: 100%; height: 100vh; background: #050508; overflow: hidden; display: flex; align-items: center; justify-content: center; }
#waveCanvas { position: absolute; inset: 0; z-index: 1; opacity: 0.9; pointer-events: none; width: 100%; height: 100%; }
#waveCanvas canvas { display: block; width: 100% !important; height: 100% !important; }
.wave-hero-content { position: relative; z-index: 10; width: 100%; max-width: 820px; padding: 24px; text-align: center; margin-top: 40px; }
.wave-hero h1 { color: #fff; font-size: clamp(36px, 5.5vw, 68px); font-weight: 700; letter-spacing: -0.04em; line-height: 1.05; text-shadow: 0 4px 32px rgba(0,102,255,0.3); margin-bottom: 18px; text-wrap: balance; }
.wave-hero p { color: rgba(255,255,255,0.75); font-size: clamp(16px, 2vw, 18px); max-width: 600px; margin: 0 auto 36px; line-height: 1.6; }
.ai-form { margin-top: 32px; display: flex; justify-content: center; }
.ai-input-wrap { position: relative; width: 100%; max-width: 680px; background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(0,0,0,0.3)); padding: 2px; border-radius: 20px; box-shadow: 0 12px 48px rgba(0,0,0,0.5); }
.ai-textarea { width: 100%; height: 140px; resize: none; border-radius: 18px; background: rgba(12,12,16,0.7); border: 1px solid rgba(255,255,255,0.1); color: #fff; padding: 20px; outline: none; backdrop-filter: blur(16px); font-family: 'Inter', sans-serif; font-size: 16px; transition: border-color 0.3s, box-shadow 0.3s; }
.ai-textarea:focus { border-color: rgba(0,102,255,0.6); box-shadow: 0 0 0 2px rgba(0,102,255,0.25); }
.ai-textarea::placeholder { color: rgba(255,255,255,0.35); }
.ai-submit { position: absolute; right: 16px; bottom: 16px; width: 46px; height: 46px; border-radius: 12px; background: #e6f0ff; color: #000; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s, transform 0.2s; }
.ai-submit:hover { background: #fff; transform: scale(1.05); }

/* ── SECTION WRAPPER ── */
.section{max-width:1080px;margin:0 auto;padding:96px 28px}
.sec-label{font-size:11px;font-weight:600;letter-spacing:0.1em;text-transform:uppercase;color:var(--v);margin-bottom:10px;display:block}
.sec-h2{font-size:clamp(26px,3.5vw,42px);font-weight:700;color:var(--ink);letter-spacing:-0.035em;line-height:1.1;margin-bottom:14px;text-wrap:balance}
.sec-desc{font-size:15.5px;color:var(--ink2);max-width:500px;line-height:1.65}
.sec-head{margin-bottom:52px}
.sec-head.center{text-align:center}
.sec-head.center .sec-desc{margin:0 auto}

/* ── PAIN SECTION ── */
.pain-bg{background:var(--bg);position:relative;overflow:hidden}
.pain-noise{position:absolute;inset:0;opacity:0.03;background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");background-size:200px 200px}
.pain-glow{position:absolute;top:-200px;left:50%;transform:translateX(-50%);width:800px;height:500px;background:radial-gradient(ellipse,rgba(0,102,255,0.2) 0%,transparent 65%);pointer-events:none}
.pain-section .section{position:relative;z-index:1}
.pain-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:52px}
.pain-card{background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.08);border-radius:16px;overflow:hidden;transition:border-color 200ms,background 200ms}
.pain-card:hover{background:rgba(255,255,255,0.06);border-color:rgba(255,255,255,0.2)}
.pain-illus{height:200px;background:rgba(255,255,255,0.02);border-bottom:1px solid rgba(255,255,255,0.06);display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden}
.pain-illus svg{width:100%;height:100%;max-width:240px;max-height:180px;}
.pain-body{padding:24px}
.pain-title{font-size:15px;font-weight:600;color:#fff;margin-bottom:8px; line-height: 1.4;}
.pain-text{font-size:13px;color:rgba(255,255,255,0.45);line-height:1.65}

@keyframes pulse-cursor { 0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0px transparent); } 50% { transform: scale(1.15); filter: drop-shadow(0 0 5px rgba(255,255,255,0.5));} }
@keyframes float-qm-1 { 0%, 100% { transform: translateY(0px) rotate(-10deg); } 50% { transform: translateY(-8px) rotate(10deg); } }
@keyframes float-qm-2 { 0%, 100% { transform: translateY(0px) rotate(15deg) scale(0.8); } 50% { transform: translateY(-12px) rotate(-5deg) scale(0.8); } }
@keyframes float-qm-3 { 0%, 100% { transform: translateY(0px) rotate(-5deg) scale(1.2); } 50% { transform: translateY(6px) rotate(15deg) scale(1.2); } }
@keyframes pop-competitor { 0%, 100% { transform: rotate(3deg) scale(1); filter: drop-shadow(0 0 0px transparent); } 50% { transform: rotate(5deg) scale(1.03); filter: drop-shadow(0 10px 20px rgba(0,102,255,0.3)); } }
@keyframes blink-idea { 0%, 100% { opacity: 0.4; filter: drop-shadow(0 0 0px transparent); } 50% { opacity: 1; filter: drop-shadow(0 0 10px var(--v)); } }

.anim-cursor-pulse { animation: pulse-cursor 1.5s infinite ease-in-out; transform-origin: top left; transform-box: fill-box;}
.anim-qm-1 { animation: float-qm-1 4s infinite ease-in-out; transform-origin: center; transform-box: fill-box;}
.anim-qm-2 { animation: float-qm-2 5s infinite ease-in-out 1s; transform-origin: center; transform-box: fill-box;}
.anim-qm-3 { animation: float-qm-3 3.5s infinite ease-in-out 0.5s; transform-origin: center; transform-box: fill-box;}
.anim-competitor { animation: pop-competitor 4s infinite cubic-bezier(0.4, 0, 0.2, 1); transform-origin: center; transform-box: fill-box;}
.anim-idea { animation: blink-idea 2s infinite ease-in-out; transform-origin: center; transform-box: fill-box;}

/* ── FEATURES SHADER BENTO ── */
.features-shader-wrapper { position: relative; width: 100%; overflow: hidden; padding: 120px 0; background: #000; }
#shader-background-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.features-inner { position: relative; z-index: 1; max-width: 1080px; margin: 0 auto; padding: 0 28px; }

.bento-grid{display:grid;grid-template-columns:repeat(6,1fr);grid-template-rows:auto auto;gap:16px}
.b-card{background:rgba(255,255,255,0.03); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px); border:1px solid rgba(255,255,255,0.1); border-radius:24px; overflow:hidden; transition:border-color 300ms, transform 300ms var(--ease-out), background 300ms; box-shadow: 0 8px 32px rgba(0,0,0,0.2); display:flex; flex-direction:column; text-align: center;}
.b-card:hover{border-color:rgba(255,255,255,0.25); background:rgba(255,255,255,0.06); transform:translateY(-4px)}
.b-card.card-design { grid-column: span 3; }
.b-card.card-conversion { grid-column: span 3; }
.b-card.card-marketing { grid-column: span 2; }
.b-card.card-time { grid-column: span 2; }
.b-card.card-hostinger { grid-column: span 2; }

.b-vis{height:220px;display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,0.2);border-bottom:1px solid rgba(255,255,255,0.05);position:relative;overflow:hidden; flex-shrink:0;}
.b-body{padding:32px 28px; flex:1; display:flex; flex-direction:column; justify-content:center; align-items:center;}
.b-title{font-size:20px;font-weight:700;color:#fff;letter-spacing:-0.02em;margin-bottom:8px}
.b-text{font-size:14px;color:rgba(255,255,255,0.6);line-height:1.6}

/* Design Card */
.design-showcase { width: 100%; height: 100%; position: relative; display: flex; align-items: center; justify-content: center; gap: 20px; padding: 0 20px;}
.design-mock { width: 45%; height: 140px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; position: relative;}
.design-mock.wireframe { display: flex; flex-direction: column; padding: 16px; gap: 10px; border: 2px dashed rgba(255,255,255,0.1); background: transparent; justify-content: center;}
.mock-line { height: 6px; background: rgba(255,255,255,0.1); border-radius: 4px; }
.mock-box { flex: 1; background: rgba(255,255,255,0.05); border-radius: 4px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 6px;}
.mock-box-inner { width: 30px; height: 4px; background: var(--v); border-radius: 2px; }
.design-mock.final { border: 1px solid rgba(255,255,255,0.1); overflow: hidden; padding: 0; box-shadow: 0 5px 20px rgba(0,0,0,0.5);}
/* Logo-Fix: Logo/Screenshot wird vollständig und zentriert angezeigt statt abgeschnitten */
.design-mock.final img { width: 100%; height: 100%; object-fit: contain; object-position: center; padding: 20px; }
.design-connector { position: absolute; top: 50%; left: 0; width: 100%; height: 50px; transform: translateY(-50%); z-index: 0;}
.design-connector-path { fill: none; stroke: rgba(0,102,255,0.4); stroke-width: 2; stroke-dasharray: 4 4;}
.design-node { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 36px; height: 36px; background: #050508; border: 1px solid var(--v); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 12px; font-weight: bold; box-shadow: 0 0 15px rgba(0,102,255,0.5); z-index: 2;}

/* Conversion Card */
.chart-bar-wrap {display:flex; align-items:flex-end; justify-content:center; gap:12px; height:120px; padding:0 24px; position:relative; z-index:1; margin-top: 40px; width: 100%;}
.chart-bar {width: 24px; border-radius:4px 4px 0 0; background:rgba(255,255,255,0.1);}
.chart-bar.active {background:linear-gradient(to top, rgba(0,102,255,0.8), #4facfe); position:relative; transition: height 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;}
.chart-bar.active::before {content:''; position:absolute; top:-6px; left:50%; transform:translateX(-50%); width:12px; height:12px; border-radius:50%; background:#fff; box-shadow:0 0 10px #4facfe, 0 0 20px #0066FF;}
.b-card.in-view .chart-bar.active { height: 85%; }
.chart-badge {position:absolute; top:20px; right:20px; background:rgba(74, 222, 128, 0.15); color:#4ade80; font-size:12px; font-weight:700; padding:4px 12px; border-radius:100px; border:1px solid rgba(74, 222, 128, 0.3); z-index:2;}

/* Marketing Orbit */
.orbit-wrap { position: relative; width: 160px; height: 160px; display: flex; align-items: center; justify-content: center;}
.orbit-ring { position: absolute; border-radius: 50%; border: 1px dashed rgba(255,255,255,0.15); border-left: 1px solid rgba(0,102,255,0.5); border-right: 1px solid rgba(0,102,255,0.5); animation: spinOrbit 20s linear infinite;}
.orbit-ring.r1 { width: 100%; height: 100%; animation-duration: 25s;}
.orbit-ring.r2 { width: 60%; height: 60%; animation-direction: reverse; border-color: rgba(255,255,255,0.1);}
.orbit-center { width: 48px; height: 48px; background: rgba(0,102,255,0.2); border: 1px solid var(--v); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: bold; font-size: 14px; box-shadow: 0 0 20px rgba(0,102,255,0.4); z-index: 2;}
.o-icon { position: absolute; width: 28px; height: 28px; background: rgba(255,255,255,0.1); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--v2); }
.o-icon.i1 { top: -14px; left: 50%; transform: translateX(-50%); }
.o-icon.i2 { top: 20px; left: -10px; }
.o-icon.i3 { top: 40px; right: -10px; }
@keyframes spinOrbit { 100% { transform: rotate(360deg); } }

/* Lightning Card */
.lightning-wrap { position: relative; width: 80px; height: 120px; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; overflow: hidden; background: rgba(255,255,255,0.02); display: flex; align-items: center; justify-content: center;}
.lightning-bg-fill { position: absolute; top: 0; left: 0; right: 0; background: linear-gradient(to bottom, rgba(0,102,255,0.05), rgba(0,102,255,0.4)); z-index: 0; height: 0%; transition: height 1.5s ease-out;}
.b-card.in-view .lightning-bg-fill { height: 100%; }
.lightning-icon { position: relative; z-index: 1; width: 40px; height: 40px; fill: var(--v); filter: drop-shadow(0 0 8px rgba(0,102,255,0.6)); animation: pulseLight 2s infinite ease-in-out;}
@keyframes pulseLight { 0%, 100% { transform: scale(1); filter: drop-shadow(0 0 8px rgba(0,102,255,0.4));} 50% { transform: scale(1.1); filter: drop-shadow(0 0 16px rgba(0,102,255,0.8));} }

/* Hostinger Card */
.wf-wrap { position: relative; width: 120px; height: 120px; display: flex; align-items: center; justify-content: center;}
.wf-bg-grid { position: absolute; inset: -40px; background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px); background-size: 10px 10px; opacity: 0.5; z-index: 0; }
.wf-svg { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); z-index: 1;}
.wf-ring-bg { fill: none; stroke: rgba(255,255,255,0.05); stroke-width: 8; cx: 60; cy: 60; r: 50; }
.wf-ring-fill { fill: none; stroke: var(--v); stroke-width: 8; cx: 60; cy: 60; r: 50; stroke-dasharray: 314; stroke-dashoffset: 314; stroke-linecap: round; transition: stroke-dashoffset 2s cubic-bezier(0.23, 1, 0.32, 1); filter: drop-shadow(0 0 8px rgba(0,102,255,0.5));}
.b-card.in-view .wf-ring-fill { stroke-dashoffset: 0; }
.wf-logo { position: relative; z-index: 2; width: 56px; height: 56px; background: var(--v); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 24px; font-family: sans-serif; letter-spacing: -1px; box-shadow: 0 0 20px rgba(0,102,255,0.3);}

/* ── PROZESS (DARK + MOVING LIGHT) ── */
.prozess-bg{background:var(--bg);border-top:1px solid rgba(255,255,255,0.05);border-bottom:1px solid rgba(255,255,255,0.05)}
.prozess-inner{max-width:1080px;margin:0 auto;padding:96px 28px}
.steps-row{display:grid;grid-template-columns:repeat(3,1fr);gap:0;margin-top:56px;position:relative}
.steps-row::before{content:'';position:absolute;top:28px;left:16.66%;right:16.66%;height:1px;border-top:2px dashed rgba(255,255,255,0.15);z-index:0}

.moving-light-track { position: absolute; top: 28px; left: 16.66%; right: 16.66%; height: 2px; z-index: 0; pointer-events: none; overflow: visible;}
.moving-light-dot { position: absolute; top: -1px; left: 0; width: 60px; height: 4px; background: var(--v); box-shadow: 0 0 15px var(--v), 0 0 30px var(--v); border-radius: 4px; animation: moveLight 3s infinite cubic-bezier(0.4, 0, 0.2, 1); }
@keyframes moveLight { 0% { left: 0%; opacity: 0; transform: translateX(-100%); } 10% { opacity: 1; } 90% { opacity: 1; } 100% { left: 100%; opacity: 0; transform: translateX(0%); } }

.step-item{display:flex;flex-direction:column;align-items:center;text-align:center;padding:0 24px;position:relative;z-index:1; transition: transform 0.3s var(--ease-out);}
.step-item:hover { transform: translateY(-8px); }
.step-circle{width:56px;height:56px;border-radius:50%;background:var(--v);color:#fff;font-size:18px;font-weight:700;display:flex;align-items:center;justify-content:center;margin-bottom:20px;position:relative;box-shadow:0 0 0 8px rgba(0,102,255,0.15); transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out), background 0.3s var(--ease-out);}
.step-item:hover .step-circle { box-shadow: 0 0 0 12px rgba(0,102,255,0.2), 0 0 25px rgba(0,102,255,0.6); transform: scale(1.1); background: var(--v2); }
.step-title{font-size:16px;font-weight:700;color:#fff;margin-bottom:8px;letter-spacing:-0.015em; transition: color 0.3s;}
.step-item:hover .step-title { color: var(--v3); }
.step-text{font-size:13px;color:rgba(255,255,255,0.6);line-height:1.65}
.steps-cta{text-align:center;margin-top:48px; display:flex; flex-direction:column; align-items:center;}
.btn-steps-sub{font-size:11px;font-weight:500;color:rgba(255,255,255,0.45);margin-top:12px;display:flex;align-items:center;gap:5px; justify-content: center;}
.live-dot{width:6px;height:6px;border-radius:50%;background:#4ade80;display:inline-block;animation:bpulse 2s ease-in-out infinite}
@keyframes bpulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ── SEO DARK (MIT HOVER POP-UPS) ── */
.seo-dark{background:var(--bg);position:relative;overflow:hidden}
.seo-inner{max-width:1080px;margin:0 auto;padding:96px 28px;display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;position:relative;z-index:1}
.seo-inner .sec-label{color:rgba(255,255,255,0.3)}
.seo-inner .sec-h2{color:#fff;font-size:clamp(26px,3.2vw,40px)}
.seo-inner .sec-desc{color:rgba(255,255,255,0.45);max-width:100%}
.seo-right{display:flex;flex-direction:column;gap:2px}
.seo-row{background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.07);border-radius:12px;padding:18px 22px;display:flex;gap:16px;align-items:flex-start; transition: transform 300ms var(--ease-out), background 300ms, border-color 300ms, box-shadow 300ms; position: relative; z-index: 1;}
@media(hover:hover) and (pointer:fine){
  .seo-row:hover{background:rgba(255,255,255,0.08);border-color:var(--v);transform: translateY(-5px) scale(1.02);box-shadow: 0 15px 35px rgba(0,0,0,0.4), 0 0 20px rgba(0,102,255,0.15); z-index: 10;}
}
.seo-num{font-size:12px;font-weight:700;color:rgba(255,255,255,0.25);width:24px;flex-shrink:0;margin-top:1px}
.seo-row-title{font-size:14px;font-weight:600;color:#fff;margin-bottom:3px}
.seo-row-text{font-size:12.5px;color:rgba(255,255,255,0.4);line-height:1.55}
.serp-card{background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.07);border-radius:14px;padding:24px;margin-top:24px}
.serp-label{font-size:10px;font-weight:600;letter-spacing:0.08em;text-transform:uppercase;color:rgba(255,255,255,0.25);margin-bottom:16px}
.serp-result{padding:14px;border-radius:10px;background:rgba(0,102,255,0.15);border:1px solid rgba(0,102,255,0.25)}
.serp-url{font-size:11px;color:rgba(255,255,255,0.4);margin-bottom:3px}
.serp-title{font-size:14px;font-weight:600;color:#fff;margin-bottom:4px}
.serp-desc{font-size:12px;color:rgba(255,255,255,0.4);line-height:1.5}
.serp-rank{display:inline-flex;align-items:center;gap:4px;font-size:10px;font-weight:700;color:var(--v2);background:rgba(0,102,255,0.15);padding:3px 8px;border-radius:100px;margin-bottom:8px}

/* ── PAKET ── */
.paket-section{background:var(--bg);}
.paket-card{background:rgba(255,255,255,0.03);border:1px solid rgba(255,255,255,0.1);border-radius:20px;overflow:hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.2);}
.paket-top{padding:48px;display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:start;background:rgba(0,0,0,0.2);}
.paket-top h3{font-size:clamp(22px,2.5vw,32px);font-weight:700;color:#fff;letter-spacing:-0.03em;margin-bottom:12px}
.check-list{display:flex;flex-direction:column;gap:12px}
.check-row{display:flex;align-items:center;gap:12px;font-size:14px;font-weight:500;color:rgba(255,255,255,0.9)}
.check-circle{width:22px;height:22px;background:rgba(0,102,255,0.2);border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.check-circle svg{width:10px;height:10px;stroke:var(--v);fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}
.paket-bottom{padding:24px 48px;background:transparent;border-top:1px solid rgba(255,255,255,0.1);display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap}
.paket-bottom p{font-size:13px;color:rgba(255,255,255,0.6);max-width:460px;line-height:1.6}

/* ── HERO-4 ANFRAGE SECTION ── */
.hero-4-section { background: var(--bg); padding: 96px 28px; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }
.hero-4-container { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.hero-4-h1 { font-size: clamp(32px, 4.5vw, 64px); font-weight: 700; color: #fff; line-height: 1.1; letter-spacing: -0.04em; }
.hero-4-dashed-wrap { position: relative; display: inline-block; margin: 8px auto 0; padding: 4px 16px;}
.hero-4-dashed-border { position: absolute; inset: 0; border: 2px dashed var(--v); border-radius: 16px; opacity: 0.5; z-index: 0; }
.hero-4-animated-text { position: relative; z-index: 1; color: var(--v); min-height: 1.2em; display: inline-block; font-family: 'Fraunces', serif; font-style: italic;}
.hero-4-cursor { display: inline-block; animation: blink 1s step-start infinite; color: var(--v); }
@keyframes blink { 50% { opacity: 0; } }

.hero-4-subtitle { margin-top: 24px; font-size: 18px; color: rgba(255,255,255,0.7); line-height: 1.6; max-width: 600px; }
.hero-4-badge { display: inline-flex; align-items: center; background: rgba(255,255,255,0.05); color: #fff; padding: 6px 16px; border-radius: 8px; font-size: 13px; font-weight: 600; margin-top: 40px; border: 1px solid rgba(255,255,255,0.1); }
.hero-4-cta-wrap { margin-top: 24px; }

/* ── CTA FINAL (WAVE) ── */
.cta-final{position:relative;overflow:hidden;background:#050508;border-top:1px solid rgba(255,255,255,0.05); padding: 140px 28px; display: flex; flex-direction: column; align-items: center; justify-content: center; cursor: crosshair;}
.cta-glow { position: absolute; top: -50px; left: 50%; transform: translateX(-50%); width: 100%; height: 100%; border-radius: 50%; background: radial-gradient(ellipse at center, rgba(0, 102, 255, 0.15), transparent 50%); filter: blur(30px); pointer-events: none; z-index: 0; }
.wave-svg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
.cta-inner{position:relative;z-index:10;max-width:760px;width: 100%; text-align:center;}
.cta-inner h2{font-size:clamp(32px,5vw,58px);font-weight:700;color:#fff;letter-spacing:-0.04em;line-height:1.05;margin-bottom:20px; text-shadow: 0 4px 20px rgba(0,0,0,0.5);}
.cta-inner p{font-size:16px;color:rgba(255,255,255,0.7);max-width:440px;margin:0 auto 40px;line-height:1.65}

/* ── KONTAKT FORMULAR ── */
.kontakt-section{background:#050508;border-top:1px solid rgba(255,255,255,0.05)}
.kontakt-inner{max-width:640px;margin:0 auto;padding:96px 28px}
.kontakt-inner .sec-head{text-align:center;margin-bottom:40px}
.kontakt-inner .sec-h2 {color: #fff;}
.kontakt-inner .sec-desc {color: rgba(255,255,255,0.7);}

/* Direkter Kontakt (E-Mail) */
.contact-direct{text-align:center;margin-bottom:36px}
.contact-direct p{font-size:14px;color:rgba(255,255,255,0.6);margin-bottom:6px}
.contact-mail-link{color:var(--v2);text-decoration:none;font-weight:700;font-size:1.15rem;transition:color 150ms ease}
.contact-mail-link:hover{color:#fff}
.footer-mail{font-size:12px;color:rgba(255,255,255,0.45);text-decoration:none;transition:color 150ms ease}
.footer-mail:hover{color:#fff}

.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.form-group{margin-bottom:0}
.form-group.full{grid-column:span 2}
.form-label{display:block;font-size:12px;font-weight:600;color:rgba(255,255,255,0.9);margin-bottom:6px;letter-spacing:0.01em}
.form-input,.form-textarea{width:100%;background:rgba(255,255,255,0.05);border:1px solid rgba(255,255,255,0.1);border-radius:10px;padding:12px 15px;font-size:14px;color:#fff;font-family:'Inter',sans-serif;outline:none;transition:border-color 180ms,box-shadow 180ms,background 180ms}
.form-input::placeholder,.form-textarea::placeholder{color:rgba(255,255,255,0.3)}
.form-input:hover,.form-textarea:hover{background:rgba(255,255,255,0.08);border-color:rgba(255,255,255,0.2)}
.form-input:focus,.form-textarea:focus{background:rgba(255,255,255,0.08);border-color:var(--v);box-shadow:0 0 0 3px rgba(0,102,255,0.2)}
.form-textarea{min-height:110px;resize:vertical;line-height:1.6}
.success-msg{display:none;text-align:center;padding:48px 0}
.success-icon{width:52px;height:52px;background:var(--v3);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 16px}
.success-icon svg{width:22px;height:22px;stroke:var(--v);fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}
.success-msg h3{font-size:18px;font-weight:700;color:#fff;margin-bottom:8px}
.success-msg p{font-size:14px;color:rgba(255,255,255,0.7)}

/* ── FAQ (GANZ UNTEN) ── */
.faq-section{background:var(--bg);border-top:1px solid rgba(255,255,255,0.05)}
.faq-inner{max-width:1080px;margin:0 auto;padding:96px 28px;display:grid;grid-template-columns:1fr 2fr;gap:64px;align-items:start}
.faq-left h2{font-size:clamp(26px,3vw,38px);font-weight:700;color:#fff;letter-spacing:-0.03em;margin-bottom:12px}
.faq-left p{font-size:14px;color:rgba(255,255,255,0.7);line-height:1.65;margin-bottom:24px}
.faq-list{display:flex;flex-direction:column;gap:8px}
.faq-item{background:rgba(255,255,255,0.03);border:1px solid rgba(255,255,255,0.1);border-radius:13px;overflow:hidden;}
.faq-item.open {border-color:rgba(255,255,255,0.3)}
.faq-trigger{width:100%;display:flex;align-items:center;justify-content:space-between;padding:20px 22px;font-size:14.5px;font-weight:600;color:#fff;background:none;border:none;cursor:pointer;text-align:left;gap:12px;}
.faq-icon{width:22px;height:22px;border-radius:50%;background:rgba(255,255,255,0.05);display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:transform 300ms var(--ease-out)}
.faq-item.open .faq-icon{background:rgba(0,102,255,0.2);}
.faq-icon svg{width:10px;height:10px;stroke:rgba(255,255,255,0.6);fill:none;stroke-width:2.5;stroke-linecap:round}
.faq-item.open .faq-icon svg{stroke:var(--v);}
.faq-body{max-height:0;overflow:hidden;transition:max-height 400ms var(--ease-out),padding 300ms var(--ease-out)}
.faq-item.open .faq-body{max-height:500px}
.faq-body-inner{padding:0 22px 20px;font-size:13.5px;color:rgba(255,255,255,0.6);line-height:1.7}

/* ── IMPRESSUM TARGET LOGIC ── */
#impressum {
  display: none;
  min-height: 100vh;
  padding: 160px 28px 96px;
  background: var(--bg);
}
#impressum:target {
  display: block;
}
/* Wenn Impressum aktiv ist, verstecke den restlichen Hauptinhalt */
body:has(#impressum:target) #main-content {
  display: none;
}
.impressum-inner {
  max-width: 800px;
  margin: 0 auto;
  color: rgba(255,255,255,0.7);
}
.impressum-inner h1 {
  font-size: clamp(32px, 4vw, 48px);
  color: #fff;
  margin-bottom: 40px;
  letter-spacing: -0.03em;
}
.impressum-inner h2 {
  font-size: clamp(24px, 3vw, 32px);
  color: #fff;
  margin-top: 60px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 12px;
}
.impressum-inner h3 {
  font-size: 18px;
  color: #fff;
  margin-top: 40px;
  margin-bottom: 16px;
}
.impressum-inner p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ── FOOTER ── */
footer{background:var(--bg);border-top:1px solid rgba(255,255,255,0.05);padding:40px 28px}
.footer-inner{max-width:1080px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap}
.footer-copy{font-size:12px;color:rgba(255,255,255,0.25)}

/* ── REVEAL ANIMATIONS ── */
.reveal{opacity:0;transform:translateY(14px);transition:opacity 380ms var(--ease-out),transform 380ms var(--ease-out)}
.reveal.visible{opacity:1;transform:translateY(0)}
.rd1{transition-delay:55ms}.rd2{transition-delay:110ms}.rd3{transition-delay:165ms}.rd4{transition-delay:220ms}

/* ── REDUZIERTE BEWEGUNG (Barrierefreiheit) ── */
@media (prefers-reduced-motion: reduce) {
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:0.01ms !important;animation-iteration-count:1 !important;transition-duration:0.01ms !important}
  .reveal{opacity:1;transform:none}
}

/* ── RESPONSIVE MOBILE OPTIMIERUNGEN ── */
@media(max-width:768px){
  .desktop-center-nav {display: none !important;}
  .brand-text {display: none !important;}
  .mobile-toggle{display:block}
  .moving-light-track{display:none}
  .pain-grid{grid-template-columns:1fr}

  .nav-right .btn-neon-solid { padding: 6px 12px; font-size: 13px; }
  .hide-mob { display: none; }

  .bento-grid{grid-template-columns:1fr}
  .b-card.card-design, .b-card.card-conversion, .b-card.card-marketing, .b-card.card-time, .b-card.card-hostinger { grid-column: span 1 !important; }

  .pain-illus svg { transform: scale(0.85); }
  .b-vis { height: 180px !important; }

  .steps-row{grid-template-columns:1fr;gap:32px}.steps-row::before{display:none}
  .seo-inner{grid-template-columns:1fr;gap:40px}
  .paket-top{grid-template-columns:1fr;padding:28px;gap:32px}
  .paket-bottom{padding:20px 28px}
  .faq-inner{grid-template-columns:1fr;gap:32px}
  .form-grid{grid-template-columns:1fr}.form-group.full{grid-column:span 1}
}
