/* ============================================================
   ScaleMotion - scalemotion.ch
   ============================================================ */

:root {
  --bg: #0a0d0b;
  --bg-soft: #0e1210;
  --surface: #12171399;
  --surface-solid: #121713;
  --surface-2: #171d19;
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.13);
  --text: #eef2ef;
  --text-muted: #9aa79f;
  --text-dim: #6b756f;
  --accent: #32ad6a;
  --accent-bright: #3adf85;
  --accent-soft: rgba(50, 173, 106, 0.12);
  --accent-glow: rgba(58, 223, 133, 0.35);
  --grad: linear-gradient(135deg, #3adf85 0%, #32ad6a 55%, #1f7a4a 100%);
  --radius: 16px;
  --radius-sm: 12px;
  --nav-h: 78px;
  --font-head: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #06130c; }

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.15; letter-spacing: -0.02em; }

.container { width: min(1180px, 92%); margin-inline: auto; }
.container-wide { width: min(1320px, 94%); margin-inline: auto; }

section { position: relative; padding: clamp(80px, 10vw, 130px) 0; }

/* ---------- ambient background glows ---------- */
.glow {
  position: absolute; border-radius: 50%; filter: blur(120px);
  pointer-events: none; z-index: 0; opacity: 0.22;
}
.glow-green { background: radial-gradient(circle, rgba(50,173,106,0.22), transparent 70%); }

/* ---------- badges / eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px;
  background: var(--accent);
}
.section-head.center .eyebrow::after,
.hero-inner .eyebrow::after, .page-hero .eyebrow::after,
.cta-box .eyebrow::after, .wd-hero-content .eyebrow::after,
.wd-price-card .eyebrow::after {
  content: ""; width: 26px; height: 1px; background: var(--accent);
}

.section-head { max-width: 720px; margin-bottom: clamp(44px, 6vw, 70px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 48px); margin-bottom: 18px; }
.section-head p { color: var(--text-muted); font-size: clamp(16px, 1.7vw, 18.5px); }

.grad-text { color: var(--accent-bright); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 15.5px;
  padding: 15px 30px; border-radius: 12px; cursor: pointer;
  border: 1px solid transparent; transition: all 0.35s var(--ease);
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn svg { transition: transform 0.35s var(--ease); flex-shrink: 0; }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--accent); color: #06130c;
}
.btn-primary:hover {
  background: var(--accent-bright);
}
.btn-ghost {
  background: transparent; color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  border-color: rgba(58, 223, 133, 0.5); background: rgba(58, 223, 133, 0.06);
}
.btn-lg { padding: 18px 38px; font-size: 16.5px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: all 0.4s var(--ease);
  background: linear-gradient(to bottom, rgba(10,13,11,0.6), transparent);
}
.nav.scrolled {
  height: 66px;
  background: rgba(10, 13, 11, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  width: min(1320px, 94%); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo img { height: 42px; width: auto; transition: height 0.4s var(--ease); }
.nav.scrolled .nav-logo img { height: 36px; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--text-muted);
  transition: color 0.25s; position: relative; padding: 6px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--grad); border-radius: 2px; transition: width 0.35s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after { width: 100%; }
.mobile-menu a.active { color: var(--accent-bright); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 12px 24px; font-size: 14.5px; }

/* burger */
.burger {
  display: none; flex-direction: column; gap: 5.5px; background: none;
  border: none; cursor: pointer; padding: 8px; z-index: 1002;
}
.burger span {
  width: 26px; height: 2px; background: var(--text); border-radius: 2px;
  transition: all 0.35s var(--ease);
}
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 1001;
  background: rgba(8, 11, 9, 0.97); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-head); font-size: 26px; font-weight: 600;
  padding: 12px; color: var(--text-muted); transition: color 0.25s;
  opacity: 0; transform: translateY(16px);
}
.mobile-menu.open a { opacity: 1; transform: none; transition: all 0.5s var(--ease); }
.mobile-menu.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.3s; }
.mobile-menu a:hover { color: var(--accent-bright); }
.mobile-menu .btn { margin-top: 18px; opacity: 0; }
.mobile-menu.open .btn { opacity: 1; transition-delay: 0.35s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden; text-align: center;
  padding: calc(var(--nav-h) + clamp(56px, 10vh, 110px)) 0 clamp(64px, 9vw, 110px);
  background: var(--bg);
}
/* Raster-Overlay */
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(ellipse 80% 65% at 50% 30%, #000 25%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 65% at 50% 30%, #000 25%, transparent 75%);
}
.hero-aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-aurora i {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.4;
  will-change: transform;
}
.hero-aurora i:nth-child(1) {
  width: 620px; height: 620px; top: -220px; left: -140px;
  background: radial-gradient(circle, rgba(58, 223, 133, 0.4), transparent 65%);
  animation: aurora-a 19s ease-in-out infinite alternate;
}
.hero-aurora i:nth-child(2) {
  width: 520px; height: 520px; top: 5%; right: -160px;
  background: radial-gradient(circle, rgba(31, 122, 74, 0.5), transparent 65%);
  animation: aurora-b 23s ease-in-out infinite alternate;
}
.hero-aurora i:nth-child(3) {
  width: 460px; height: 460px; bottom: -180px; left: 30%;
  background: radial-gradient(circle, rgba(124, 238, 176, 0.22), transparent 65%);
  animation: aurora-c 27s ease-in-out infinite alternate;
}
@keyframes aurora-a { to { transform: translate(140px, 90px) scale(1.15); } }
@keyframes aurora-b { to { transform: translate(-110px, 70px) scale(0.92); } }
@keyframes aurora-c { to { transform: translate(-90px, -80px) scale(1.12); } }

