/* ============================================================
   NovaWeb Studio — Styles (flat, Apple-inspiriert)
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-alt: #f5f5f7;
  --bg-dark: #000000;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --faint: #d2d2d7;
  --blue: #0071e3;
  --blue-bright: #0a84ff;
  --purple: #bf5af2;
  --pink: #ff375f;
  --card-shadow: 0 20px 50px -18px rgba(0, 0, 0, 0.14);
  --radius: 24px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: auto; }

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

::selection { background: rgba(0, 113, 227, 0.2); }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

.container { width: min(1180px, 92%); margin: 0 auto; }
.container-narrow { width: min(780px, 92%); }

.section { padding: clamp(90px, 12vh, 160px) 0; position: relative; }

/* ---------- Scroll-Fortschrittsbalken ---------- */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 2.5px;
  background: linear-gradient(90deg, var(--blue-bright), var(--purple), var(--pink));
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 1001;
}

/* ---------- Custom Cursor (invertiert auf hell & dunkel) ---------- */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1002;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-dot { width: 7px; height: 7px; background: #fff; }
.cursor-ring {
  width: 34px; height: 34px;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  transition: width 0.25s ease, height 0.25s ease, background 0.25s ease;
}
.cursor-ring.is-hover {
  width: 56px; height: 56px;
  background: rgba(255, 255, 255, 0.18);
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: padding 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}
.nav.is-scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}
.nav-inner {
  width: min(1180px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo {
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}
.logo span {
  background: linear-gradient(90deg, var(--blue-bright), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-links { display: flex; gap: 34px; margin-left: auto; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.25s ease;
}
.nav-links a:hover { color: var(--text); }

.burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.burger span {
  width: 22px; height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  padding: 15px 32px;
  border-radius: 980px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  will-change: transform;
}
.btn span { position: relative; z-index: 1; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: #0077ed; }
.btn-ghost { background: var(--bg-alt); color: var(--text); }
.btn-ghost:hover { background: #e8e8ed; }
.btn-small { padding: 9px 20px; font-size: 0.88rem; background: var(--blue); color: #fff; }
.btn-small:hover { background: #0077ed; }
.btn-full { width: 100%; }
.btn-big { padding: 20px 48px; font-size: 1.12rem; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 150px 0 110px;
  background: var(--bg);
}
.hero-bg { position: absolute; inset: 0; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  will-change: transform;
}
.blob-1 { width: 620px; height: 620px; top: -18%; left: -10%; background: radial-gradient(circle, rgba(10, 132, 255, 0.16), transparent 65%); }
.blob-2 { width: 540px; height: 540px; bottom: -22%; right: -8%; background: radial-gradient(circle, rgba(191, 90, 242, 0.13), transparent 65%); }
.blob-3 { width: 420px; height: 420px; top: 34%; right: 16%; background: radial-gradient(circle, rgba(255, 55, 95, 0.09), transparent 65%); }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: min(920px, 92%);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--bg-alt);
  padding: 8px 18px;
  border-radius: 980px;
  margin-bottom: 34px;
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #30d158;
  box-shadow: 0 0 0 0 rgba(48, 209, 88, 0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(48, 209, 88, 0.5); }
  70% { box-shadow: 0 0 0 9px rgba(48, 209, 88, 0); }
  100% { box-shadow: 0 0 0 0 rgba(48, 209, 88, 0); }
}
.hero-title {
  font-weight: 800;
  font-size: clamp(2.8rem, 7.4vw, 5.8rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .char { display: inline-block; will-change: transform; }
.hero-title .accent .char {
  background: linear-gradient(100deg, var(--blue-bright) 5%, var(--purple) 55%, var(--pink) 105%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 44px;
  letter-spacing: -0.01em;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Schwebende Karten */
.float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px -16px rgba(0, 0, 0, 0.16);
  will-change: transform;
}
.float-card strong { font-size: 1.08rem; letter-spacing: -0.02em; display: block; }
.float-card small { color: var(--muted); font-size: 0.8rem; }
.fc-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  background: rgba(10, 132, 255, 0.12);
  color: var(--blue-bright);
}
.fc-icon.green { background: rgba(48, 209, 88, 0.14); color: #248a3d; }
.fc-icon.cyan { background: rgba(191, 90, 242, 0.12); color: var(--purple); }
.fc-1 { top: 24%; left: 7%; animation: floaty 6s ease-in-out infinite; }
.fc-2 { top: 58%; right: 6%; animation: floaty 7s ease-in-out 0.8s infinite; }
.fc-3 { bottom: 18%; left: 12%; animation: floaty 8s ease-in-out 1.6s infinite; }
@keyframes floaty {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -16px; }
}

.scroll-indicator {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px; height: 96px;
  z-index: 3;
  opacity: 0.85;
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  background: var(--bg-alt);
  padding: 34px 0;
}
.marquee-track { display: flex; width: max-content; will-change: transform; }
.marquee-content {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
  white-space: nowrap;
}
.marquee-content span {
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  letter-spacing: -0.03em;
  color: var(--faint);
}
.marquee-content span:nth-child(4n + 1) { color: var(--text); }
.marquee-content i { color: var(--blue); font-style: normal; font-size: 1rem; }

/* ---------- Sektionsköpfe ---------- */
.section-head { text-align: center; margin-bottom: clamp(50px, 7vh, 80px); }
.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.section-title {
  font-weight: 800;
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(100deg, var(--blue-bright), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Leistungen ---------- */
.services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  position: relative;
  padding: 40px 34px;
  border-radius: var(--radius);
  background: var(--bg-alt);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.service-card:hover {
  box-shadow: var(--card-shadow);
}
.sc-icon {
  width: 54px; height: 54px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  background: rgba(0, 113, 227, 0.1);
  color: var(--blue);
}
.sc-icon svg { width: 27px; height: 27px; }
.service-card h3 {
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.service-card p { color: var(--muted); font-size: 0.96rem; }
.sc-num {
  position: absolute;
  top: 28px; right: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--faint);
}

/* ---------- Projekte (horizontal) ---------- */
.work { background: var(--bg-alt); overflow: hidden; }
.work-pin {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 0 60px;
}
.work-head { margin-bottom: 54px; }
.work-track {
  display: flex;
  gap: 32px;
  padding-left: max(4vw, calc((100vw - 1180px) / 2));
  padding-right: 8vw;
  width: max-content;
  will-change: transform;
}
.project-card { width: clamp(320px, 42vw, 560px); flex-shrink: 0; }
.pc-visual {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10.5;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
}
.project-card:hover .pc-visual {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 34px 70px -22px rgba(0, 0, 0, 0.25);
}
.pv-1 { background: linear-gradient(150deg, #cfe2ff, #9cc2ff); }
.pv-2 { background: linear-gradient(150deg, #d2f5e6, #9be0c5); }
.pv-3 { background: linear-gradient(150deg, #ffdcec, #ffb3d5); }
.pv-4 { background: linear-gradient(150deg, #e8ddff, #c6adff); }
.pc-browser {
  display: flex;
  gap: 7px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.45);
}
.pc-browser span { width: 10px; height: 10px; border-radius: 50%; background: rgba(0, 0, 0, 0.14); }
.pc-mock { padding: 22px 26px; display: flex; flex-direction: column; gap: 14px; }
.pc-mock > div { border-radius: 8px; }
.pm-nav { height: 14px; width: 55%; background: rgba(255, 255, 255, 0.85); }
.pm-hero { height: 90px; background: rgba(255, 255, 255, 0.6); }
.pm-hero.small { height: 62px; }
.pm-row { display: flex; gap: 12px; }
.pm-row div { flex: 1; height: 44px; border-radius: 8px; background: rgba(255, 255, 255, 0.5); }
.pm-split { display: flex; gap: 12px; height: 100px; }
.pm-split div { flex: 1; border-radius: 8px; background: rgba(255, 255, 255, 0.55); }
.pm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pm-grid div { height: 52px; border-radius: 8px; background: rgba(255, 255, 255, 0.55); }
.pm-bar { height: 16px; width: 40%; background: rgba(255, 255, 255, 0.85); }
.pc-info { padding: 20px 6px 0; }
.pc-info h3 { font-size: 1.22rem; font-weight: 700; letter-spacing: -0.02em; }
.pc-info p { color: var(--muted); font-size: 0.92rem; margin-top: 4px; }

.pc-cta { display: flex; }
.pc-cta-inner {
  flex: 1;
  border-radius: var(--radius);
  border: 1.5px dashed rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  aspect-ratio: 16 / 10.5;
  transition: background 0.35s ease, border-color 0.35s ease;
}
.pc-cta-inner:hover { background: rgba(0, 113, 227, 0.05); border-color: var(--blue); }
.pc-cta-inner h3 { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.02em; }
.pc-cta-arrow {
  font-size: 2rem;
  color: var(--blue);
  transition: transform 0.35s ease;
}
.pc-cta-inner:hover .pc-cta-arrow { transform: translateX(10px); }

/* ---------- Zahlen ---------- */
.stats { background: var(--bg); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-num {
  font-weight: 800;
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  letter-spacing: -0.04em;
  display: block;
  color: var(--text);
}
.stat-label { color: var(--muted); font-size: 0.95rem; }

/* ---------- Prozess ---------- */
.process { background: var(--bg-alt); }
.process-sticky {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 90px 0;
}
.process-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}
.process-left .section-title { margin: 0 0 44px; }
.steps { display: flex; flex-direction: column; gap: 10px; }
.step {
  display: flex;
  gap: 22px;
  padding: 20px 24px;
  border-radius: 18px;
  opacity: 0.35;
  transition: opacity 0.45s ease, background 0.45s ease, box-shadow 0.45s ease, transform 0.45s ease;
}
.step.is-active {
  opacity: 1;
  background: #fff;
  box-shadow: 0 16px 44px -18px rgba(0, 0, 0, 0.14);
  transform: translateX(8px);
}
.step-num {
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue);
  padding-top: 3px;
}
.step h3 { font-size: 1.12rem; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 0.93rem; }

.process-right { position: relative; display: grid; place-items: center; }
.lottie-build {
  width: min(440px, 100%);
  aspect-ratio: 240 / 200;
  position: relative;
  z-index: 2;
}
.lottie-orbit {
  position: absolute;
  inset: -12% -10%;
  z-index: 1;
  opacity: 0.5;
}

/* ---------- Preise ---------- */
.pricing { background: var(--bg); overflow: hidden; }
.parallax-deco {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.deco-1 { width: 420px; height: 420px; top: 6%; left: -12%; background: radial-gradient(circle, rgba(10, 132, 255, 0.1), transparent 65%); }
.deco-2 { width: 360px; height: 360px; bottom: 4%; right: -10%; background: radial-gradient(circle, rgba(191, 90, 242, 0.09), transparent 65%); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  position: relative;
  padding: 44px 36px;
  border-radius: var(--radius);
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.price-card:hover { box-shadow: var(--card-shadow); }
.price-card.featured {
  background: var(--text);
  color: #fff;
  box-shadow: 0 34px 90px -28px rgba(0, 0, 0, 0.45);
}
.price-card.featured .price-desc,
.price-card.featured li,
.price-card.featured .price span { color: rgba(255, 255, 255, 0.65); }
.price-card.featured li { border-bottom-color: rgba(255, 255, 255, 0.12); }
.price-card.featured .btn-ghost { background: rgba(255, 255, 255, 0.14); color: #fff; }
.price-card.featured .btn-ghost:hover { background: rgba(255, 255, 255, 0.22); }
.badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 980px;
  background: var(--blue);
  color: #fff;
}
.price-card h3 { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.price-desc { color: var(--muted); font-size: 0.92rem; margin-bottom: 24px; }
.price {
  font-weight: 800;
  font-size: 2.7rem;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.price span { font-size: 1rem; font-weight: 500; color: var(--muted); margin-right: 6px; }
.price-card ul { list-style: none; margin-bottom: 34px; flex: 1; }
.price-card li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 600;
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--bg-alt); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  padding: 36px 32px;
  border-radius: var(--radius);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 26px;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.testi-card:hover { box-shadow: var(--card-shadow); }
.testi-card p { color: var(--text); font-size: 0.98rem; flex: 1; }
.testi-card footer { display: flex; align-items: center; gap: 14px; }
.testi-card strong { font-size: 0.96rem; font-weight: 700; display: block; }
.testi-card small { color: var(--muted); font-size: 0.82rem; }
.avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.86rem;
  color: #fff;
  flex-shrink: 0;
}
.av-1 { background: var(--blue-bright); }
.av-2 { background: var(--purple); }
.av-3 { background: var(--pink); }

/* ---------- FAQ ---------- */
.faq { background: var(--bg); }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: border-color 0.3s ease;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  padding: 26px 4px;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.015em;
}
.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--blue);
  transition: transform 0.35s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { height: 0; overflow: hidden; }
.faq-a p { padding: 0 4px 26px; color: var(--muted); font-size: 0.97rem; max-width: 640px; }

/* ---------- CTA (dunkle Sektion) ---------- */
.cta {
  position: relative;
  padding: clamp(110px, 16vh, 200px) 0;
  overflow: hidden;
  background: var(--bg-dark);
  color: #f5f5f7;
  text-align: center;
}
.cta-bg { position: absolute; inset: 0; }
.blob-cta-1 { width: 560px; height: 560px; top: -22%; left: 8%; background: radial-gradient(circle, rgba(10, 132, 255, 0.28), transparent 65%); }
.blob-cta-2 { width: 500px; height: 500px; bottom: -28%; right: 5%; background: radial-gradient(circle, rgba(191, 90, 242, 0.22), transparent 65%); }
.cta-inner { position: relative; z-index: 2; }
.cta-title {
  font-weight: 800;
  font-size: clamp(2.3rem, 5.6vw, 4.6rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.cta-title em {
  font-style: normal;
  background: linear-gradient(100deg, var(--blue-bright), var(--purple), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-sub { color: rgba(245, 245, 247, 0.6); font-size: 1.15rem; margin-bottom: 46px; }
.cta-mail { margin-top: 28px; color: rgba(245, 245, 247, 0.55); font-size: 0.95rem; }
.cta-mail a { color: var(--blue-bright); }
.cta-mail a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.footer {
  padding: 44px 0;
  background: var(--bg-alt);
}
.footer-inner { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 26px; margin-left: auto; flex-wrap: wrap; }
.footer-links a { color: var(--muted); font-size: 0.88rem; transition: color 0.25s ease; }
.footer-links a:hover { color: var(--text); }
.footer-copy { width: 100%; color: #86868b; font-size: 0.82rem; margin-top: 8px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .price-card.featured { order: -1; }
  .process-grid { grid-template-columns: 1fr; gap: 50px; }
  .process-right { order: -1; }
  .lottie-build { width: min(340px, 80%); }
  .float-card { display: none; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 44px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.08);
  }
  .nav-links a { font-size: 1.25rem; font-weight: 600; color: var(--text); }
  body.nav-open .nav-links { transform: translateX(0); }
  body.nav-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .burger span:nth-child(2) { opacity: 0; }
  body.nav-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .burger { display: flex; margin-left: auto; z-index: 10; }
  .nav-inner > .btn-small { display: none; }
  .nav-links { z-index: 5; }

  .services-grid, .testi-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }

  /* Horizontale Galerie wird auf Mobile nativ scrollbar */
  .work-pin { min-height: auto; padding: 80px 0 60px; }
  .work-track {
    overflow-x: auto;
    width: auto;
    padding-left: 4vw;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .work-track::-webkit-scrollbar { display: none; }
  .project-card { width: 78vw; }

  .scroll-indicator { display: none; }
  .hero { padding-top: 120px; }
}

/* ---------- Reduzierte Bewegung ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
