@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #05070d;
  --panel: rgba(255, 255, 255, .06);
  --panel2: rgba(255, 255, 255, .08);
  --border: rgba(255, 255, 255, .14);
  --text: rgba(255, 255, 255, .92);
  --muted: rgba(255, 255, 255, .65);
  --blue: #2a7bff;
  --blue2: #0a4fd8;
  --shadow: 0 18px 60px rgba(0, 0, 0, .55);
  --radius: 18px;
  --focus-ring: 0 0 0 3px #2a7bff, 0 0 0 5px rgba(255, 255, 255, 0.8);
}

/* =========================
   Base & Reset
   ========================= */
* { box-sizing: border-box; }

html, body { height: 100%; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Anker-Links springen nicht unter den Viewport-Rand */
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent; /* Entfernt grauen Touch-Kasten auf iOS */
}

body.noScroll { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; } /* height: auto verhindert Verzerrungen bei width-Attributen */

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

/* =========================
   Accessibility (WCAG)
   ========================= */
/* Skip-Link für Screenreader und Tastaturnutzer */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.sr-only:focus-visible {
  position: fixed;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  padding: 12px 24px;
  background: var(--blue);
  color: #fff;
  z-index: 9999;
  border-radius: 8px;
  clip: auto;
  font-weight: bold;
  box-shadow: var(--shadow);
}

/* Universeller Fokus-Status nur für Tastatur (nicht bei Mausklick) */
*:focus:not(:focus-visible) {
  outline: none;
}
*:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring) !important;
  border-radius: 4px;
}

/* =========================
   Background Effects
   ========================= */
.bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none; /* Blockiert keine Klicks */
}

.bg__glow {
  position: absolute; width: 900px; height: 900px; filter: blur(60px);
  opacity: .55; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(46,120,255,.55), transparent 55%),
              radial-gradient(circle at 70% 70%, rgba(90,40,255,.35), transparent 55%);
  will-change: transform; /* Hint für die GPU */
}
.bg__glow--a { left: -260px; top: -260px; }
.bg__glow--b { right: -320px; top: 120px; opacity: .45; }
.bg__glow--c { left: 180px; bottom: -420px; opacity: .38; }

.bg__noise {
  position: absolute; inset: -20%;
  opacity: .10;
  transform: rotate(2deg) translate3d(0,0,0);
}

/* =========================
   UI Components
   ========================= */
.glass {
  background: linear-gradient(180deg, var(--panel2), var(--panel));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  min-height: 44px; /* WCAG Touch Target Size */
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  border-color: rgba(40,120,255,.55);
  background: linear-gradient(180deg, rgba(40,120,255,.95), rgba(10,79,216,.9));
}
.btn--ghost { background: rgba(255,255,255,.04); }

.link {
  background: linear-gradient(90deg, #70b8ff, #2a7bff);
  -webkit-background-clip: text;
  color: transparent;
  text-decoration: underline;
  text-decoration-color: rgba(112,184,255,.35);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}
.link:hover { text-decoration-color: var(--blue); }

.accent {
  background: linear-gradient(90deg, #70b8ff, #2a7bff);
  -webkit-background-clip: text;
  color: transparent;
}

/* =========================
   Header & Navigation
   ========================= */
.topbar { padding: 16px 0 0; position: relative; z-index: 60; }
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
}

.topbar__actions { display: flex; align-items: center; gap: 10px; }
.brand__logo { width: 150px; height: 50px; object-fit: contain; }

.lang {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; min-width: 44px; padding: 0 14px; /* WCAG Touch Target */
  border-radius: 14px; border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04); color: rgba(255,255,255,.85);
  font-weight: 700; transition: background 0.2s ease;
}
.lang:hover { background: rgba(255,255,255,.07); }