.hero-inner { position: relative; }
.hero-copy { max-width: 860px; margin-inline: auto; }
.hero h1 {
  font-size: clamp(40px, 6.5vw, 78px); font-weight: 700;
  margin-bottom: 24px; letter-spacing: -0.035em; line-height: 1.08;
}
.swap-wrap { display: inline-flex; overflow: hidden; vertical-align: bottom; }
.swap-word {
  display: inline-block; padding-bottom: 0.08em;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}
.swap-word.out { transform: translateY(-108%); opacity: 0; }
.swap-word.prep { transition: none; transform: translateY(108%); opacity: 0; }

.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px); color: var(--text-muted);
  max-width: 640px; margin: 0 auto 38px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.hero-media {
  position: relative; border-radius: 22px; overflow: hidden;
  max-width: 880px; margin: clamp(48px, 7vh, 72px) auto 0;
  border: 1px solid var(--border-strong); background: var(--surface-solid);
  box-shadow:
    0 50px 110px -50px rgba(0, 0, 0, 0.9),
    0 0 110px -60px rgba(50, 173, 106, 0.5);
  transition: transform 0.2s ease-out;
  will-change: transform;
}
.hero-media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(6, 9, 7, 0.3), transparent 45%);
}
.hero-media video {
  width: 100%; display: block; aspect-ratio: 16 / 9; object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.hero-stats {
  display: flex; gap: clamp(28px, 5vw, 72px); justify-content: center;
  max-width: 760px; margin: clamp(40px, 6vh, 56px) auto 0;
  padding-top: 30px; border-top: 1px solid var(--border); flex-wrap: wrap;
}
.hero-stat { text-align: center; }

/* Intro */
@keyframes hero-rise { from { opacity: 0; transform: translateY(26px); } }
.hero .eyebrow { animation: hero-rise 0.7s var(--ease) backwards; }
.hero h1 { animation: hero-rise 0.7s var(--ease) 0.08s backwards; }
.hero-sub { animation: hero-rise 0.7s var(--ease) 0.16s backwards; }
.hero-actions { animation: hero-rise 0.7s var(--ease) 0.24s backwards; }
.hero-media { animation: hero-rise 0.9s var(--ease) 0.36s backwards; }
.hero-stats { animation: hero-rise 0.9s var(--ease) 0.5s backwards; }
.hero-stat b {
  font-family: var(--font-head); font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 700; display: block; color: var(--text);
}
.hero-stat span { font-size: 13.5px; color: var(--text-muted); letter-spacing: 0.04em; }

/* ---------- Leistungs-Laufband / trust bar ---------- */
.trustbar { padding: 26px 0; border-block: 1px solid var(--border); background: var(--bg-soft); }
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group {
  display: flex; align-items: center;
  gap: clamp(36px, 5vw, 72px); padding-right: clamp(36px, 5vw, 72px);
}
@keyframes marquee { to { transform: translateX(-50%); } }
.trustbar span {
  font-size: 14px; color: var(--text-dim); letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 600;
  display: inline-flex; align-items: center; gap: 10px;
}
.trustbar svg { color: var(--accent); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
/* Reveal nur mit JS (html.js), sonst bleibt alles sichtbar */
html.js .reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
html.js .reveal.visible { opacity: 1; transform: none; }
html.js .reveal-scale { opacity: 0; transform: scale(0.94); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
html.js .reveal-scale.visible { opacity: 1; transform: none; }
html.js [data-stagger] > * { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
html.js [data-stagger].visible > * { opacity: 1; transform: none; }

/* ============================================================
   ABOUT / PILLARS
   ============================================================ */
.pillars {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px;
  margin-top: 54px;
}
.pillar {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 28px 18px; text-align: center;
  backdrop-filter: blur(10px); transition: all 0.4s var(--ease);
}
.pillar:hover {
  transform: translateY(-4px); border-color: var(--border-strong);
  background: var(--surface-2);
}
.pillar-icon {
  width: 52px; height: 52px; margin: 0 auto 16px; border-radius: 12px;
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-bright); transition: all 0.4s var(--ease);
}
.pillar h3 { font-size: 15.5px; font-weight: 600; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 34px 30px;
  backdrop-filter: blur(10px); position: relative; overflow: hidden;
  transition: all 0.45s var(--ease);
}
.service-card::before {
  content: ""; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 0%), rgba(58,223,133,0.05), transparent 45%);
  transition: opacity 0.4s; pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  transform: translateY(-4px); border-color: var(--border-strong);
  box-shadow: 0 24px 50px -30px rgba(0, 0, 0, 0.6);
}
.service-icon {
  width: 54px; height: 54px; border-radius: 12px; margin-bottom: 22px;
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-bright); transition: all 0.45s var(--ease);
}
.service-card h3 { font-size: 21px; margin-bottom: 12px; }
.service-card > p { color: var(--text-muted); font-size: 15px; margin-bottom: 20px; }
.service-list { display: flex; flex-direction: column; gap: 9px; }
.service-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; color: #c0cac3;
}
.service-list li::before {
  content: ""; flex-shrink: 0; width: 16px; height: 16px; margin-top: 4px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%233adf85" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6L9 17l-5-5"/></svg>') center/contain no-repeat;
}

.services-grid.steps-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1080px) { .services-grid.steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .services-grid.steps-grid { grid-template-columns: 1fr; } }

/* tags inside cards */
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 13px; font-weight: 500; color: #c0cac3;
  padding: 6px 12px; border-radius: 8px;
  background: rgba(255, 255, 255, 0.045); border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.tag:hover {
  border-color: rgba(58, 223, 133, 0.45); color: var(--accent-bright);
  background: var(--accent-soft);
}

/* ============================================================
   CONTENT CREATION SHOWCASE (SVG visuals)
   ============================================================ */
.content-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.content-tile {
  border-radius: var(--radius-sm); overflow: hidden; position: relative;
  border: 1px solid var(--border); background: var(--surface-solid);
  transition: all 0.45s var(--ease); aspect-ratio: 3 / 4;
}
.content-tile svg { width: 100%; height: 100%; display: block; transition: transform 0.6s var(--ease); }
.content-tile:hover svg { transform: scale(1.05); }
.content-tile:hover { border-color: rgba(58,223,133,0.4); transform: translateY(-5px); }
.content-tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 16px 14px;
  background: linear-gradient(to top, rgba(6,9,7,0.92), transparent);
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
}
.content-tile figcaption small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 12.5px; color: var(--text-muted); }

/* ============================================================
   KI SECTION
   ============================================================ */
.ki-section { background: var(--bg-soft); border-block: 1px solid var(--border); overflow: hidden; }
.ki-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.ki-features { display: flex; flex-direction: column; gap: 14px; margin-top: 34px; }
.ki-feature {
  display: flex; gap: 18px; padding: 20px 22px; border-radius: var(--radius-sm);
  background: var(--surface); border: 1px solid var(--border);
  transition: all 0.35s var(--ease);
}
.ki-feature:hover { border-color: rgba(58,223,133,0.35); transform: translateX(6px); }
.ki-feature-icon {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px;
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center; color: var(--accent-bright);
}
.ki-feature h3 { font-size: 16.5px; margin-bottom: 3px; }
.ki-feature p { font-size: 14px; color: var(--text-muted); }

/* chat mockup */
.chat-mock {
  background: var(--surface-solid); border: 1px solid var(--border-strong);
  border-radius: 20px; padding: 0; overflow: hidden;
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.8);
}
.chat-head {
  display: flex; align-items: center; gap: 12px; padding: 18px 22px;
  border-bottom: 1px solid var(--border); background: rgba(255, 255, 255, 0.02);
}
.chat-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; color: #06130c; font-size: 16px;
  position: relative;
}
.chat-avatar::after {
  content: ""; position: absolute; bottom: 1px; right: 1px; width: 10px; height: 10px;
  background: #3adf85; border: 2px solid var(--surface-solid); border-radius: 50%;
}
.chat-head b { font-size: 15px; display: block; line-height: 1.3; }
.chat-head small { font-size: 12.5px; color: var(--accent-bright); }
.chat-body { padding: 24px 22px; display: flex; flex-direction: column; gap: 14px; min-height: 320px; }
.msg {
  max-width: 82%; padding: 13px 17px; border-radius: 16px; font-size: 14.5px;
  line-height: 1.5;
}
html.js .msg { opacity: 0; transform: translateY(12px); }
.chat-mock.visible .msg { animation: msg-in 0.55s var(--ease) forwards; }
.msg.bot { background: rgba(255, 255, 255, 0.055); border: 1px solid var(--border); border-bottom-left-radius: 5px; align-self: flex-start; }
.msg.user { background: var(--grad); color: #05130b; font-weight: 500; border-bottom-right-radius: 5px; align-self: flex-end; }
.chat-mock.visible .msg:nth-child(1) { animation-delay: 0.3s; }
.chat-mock.visible .msg:nth-child(2) { animation-delay: 1.1s; }
.chat-mock.visible .msg:nth-child(3) { animation-delay: 1.9s; }
.chat-mock.visible .msg:nth-child(4) { animation-delay: 2.7s; }
.chat-mock.visible .msg:nth-child(5) { animation-delay: 3.5s; }
@keyframes msg-in { to { opacity: 1; transform: none; } }
.chat-input {
  margin: 0 22px 22px; padding: 14px 18px; border-radius: 100px;
  border: 1px solid var(--border-strong); background: rgba(255, 255, 255, 0.03);
  font-size: 14px; color: var(--text-dim);
  display: flex; align-items: center; justify-content: space-between;
}
.chat-input span::after { content: "|"; animation: blink 1.1s step-start infinite; color: var(--accent-bright); }
@keyframes blink { 50% { opacity: 0; } }
.chat-send {
  width: 34px; height: 34px; border-radius: 50%; background: var(--grad);
  display: flex; align-items: center; justify-content: center; color: #06130c;
}

/* automation tags */
.auto-flow { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }

/* ============================================================
   TARGET GROUPS
   ============================================================ */
.targets-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.target-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 26px 14px; text-align: center;
  transition: all 0.35s var(--ease); backdrop-filter: blur(8px); cursor: default;
}
.target-card:hover {
  transform: translateY(-3px); border-color: var(--border-strong);
  background: var(--surface-2);
}
.target-card .t-icon {
  width: 46px; height: 46px; margin: 0 auto 13px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent-bright);
  transition: all 0.35s var(--ease);
}
.target-card span { font-size: 14.5px; font-weight: 600; font-family: var(--font-head); }