.nav { display: flex; gap: 22px; align-items: center; }
.nav__link {
  position: relative; font-weight: 500;
  color: rgba(255,255,255,.78); padding: 10px 10px;
  transition: color 0.2s ease;
}
.nav__link:hover { color: rgba(255,255,255,.95); }
.nav__link.is-active { color: rgba(255,255,255,.95); }
.nav__link.is-active::after {
  content: ""; position: absolute; left: 10px; right: 10px; bottom: 2px;
  height: 3px; border-radius: 6px;
  background: linear-gradient(90deg, rgba(40,120,255,1), rgba(40,120,255,.2));
}

.burger {
  width: 44px; height: 44px; /* WCAG Touch Target */
  border: 1px solid var(--border); border-radius: 14px;
  background: rgba(255,255,255,.03); cursor: pointer;
  display: none; padding: 0;
}
.burger span {
  display: block; height: 2px; margin: 6px 10px;
  background: rgba(255,255,255,.85);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobileNav {
  position: absolute; left: 50%; transform: translate3d(-50%, 0, 0); /* GPU Accelerated */
  top: 78px; width: min(1120px, calc(100% - 48px)); padding: 10px; z-index: 50;
}
.mobileNav__link {
  display: block; padding: 14px; /* Größeres Touch Target */
  border-radius: 14px; color: rgba(255,255,255,.85);
  transition: background 0.2s ease;
}
.mobileNav__link:hover { background: rgba(255,255,255,.06); }

.backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  backdrop-filter: blur(2px); z-index: 40;
}

/* =========================
   Hero Section
   ========================= */
.hero { padding: 54px 0 28px; }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: center; }

.h1 {
  margin: 0 0 12px; font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05; letter-spacing: -.02em;
}
.lead { margin: 0 0 22px; color: var(--muted); font-size: 16px; line-height: 1.6; max-width: 52ch; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero__visual--plain { background: transparent; border: 0; box-shadow: none; backdrop-filter: none; padding: 0; overflow: visible; }
.hero__img {
  width: min(420px, 100%);
  filter: drop-shadow(0 22px 50px rgba(0,0,0,.55));
  position: relative;
  z-index: 2;
}

/* Floating Icons - GPU optimiert */
.floatIcon {
  position: absolute;
  width: 44px;
  height: 44px;
  opacity: .95;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.55));
  animation: floatSoft 6s ease-in-out infinite;
  will-change: transform;
  z-index: 3;
  pointer-events: none;
}

/* Floating Icons - GPU optimiert */
.floatIcon {
  position: absolute; width: 44px; height: 44px; opacity: .95;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.55));
  animation: floatSoft 6s ease-in-out infinite;
  will-change: transform;
}

@keyframes floatSoft {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}
.floatIcon--wp { right: 20px; top: 40px; }
.floatIcon--drupal { right: 120px; bottom: 60px; animation-delay: 1.2s; }
.floatIcon--shop { left: 60px; top: 80px; animation-delay: 2.4s; }
.floatIcon--typo3 { right: 95px; bottom: 150px; animation-delay: 2.4s; }
.floatIcon--woo { left: 60px; bottom: 40px; animation-delay: 2.4s; }
.floatIcon--magento { left: 60px; bottom: 180px; animation-delay: 2.4s; }
.floatIcon--joomla { right: 40px; top: 130px; }

/* =========================
   Sections & Grids
   ========================= */
.features { padding: 22px 0 10px; }
.features__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.card { padding: 18px; }

.refs { padding: 28px 0; }
.refs__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.refCard { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 10; }

.cta { padding: 10px 0 40px; }
.badges { display: flex; gap: 12px; flex-wrap: wrap; justify-content: space-between; }
.featureList { margin: 14px 0 0; padding-left: 18px; color: var(--muted); line-height: 1.7; }
.featureList li { margin-bottom: 6px; }

/* Agency section */
.agency { padding: 80px 0; text-align: center; }
.agency__intro { max-width: 900px; margin: 0 auto 60px; }
.agency__title { font-size: clamp(28px, 4vw, 40px); margin-bottom: 12px; }
.agency__subtitle { font-size: 20px; color: var(--muted); margin-bottom: 20px; font-weight: 500; }
.agency__text { color: var(--muted); line-height: 1.7; }