/* ============================================================
   WHY / TRUST
   ============================================================ */
.why-section { background: var(--bg-soft); border-block: 1px solid var(--border); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.why-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.why-check {
  display: flex; align-items: center; gap: 13px; padding: 18px 20px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-weight: 600; font-family: var(--font-head);
  font-size: 15.5px; transition: all 0.35s var(--ease);
}
.why-check:hover { border-color: var(--border-strong); }
.why-check .check-ic {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 9px;
  background: var(--accent-soft); color: var(--accent-bright);
  display: flex; align-items: center; justify-content: center;
}
.why-points { display: flex; flex-direction: column; gap: 22px; margin-top: 34px; }
.why-point { display: flex; gap: 16px; }
.why-point-num {
  flex-shrink: 0; font-family: var(--font-head); font-weight: 700;
  font-size: 14px; letter-spacing: 0.08em; width: 42px; padding-top: 5px;
  color: var(--accent-bright);
}
.why-point h3 { font-size: 17px; margin-bottom: 4px; }
.why-point p { font-size: 14.5px; color: var(--text-muted); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 26px; padding: 40px 34px; display: flex; flex-direction: column;
  backdrop-filter: blur(10px); position: relative; transition: all 0.45s var(--ease);
}
.price-card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: 0 30px 60px -34px rgba(0,0,0,0.7); }
.price-card.featured {
  background: linear-gradient(180deg, rgba(50, 173, 106, 0.08), rgba(18, 23, 19, 0.7) 50%);
  border-color: rgba(58, 223, 133, 0.35);
}
.price-card.featured:hover { border-color: rgba(58, 223, 133, 0.55); }
.price-badge {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #06130c; font-family: var(--font-head);
  font-weight: 600; font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 8px;
  white-space: nowrap;
}
.price-card h3 { font-size: 21px; margin-bottom: 6px; }
.price-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.price-value { font-family: var(--font-head); margin-bottom: 28px; }
.price-value small { font-size: 14px; color: var(--text-muted); display: block; margin-bottom: 2px; }
.price-value b { font-size: clamp(34px, 3.6vw, 44px); font-weight: 700; letter-spacing: -0.02em; }
.price-value span { font-size: 15px; color: var(--text-muted); font-weight: 400; }
.price-card .service-list { margin-bottom: 32px; flex: 1; }
.price-card .btn { width: 100%; }

.price-note { text-align: center; color: var(--text-dim); font-size: 14px; margin-top: 28px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { padding: clamp(70px, 9vw, 110px) 0; }
.cta-box {
  position: relative; overflow: hidden; text-align: center;
  border-radius: 24px; padding: clamp(56px, 8vw, 96px) clamp(24px, 6vw, 80px);
  background:
    radial-gradient(ellipse 80% 100% at 50% -20%, rgba(58, 223, 133, 0.09), transparent 60%),
    var(--surface-solid);
  border: 1px solid var(--border-strong);
}
.cta-box h2 { font-size: clamp(28px, 4.4vw, 46px); margin-bottom: 18px; }
.cta-box p { color: var(--text-muted); max-width: 620px; margin: 0 auto 38px; font-size: 17px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border); background: #080b09;
  padding: 70px 0 34px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(32px, 5vw, 64px); margin-bottom: 54px;
}
.footer-brand img { height: 40px; width: auto; margin-bottom: 18px; }
.footer-brand p { color: var(--text-muted); font-size: 14.5px; max-width: 300px; }
.footer-brand .slogan {
  font-family: var(--font-head); color: var(--accent-bright);
  font-weight: 600; font-size: 15px; margin-bottom: 12px;
}
.footer .footer-h {
  font-family: var(--font-head); font-size: 13px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-dim);
  margin-bottom: 20px; font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col li { font-size: 15px; color: var(--text-muted); transition: color 0.25s; }
.footer-col a:hover { color: var(--accent-bright); }
.footer-contact li { display: flex; align-items: flex-start; gap: 11px; }
.footer-contact svg { flex-shrink: 0; margin-top: 4px; color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: var(--text-dim);
}
.footer-bottom a { color: var(--text-dim); transition: color 0.25s; }
.footer-bottom a:hover { color: var(--accent-bright); }
.footer-legal { display: flex; gap: 22px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-h) + clamp(60px, 9vw, 110px)) 0 clamp(50px, 7vw, 80px);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero h1 { font-size: clamp(34px, 5.4vw, 60px); margin-bottom: 20px; letter-spacing: -0.03em; }
.page-hero p { color: var(--text-muted); font-size: clamp(16px, 1.8vw, 19px); max-width: 640px; margin-inline: auto; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(32px, 5vw, 60px); align-items: start; }
.contact-info-card, .contact-form-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 26px; padding: clamp(28px, 4vw, 44px); backdrop-filter: blur(10px);
}
.contact-info-card { position: sticky; top: calc(var(--nav-h) + 24px); }
.contact-info-card h2 { font-size: 22px; margin-bottom: 8px; }
.contact-info-card > p { color: var(--text-muted); font-size: 15px; margin-bottom: 30px; }
.contact-lines { display: flex; flex-direction: column; gap: 16px; margin-bottom: 34px; }
.contact-line {
  display: flex; align-items: center; gap: 15px; padding: 16px 18px;
  border-radius: var(--radius-sm); background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border); transition: all 0.3s var(--ease);
}
.contact-line:hover { border-color: rgba(58, 223, 133, 0.4); transform: translateX(4px); }
.contact-line .c-ic {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center; color: var(--accent-bright);
}
.contact-line small { display: block; font-size: 12px; color: var(--text-dim); letter-spacing: 0.06em; text-transform: uppercase; }
.contact-line b { font-size: 15.5px; font-weight: 600; }
.contact-promise { display: flex; flex-direction: column; gap: 12px; }
.contact-promise li { display: flex; gap: 10px; font-size: 14px; color: var(--text-muted); align-items: center; }
.contact-promise svg { color: var(--accent-bright); flex-shrink: 0; }

/* form */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 8px;
  color: #c0cac3; font-family: var(--font-head);
}
.form-group label span { color: var(--accent-bright); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 15px 18px; border-radius: 13px;
  background: rgba(255, 255, 255, 0.035); border: 1px solid var(--border-strong);
  color: var(--text); font-family: var(--font-body); font-size: 15px;
  transition: all 0.3s var(--ease); outline: none; appearance: none;
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent-bright); background: rgba(58, 223, 133, 0.05);
  box-shadow: 0 0 0 4px rgba(58, 223, 133, 0.12);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }
.select-wrap { position: relative; }
.select-wrap::after {
  content: ""; position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  width: 10px; height: 10px; pointer-events: none;
  border-right: 2px solid var(--text-muted); border-bottom: 2px solid var(--text-muted);
  rotate: 45deg; translate: 0 -3px;
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--surface-solid); color: var(--text); }
.form-note { font-size: 13px; color: var(--text-dim); margin-top: 16px; text-align: center; }
.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success .ok-circle {
  width: 74px; height: 74px; margin: 0 auto 22px; border-radius: 50%;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
  color: #06130c;
  animation: pop-in 0.5s var(--ease);
}
@keyframes pop-in { from { transform: scale(0.4); opacity: 0; } }
.form-success h3 { font-size: 24px; margin-bottom: 10px; }
.form-success p { color: var(--text-muted); }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content { max-width: 780px; margin-inline: auto; padding-bottom: 60px; }
.legal-content h2 { font-size: 24px; margin: 44px 0 14px; }
.legal-content h3 { font-size: 18px; margin: 28px 0 10px; }
.legal-content p, .legal-content li { color: var(--text-muted); font-size: 15.5px; margin-bottom: 12px; }
.legal-content ul { list-style: disc; padding-left: 22px; }
.legal-content a { color: var(--accent-bright); }
.legal-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 32px; margin: 24px 0;
}
.legal-card p { margin-bottom: 4px; color: var(--text); }
.placeholder-hint {
  border: 1px dashed rgba(58, 223, 133, 0.4); background: var(--accent-soft);
  border-radius: var(--radius-sm); padding: 16px 20px; font-size: 14px;
  color: var(--accent-bright); margin: 20px 0;
}

/* ============================================================
   404 ERROR PAGE
   ============================================================ */
.error-hero {
  min-height: 76svh; display: flex; align-items: center;
  text-align: center; padding-bottom: 60px;
}
.error-sub {
  font-family: var(--font-body); font-weight: 400;
  font-size: clamp(19px, 3.6vw, 40px); line-height: 1.35;
  letter-spacing: -0.01em; color: rgba(255, 255, 255, 0.82);
  margin-bottom: clamp(28px, 5vh, 52px);
}
.four-oh-four {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(110px, 24vw, 260px); line-height: 0.95;
  letter-spacing: -0.06em; color: #fff; user-select: none;
  text-shadow: 0 0 80px rgba(58, 223, 133, 0.35), 0 0 160px rgba(255, 255, 255, 0.12);
  margin-bottom: clamp(28px, 5vh, 52px);
  animation: float-404 6s ease-in-out infinite;
}
@keyframes float-404 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.liquid-glass {
  background: rgba(255, 255, 255, 0.01);
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative; overflow: hidden;
  color: #fff; font-family: var(--font-head); font-weight: 500;
  font-size: clamp(11px, 1.4vw, 14px); letter-spacing: 0.2em; text-transform: uppercase;
  padding: 16px 34px; border-radius: 100px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.35s var(--ease); cursor: pointer;
}
.liquid-glass::before {
  content: "";
  position: absolute; inset: 0; border-radius: inherit; padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.15) 20%,
    rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0.15) 80%, rgba(255, 255, 255, 0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.liquid-glass:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15), 0 10px 40px -10px rgba(58, 223, 133, 0.4);
  background: rgba(58, 223, 133, 0.06);
}
.error-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   VIDEO SHOWCASE
   ============================================================ */