/* Problem Solution Grid */
.problemGrid { display: grid; grid-template-columns: 1fr 60px 1fr; gap: 28px 18px; align-items: center; }
.problemCard {
  padding: 26px; border-radius: 18px; text-align: left;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.05);
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
}
.problemLabel { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }
.problemCard h4 { margin: 10px 0; font-size: 20px; }
.problemCard p { color: var(--muted); line-height: 1.6; }
.problemCard--problem { border-color: rgba(255,80,80,.25); }
.problemCard--solution { border-color: rgba(42,123,255,.35); }

.problemArrow { height: 2px; background: linear-gradient(90deg, transparent, #2a7bff, transparent); position: relative; }
.problemArrow::after {
  content: ""; position: absolute; right: -2px; top: -4px;
  border-left: 8px solid #2a7bff; border-top: 6px solid transparent; border-bottom: 6px solid transparent;
}

/* Wide CTA */
.ctaWide { position: relative; padding: 120px 0; text-align: center; overflow: hidden; }
.ctaWide__inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }
.ctaWide__title { margin: 0 0 14px; font-size: clamp(26px, 3.8vw, 44px); letter-spacing: -.02em; }
.ctaWide__sub { margin: 0 auto 28px; max-width: 760px; color: var(--muted); line-height: 1.7; font-size: 16px; }

.ctaWide__btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  padding: 18px 34px; border-radius: 18px; color: rgba(255,255,255,.96);
  font-weight: 800; font-size: 18px; border: 1px solid rgba(100,170,255,.35);
  background: linear-gradient(180deg, rgba(42,123,255,.95), rgba(10,79,216,.92));
  box-shadow: 0 18px 55px rgba(20,90,255,.35), 0 0 0 1px rgba(120,190,255,.12) inset;
  transition: transform .15s ease, box-shadow .15s ease;
  will-change: transform;
}
.ctaWide__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 70px rgba(20,90,255,.45), 0 0 0 1px rgba(150,210,255,.18) inset;
}
.ctaWide__btn:active { transform: translateY(-1px); }
.ctaWide__arrow { font-size: 26px; line-height: 1; transform: translateY(1px); opacity: .95; }
.ctaWide__glow {
  position: absolute; inset: -40% -20%; z-index: 1;
  background: radial-gradient(circle at 50% 55%, rgba(42,123,255,.22), rgba(90,40,255,.12), transparent 62%);
  filter: blur(18px); pointer-events: none;
}

/* =========================
   Reference Showcase (Desktop)
   ========================= */
.refShowcaseDesk { margin-top: 18px; }
.refShowcaseGrid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 34px; padding: 26px; align-items: center; }

.refMeta { padding: 10px 6px; }
.refLogo { width: 240px; height: auto; margin-bottom: 14px; opacity: .98; }
.refMeta__badges { display: flex; gap: 10px; flex-wrap: wrap; margin: 10px 0 18px; }
.refBadge {
  display: inline-flex; align-items: center; height: 34px; padding: 0 12px;
  border-radius: 14px; border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04); color: rgba(255,255,255,.85); font-weight: 700; font-size: 13px;
}
.refRating { display: flex; align-items: center; gap: 12px; margin: 6px 0 18px; }
.refStars span {
  font-size: 18px; line-height: 1;
  background: linear-gradient(90deg, #70b8ff, #2a7bff);
  -webkit-background-clip: text; color: transparent; margin-right: 2px;
}
.refRating__text strong { font-size: 18px; }
.refRating__text .muted { display: block; font-size: 13px; margin-top: 2px; color: var(--muted); }
.refQuote {
  margin: 0 0 18px; padding: 18px; border-radius: 16px; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10); color: rgba(255,255,255,.86); line-height: 1.65;
}
.refQuote footer { margin-top: 12px; font-weight: 700; color: rgba(255,255,255,.92); }
.refMeta__ctaRow { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 14px; }