.showcase-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px;
  max-width: 760px; margin-inline: auto; align-items: start;
}
.showcase-card {
  position: relative; border-radius: 22px; overflow: hidden;
  border: 1px solid var(--border-strong); background: var(--surface-solid);
  transition: all 0.45s var(--ease);
  box-shadow: 0 30px 70px -35px rgba(0, 0, 0, 0.8);
}
.showcase-card:hover {
  transform: translateY(-4px); border-color: var(--border-strong);
  box-shadow: 0 40px 80px -35px rgba(0, 0, 0, 0.9);
}
.showcase-card video { width: 100%; display: block; cursor: pointer; }
.showcase-label {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--font-head); font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: #eef2ef;
  background: rgba(8, 11, 9, 0.7); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 6px 12px; border-radius: 8px; pointer-events: none;
}
.showcase-sound {
  position: absolute; bottom: 14px; right: 14px; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(8, 11, 9, 0.65); backdrop-filter: blur(8px);
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
}
.showcase-sound:hover { background: rgba(58, 223, 133, 0.25); border-color: var(--accent-bright); }
.showcase-hint { text-align: center; color: var(--text-dim); font-size: 13.5px; margin-top: 22px; }
@media (max-width: 720px) {
  .showcase-grid { grid-template-columns: 1fr; max-width: 420px; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-viewport { overflow: hidden; max-width: 820px; margin-inline: auto; }
.testi-track { display: flex; transition: transform 0.7s var(--ease); }
.testi-slide { flex: 0 0 100%; padding: 6px 8px; }
.testi-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 26px; padding: clamp(30px, 5vw, 48px);
  text-align: center; backdrop-filter: blur(10px); position: relative;
}
.testi-card::before {
  content: "\201C"; position: absolute; top: 6px; left: 26px;
  font-family: var(--font-head); font-size: 110px; line-height: 1;
  color: rgba(58, 223, 133, 0.16); pointer-events: none;
}
.testi-stars { display: flex; justify-content: center; gap: 5px; margin-bottom: 20px; color: var(--accent-bright); }
.testi-card.expect::before { content: none; }
.testi-phase {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px;
  font-family: var(--font-head); font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-bright);
  padding: 7px 14px; border-radius: 8px;
  background: var(--accent-soft);
}
.testi-card .testi-text {
  font-size: clamp(16.5px, 2vw, 19.5px); line-height: 1.65; color: #d4dcd6;
  max-width: 640px; margin: 0 auto 26px;
}
.testi-card blockquote {
  font-size: clamp(16.5px, 2vw, 19.5px); line-height: 1.65; color: #d4dcd6;
  max-width: 640px; margin: 0 auto 26px; font-style: italic;
}
.testi-who { display: flex; align-items: center; justify-content: center; gap: 13px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%; background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; color: #06130c; font-size: 16px;
}
.testi-who b { display: block; font-family: var(--font-head); font-size: 15.5px; text-align: left; }
.testi-who small { color: var(--text-muted); font-size: 13.5px; display: block; text-align: left; }
.testi-dots { display: flex; justify-content: center; gap: 9px; margin-top: 26px; }
.testi-dots button {
  width: 9px; height: 9px; border-radius: 100px; border: none; cursor: pointer;
  background: rgba(255, 255, 255, 0.18); padding: 0; transition: all 0.35s var(--ease);
}
.testi-dots button.active { width: 26px; background: var(--accent-bright); }

/* ============================================================
   CHATBOT WIDGET
   ============================================================ */
.sm-chat-launcher {
  position: fixed; right: 22px; bottom: 22px; z-index: 1500;
  width: 62px; height: 62px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--grad); color: #06130c;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 34px -8px var(--accent-glow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.sm-chat-launcher:hover { transform: translateY(-3px) scale(1.05); }
.sm-chat-launcher::after { content: none; }
.sm-chat-launcher svg { transition: transform 0.35s var(--ease); }
.sm-chat-launcher.open svg { transform: rotate(90deg); }

.sm-chat {
  position: fixed; right: 22px; bottom: 98px; z-index: 1500;
  width: min(380px, calc(100vw - 32px));
  background: var(--surface-solid); border: 1px solid var(--border-strong);
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.85);
  display: flex; flex-direction: column;
  opacity: 0; transform: translateY(24px) scale(0.96); pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.sm-chat.open { opacity: 1; transform: none; pointer-events: auto; }
.sm-chat .chat-head { flex-shrink: 0; }
.sm-chat-body {
  padding: 18px 16px; display: flex; flex-direction: column; gap: 11px;
  height: min(46vh, 420px); overflow-y: auto; scroll-behavior: smooth;
}
.sm-chat-body::-webkit-scrollbar { width: 6px; }
.sm-chat-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 3px; }
.sm-msg {
  max-width: 85%; padding: 11px 15px; border-radius: 15px; font-size: 14px;
  line-height: 1.5; animation: msg-in 0.4s var(--ease); white-space: pre-line;
}
.sm-msg.bot { background: rgba(255, 255, 255, 0.055); border: 1px solid var(--border); border-bottom-left-radius: 5px; align-self: flex-start; }
.sm-msg.user { background: var(--grad); color: #05130b; font-weight: 500; border-bottom-right-radius: 5px; align-self: flex-end; }
.sm-typing { display: inline-flex; gap: 5px; padding: 14px 16px; align-self: flex-start;
  background: rgba(255,255,255,0.055); border: 1px solid var(--border); border-radius: 15px; border-bottom-left-radius: 5px; }
.sm-typing i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent-bright);
  animation: sm-bounce 1.2s ease-in-out infinite;
}
.sm-typing i:nth-child(2) { animation-delay: 0.15s; }
.sm-typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes sm-bounce { 0%, 60%, 100% { transform: translateY(0); opacity: 0.5; } 30% { transform: translateY(-5px); opacity: 1; } }
.sm-chips { display: flex; flex-wrap: wrap; gap: 8px; animation: msg-in 0.4s var(--ease); }
.sm-chip {
  font-family: var(--font-body); font-size: 13px; font-weight: 500; color: var(--accent-bright);
  background: var(--accent-soft); border: 1px solid rgba(58, 223, 133, 0.35);
  padding: 8px 14px; border-radius: 100px; cursor: pointer; transition: all 0.25s var(--ease);
}
.sm-chip:hover { background: var(--grad); color: #06130c; transform: translateY(-2px); }
.sm-chat-inputrow {
  flex-shrink: 0; display: flex; gap: 10px; padding: 12px 14px;
  border-top: 1px solid var(--border); background: rgba(255, 255, 255, 0.02);
}
.sm-chat-inputrow input {
  flex: 1; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--border-strong);
  border-radius: 100px; padding: 11px 17px; color: var(--text);
  font-family: var(--font-body); font-size: 14px; outline: none; transition: border-color 0.3s;
}
.sm-chat-inputrow input:focus { border-color: var(--accent-bright); }
.sm-chat-inputrow button {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 50%; border: none; cursor: pointer;
  background: var(--grad); color: #06130c; display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s var(--ease);
}
.sm-chat-inputrow button:hover { transform: scale(1.08); }
@media (max-width: 480px) {
  .sm-chat { right: 16px; bottom: 88px; }
  .sm-chat-launcher { right: 16px; bottom: 16px; width: 56px; height: 56px; }
}

/* notification dot on launcher */
.sm-chat-launcher .sm-dot {
  position: absolute; top: 2px; right: 2px; width: 13px; height: 13px;
  background: #ff5f57; border: 2px solid var(--bg); border-radius: 50%;
}

/* proactive teaser bubble */
.sm-teaser {
  position: fixed; right: 96px; bottom: 32px; z-index: 1499;
  background: var(--surface-solid); border: 1px solid var(--border-strong);
  border-radius: 16px; border-bottom-right-radius: 5px;
  padding: 13px 38px 13px 17px; font-size: 14px; color: var(--text);
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.8), 0 0 40px -20px rgba(50, 173, 106, 0.4);
  max-width: 240px; cursor: pointer;
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.sm-teaser.show { opacity: 1; transform: none; pointer-events: auto; }
.sm-teaser .sm-teaser-x {
  position: absolute; top: 6px; right: 8px; background: none; border: none;
  color: var(--text-dim); font-size: 15px; cursor: pointer; padding: 4px; line-height: 1;
}
.sm-teaser .sm-teaser-x:hover { color: var(--text); }
@media (max-width: 480px) { .sm-teaser { right: 82px; bottom: 24px; } }

/* links inside bot messages */
.sm-msg.bot a { color: var(--accent-bright); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   WEBDESIGN-SEITE
   ============================================================ */
.wd-hero {
  position: relative; height: 100svh; min-height: 560px;
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse 70% 55% at 50% 42%, rgba(50, 173, 106, 0.10), transparent 65%), var(--bg);
}
#wd-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.wd-hero-content {
  position: relative; z-index: 2; text-align: center;
  padding-bottom: clamp(48px, 9vh, 100px); max-width: 780px; margin-inline: auto;
  pointer-events: none;
}
.wd-hero-content .eyebrow, .wd-hero-content .btn { pointer-events: auto; }
.wd-hero-content h1 {
  font-size: clamp(34px, 5vw, 56px); font-weight: 700;
  letter-spacing: -0.03em; margin-bottom: 4px;
}
.wd-hero-content p {
  color: #c3cdc6; font-size: clamp(16px, 1.9vw, 19px); margin: 14px auto 30px; max-width: 620px;
}
.wd-hint {
  position: absolute; top: calc(var(--nav-h) + 18px); left: 50%; transform: translateX(-50%);
  z-index: 2; font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-dim); pointer-events: none; animation: wd-hint 3s ease-in-out infinite;
}
@keyframes wd-hint { 0%, 100% { opacity: 0.45; } 50% { opacity: 1; } }