.refVisual { position: relative; min-height: 520px; display: flex; align-items: center; justify-content: center; }
.refStage {
  position: relative; width: min(700px, 100%); height: 540px;
  transform: perspective(1200px) rotateY(-18deg) rotateX(9deg) rotateZ(-2deg) translate3d(0, 4px, 0);
  transform-origin: 55% 45%; filter: drop-shadow(0 30px 90px rgba(0,0,0,.60));
  will-change: transform;
}
.refStage::after {
  content: ""; position: absolute; left: 8%; right: 8%; bottom: 12px; height: 18px;
  background: radial-gradient(closest-side, rgba(0,0,0,.55), rgba(0,0,0,0));
  transform: translateZ(-1px); pointer-events: none; opacity: .9;
}

.refMetaSlide { display: none; }
.refMetaSlide.isActive { display: block; animation: fadeIn 0.5s ease forwards; }

.refVisualSlide, .refDevice {
  position: absolute; inset: 0; opacity: 0;
  transform: translate3d(0, 12px, 0) scale(.985);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
  pointer-events: none;
}
.refVisualSlide.isActive, .refDevice.isActive {
  opacity: 1; transform: translate3d(0, 0, 0) scale(1); pointer-events: auto;
}

.refViewport {
  position: absolute; inset: 26px; overflow: hidden; border-radius: 22px;
  background: rgba(255,255,255,.028); border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 60px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.refDevice--desktop .refViewport { inset: 32px 22px 42px 22px; border-radius: 22px; }
.refDevice--mobile .refViewport { width: 280px; height: 460px; inset: auto 38px 20px auto; border-radius: 34px; }
.refScrollImg { width: 100%; height: auto; will-change: transform; transform: translate3d(0,0,0); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* =========================
   Contact Form
   ========================= */
.contact { padding: 60px 0 80px; }
.contact__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 18px; align-items: stretch; }
.contact__info, .contact__form { padding: 26px; display: flex; flex-direction: column; height: 100%; }
.contact__head { margin-bottom: 16px; }

.contact__list { display: flex; flex-direction: column; gap: 12px; margin: 14px 0 auto; }
.contactRow {
  display: flex; gap: 12px; align-items: center; padding: 14px;
  border-radius: 16px; border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.contactRow:hover { transform: translateY(-1px); background: rgba(255,255,255,.05); border-color: rgba(120,190,255,.22); }
.contactIcon {
  width: 40px; height: 40px; border-radius: 14px; border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03); display: grid; place-items: center;
  color: rgba(160,210,255,.95); box-shadow: 0 16px 40px rgba(0,0,0,.35); flex: 0 0 auto;
}
.contactIcon svg { width: 20px; height: 20px; }
.contactText { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.contactLabel { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.contactValue { font-weight: 700; color: rgba(255,255,255,.92); overflow: hidden; text-overflow: ellipsis; }

.contact__promise {
  display: flex; align-items: center; gap: 12px; padding: 16px; border-radius: 16px;
  border: 1px solid rgba(42,123,255,.25);
  background: radial-gradient(circle at 20% 30%, rgba(42,123,255,.16), rgba(255,255,255,.03));
  margin-top: 24px;
}
.promiseDot {
  width: 10px; height: 10px; border-radius: 999px; background: #2a7bff;
  box-shadow: 0 0 0 6px rgba(42,123,255,.16); flex: 0 0 auto;
}

.contact__formTitle { margin: 0 0 6px; font-size: 22px; }
.contact__formLead { margin: 0 0 24px; color: var(--muted); }
.formGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13px; color: rgba(255,255,255,.78); font-weight: 600; }

/* Form Inputs (WCAG Contrast & Focus) */
.field input, .field textarea {
  width: 100%; border-radius: 14px; border: 1px solid rgba(255,255,255,.2); /* Erhöhter Kontrast für WCAG */
  background: rgba(255,255,255,.03); color: rgba(255,255,255,.92);
  padding: 12px 14px; outline: none;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
  font-family: inherit; font-size: 16px; /* 16px verhindert Auto-Zoom auf iOS Safari */
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field textarea:focus {
  border-color: rgba(42,123,255,.8); box-shadow: 0 0 0 4px rgba(42,123,255,.25);
  background: rgba(255,255,255,.06);
}

.check { display: flex; align-items: flex-start; gap: 10px; padding: 4px 0; cursor: pointer; color: rgba(255,255,255,.78); line-height: 1.5; font-size: 14px; }
.check input { width: 18px; height: 18px; margin-top: 2px; cursor: pointer; accent-color: var(--blue); } /* native checkbox styling */
.formActions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 8px; }
.formHint { font-size: 14px; color: var(--muted); }

/* =========================
   Footer
   ========================= */
.footerNeo { position: relative; padding: 90px 0 40px; overflow: hidden; }
.footerNeo__fx {
  position: absolute; inset: -30% -15%; pointer-events: none;
  background: radial-gradient(circle at 50% 46%, rgba(120,190,255,.22), transparent 55%),
              radial-gradient(circle at 50% 70%, rgba(42,123,255,.14), transparent 58%);
  filter: blur(22px); opacity: .95; will-change: transform;
}
.footerNeo__wrap { position: relative; z-index: 2; }
.footerNeo__wrap::before {
  content: ""; position: absolute; left: 0; right: 0; top: -36px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(160,220,255,.20), rgba(120,210,255,.85), rgba(160,220,255,.20), transparent);
  box-shadow: 0 0 26px rgba(110,200,255,.55); opacity: .95;
}

.footerNeo__grid { display: grid; grid-template-columns: 1.1fr 1px 1.2fr 1px 1.7fr; gap: 34px; align-items: start; }
.footerNeo__divider {
  width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.12), transparent); opacity: .9;
}
.footerNeo__logo { width: 210px; height: auto; opacity: .98; }
.footerNeo__tagline { margin: 14px 0 0; color: rgba(255,255,255,.68); line-height: 1.6; font-size: 16px; }

.footerNeo__metaRow { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.footerNeo__icon { width: 22px; height: 22px; opacity: .95; transform: translateY(3px); filter: drop-shadow(0 10px 18px rgba(0,0,0,.55)); }
.footerNeo__metaText { color: rgba(255,255,255,.78); line-height: 1.6; }
.footerNeo__metaText strong { color: rgba(255,255,255,.92); }

.footerNeo__linksGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.footerNeo__heading { margin: 4px 0 14px; color: rgba(255,255,255,.9); font-weight: 600; letter-spacing: .02em; }
.footerNeo__links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footerNeo__links a {
  color: rgba(255,255,255,.70); padding: 4px 0; /* Touch Target padding */
  transition: color .15s ease, transform .15s ease; display: inline-flex;
}
.footerNeo__links a:hover { color: rgba(170,225,255,.92); transform: translateX(2px); }

.footerNeo__bottom { margin-top: 48px; text-align: center; position: relative; }
.footerNeo__line--bottom {
  height: 1px; width: min(880px, 100%); margin: 0 auto 14px;
  background: linear-gradient(90deg, transparent, rgba(160,220,255,.18), rgba(120,210,255,.65), rgba(160,220,255,.18), transparent);
  box-shadow: 0 0 22px rgba(110,200,255,.45); opacity: .9;
}
.footerNeo__copy { margin: 0; font-size: 14px; color: rgba(255,255,255,.62); }

/* =========================
   FAQ
   ========================= */
.faqList { display: flex; flex-direction: column; gap: 12px; margin-top: 40px; }
.faqItem { padding: 0; border-radius: var(--radius); overflow: hidden; background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,0.05); }
.faqQuestion {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 26px; font-size: 17px; font-weight: 600; color: var(--text);
  cursor: pointer; list-style: none; user-select: none; transition: background .15s ease;
}
.faqQuestion::-webkit-details-marker { display: none; }
.faqQuestion::marker { display: none; }
.faqQuestion::after {
  content: ""; flex-shrink: 0; width: 20px; height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6' stroke='rgba(255,255,255,.65)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-size: contain; transition: transform .25s ease;
}
.faqItem[open] > .faqQuestion::after { transform: rotate(180deg); }
.faqItem[open] > .faqQuestion { color: #fff; border-bottom: 1px solid var(--border); }
.faqItem:not([open]) > .faqQuestion:hover { background: rgba(255,255,255,.06); }
.faqAnswer { padding: 22px 26px; color: var(--muted); line-height: 1.75; font-size: 15.5px; }
.faqAnswer p { margin: 0; }

/* =========================
   Reviews & Badges
   ========================= */
.trustBadge {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 22px; padding: 10px 16px;
  border-radius: 14px; border: 1px solid var(--border); background: rgba(255,255,255,.04);
  color: var(--text); text-decoration: none; transition: background .15s ease; width: fit-content;
}
.trustBadge:hover { background: rgba(255,255,255,.07); }
.trustBadge--center { margin: 28px auto 0; display: flex; justify-content: center; }
.trustBadge__logo { flex-shrink: 0; }
.trustBadge__stars { color: #fbbc04; font-size: 16px; letter-spacing: 1px; }
.trustBadge__text { font-size: 14px; color: rgba(255,255,255,.80); }
.trustBadge__text strong { color: var(--text); }

.reviewGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.reviewCard { padding: 22px 24px; display: flex; flex-direction: column; gap: 12px; }
.reviewStars { color: #fbbc04; font-size: 17px; letter-spacing: 2px; }
.reviewText { margin: 0; padding: 0; border: none; font-size: 15px; line-height: 1.7; color: var(--muted); font-style: normal; }
.reviewAuthor { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border); font-size: 13px; font-weight: 600; color: rgba(255,255,255,.9); }
.reviewFooter { display: flex; justify-content: center; margin-top: 28px; }

/* =========================
   Media Queries & Responsiveness
   ========================= */
@media (min-width: 921px) {
  .mobileNav { display: none !important; }
  .backdrop { display: none !important; }
  .refShowcaseFallback { display: none; }
}

@media (max-width: 980px) {
  .footerNeo { padding: 70px 0 36px; }
  .footerNeo__grid { grid-template-columns: 1fr; gap: 26px; }
  .footerNeo__divider { display: none; }
  .footerNeo__linksGrid { grid-template-columns: 1fr; gap: 18px; }
  .footerNeo__wrap::before { top: -28px; }
}

@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; }
  .refs__grid { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr; }
  .nav { display: none; }
  .burger { display: inline-block; }
  .badges { justify-content: center; }
  .problemGrid { grid-template-columns: 1fr; }
  .problemArrow { display: none; }
  .agency { padding: 60px 0; }
  .ctaWide { padding: 90px 0; }
  .ctaWide__btn { padding: 16px 26px; font-size: 16px; border-radius: 16px; }
  .refShowcaseDesk { display: none; }
  .refShowcaseFallback { display: block; }
  .contact { padding: 40px 0 60px; }
  .contact__grid { grid-template-columns: 1fr; }
  .formGrid { grid-template-columns: 1fr; }
  .contact__info, .contact__form { height: auto; }
}