/* Browser-Mockup */
.wd-mock-wrap { perspective: 1200px; max-width: 860px; margin-inline: auto; }
.browser-mock {
  background: var(--surface-solid); border: 1px solid var(--border-strong);
  border-radius: 18px; overflow: hidden; transform-style: preserve-3d;
  box-shadow: 0 50px 100px -40px rgba(0, 0, 0, 0.85), 0 0 80px -30px rgba(50, 173, 106, 0.3);
  transition: transform 0.15s ease-out, box-shadow 0.4s var(--ease);
  will-change: transform;
}
.bm-bar {
  display: flex; align-items: center; gap: 8px; padding: 13px 16px;
  background: rgba(255, 255, 255, 0.03); border-bottom: 1px solid var(--border);
}
.bm-bar i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.bm-bar i:nth-child(1) { background: #ff5f57; }
.bm-bar i:nth-child(2) { background: #febc2e; }
.bm-bar i:nth-child(3) { background: #28c840; }
.bm-url {
  flex: 1; margin-left: 10px; padding: 7px 16px; border-radius: 100px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border);
  font-size: 12.5px; color: var(--text-muted); display: flex; align-items: center; gap: 7px;
}
.bm-url svg { color: var(--accent-bright); flex-shrink: 0; }
.bm-body { padding: 26px; display: flex; flex-direction: column; gap: 18px; }
.bm-nav { display: flex; align-items: center; gap: 10px; }
.bm-logo { width: 30px; height: 30px; border-radius: 9px; background: var(--grad); animation: bm-pulse 3s ease-in-out infinite; }
.bm-navline { height: 8px; border-radius: 4px; background: rgba(255, 255, 255, 0.1); }
.bm-hero {
  border-radius: 14px; padding: 30px 26px;
  background: linear-gradient(120deg, rgba(50, 173, 106, 0.22), rgba(18, 23, 19, 0.6) 60%);
  border: 1px solid rgba(58, 223, 133, 0.25);
  position: relative; overflow: hidden;
}
.bm-hero::after {
  content: ""; position: absolute; top: 0; left: -60%; width: 45%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.09), transparent);
  animation: bm-shine 3.4s ease-in-out infinite;
}
@keyframes bm-shine { 0% { left: -60%; } 55%, 100% { left: 120%; } }
.bm-h1 { height: 15px; width: 62%; border-radius: 7px; background: rgba(255, 255, 255, 0.35); margin-bottom: 11px; }
.bm-h2 { height: 9px; width: 44%; border-radius: 5px; background: rgba(255, 255, 255, 0.16); margin-bottom: 18px; }
.bm-btn { height: 26px; width: 110px; border-radius: 100px; background: var(--grad); animation: bm-pulse 2.6s ease-in-out infinite; }
@keyframes bm-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(58, 223, 133, 0.5); } 50% { box-shadow: 0 0 0 9px rgba(58, 223, 133, 0); } }
.bm-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.bm-card {
  border-radius: 12px; padding: 16px 14px; background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border); animation: bm-float 4s ease-in-out infinite;
}
.bm-card:nth-child(2) { animation-delay: 0.6s; }
.bm-card:nth-child(3) { animation-delay: 1.2s; }
@keyframes bm-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.bm-ic { width: 26px; height: 26px; border-radius: 8px; background: var(--accent-soft); border: 1px solid rgba(58, 223, 133, 0.3); margin-bottom: 10px; }
.bm-l1 { height: 8px; width: 80%; border-radius: 4px; background: rgba(255, 255, 255, 0.14); margin-bottom: 7px; }
.bm-l2 { height: 6px; width: 55%; border-radius: 3px; background: rgba(255, 255, 255, 0.08); }

/* Preis auf Anfrage */
.wd-price-card {
  max-width: 640px; margin-inline: auto; text-align: center;
  background: linear-gradient(180deg, rgba(50, 173, 106, 0.07), rgba(18, 23, 19, 0.7) 55%);
  border: 1px solid var(--border-strong); border-radius: 24px;
  padding: clamp(40px, 6vw, 64px) clamp(26px, 5vw, 56px);
}
.wd-price-card h3 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 14px; }
.wd-price-card .price-tag {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(30px, 4.4vw, 44px); letter-spacing: -0.02em;
  color: var(--accent-bright);
  display: block; margin: 6px 0 18px;
}
.wd-price-card p { color: var(--text-muted); max-width: 460px; margin: 0 auto 30px; }

@media (max-width: 720px) {
  .bm-cards { grid-template-columns: 1fr; }
  .bm-card:nth-child(3) { display: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: repeat(3, 1fr); }
  .targets-grid { grid-template-columns: repeat(4, 1fr); }
  .content-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .burger { display: flex; }
  .ki-grid, .why-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .price-card.featured { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .targets-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 620px) {
  body { font-size: 15.5px; }
  .pillars { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .services-grid { grid-template-columns: 1fr; }
  .targets-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .content-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .why-checks { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-actions .btn { width: 100%; max-width: 340px; }
  .nav-logo img { height: 34px; }
  .nav.scrolled .nav-logo img { height: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* CTA steckt mobil im Burger-Menü */
  .nav-cta .btn { display: none; }

  /* kürzere Reveals */
  html.js .reveal { transform: translateY(18px); transition-duration: 0.65s; }
  html.js .reveal-scale { transform: scale(0.98); transition-duration: 0.65s; }
  html.js [data-stagger] > * { transform: translateY(14px); transition-duration: 0.55s; }

  .hero { padding-top: calc(var(--nav-h) + 32px); }
  .hero h1 { font-size: clamp(34px, 11vw, 44px); }
  .hero-stats { margin-top: 36px; gap: 20px 28px; padding-top: 22px; }
  .hero-aurora i { filter: blur(70px); }
  .hero-aurora i:nth-child(3) { display: none; }

  /* kein Hover-Tilt auf Touch */
  .service-card:hover, .price-card:hover, .target-card:hover, .pillar:hover { transform: none; }

  section { padding: 64px 0; }
  .section-head { margin-bottom: 36px; }

  .wd-hint { font-size: 10.5px; top: calc(var(--nav-h) + 8px); }
  .wd-hero-content { padding-bottom: 36px; }

  .four-oh-four { animation: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal, .reveal-scale, [data-stagger] > * { opacity: 1; transform: none; }
  .hero-aurora i, .marquee-track { animation: none !important; }
}