@media (max-width: 900px) {
  .reviewGrid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .faqQuestion { padding: 18px 20px; font-size: 15.5px; }
  .faqAnswer { padding: 0 20px 18px; font-size: 15px; }
}

@media (max-width: 600px) {
  .reviewGrid { grid-template-columns: 1fr; }
}

/* =========================
   WCAG Reduced Motion (WICHTIG!)
   ========================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .refStage { transform: perspective(1200px) rotateY(-6deg) rotateX(2deg) rotateZ(0deg) translate3d(0, 0, 0) !important; filter: none !important; }
  .refVisualSlide, .refDevice { transform: none !important; transition: none !important; }
}

.features {
  padding: 22px 0 10px;
  scroll-margin-top: 110px;
}

.card--service {
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.card--service::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(90, 70, 255, .14), transparent 32%),
    radial-gradient(circle at 84% 74%, rgba(42, 123, 255, .14), transparent 34%);
  opacity: .9;
  pointer-events: none;
}

.card--service:hover {
  transform: translateY(-6px);
  border-color: rgba(120,190,255,.24);
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.05));
  box-shadow: 0 26px 80px rgba(0,0,0,.42);
}

.card--service .card__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card--service .h2 {
  margin-bottom: 10px;
}

.card__titleLink {
  color: rgba(255,255,255,.96);
  transition: color .18s ease, text-shadow .18s ease;
}

.card__titleLink:hover {
  color: #fff;
  text-shadow: 0 0 18px rgba(120,190,255,.18);
}

.card__actions {
  margin-top: auto;
  padding-top: 22px;
}

.card__actions .btn {
  display: inline-flex;
}

@media (max-width: 920px) {
  .card--service:hover {
    transform: none;
  }
}
/* ==========================================================================
   HUB CARDS (Webdesign & E-Commerce Hub)
   ========================================================================== */

/* Grid-Container für die Hub-Sektion */
#loesungen .refs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

/* Die einzelne Karte */
.hubCard {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: var(--radius, 12px);
  background: var(--glass-bg, rgba(255, 255, 255, 0.05));
  border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.1));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  height: 100%;
}

/* Hover-Effekt */
.hubCard:hover {
  transform: translateY(-4px);
  border-color: var(--accent, #007bff);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

/* Logo-Styling innerhalb der Karte */
.hubCard__logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 4px;
}

/* Beschreibungstext */
.hubCard p {
  margin: 0;
  flex: 1; /* Sorgt dafür, dass der CTA immer unten klebt */
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted, #a0a0a0);
}

/* Call-to-Action Link am Ende der Karte */
.hubCard__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--accent, #007bff);
  margin-top: auto;
  padding-top: 12px;
  transition: gap 0.2s ease;
}

.hubCard__cta::after {
  content: '→';
  transition: transform 0.2s ease;
}

.hubCard:hover .hubCard__cta::after {
  transform: translateX(3px);
}

/* Feature-Liste innerhalb der Karte (falls vorhanden) */
.hubCard .featureList {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hubCard .featureList li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.hubCard .featureList li::before {
  content: '✓';
  color: var(--accent);
  font-weight: bold;
}

/* Responsive Anpassung für sehr kleine Bildschirme */
@media (max-width: 480px) {
  #loesungen .refs__grid {
    grid-template-columns: 1fr;
  }
  
  .hubCard {
    padding: 20px;
  }
}

/* Formular-Danke */
.formStatus {
  margin-top: 12px;
  font-size: 0.9rem;
}

.formStatus.isSuccess {
  color: #22c55e;
}

.formStatus.isError {
  color: #ef4444;
}
/* =========================
   Cookie Consent Banner
   ========================= */
.cookieBanner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(120%);
  z-index: 999;
  width: min(760px, calc(100% - 32px));
  padding: 0;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.16);
  background:
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.05));
  box-shadow:
    0 30px 80px rgba(0,0,0,.45),
    0 0 0 1px rgba(255,255,255,.03) inset;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .25s ease;
  opacity: 0;
  overflow: hidden;
}

.cookieBanner.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.cookieBanner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 20px 22px;
  align-items: end;
}

.cookieBanner__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.cookieBanner__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

.cookieBanner__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #2a7bff;
  box-shadow: 0 0 0 6px rgba(42,123,255,.15);
}

.cookieBanner__title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: rgba(255,255,255,.96);
  letter-spacing: -.01em;
}

.cookieBanner__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

.cookieBanner__note {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,.82);
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}

.cookieBanner__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2px;
}

.cookieBanner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookieBanner__btn {
  min-height: 44px;
  min-width: 150px;
  border-radius: 14px;
  white-space: nowrap;
}

.cookieBanner.is-dnt .cookieBanner__actions {
  justify-content: flex-end;
}

@media (max-width: 760px) {
  .cookieBanner {
    width: min(100% - 20px, 100%);
    bottom: 14px;
  }

  .cookieBanner__inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .cookieBanner__actions {
    justify-content: stretch;
  }

  .cookieBanner__btn {
    flex: 1 1 auto;
    min-width: 0;
  }
}