/* ============================================================
   HXCOM – Stylesheet
   Schriften: Outfit (Display) + DM Sans (Body)
   Farbschema: Dunkel + Vibrant Orange Akzent
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --bg:           #0B0B0B;
  --bg-2:         #0B0B0B;
  --bg-3:         #0B0B0B;
  --bg-card:      #0B0B0B;
  --light-bg:     #ffffff;
  --light-bg-2:   #ffffff;
  --light-bg-3:   #f8f9fc;
  --light-card:   #ffffff;
  --light-text:   #101321;
  --light-muted:  #5c6475;
  --light-faint:  #8c94a3;
  --light-border: rgba(16, 19, 33, 0.12);
  --accent:       #ff5500;
  --accent-2:     #d95a00;
  --accent-glow:  rgba(255, 85, 0, 0.25);
  --accent-light: rgba(255, 85, 0, 0.1);
  --text:         #ffffff;
  --text-muted:   #f2f2f4;
  --text-faint:   #c9cbd3;
  --border:       rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 85, 0, 0.4);
  --radius:       14px;
  --radius-lg:    22px;
  --shadow:       0 20px 60px rgba(0,0,0,0.5);
  --shadow-light: 0 24px 70px rgba(16, 19, 33, 0.1);
  --shadow-glow:  0 0 40px rgba(255, 85, 0, 0.15);
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-hover-transition: 0.4s ease;
  --nav-link-font-size: 17.2px;
  --nav-height:   76px;
  --bottom-nav-height: 112px;
  --side-nav-width: 288px;
  --container:    1680px;
  --desktop-scale: 1;
  --desktop-zoom: 1;
  --viewport-width: 100vw;
  --viewport-height: 100vh;
  --font-display: 'Outfit', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--bg);
  overflow-x: hidden;
}
html.desktop-auto-scale,
html.desktop-auto-scale body {
  width: var(--viewport-width);
  min-height: var(--viewport-height);
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
a,
button,
[role="button"],
.magnetic,
.faq-question,
.leistung-card,
.vorteil-card,
.ziel-item {
  cursor: none;
}
input, textarea, select {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  cursor: none;
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  min-width: 0;
  position: relative;
  z-index: 3;
}

.site-bg-canvas {
  position: fixed;
  inset: 0;
  width: var(--viewport-width);
  height: var(--viewport-height);
  z-index: 1;
  pointer-events: none;
  opacity: 0.82;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}
body.is-section-gliding *,
body.is-section-gliding *::before,
body.is-section-gliding *::after {
  animation-play-state: paused !important;
}
main,
.footer {
  position: relative;
  z-index: auto;
}
main > section > .container,
.hero-content,
.subhero-inner,
.footer > .container {
  position: relative;
  z-index: 3;
}

/* ---- Custom Cursor ---- */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  box-shadow: none;
  transition: transform 0.14s ease, width 0.2s ease, height 0.2s ease, background 0.2s ease;
  mix-blend-mode: normal;
}
.cursor-follower {
  position: fixed;
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(255,85,0,0.5);
  background: transparent;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  box-shadow: none;
  transition: transform 0.18s ease-out, width 0.22s ease, height 0.22s ease, background 0.2s ease, border-color 0.2s ease;
}
.cursor-follower::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background:
    conic-gradient(
      from 0deg,
      rgba(255,255,255,0) 0deg,
      rgba(255,255,255,0.95) 44deg,
      rgba(255,255,255,0) 94deg,
      rgba(255,255,255,0.72) 178deg,
      rgba(255,255,255,0) 248deg,
      rgba(255,255,255,0) 360deg
    );
  opacity: 0;
  transform: scale(0.88) rotate(0deg);
  transition: opacity 0.18s ease;
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 1.6px), #000 calc(100% - 0.8px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 1.6px), #000 calc(100% - 0.8px));
}
.cursor-hover .cursor {
  width: 12px;
  height: 12px;
  background: var(--accent);
  box-shadow: none;
}
.cursor-hover .cursor-follower {
  width: 18px;
  height: 18px;
  background: var(--accent);
  border-color: transparent;
  box-shadow: none;
  animation: cursorPulse 1.15s ease-in-out infinite;
}
.cursor-hover .cursor-follower::after {
  opacity: 1;
  animation: cursorRingSpinPulse 1.25s linear infinite;
}
.cursor-dark .cursor,
.cursor-dark .cursor-follower {
  background: rgba(11,11,11,0.78);
  box-shadow: none;
}
.cursor-dark .cursor-follower {
  animation-name: cursorPulseDark;
}
@keyframes cursorPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: none;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.22);
    box-shadow: none;
  }
}
@keyframes cursorPulseDark {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: none;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.22);
    box-shadow: none;
  }
}
@keyframes cursorRingSpinPulse {
  0% {
    transform: scale(0.94) rotate(0deg);
    opacity: 0.45;
  }
  45% {
    transform: scale(1.08) rotate(170deg);
    opacity: 1;
  }
  100% {
    transform: scale(0.94) rotate(360deg);
    opacity: 0.45;
  }
}

/* ---- Scroll Progress ---- */
.scroll-progress {
  position: fixed;
  top: auto;
  bottom: calc(var(--bottom-nav-height) - 6px);
  left: 0;
  height: 6px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index: 10001;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 0 18px rgba(255, 85, 0, 0.35);
  transition: none;
}
.scroll-percent {
  position: fixed;
  top: auto;
  right: auto;
  left: 14px;
  bottom: calc(var(--bottom-nav-height) + 8px);
  transform: translate(-50%, 0);
  z-index: 10002;
  min-width: 28px;
  padding: 4px 8px;
  border: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  box-shadow: 0 8px 20px rgba(255,85,0,0.24);
  pointer-events: none;
}
.scroll-section-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 0;
  max-width: min(280px, calc(100vw - 24px));
  border-radius: 999px;
  white-space: nowrap;
}
.scroll-section-count {
  font-variant-numeric: tabular-nums;
  font-weight: 900;
}
.scroll-section-separator {
  color: rgba(255,255,255,0.72);
  font-weight: 900;
}
.scroll-section-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgba(255,255,255,0.9);
  font-weight: 700;
}
.scroll-section-count::after {
  content: none;
}
.scroll-progress::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -90px;
  width: 90px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.32), transparent);
  filter: blur(1px);
  animation: progressWaveX 4.2s ease-in-out infinite;
}
body.mobile-nav-open .scroll-progress,
body.mobile-nav-open .scroll-percent {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@keyframes progressWaveX {
  0% { left: -90px; opacity: 0; }
  20% { opacity: 1; }
  70% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
@keyframes progressWaveY {
  0% { top: -110px; opacity: 0; }
  20% { opacity: 1; }
  70% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: fixed;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  height: var(--bottom-nav-height);
  background: #0B0B0B;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -1px 0 var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: #0B0B0B;
  box-shadow: 0 -1px 0 var(--border);
}
.nav {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}
.nav-logo { flex-shrink: 0; }
.logo-img { height: 40px; width: auto; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
}
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown-head {
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: background var(--nav-hover-transition), border-color var(--nav-hover-transition), box-shadow var(--nav-hover-transition);
}
.nav-link {
  --nav-icon-main: #f8f8fb;
  --nav-icon-light: #ffffff;
  --nav-icon-accent: var(--accent);
  --nav-icon-accent-2: #ff8a2a;
  --nav-icon-soft: #9da3ad;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  line-height: 1.1;
  font-size: var(--nav-link-font-size);
  font-weight: 700;
  color: var(--text-muted);
  padding: 8px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  white-space: nowrap;
  transition: color var(--nav-hover-transition), background var(--nav-hover-transition), border-color var(--nav-hover-transition), box-shadow var(--nav-hover-transition);
  position: relative;
}
.nav-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  pointer-events: none;
}
.nav-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}
.nav-icon svg [fill]:not([fill="none"]) {
  fill: currentColor;
}
.nav-icon svg [stroke]:not([stroke="none"]) {
  stroke: currentColor;
}
.nav-icon svg [fill]:not([fill="none"]),
.nav-icon svg [stroke]:not([stroke="none"]) {
  transition: fill var(--nav-hover-transition), stroke var(--nav-hover-transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: left var(--nav-hover-transition), right var(--nav-hover-transition);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after,
.nav-link.active::after { left: 14px; right: 14px; }
.nav-link:hover,
.nav-link.active {
  --nav-icon-main: #ffffff;
  --nav-icon-light: #fff6ee;
  --nav-icon-accent: #ffffff;
  --nav-icon-accent-2: rgba(255,255,255,0.86);
  --nav-icon-soft: rgba(255,255,255,0.78);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08), rgba(255,255,255,0)),
    linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  border-color: rgba(255, 85, 0, 0.28);
  border-radius: 999px;
  box-shadow: 0 8px 30px rgba(255,85,0,0.34);
}
.nav-link.active { color: #fff; }
.nav-link:hover::after,
.nav-link.active::after {
  display: none;
}
.nav-dropdown-head .nav-link {
  border: 0;
}

.nav-dropdown-toggle {
  width: 30px;
  height: calc(1.1em + 16px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--nav-link-font-size);
  color: var(--text-muted);
  border-radius: 8px;
  transition: color var(--nav-hover-transition), background var(--nav-hover-transition), transform var(--nav-hover-transition);
}
.nav-dropdown-toggle svg {
  width: 20px;
  height: 20px;
}
.nav-dropdown-head:hover .nav-link,
.nav-dropdown-head:hover .nav-dropdown-toggle,
.nav-dropdown.active .nav-link,
.nav-dropdown.active .nav-dropdown-toggle,
.nav-dropdown.open .nav-link,
.nav-dropdown.open .nav-dropdown-toggle {
  color: #fff;
}
.nav-dropdown-head:hover .nav-link,
.nav-dropdown.active .nav-link,
.nav-dropdown.open .nav-link {
  --nav-icon-main: #ffffff;
  --nav-icon-light: #fff6ee;
  --nav-icon-accent: #ffffff;
  --nav-icon-accent-2: rgba(255,255,255,0.86);
  --nav-icon-soft: rgba(255,255,255,0.78);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}
.nav-dropdown-head:hover,
.nav-dropdown.active .nav-dropdown-head,
.nav-dropdown.open .nav-dropdown-head {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08), rgba(255,255,255,0)),
    linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: rgba(255, 85, 0, 0.28);
  box-shadow: 0 8px 30px rgba(255,85,0,0.34);
}
.nav-dropdown.open .nav-dropdown-toggle {
  color: #fff;
}
.nav-dropdown.open .nav-dropdown-toggle {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  border: 0;
  border-radius: var(--radius);
  background: #0B0B0B;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: var(--nav-link-font-size);
  font-weight: 600;
  transition: color var(--nav-hover-transition), background var(--nav-hover-transition), border-color var(--nav-hover-transition);
}
.dropdown-link:hover,
.dropdown-link.active {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08), rgba(255,255,255,0)),
    linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.nav-contact-text {
  font-size: 14.4px;
  color: var(--text-faint);
  max-width: 160px;
  line-height: 1.3;
  display: none;
}
@media (min-width: 1100px) { .nav-contact-text { display: block; } }

.mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  grid-template-columns: 28px 1fr 28px;
  gap: 8px;
  width: 190px;
  min-height: 44px;
  padding: 10px 18px;
  margin-left: auto;
  border: 0;
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(to left, #ff8a2a, var(--accent), #d95a00);
  background-size: 100% auto;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.116);
  font-family: var(--font-display);
  font-size: 18.4px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.12px;
  white-space: nowrap;
  overflow: visible;
  transition: transform 0.02s ease, color 0.18s ease, background 0.18s ease, background-position 0.35s ease, background-size 0.35s ease, box-shadow 0.18s ease;
}
.mobile-nav-toggle-icon {
  width: 26px;
  height: 26px;
  flex-basis: 26px;
  justify-self: start;
}
.mobile-nav-toggle-label {
  min-width: 0;
  justify-self: center;
  text-align: center;
}
.mobile-nav-toggle-arrow {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  justify-self: end;
  color: currentColor;
  transform: rotate(-90deg);
  transition: transform var(--nav-hover-transition);
}
.mobile-nav-toggle-arrow .card-arrow-lottie-icon,
.mobile-nav-toggle-arrow svg {
  width: 100%;
  height: 100%;
  display: block;
}
.mobile-nav-toggle.open .mobile-nav-toggle-arrow {
  transform: rotate(90deg);
}
.mobile-nav-toggle:hover,
.mobile-nav-toggle:focus-visible,
.mobile-nav-toggle.open {
  background: linear-gradient(to left, #ff7a16, #ff4f00, #c94f00);
  background-size: 100% auto;
  color: #ffffff;
  animation: buttonPulse 1.5s infinite;
}
.mobile-nav-toggle:active {
  transform: scale(0.97);
}
.mobile-nav-toggle .mobile-nav-toggle-arrow.card-arrow-icon {
  width: 22px;
  height: 22px;
  flex-basis: 22px;
}
.mobile-nav-contact-list {
  display: none;
}

@media (hover: hover) and (pointer: fine), (min-width: 901px) {
  body {
    background: var(--light-bg);
  }
  .scroll-progress {
    left: 0;
    top: auto;
    bottom: calc(var(--bottom-nav-height) - 6px);
    width: 0%;
    height: 6px;
    max-width: none;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    border-radius: 0;
    transition: none;
  }
  .scroll-percent {
    left: 14px;
    right: auto;
    top: auto;
    bottom: calc(var(--bottom-nav-height) + 8px);
    transform: translate(-50%, 0);
  }
  .scroll-progress::after {
    top: 0;
    bottom: 0;
    left: -90px;
    right: auto;
    width: 90px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.34), transparent);
    animation: progressWaveX 4.6s ease-in-out infinite;
  }
  .header {
    top: auto;
    left: -8px;
    right: -8px;
    bottom: 0;
    width: auto;
    height: var(--bottom-nav-height);
    border-top: 1px solid var(--border);
    border-right: 0;
    box-shadow: 0 -1px 0 var(--border);
  }
  .header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 8px;
    background: #0B0B0B;
    pointer-events: none;
  }
  .nav {
    width: 100%;
    height: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 18px 20px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .nav-logo {
    display: flex;
    flex: 0 0 auto;
    justify-content: center;
    padding: 0;
    border-bottom: 0;
  }
  .logo-img {
    height: 38px;
  }
  .nav-links {
    width: auto;
    flex: 1 1 auto;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0;
    min-width: 0;
  }
  .nav-links > li:not(.nav-dropdown) {
    display: flex;
    width: auto;
    justify-content: center;
  }
  .nav-item,
  .nav-dropdown {
    width: auto;
    flex-direction: row;
    align-items: center;
  }
  .nav-dropdown-head {
    width: auto;
    max-width: 100%;
    margin: 0;
    justify-content: center;
    gap: 2px;
    padding: 0 8px 0 0;
  }
  .nav-link {
    width: auto;
    flex: 0 1 auto;
    display: inline-flex;
    gap: 6px;
    padding: 8px 10px;
    font-size: 15.2px;
    line-height: 1.1;
    text-align: center;
    border: 1px solid transparent;
  }
  .nav-link::after {
    display: none;
  }
  .nav-link:hover,
  .nav-link.active {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background:
      linear-gradient(90deg, rgba(255,255,255,0.08), rgba(255,255,255,0)),
      linear-gradient(135deg, var(--accent), var(--accent-2));
    border-color: rgba(255, 85, 0, 0.28);
    border-radius: 999px;
    box-shadow: 0 8px 30px rgba(255,85,0,0.34);
  }
  .nav-link.active {
    padding: 8px 10px;
    line-height: 1.1;
  }
  .nav-dropdown-head .nav-link {
    width: auto;
    padding: 8px 4px 8px 16px;
  }
  .nav-icon {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }
  .nav-dropdown-head:hover .nav-link,
  .nav-dropdown-head:hover .nav-dropdown-toggle,
  .nav-dropdown.active .nav-link,
  .nav-dropdown.active .nav-dropdown-toggle,
  .nav-dropdown.open .nav-link,
  .nav-dropdown.open .nav-dropdown-toggle {
    color: #fff;
  }
  .nav-dropdown-head:hover .nav-link,
  .nav-dropdown.active .nav-link,
  .nav-dropdown.open .nav-link {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }
  .nav-dropdown-toggle {
    flex: 0 0 28px;
    width: 28px;
    height: calc(1.1em + 16px);
    margin-left: -5px;
  }
  .nav-dropdown-menu {
    position: absolute;
    top: auto;
    bottom: calc(100% + 14px);
    left: 50%;
    width: 306px;
    min-width: 0;
    display: flex;
    margin-top: 0;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translate(-50%, 10px);
    pointer-events: none;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
  }
  .dropdown-link {
    width: 100%;
    text-align: center;
  }
  .nav-cta {
    display: flex;
    margin-left: 6px;
  }
  .nav-contact-text {
    display: none;
    max-width: 170px;
    text-align: center;
  }
  .nav-cta .btn {
    padding: 9px 14px;
    font-size: 14px;
    width: auto;
    white-space: nowrap;
    text-align: center;
  }
  .nav-cta .btn-primary {
    box-shadow: none;
  }
  .nav-cta .btn-primary:hover {
    box-shadow: 0 8px 28px rgba(255,85,0,0.28);
  }
  main,
  .footer {
    margin-left: 0;
    width: 100%;
  }
  .hero {
    min-height: calc(var(--viewport-height) - var(--bottom-nav-height));
    padding-top: 80px;
  }
  .subhero {
    padding-top: 96px;
  }
}

@media (max-width: 380px) {
  .mobile-nav-toggle {
    width: 174px;
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media (hover: hover) and (pointer: fine) and (max-width: 1180px), (min-width: 901px) and (max-width: 1180px) {
  .nav {
    padding: 18px 12px;
    gap: 0;
  }
  .nav-logo {
    display: none;
  }
  .nav-links {
    gap: 2px;
    justify-content: center;
  }
  .nav-link,
  .nav-link.active {
    padding: 8px 5px;
    font-size: 13.2px;
    gap: 4px;
  }
  .nav-icon {
    width: 19px;
    height: 19px;
    flex-basis: 19px;
  }
  .nav-cta {
    margin-left: 4px;
  }
  .nav-cta .btn {
    padding: 8px 10px;
    font-size: 12.8px;
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 190px;
  padding: 15px 30px;
  border: 2px solid transparent;
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.32px;
  transition: transform 0.02s ease, color 0.18s ease, background 0.18s ease, background-position 0.35s ease, background-size 0.35s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  z-index: 0;
  box-shadow: 0 0 7px -5px rgba(0, 0, 0, 0.5);
}
.btn:active {
  transform: scale(0.97);
}
@keyframes buttonPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 85, 0, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(255, 85, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 85, 0, 0); }
}
@keyframes buttonDarkPulse {
  0% { box-shadow: 0 0 0 0 rgba(21, 22, 29, 0.38); }
  70% { box-shadow: 0 0 0 10px rgba(21, 22, 29, 0); }
  100% { box-shadow: 0 0 0 0 rgba(21, 22, 29, 0); }
}
@keyframes buttonGradientMove {
  0% { background-position: left center; }
  50% { background-position: right center; }
  100% { background-position: left center; }
}
@keyframes buttonIconTrace {
  0% {
    stroke-dashoffset: 1;
    fill-opacity: 0;
  }
  100% {
    stroke-dashoffset: 0;
    fill-opacity: 0;
  }
}
@keyframes buttonIconTraceDouble {
  0% {
    stroke-dashoffset: 1;
    fill-opacity: 0;
  }
  36% {
    stroke-dashoffset: 0;
    fill-opacity: 0;
  }
  42% {
    stroke-dashoffset: 1;
    fill-opacity: 0;
  }
  78% {
    stroke-dashoffset: 0;
    fill-opacity: 0;
  }
  100% {
    stroke-dashoffset: 0;
    fill-opacity: 0;
  }
}
@keyframes buttonIconFill {
  0% {
    fill-opacity: 0;
  }
  100% {
    fill-opacity: 1;
  }
}
@keyframes buttonProjectLayerStack {
  0% {
    opacity: 0.55;
    fill-opacity: 0;
    stroke: #ffffff;
    stroke-width: 16;
    stroke-dashoffset: 1;
    transform: translate(var(--project-x, 0), var(--project-y, 0)) scale(0.92);
  }
  42% {
    opacity: 1;
    fill-opacity: 0;
    stroke: #ffffff;
    stroke-width: 13;
    stroke-dashoffset: 0;
  }
  72% {
    fill-opacity: 0.28;
    stroke-width: 7;
  }
  100% {
    opacity: 1;
    fill-opacity: 1;
    stroke: transparent;
    stroke-width: 0;
    stroke-dashoffset: 0;
    transform: translate(0, 0) scale(1);
  }
}
@keyframes buttonProjectDocumentBuild {
  0% {
    stroke-dashoffset: 1;
    fill-opacity: 0;
    stroke: #ffffff;
    stroke-width: 16;
    transform: translateX(7px) scale(0.96);
  }
  38% {
    stroke-dashoffset: 0;
    fill-opacity: 0;
    stroke: #ffffff;
    stroke-width: 13;
    transform: translateX(0) scale(1);
  }
  72% {
    stroke-dashoffset: 0;
    fill-opacity: 0.32;
    stroke-width: 7;
  }
  100% {
    stroke-dashoffset: 0;
    fill-opacity: 1;
    stroke: transparent;
    stroke-width: 0;
    transform: translateX(0) scale(1);
  }
}
@keyframes buttonProjectCutLine {
  0% {
    opacity: 0;
    stroke-dashoffset: 1;
    stroke: #15161D;
  }
  12% {
    opacity: 1;
    stroke-dashoffset: 1;
    stroke: #15161D;
  }
  100% {
    opacity: 1;
    stroke-dashoffset: 0;
    stroke: #15161D;
  }
}
@keyframes buttonProjectFrameLine {
  0% {
    opacity: 0;
    stroke-dashoffset: 1;
    stroke: #ffffff;
  }
  12% {
    opacity: 1;
    stroke-dashoffset: 1;
    stroke: #ffffff;
  }
  100% {
    opacity: 1;
    stroke-dashoffset: 0;
    stroke: #ffffff;
  }
}

.btn-label,
.btn-icon {
  position: relative;
  z-index: 1;
}
.btn-icon {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  color: currentColor;
  fill: currentColor;
  fill-opacity: 0.32;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.btn-icon :is(path, rect) {
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
  transform-box: fill-box;
  transform-origin: center;
}
.btn:hover .btn-icon :is(path, rect) {
  animation:
    buttonIconTrace 0.22s linear both,
    buttonIconFill 0.36s ease both 0.74s;
}
.btn:hover .btn-icon :is(path, rect):nth-child(1) { animation-delay: 0s, 0.74s; }
.btn:hover .btn-icon :is(path, rect):nth-child(2) { animation-delay: 0.025s, 0.74s; }
.btn:hover .btn-icon :is(path, rect):nth-child(3) { animation-delay: 0.05s, 0.74s; }
.btn:hover .btn-icon :is(path, rect):nth-child(6) { animation-delay: 0.075s, 0.74s; }
.btn:hover .btn-icon :is(path, rect):nth-child(5) { animation-delay: 0.1s, 0.74s; }
.btn:hover .btn-icon :is(path, rect):nth-child(4) { animation-delay: 0.125s, 0.74s; }
.btn:hover .btn-icon :is(path, rect):nth-child(7) { animation-delay: 0.15s, 0.74s; }
.btn:hover .btn-icon :is(path, rect):nth-child(8) {
  animation:
    buttonIconTrace 0.18s ease both,
    buttonIconFill 0.36s ease both 0.74s;
  animation-delay: 0.36s, 0.74s;
}
.btn:hover .btn-icon :is(path, rect):nth-child(9) {
  animation:
    buttonIconTrace 0.18s ease both,
    buttonIconFill 0.36s ease both 0.74s;
  animation-delay: 0.5s, 0.74s;
}
.btn-icon-kontakt {
  width: 31px;
  height: 31px;
  overflow: visible;
  fill: currentColor;
  fill-opacity: 1;
  stroke: none;
}
.nav-cta .btn-icon-kontakt {
  width: 25px;
  height: 25px;
}
.btn-icon-kontakt .contact-original {
  fill: currentColor;
  fill-opacity: 1;
  stroke: none;
  stroke-dasharray: none;
  stroke-dashoffset: 0;
  transform-box: fill-box;
  transform-origin: center;
}
.btn-icon-kontakt .contact-fills {
  opacity: 0;
  fill: #ffffff;
  stroke: none;
}
.btn-icon-kontakt .contact-fill {
  opacity: 0;
  fill: #ffffff;
  fill-opacity: 1;
  stroke: none;
  transform-box: fill-box;
  transform-origin: center;
}
.btn-icon-kontakt .contact-draw {
  opacity: 0;
  fill: none;
  stroke: #ffffff;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 0.18s ease;
}
.btn-icon-kontakt .contact-step {
  fill: none;
  fill-opacity: 0;
  stroke: #ffffff;
  stroke-width: 24;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}
.btn:hover .btn-icon.btn-icon-kontakt :is(path, circle) {
  animation: none !important;
}
.btn:hover .btn-icon-kontakt .contact-original {
  opacity: 0;
  fill: currentColor;
  fill-opacity: 1;
  stroke: none;
  stroke-dasharray: none !important;
  stroke-dashoffset: 0 !important;
  animation: none !important;
}
.btn:hover .btn-icon-kontakt .contact-draw {
  opacity: 1;
}
.btn:hover .btn-icon-kontakt .contact-fills {
  opacity: 1;
}
.btn:hover .btn-icon.btn-icon-kontakt .contact-fills .contact-fill {
  animation-duration: 4.05s !important;
  animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1) !important;
  animation-iteration-count: infinite !important;
  animation-fill-mode: both !important;
}
.btn:hover .btn-icon.btn-icon-kontakt .contact-draw .contact-step {
  animation-duration: 4.05s !important;
  animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1) !important;
  animation-iteration-count: infinite !important;
  animation-fill-mode: both !important;
}
.btn:hover .btn-icon.btn-icon-kontakt .contact-fill-1 { animation-name: contactFillStep1 !important; }
.btn:hover .btn-icon.btn-icon-kontakt .contact-fill-3 { animation-name: contactFillStep3 !important; }
.btn:hover .btn-icon.btn-icon-kontakt .contact-fill-5 { animation-name: contactFillStep5 !important; }
.btn:hover .btn-icon.btn-icon-kontakt .contact-fill-7 { animation-name: contactFillStep7 !important; }
.btn:hover .btn-icon.btn-icon-kontakt .contact-step-1 { animation-name: contactDrawStep1 !important; }
.btn:hover .btn-icon.btn-icon-kontakt .contact-step-2 { animation-name: contactDrawStep2 !important; }
.btn:hover .btn-icon.btn-icon-kontakt .contact-step-3 { animation-name: contactDrawStep3 !important; }
.btn:hover .btn-icon.btn-icon-kontakt .contact-step-4 { animation-name: contactDrawStep4 !important; }
.btn:hover .btn-icon.btn-icon-kontakt .contact-step-5 { animation-name: contactDrawStep5 !important; }
.btn:hover .btn-icon.btn-icon-kontakt .contact-step-6 { animation-name: contactDrawStep6 !important; }
.btn:hover .btn-icon.btn-icon-kontakt .contact-step-7 { animation-name: contactDrawStep7 !important; }
@keyframes contactDrawStep1 {
  0% { opacity: 1; stroke-dashoffset: 1; }
  8.1%, 96% { opacity: 1; stroke-dashoffset: 0; }
  97%, 100% { opacity: 0; stroke-dashoffset: 1; }
}
@keyframes contactDrawStep2 {
  0%, 8% { opacity: 0; stroke-dashoffset: 1; }
  8.1% { opacity: 1; stroke-dashoffset: 1; }
  13.2%, 96% { opacity: 1; stroke-dashoffset: 0; }
  97%, 100% { opacity: 0; stroke-dashoffset: 1; }
}
@keyframes contactDrawStep3 {
  0%, 13.1% { opacity: 0; stroke-dashoffset: 1; }
  13.2% { opacity: 1; stroke-dashoffset: 1; }
  19.2%, 96% { opacity: 1; stroke-dashoffset: 0; }
  97%, 100% { opacity: 0; stroke-dashoffset: 1; }
}
@keyframes contactDrawStep4 {
  0%, 19.1% { opacity: 0; stroke-dashoffset: 1; }
  19.2% { opacity: 1; stroke-dashoffset: 1; }
  27.3%, 96% { opacity: 1; stroke-dashoffset: 0; }
  97%, 100% { opacity: 0; stroke-dashoffset: 1; }
}
@keyframes contactDrawStep5 {
  0%, 27.2% { opacity: 0; stroke-dashoffset: 1; }
  27.3% { opacity: 1; stroke-dashoffset: 1; }
  32.9%, 96% { opacity: 1; stroke-dashoffset: 0; }
  97%, 100% { opacity: 0; stroke-dashoffset: 1; }
}
@keyframes contactDrawStep6 {
  0%, 32.8% { opacity: 0; stroke-dashoffset: 1; }
  32.9% { opacity: 1; stroke-dashoffset: 1; }
  37.5%, 96% { opacity: 1; stroke-dashoffset: 0; }
  97%, 100% { opacity: 0; stroke-dashoffset: 1; }
}
@keyframes contactDrawStep7 {
  0%, 37.4% { opacity: 0; stroke-dashoffset: 1; }
  37.5% { opacity: 1; stroke-dashoffset: 1; }
  45.6%, 96% { opacity: 1; stroke-dashoffset: 0; }
  97%, 100% { opacity: 0; stroke-dashoffset: 1; }
}
@keyframes contactFillStep1 {
  0%, 4% { opacity: 0; }
  8.1%, 96% { opacity: 1; }
  97%, 100% { opacity: 0; }
}
@keyframes contactFillStep3 {
  0%, 16.1% { opacity: 0; }
  19.2%, 96% { opacity: 1; }
  97%, 100% { opacity: 0; }
}
@keyframes contactFillStep5 {
  0%, 29.8% { opacity: 0; }
  32.9%, 96% { opacity: 1; }
  97%, 100% { opacity: 0; }
}
@keyframes contactFillStep7 {
  0%, 41.5% { opacity: 0; }
  45.6%, 96% { opacity: 1; }
  97%, 100% { opacity: 0; }
}
.btn-icon-projekte {
  width: 33px;
  height: 33px;
  color: #ffffff;
  fill: #ffffff;
  fill-opacity: 0;
  stroke: #ffffff;
  stroke-width: 16;
  transform-box: fill-box;
  transform-origin: center;
}
.btn-icon-projekte path {
  fill: #ffffff;
  fill-rule: nonzero;
  clip-rule: nonzero;
  fill-opacity: 0;
  stroke: #ffffff;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
}
.btn-icon-projekte :is(.project-layer-cut-lines, .project-text-frame, .project-text-lines) path {
  fill: none;
  fill-opacity: 1;
  stroke: #15161D;
  stroke-width: 18;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: 0;
}
.btn-icon-projekte .project-text-frame path {
  stroke: #ffffff;
  stroke-dashoffset: 0;
  opacity: 1;
}
.btn-icon-projekte .project-layer {
  transform-box: fill-box;
  transform-origin: center;
}
.btn-icon-projekte .project-document {
  fill-opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}
.btn:hover .btn-icon.btn-icon-projekte path {
  animation: none;
}
.btn:hover .btn-icon.btn-icon-projekte path.project-layer {
  animation: buttonProjectLayerStack 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.btn:hover .btn-icon.btn-icon-projekte path.project-layer-bottom {
  --project-y: 18px;
  animation-delay: 0s;
}
.btn:hover .btn-icon.btn-icon-projekte path.project-layer-lower {
  --project-y: 9px;
  --project-x: -3px;
  animation-delay: 0.035s;
}
.btn:hover .btn-icon.btn-icon-projekte path.project-layer-upper {
  --project-y: -9px;
  --project-x: 3px;
  animation-delay: 0.07s;
}
.btn:hover .btn-icon.btn-icon-projekte path.project-layer-top {
  --project-y: -18px;
  animation-delay: 0.105s;
}
.btn:hover .btn-icon.btn-icon-projekte path.project-document {
  animation: buttonProjectDocumentBuild 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0s;
}
.btn:hover .btn-icon.btn-icon-projekte .project-layer-cut-lines path {
  animation: buttonProjectCutLine 0.18s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.34s;
}
.btn:hover .btn-icon.btn-icon-projekte .project-text-frame path {
  animation: buttonProjectFrameLine 0.18s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.34s;
}
.btn:hover .btn-icon.btn-icon-projekte .project-text-lines path {
  animation: buttonProjectCutLine 0.18s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.btn:hover .btn-icon.btn-icon-projekte .project-text-lines path:nth-child(1) { animation-delay: 0.36s; }
.btn:hover .btn-icon.btn-icon-projekte .project-text-lines path:nth-child(2) { animation-delay: 0.39s; }
.btn:hover .btn-icon.btn-icon-projekte .project-text-lines path:nth-child(3) { animation-delay: 0.42s; }
.btn:hover .btn-icon.btn-icon-projekte .project-text-lines path:nth-child(4) { animation-delay: 0.45s; }

.btn-primary {
  background-image: linear-gradient(30deg, #d95a00 0%, var(--accent) 46%, #ff8a2a 100%);
  background-position: left center;
  background-size: 230% auto;
  color: #ffffff;
  animation: buttonGradientMove 4s ease-in-out infinite;
  box-shadow: 0 0 7px -5px rgba(0, 0, 0, 0.5);
}
.btn-primary:hover {
  background-position: right center;
  background-size: 230% auto;
  color: #ffffff;
  animation:
    buttonGradientMove 2.7s ease-in-out infinite,
    buttonPulse 1.5s infinite;
}
.btn-ghost {
  background: rgba(255,255,255,0.9);
  color: #0B0B0B;
  border-color: #0B0B0B;
}
.hero-buttons .btn-ghost {
  background-image: linear-gradient(30deg, #0B0B0B 0%, #15161D 48%, #3a3b42 100%);
  background-position: left center;
  background-size: 230% auto;
  border-color: transparent;
  color: #ffffff;
  animation: buttonGradientMove 4.4s ease-in-out infinite;
}
.btn-ghost:hover {
  background: #0B0B0B;
  border-color: #0B0B0B;
  color: #fff;
}
.hero-buttons .btn-ghost:hover {
  background-image: linear-gradient(30deg, #0B0B0B 0%, #15161D 48%, #3a3b42 100%);
  background-position: right center;
  background-size: 230% auto;
  border-color: transparent;
  color: #fff;
  animation:
    buttonGradientMove 3s ease-in-out infinite,
    buttonDarkPulse 1.5s infinite;
}
.btn-large { padding: 17px 38px; font-size: 17px; }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section { padding: 75px 0; position: relative; }
.section-header {
  text-align: center;
  margin-bottom: 72px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.section-label {
  display: inline-block;
  font-size: 12.8px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(255,85,0,0.3);
  border-radius: 100px;
  background: rgba(255,85,0,0.07);
}
.section-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--text) 60%, var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-text {
  color: var(--text-muted);
  font-size: 16.8px;
  line-height: 1.8;
  max-width: 100%;
  margin: 0 auto;
}
.vorteile-intro .btn,
.ablauf-intro .btn {
  margin-top: 28px;
  flex: 0 0 auto;
}
.leistungen-intro .btn,
.referenzen-intro .btn {
  width: 100%;
  min-width: 0;
  margin-top: 28px;
  flex: 0 0 auto;
}
main > .section.vorteile .section-title {
  background: linear-gradient(135deg, #ffffff 58%, rgba(255,255,255,0.72));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vorteile-intro,
.leistungen-intro,
.referenzen-intro,
.ablauf-intro {
  position: relative;
  min-height: 100%;
  padding: 34px 30px;
  border: 0;
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.08), transparent 36%),
    #0B0B0B;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.09);
  overflow: hidden;
  isolation: isolate;
}
.leistungen-intro,
.referenzen-intro,
.ablauf-intro {
  --card-runner-soft: rgba(255,85,0,0.2);
  --card-runner-bright: #ff9b38;
  --card-runner-main: #ff5400;
  --card-runner-glow-strong: rgba(255,85,0,0.6);
  --card-runner-glow-soft: rgba(255,85,0,0.28);
}
.vorteile-intro::before,
.leistungen-intro::before,
.referenzen-intro::before,
.ablauf-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 100%, rgba(255,85,0,0.12), transparent 42%);
  pointer-events: none;
  z-index: 0;
}
.vorteile-intro > *,
.leistungen-intro > *,
.referenzen-intro > *,
.ablauf-intro > * {
  position: relative;
  z-index: 1;
}
.vorteile-image-card {
  width: 100%;
  flex: 0 0 auto;
  height: 180px;
  margin: 0;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 18px;
  background: #15161d;
  overflow: hidden;
  box-shadow: none;
}
.vorteile-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vorteile-intro .section-text {
  color: rgba(255,255,255,0.76);
}
main > .section.leistungen .leistungen-intro .section-title,
main > .section.referenzen .referenzen-intro .section-title {
  background: linear-gradient(135deg, #ffffff 58%, rgba(255,255,255,0.72));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
main > .section.leistungen .leistungen-intro .section-title .title-accent-word,
main > .section.referenzen .referenzen-intro .section-title .title-accent-word {
  background: linear-gradient(135deg, #ff5400 0%, #ff8a2a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.leistungen-intro .section-text,
.referenzen-intro .section-text {
  color: rgba(255,255,255,0.76);
}
.title-logo-inline {
  display: inline-flex;
  align-items: center;
  width: 3.25em;
  max-width: 100%;
  margin: 0 0.06em;
  vertical-align: -0.12em;
}
.title-logo-inline img {
  display: block;
  width: 100%;
  height: auto;
}
.hero,
.subhero,
.vorteile,
.leistungen,
.referenzen,
.kontakt,
.legal-section {
  --bg: var(--light-bg);
  --bg-2: var(--light-bg-2);
  --bg-3: var(--light-bg-3);
  --bg-card: var(--light-card);
  --text: var(--light-text);
  --text-muted: var(--light-muted);
  --text-faint: var(--light-faint);
  --border: var(--light-border);
  background: var(--light-bg);
  color: var(--light-text);
}
.hero .section-title,
.subhero .section-title,
.vorteile .section-title,
.leistungen .section-title,
.referenzen .section-title,
.kontakt .section-title,
.legal-section .section-title {
  background: linear-gradient(135deg, var(--light-text) 58%, var(--light-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vorteile .vorteil-card,
.leistungen .leistung-card,
.leistungen-cta-block,
.vorteile-cta-block,
.referenzen .referenz-card,
.referenzen-hinweis,
.kontakt-form {
  box-shadow: var(--shadow-light);
}
.referenzen .referenz-card,
.referenzen-hinweis {
  box-shadow: none;
}
.vorteile .vorteil-card {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.09);
}
.vorteile .vorteil-card:hover,
.leistungen .leistung-card:hover,
.referenzen .referenz-card:hover {
  box-shadow: var(--shadow-light), 0 18px 50px rgba(255, 85, 0, 0.14);
}
.vorteile .vorteil-card:hover {
  box-shadow: inset 0 0 0 1px rgba(255,85,0,0.45);
}
.ueber-uns,
.zielgruppen,
.ablauf,
.vertrauen,
.faq,
.service-detail {
  --bg: #0B0B0B;
  --bg-2: #0B0B0B;
  --bg-3: #0B0B0B;
  --bg-card: #0B0B0B;
  --text: #ffffff;
  --text-muted: #f2f2f4;
  --text-faint: #c9cbd3;
  --border: rgba(255, 255, 255, 0.06);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal-up, .reveal-left, .reveal-right, .reveal-card {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateY(30px); }
.reveal-right { transform: translateY(30px); }
.reveal-card { transform: translateY(30px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-card.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: var(--viewport-height);
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 60px) 0 80px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 70% 18%, rgba(255,136,0,0.1), transparent 62%),
    radial-gradient(ellipse 60% 55% at 12% 82%, rgba(255,85,0,0.06), transparent 60%),
    rgba(255,255,255,0.96);
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246,247,251,0.72), rgba(246,247,251,0.42) 46%, rgba(246,247,251,0.9)),
    radial-gradient(ellipse 80% 80% at 50% 50%, transparent 35%, rgba(246,247,251,0.94) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  min-width: 0;
}
.hero-copy {
  min-width: 0;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  margin-bottom: 22px;
  padding: 8px 16px;
  border: 1px solid rgba(255,85,0,0.28);
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.9px;
  line-height: 1;
  text-transform: uppercase;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.6px;
  color: var(--text-muted);
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  margin-bottom: 36px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(10px);
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,85,0,0.6); }
  50% { box-shadow: 0 0 0 8px rgba(255,85,0,0); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: 82px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
}
.hero-headline--animated {
  align-items: flex-start;
  color: var(--light-text);
}
.hero-headline .line {
  display: block;
  overflow: visible;
  padding-bottom: 0.06em;
}
.hero-headline .line span { display: block; }
.hero-title-segment {
  position: relative;
  display: block;
  width: max-content;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  padding-bottom: 0.06em;
  color: var(--light-text);
  opacity: 1;
  transform: none;
  filter: none;
  text-shadow: none;
  animation: heroTitleType var(--type-duration, 0.9s) steps(var(--type-steps), end) var(--title-delay) forwards;
  will-change: max-width;
}
.hero-title-segment::before {
  content: '';
  position: absolute;
  top: 0.13em;
  right: -0.08em;
  bottom: 0.18em;
  width: 0.075em;
  background: var(--light-text);
  opacity: 0;
  animation: heroTitleCaret var(--type-duration, 0.9s) steps(1, end) var(--title-delay) forwards;
}
.hero-title-segment--fade::after {
  content: none;
}
.hero-title-segment--fade {
  animation: heroTitleType var(--type-duration, 0.9s) steps(var(--type-steps), end) var(--title-delay) forwards;
}
.hero-title-segment--upper::after {
  animation: none;
}
.hero-title-segment--lower::after {
  animation: none;
}
.hero-title-segment--accent {
  color: var(--light-text);
  animation: heroTitleType var(--type-duration, 0.9s) steps(var(--type-steps), end) var(--title-delay) forwards;
}
.hero-title-segment--accent::after {
  content: attr(data-title);
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 14px rgba(255,85,0,0.16));
  pointer-events: none;
  clip-path: inset(0 100% 0 0);
  animation: heroTitleAccentSweep 0.72s cubic-bezier(0.42, 0, 0.16, 1) 3s forwards;
  will-change: clip-path;
}
@keyframes heroTitleType {
  0% {
    max-width: 0;
  }
  100% {
    max-width: var(--type-width, 18ch);
  }
}
@keyframes heroTitleCaret {
  0%, 92% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes heroTitleAppear {
  0% {
    opacity: 0;
    transform: translateY(10px);
    color: var(--light-text);
    text-shadow: none;
  }
  62% {
    opacity: 0.72;
    transform: translateY(3px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    color: var(--light-text);
    text-shadow: none;
  }
}
@keyframes heroTitleAppearAccent {
  0% {
    opacity: 0;
    transform: translateY(10px);
    text-shadow: 0 0 22px rgba(255,85,0,0.24);
  }
  62% {
    opacity: 0.72;
    transform: translateY(3px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    text-shadow: 0 0 14px rgba(255,85,0,0.16);
  }
}
@keyframes heroTitleAccentSweep {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes heroTitleSettle {
  0% {
    color: var(--accent);
    text-shadow: 0 0 18px rgba(255,85,0,0.2);
  }
  100% {
    color: var(--light-text);
    text-shadow: none;
  }
}
@keyframes heroTitleOrangeReduceUpper {
  0% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  72% {
    clip-path: inset(88% 0 0 0);
    opacity: 1;
  }
  100% {
    clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
}
@keyframes heroTitleOrangeReduceLower {
  0% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  72% {
    clip-path: inset(0 0 88% 0);
    opacity: 1;
  }
  100% {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
}
@keyframes heroTitleAccentHold {
  0% {
    text-shadow: 0 0 18px rgba(255,85,0,0.2);
  }
  100% {
    text-shadow: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-title-segment,
  .hero-title-segment--fade,
  .hero-title-segment--accent {
    opacity: 1;
    transform: none;
    filter: none;
    clip-path: none;
    max-width: 100%;
    animation: none;
    text-shadow: none;
  }
  .hero-title-segment::before {
    display: none;
  }
  .hero-title-segment--fade {
    color: var(--light-text);
  }
  .hero-title-segment--fade::after {
    display: none;
  }
  .hero-title-segment--accent::after {
    animation: none;
    clip-path: inset(0);
  }
}
.accent-line {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 19px;
  color: var(--light-text);
  margin-bottom: 34px;
  max-width: 100%;
  line-height: 1.65;
}
.hero-sub strong,
.hero-sub span {
  display: block;
}
.hero-sub strong {
  max-width: 760px;
  color: var(--light-text);
  font-family: var(--font-display);
  font-size: 1.12em;
  font-weight: 700;
  line-height: 1.45;
}
.hero-sub span {
  max-width: 700px;
  margin-top: 14px;
  color: var(--light-muted);
  font-size: 0.96em;
  line-height: 1.65;
}
.hero-text {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 44px;
  max-width: 100%;
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 0;
  flex-wrap: wrap;
}
.page-home .hero-buttons .btn {
  min-width: 270px;
  padding: 12px 44px;
  font-size: 18.4px;
}
.hero-system {
  position: relative;
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(16,19,33,0.11);
  border-radius: 28px;
  background: linear-gradient(145deg, #15161D, #0B0B0B);
  box-shadow: none;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}
.hero-system::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  pointer-events: none;
  z-index: 0;
}
.hero-system::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  top: -90px;
  border: 1px solid rgba(255,85,0,0.2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-system-logo {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 76px;
  margin-bottom: 12px;
}
.hero-system-logo img {
  width: min(340px, 72%);
  height: auto;
  object-fit: contain;
}
.hero-system-text {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto 12px;
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  line-height: 1.55;
  text-align: center;
}
.hero-system-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  flex: 1 1 auto;
  gap: 10px;
}
.hero-system-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  column-gap: 16px;
  row-gap: 7px;
  align-items: center;
  min-height: 116px;
  padding: 16px;
  border: 0;
  border-radius: 16px;
  background: #2e3038;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
  text-align: left;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}
.hero-system-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255,85,0,0.45);
  background: #343640;
  box-shadow: inset 0 0 0 1px rgba(255,85,0,0.45);
}
.hero-system-icon {
  grid-row: 1 / span 3;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 14px;
  background: linear-gradient(30deg, #d95a00 0%, var(--accent) 46%, #ff8a2a 100%);
  color: #ffffff;
  box-shadow: none;
  position: relative;
  z-index: 1;
}
.hero-system-icon svg {
  width: 29px;
  height: 29px;
}
.hero-system-icon--lottie {
  overflow: hidden;
}
.hero-lottie-icon {
  display: block;
  width: 42px;
  height: 42px;
}
.hero-lottie-icon svg {
  width: 100% !important;
  height: 100% !important;
  filter: brightness(0) invert(1);
}
.hero-system-icon--lottie.is-loaded .hero-fallback-icon {
  display: none;
}
.hero-system-icon--lottie:not(.is-loaded) .hero-lottie-icon {
  display: none;
}
.hero-system-item strong {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.04;
}
.hero-system-badges {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.hero-system-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.82);
  font-family: var(--font-display);
  font-size: 11.2px;
  font-weight: 700;
  line-height: 1;
}
.hero-system-item p {
  position: relative;
  z-index: 1;
  grid-column: 2;
  margin: 0;
  color: rgba(255,255,255,0.74);
  font-size: 13px;
  line-height: 1.35;
}
.hero-system-actions {
  position: relative;
  z-index: 1;
  grid-column: 3;
  grid-row: 1 / span 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0;
  align-self: center;
  justify-self: end;
}
.hero-system-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  padding: 9px 18px;
  border-radius: 999px;
  background: linear-gradient(30deg, #d95a00 0%, var(--accent) 46%, #ff8a2a 100%);
  background-size: 180% auto;
  color: #fff;
  font-family: var(--font-display);
  font-size: 14.4px;
  font-weight: 800;
  line-height: 1;
  border: 1px solid rgba(255,255,255,0.18);
  transition: transform 0.24s ease, background-position 0.35s ease;
}
.hero-system-button:hover {
  background-position: right center;
  transform: translateY(-1px);
}
.card-arrow-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.card-arrow-lottie-icon {
  width: 100%;
  height: 100%;
  display: block;
}
.card-arrow-lottie-icon svg {
  width: 100% !important;
  height: 100% !important;
  display: block;
}
.card-arrow-icon--lottie:not(.is-loaded) .card-arrow-lottie-icon {
  opacity: 0;
}
.card-arrow-icon--lottie svg [stroke] {
  stroke: rgba(255,255,255,0.84) !important;
  stroke-width: 52 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}
.card-arrow-icon--lottie svg [fill]:not([fill="none"]) {
  fill: rgba(255,255,255,0.84) !important;
}
.hero-system-button .card-arrow-icon,
.leistung-cta .card-arrow-icon {
  width: 20px;
  height: 20px;
  margin-right: -3px;
}
.leistung-cta {
  gap: 15px;
}
.leistung-cta .card-arrow-icon {
  margin-right: 0;
}
@property --runner-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}
.hero-card-runner,
.vorteil-card-runner,
.leistung-card-runner,
.intro-card-runner,
.ablauf-card-runner,
.project-all-card-runner {
  --runner-angle: 0deg;
  --runner-soft: var(--card-runner-soft, rgba(255,85,0,0.18));
  --runner-bright: var(--card-runner-bright, #ff8a2a);
  --runner-main: var(--card-runner-main, var(--accent));
  --runner-glow-strong: var(--card-runner-glow-strong, rgba(255,85,0,0.62));
  --runner-glow-soft: var(--card-runner-glow-soft, rgba(255,85,0,0.28));
  --runner-width: var(--card-runner-width, 3px);
  --runner-bar-width: var(--card-runner-bar-width, var(--runner-width));
  --runner-base-width: var(--card-runner-base-width, var(--runner-bar-width));
  --runner-bleed: var(--card-runner-bleed, 1px);
  --runner-radius: var(--runner-runtime-radius, var(--card-runner-radius, var(--radius-lg)));
  --runner-transparent-start: var(--card-runner-transparent-start, 54deg);
  --runner-soft-start: var(--card-runner-soft-start, 70deg);
  --runner-bright-start: var(--card-runner-bright-start, 88deg);
  --runner-main-start: var(--card-runner-main-start, 108deg);
  --runner-soft-end: var(--card-runner-soft-end, 124deg);
  --runner-transparent-end: var(--card-runner-transparent-end, 140deg);
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  overflow: visible;
  border-radius: var(--runner-radius);
  filter: drop-shadow(0 0 8px var(--runner-glow-strong)) drop-shadow(0 0 18px var(--runner-glow-soft));
  transition: opacity 0.35s ease;
}
.hero-card-runner::after,
.vorteil-card-runner::after,
.leistung-card-runner::after,
.intro-card-runner::after,
.ablauf-card-runner::after,
.project-all-card-runner::after {
  content: '';
  position: absolute;
  inset: calc(var(--runner-bleed) * -1);
  z-index: 2;
  border-radius: calc(var(--runner-radius) + var(--runner-bleed));
  padding: calc(var(--runner-bar-width) + var(--runner-bleed));
  background:
    conic-gradient(
      from var(--runner-angle),
      transparent 0deg,
      transparent 46deg,
      var(--runner-soft) 58deg,
      var(--runner-bright) 72deg,
      var(--runner-main) 90deg,
      var(--runner-soft) 108deg,
      transparent 124deg,
      transparent 360deg
    );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.runner-a::before {
  content: '';
  position: absolute;
  inset: calc(var(--runner-bleed) * -1);
  z-index: 0;
  border-radius: calc(var(--runner-radius) + var(--runner-bleed));
  padding: calc(var(--runner-base-width) + var(--runner-bleed));
  background: var(--runner-main);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0.34;
  pointer-events: none;
  display: block;
}
.runner-b::before {
  display: none;
}
.card-runner-svg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  display: none;
}
.card-runner-path {
  display: none;
  fill: none;
  stroke: var(--runner-main);
  stroke-width: var(--runner-bar-width, 2.4px);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: var(--runner-dash, 12) var(--runner-gap, 88);
  stroke-dashoffset: var(--runner-offset, 0);
  vector-effect: non-scaling-stroke;
  shape-rendering: geometricPrecision;
}
.card-runner-base {
  display: none;
  fill: none;
  stroke: var(--runner-main);
  stroke-width: var(--runner-base-width, 2.4px);
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.34;
  vector-effect: non-scaling-stroke;
  shape-rendering: geometricPrecision;
}
.runner-b .card-runner-base {
  display: none;
}
.runner-a .card-runner-path {
  stroke: var(--runner-main);
}
.runner-b .card-runner-path {
  --runner-offset: 50;
  stroke: var(--runner-bright);
}
.hero-card-runner,
.vorteil-card-runner {
  --card-runner-radius: 16px;
}
.intro-card-runner {
  --card-runner-radius: 18px;
}
.leistung-card-runner,
.ablauf-card-runner,
.project-all-card-runner {
  --card-runner-radius: var(--radius-lg);
}
.hero-card-runner.runner-a,
.vorteil-card-runner.runner-a,
.leistung-card-runner.runner-a,
.intro-card-runner.runner-a,
.ablauf-card-runner.runner-a,
.project-all-card-runner.runner-a {
  --runner-angle: 0deg;
}
.hero-card-runner.runner-b,
.vorteil-card-runner.runner-b,
.leistung-card-runner.runner-b,
.intro-card-runner.runner-b,
.ablauf-card-runner.runner-b,
.project-all-card-runner.runner-b {
  --runner-angle: 180deg;
}
.hero-system-item:hover .runner-a,
.vorteil-card:hover .runner-a,
.leistung-card:hover .runner-a,
.vorteile-intro:hover .runner-a,
.leistungen-intro:hover .runner-a,
.referenzen-intro:hover .runner-a,
.ablauf-intro:hover .runner-a,
.ablauf-step:hover .runner-a,
.project-card--all:hover .runner-a {
  opacity: 1;
}
.hero-system-item:hover .runner-a .card-runner-path,
.vorteil-card:hover .runner-a .card-runner-path,
.leistung-card:hover .runner-a .card-runner-path,
.vorteile-intro:hover .runner-a .card-runner-path,
.leistungen-intro:hover .runner-a .card-runner-path,
.referenzen-intro:hover .runner-a .card-runner-path,
.ablauf-intro:hover .runner-a .card-runner-path,
.ablauf-step:hover .runner-a .card-runner-path,
.project-card--all:hover .runner-a .card-runner-path {
  animation: cardRunnerForward 5.8s linear infinite;
}
.hero-system-item:hover .runner-a::after,
.vorteil-card:hover .runner-a::after,
.leistung-card:hover .runner-a::after,
.vorteile-intro:hover .runner-a::after,
.leistungen-intro:hover .runner-a::after,
.referenzen-intro:hover .runner-a::after,
.ablauf-intro:hover .runner-a::after,
.ablauf-step:hover .runner-a::after,
.project-card--all:hover .runner-a::after {
  animation: cardRunnerSpin 5.8s linear infinite;
}
.hero-system-item:hover .runner-b,
.vorteil-card:hover .runner-b,
.leistung-card:hover .runner-b,
.vorteile-intro:hover .runner-b,
.leistungen-intro:hover .runner-b,
.referenzen-intro:hover .runner-b,
.ablauf-intro:hover .runner-b,
.ablauf-step:hover .runner-b,
.project-card--all:hover .runner-b {
  opacity: 1;
}
.hero-system-item:hover .runner-b .card-runner-path,
.vorteil-card:hover .runner-b .card-runner-path,
.leistung-card:hover .runner-b .card-runner-path,
.vorteile-intro:hover .runner-b .card-runner-path,
.leistungen-intro:hover .runner-b .card-runner-path,
.referenzen-intro:hover .runner-b .card-runner-path,
.ablauf-intro:hover .runner-b .card-runner-path,
.ablauf-step:hover .runner-b .card-runner-path,
.project-card--all:hover .runner-b .card-runner-path {
  animation: cardRunnerForwardOffset 5.8s linear infinite;
}
.hero-system-item:hover .runner-b::after,
.vorteil-card:hover .runner-b::after,
.leistung-card:hover .runner-b::after,
.vorteile-intro:hover .runner-b::after,
.leistungen-intro:hover .runner-b::after,
.referenzen-intro:hover .runner-b::after,
.ablauf-intro:hover .runner-b::after,
.ablauf-step:hover .runner-b::after,
.project-card--all:hover .runner-b::after {
  animation: cardRunnerSpinOffset 5.8s linear infinite;
}
@keyframes cardRunnerForward {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -100; }
}
@keyframes cardRunnerForwardOffset {
  from { stroke-dashoffset: 50; }
  to { stroke-dashoffset: -50; }
}
@keyframes cardRunnerSpin {
  from { --runner-angle: 0deg; }
  to { --runner-angle: 360deg; }
}
@keyframes cardRunnerSpinOffset {
  from { --runner-angle: 180deg; }
  to { --runner-angle: 540deg; }
}
.hero-proof-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  flex: 0 0 auto;
  gap: 10px;
  margin-top: 8px;
}
.hero-proof-card {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 72px;
  padding: 10px 12px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    #2e3038;
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.76);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.hero-proof-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 12%, rgba(255,255,255,0.16), transparent 34%);
  opacity: 0.72;
  pointer-events: none;
}
.hero-proof-card::after {
  content: '';
  position: absolute;
  width: 70px;
  height: 70px;
  right: -42px;
  bottom: -42px;
  border-radius: 50%;
  background: rgba(255,85,0,0.28);
  filter: blur(16px);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.hero-proof-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,85,0,0.42);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.03)),
    #32343d;
}
.hero-proof-card:hover::after {
  opacity: 1;
}
.proof-visual,
.proof-copy {
  position: relative;
  z-index: 1;
}
.proof-visual {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
}
.proof-visual--lottie {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  background: linear-gradient(30deg, #d95a00 0%, var(--accent) 48%, #ff8a2a 100%);
  border-color: rgba(255,255,255,0.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.24), 0 10px 22px rgba(255,85,0,0.16);
}
.proof-visual--lottie.proof-visual--projects,
.proof-visual--lottie.proof-visual--services,
.proof-visual--lottie.proof-visual--custom {
  align-items: center;
  justify-content: center;
  padding: 2px;
}
.proof-visual--lottie.proof-visual--custom {
  background: linear-gradient(30deg, #d95a00 0%, var(--accent) 48%, #ff8a2a 100%);
}
.proof-lottie-icon {
  position: relative;
  z-index: 2;
  display: block;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
}
.proof-lottie-icon svg {
  width: 100% !important;
  height: 100% !important;
  filter: brightness(0) invert(1);
}
.proof-visual--lottie:not(.is-loaded) .proof-lottie-icon {
  display: none;
}
.proof-visual--lottie.is-loaded > i,
.proof-visual--lottie.is-loaded::before {
  display: none;
}
.proof-visual i {
  position: absolute;
  display: block;
}
.proof-visual--projects i {
  left: 10px;
  right: 8px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff 0 18%, rgba(255,255,255,0.46) 18% 100%);
  box-shadow: 0 0 10px rgba(255,85,0,0.16);
}
.proof-visual--projects i:nth-child(1) {
  top: 10px;
  transform: translateX(-2px);
}
.proof-visual--projects i:nth-child(2) {
  top: 18px;
  transform: translateX(2px);
}
.proof-visual--projects i:nth-child(3) {
  top: 26px;
  background: linear-gradient(90deg, var(--accent) 0 24%, rgba(255,255,255,0.5) 24% 100%);
}
.proof-visual--services {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 4px;
  padding: 9px;
}
.proof-visual--services i {
  position: static;
  width: 7px;
  border-radius: 999px 999px 3px 3px;
  background: linear-gradient(180deg, #ff9a3d, var(--accent));
  box-shadow: 0 0 10px rgba(255,85,0,0.22);
}
.proof-visual--services i:nth-child(1) { height: 16px; opacity: 0.74; }
.proof-visual--services i:nth-child(2) { height: 24px; }
.proof-visual--services i:nth-child(3) { height: 20px; opacity: 0.86; }
.proof-visual--custom {
  background:
    conic-gradient(var(--accent) 0deg 316deg, rgba(255,255,255,0.15) 316deg 360deg),
    #24262d;
}
.proof-visual--custom::before {
  content: '';
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: #2e3038;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.proof-visual--custom i {
  inset: 15px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px rgba(255,255,255,0.32);
}
.hero-proof-card:hover .proof-visual--custom:not(.proof-visual--lottie) {
  animation: proofRingRotate 1.4s ease-in-out;
}
.proof-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  text-align: center;
}
.proof-copy strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  margin-bottom: 5px;
}
.proof-copy span {
  color: rgba(255,255,255,0.7);
  font-size: 11.6px;
  font-weight: 700;
  line-height: 1.15;
}
@keyframes proofRingRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.12px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(255,255,255,0.72);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}
.tag-icon { color: var(--accent); font-size: 9.6px; }

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.hero-scroll-hint span {
  font-size: 11.2px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ============================================================
   SUBPAGES
   ============================================================ */
.subhero {
  min-height: 58vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 88px) 0 88px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 70% at 50% 20%, rgba(255,85,0,0.1), transparent 62%),
    var(--bg);
}
.subhero-inner {
  width: 100%;
  max-width: var(--container);
  text-align: center;
  min-width: 0;
}
.subhero .section-title {
  margin-left: auto;
  margin-right: auto;
}
.service-hero {
  min-height: 54vh;
}
.service-detail {
  background: var(--bg);
}
.service-layout {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}
.service-main {
  flex: 1 1 68%;
  min-width: 0;
}
.service-main .section-title {
  text-align: left;
  font-size: 40px;
}
.service-main p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 18px;
}
.service-onepage {
  min-height: calc(var(--viewport-height) - var(--bottom-nav-height));
}
.service-onepage .service-layout {
  align-items: center;
}
.service-onepage .service-side {
  position: relative;
  top: auto;
}
.service-lead {
  color: var(--accent) !important;
  font-weight: 700;
  font-size: 18px !important;
}
.service-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 10px 0 28px;
}
.service-benefits span,
.service-process li {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
  border-radius: 999px;
}
.service-benefits span {
  padding: 7px 14px;
  font-size: 13.2px;
  font-weight: 600;
}
.service-process {
  margin-top: 28px;
}
.service-process ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
  counter-reset: service-steps;
}
.service-process li {
  counter-increment: service-steps;
  list-style: none;
  padding: 10px 12px;
  font-size: 12.8px;
  line-height: 1.45;
}
.service-process li::before {
  content: counter(service-steps, decimal-leading-zero) ". ";
  color: var(--accent);
  font-weight: 800;
}
.service-side {
  flex: 0 0 340px;
  min-width: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}
.service-side h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 20px;
}
.project-surface {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255,85,0,0.2), transparent 45%),
    linear-gradient(160deg, var(--bg-3), var(--bg-card));
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.project-surface::before {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  right: -44px;
  top: -44px;
  border: 1px solid rgba(255,85,0,0.2);
  border-radius: 50%;
}
.project-surface span {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 1.92px;
  text-transform: uppercase;
  font-size: 12px;
}
.project-surface strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.1;
}
.legal-content {
  max-width: var(--container);
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 34px 0 12px;
}
.legal-content p {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}
.legal-content a {
  color: var(--accent);
}

/* ============================================================
   VORTEILE SECTION
   ============================================================ */
.vorteile {
  background:
    radial-gradient(ellipse 70% 55% at 70% 18%, rgba(255,136,0,0.18), transparent 62%),
    radial-gradient(ellipse 60% 55% at 12% 82%, rgba(255,85,0,0.12), transparent 60%),
    var(--light-bg);
}
.vorteile-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.vorteil-card {
  flex: 1 1 calc(33.333% - 12px);
  min-width: 260px;
  background: #0B0B0B;
  border: 0;
  border-radius: 16px;
  padding: 26px 22px;
  transition: border-color var(--transition), transform var(--transition), background var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.vorteil-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.1), transparent 36%),
    radial-gradient(circle at 50% 100%, rgba(255,85,0,0.12), transparent 42%);
  opacity: 0.55;
  transition: opacity var(--transition);
  pointer-events: none;
}
.vorteil-card:hover {
  border-color: rgba(255,85,0,0.45);
  transform: none;
  background: #15161d;
  box-shadow: inset 0 0 0 1px rgba(255,85,0,0.45);
}
.vorteil-card:hover::before { opacity: 0.82; }
.vorteil-icon {
  width: 64px;
  height: 64px;
  color: #fff;
  margin: 0 auto 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 16px;
  background: linear-gradient(30deg, #d95a00 0%, var(--accent) 46%, #ff8a2a 100%);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.vorteil-icon svg {
  width: 36px;
  height: 36px;
}
.vorteil-lottie-icon {
  display: block;
  width: 52px;
  height: 52px;
}
.vorteil-lottie-icon svg {
  width: 100% !important;
  height: 100% !important;
  filter: brightness(0) invert(1);
}
.vorteil-icon--lottie.is-loaded .vorteil-fallback-icon {
  display: none;
}
.vorteil-icon--lottie:not(.is-loaded) .vorteil-lottie-icon {
  display: none;
}
.vorteil-card h3 {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 7px;
  color: #fff;
  line-height: 1.14;
}
.vorteil-card p {
  position: relative;
  z-index: 1;
  max-width: 34ch;
  margin: 0 auto;
  font-size: 13.9px;
  color: rgba(255,255,255,0.74);
  line-height: 1.5;
}
.vorteile-cta-block {
  text-align: center;
  padding: 38px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 100%;
  margin: 28px auto 0;
  position: relative;
  overflow: hidden;
}
.vorteile-cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,85,0,0.06), transparent 70%);
}
.vorteile-cta-block p {
  font-size: 17.2px;
  color: var(--text-muted);
  margin: 0 auto 24px;
  max-width: 760px;
  position: relative;
  z-index: 1;
}
.vorteile-cta-block .btn {
  position: relative;
  z-index: 1;
}

/* ============================================================
   ÜBER UNS SECTION
   ============================================================ */
.ueber-uns { background: var(--bg); }
body.page-home main > .section.ueber-uns {
  --bg: var(--light-bg);
  --bg-2: var(--light-bg-2);
  --bg-3: var(--light-bg-3);
  --text: var(--light-text);
  --text-muted: var(--light-muted);
  --text-faint: var(--light-faint);
  --border: var(--light-border);
  background:
    radial-gradient(ellipse 74% 58% at 78% 18%, rgba(255,136,0,0.08), transparent 62%),
    radial-gradient(ellipse 58% 54% at 12% 88%, rgba(255,85,0,0.05), transparent 60%),
    rgba(255,255,255,0.96);
  color: var(--light-text);
}
.ueber-uns-inner {
  display: flex;
  gap: 80px;
  align-items: center;
}
.ueber-uns-inner > * { flex: 1 1 0; }
.visual-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.visual-block {
  flex: 1 1 calc(50% - 8px);
  min-height: 190px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 28px 24px;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.visual-block:hover {
  border-color: var(--border-hover);
  transform: scale(1.03);
}
.visual-block.v1, .visual-block.v3 {
  background: linear-gradient(135deg, rgba(255,85,0,0.08), var(--bg-card));
}
.visual-block.v2 {
  background: var(--bg-3);
  padding: 20px;
}
.about-logo { width: 100%; max-width: 140px; height: auto; margin: 0 auto; object-fit: contain; }
.stat-number {
  font-family: var(--font-display);
  font-size: 44.8px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12.8px;
  color: var(--text-muted);
  line-height: 1.3;
}
.about-deco-ring {
  position: absolute;
  width: 300px; height: 300px;
  border: 1px solid rgba(255,85,0,0.1);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: rotateSlow 20s linear infinite;
  pointer-events: none;
}
@keyframes rotateSlow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.ueber-uns-visual { position: relative; }
.ueber-uns-text .section-label { display: inline-block; margin-bottom: 16px; }
.ueber-uns-text .section-title {
  text-align: left;
  margin-bottom: 28px;
}
.ueber-uns-text p {
  color: var(--text-muted);
  font-size: 15.52px;
  line-height: 1.85;
  margin-bottom: 20px;
}
.ueber-uns-text .btn { margin-top: 16px; }
.ueber-uns-text--teaser {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.ueber-uns-text--teaser .section-title {
  max-width: 760px;
}
.about-title-animated {
  display: flex;
  flex-direction: column;
  gap: 0.04em;
  overflow: visible;
  background: none !important;
  -webkit-text-fill-color: initial !important;
  color: #0B0B0B;
}
.about-title-line {
  position: relative;
  display: block;
  overflow: hidden;
  width: fit-content;
  padding: 0 0.04em 0.08em 0;
}
.about-title-line > span {
  display: block;
  color: #0B0B0B;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: currentColor;
  background-clip: border-box;
  opacity: 0;
  transform: translateY(110%) skewY(3deg);
  transform-origin: left bottom;
  will-change: transform, opacity;
}
.about-title-line em {
  font-style: normal;
  color: var(--accent);
  background: linear-gradient(90deg, #d95a00 0%, var(--accent) 52%, #ff8a2a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-title-line::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.02em;
  height: 0.08em;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), transparent);
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
}
.ueber-uns-text--teaser.visible .about-title-line > span {
  animation: aboutTitleLineRise 0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--about-delay, 0s) forwards;
}
.ueber-uns-text--teaser.visible .about-title-line::after {
  animation: aboutTitleUnderlineSweep 0.82s cubic-bezier(0.22, 1, 0.36, 1) calc(var(--about-delay, 0s) + 0.04s) forwards;
}
@keyframes aboutTitleLineRise {
  0% {
    opacity: 0;
    transform: translateY(110%) skewY(3deg);
  }
  58% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0) skewY(0);
  }
}
@keyframes aboutTitleUnderlineSweep {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  38% {
    opacity: 1;
    transform: scaleX(1);
  }
  100% {
    opacity: 0;
    transform: scaleX(0);
    transform-origin: right center;
  }
}
.ueber-uns-text--teaser p {
  max-width: 720px;
  color: #2e3038;
  text-align: left;
  opacity: 0;
  transform: translateY(34px);
  will-change: transform, opacity;
}
.ueber-uns-text--teaser.visible p {
  animation: aboutTextRise 0.68s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.ueber-uns-text--teaser.visible p:nth-of-type(1) {
  animation-delay: 0.62s;
}
.ueber-uns-text--teaser.visible p:nth-of-type(2) {
  animation-delay: 0.76s;
}
.ueber-uns-text--teaser .btn {
  min-width: 270px;
  padding: 12px 44px;
  font-size: 18.4px;
  margin-top: 30px;
  opacity: 0;
  transform: translateY(34px);
  will-change: transform, opacity;
}
.ueber-uns-text--teaser.visible .btn {
  animation: aboutTextRise 0.68s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
}
@keyframes aboutTextRise {
  0% {
    opacity: 0;
    transform: translateY(34px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.ueber-uns-visual--teaser {
  min-height: 520px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 22px;
  background:
    radial-gradient(circle at 78% 20%, rgba(255,85,0,0.18), transparent 36%),
    radial-gradient(circle at 16% 82%, rgba(255,255,255,0.09), transparent 34%),
    #0B0B0B;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 34px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 24px;
}
.ueber-uns-image-teaser {
  padding: 0;
  display: block;
  background: #0B0B0B;
}
.ueber-uns-image-teaser picture,
.ueber-uns-image-teaser img {
  display: block;
  width: 100%;
  height: 100%;
}
.ueber-uns-image-teaser img {
  object-fit: cover;
}
.ueber-uns-image-teaser::before,
.ueber-uns-image-teaser::after {
  display: none;
}
.ueber-uns-visual--teaser::before,
.ueber-uns-visual--teaser::after {
  content: '';
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(255,85,0,0.16);
  border-radius: 50%;
  z-index: 0;
}
.ueber-uns-visual--teaser::before {
  width: 360px;
  height: 360px;
  right: -120px;
  top: -120px;
}
.ueber-uns-visual--teaser::after {
  width: 260px;
  height: 260px;
  left: -90px;
  bottom: -90px;
}
.about-system-mark,
.about-system-flow,
.about-system-grid,
.about-system-note {
  position: relative;
  z-index: 1;
}
.about-system-mark {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 20px;
}
.about-system-mark img {
  width: min(260px, 72%);
  height: auto;
}
.about-system-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.about-system-flow span {
  min-height: 36px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 13.6px;
  font-weight: 800;
}
.about-system-flow i {
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.about-system-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: center;
}
.about-system-grid div {
  min-height: 112px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.045);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}
.about-system-grid div:hover {
  border-color: rgba(255,85,0,0.42);
  background: rgba(255,255,255,0.07);
  transform: translateY(-2px);
}
.about-system-grid strong {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 1;
  margin-bottom: 8px;
}
.about-system-grid span,
.about-system-note span {
  color: rgba(255,255,255,0.72);
  font-size: 13.8px;
  line-height: 1.45;
}
.about-system-note {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}
.about-system-note strong {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.1;
}
.about-profile {
  background:
    radial-gradient(ellipse 62% 55% at 82% 18%, rgba(255,136,0,0.15), transparent 62%),
    var(--light-bg);
  color: var(--light-text);
}
.about-profile-layout,
.about-profile-panel,
.about-profile-copy {
  min-width: 0;
}
.about-profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 56px;
  align-items: stretch;
}
.about-profile-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-profile-copy .section-title {
  background: linear-gradient(135deg, var(--light-text) 58%, var(--light-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: left;
  margin-bottom: 24px;
}
.about-profile-copy p {
  color: var(--light-muted);
  font-size: 16.4px;
  line-height: 1.8;
  margin-bottom: 18px;
}
.about-profile-copy .btn {
  align-self: flex-start;
  margin-top: 12px;
  min-height: 44px;
  padding-top: 11px;
  padding-bottom: 11px;
  line-height: 1.2;
}
.about-profile-panel {
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.09);
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.09), transparent 36%),
    radial-gradient(circle at 100% 100%, rgba(255,85,0,0.16), transparent 42%),
    #0B0B0B;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  min-height: 520px;
  box-shadow: var(--shadow-light);
}
.about-profile-logo {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-profile-logo img {
  width: min(300px, 82%);
  height: auto;
}
.about-profile-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.about-profile-stats div {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 18px 12px;
  text-align: center;
  background: rgba(255,255,255,0.045);
}
.about-profile-stats strong {
  display: block;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
  margin-bottom: 8px;
}
.about-profile-stats span {
  color: rgba(255,255,255,0.72);
  font-size: 12.4px;
  line-height: 1.35;
}
.about-profile-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.about-profile-stack span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 13.2px;
  font-weight: 800;
}
.about-principles {
  background: #0B0B0B;
  color: #ffffff;
}
.about-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.about-principle-card {
  min-height: 300px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.08), transparent 34%),
    #15161D;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.about-principle-card:hover {
  border-color: rgba(255,85,0,0.42);
  transform: translateY(-3px);
  box-shadow: 0 18px 46px rgba(255,85,0,0.12);
}
.about-principle-card span {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(30deg, #d95a00 0%, var(--accent) 46%, #ff8a2a 100%);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 28px;
}
.about-principle-card h3 {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.about-principle-card p {
  color: rgba(255,255,255,0.74);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   LEISTUNGEN SECTION
   ============================================================ */
.leistungen {
  background:
    radial-gradient(ellipse 70% 55% at 76% 18%, rgba(255,85,0,0.08), transparent 62%),
    radial-gradient(ellipse 58% 52% at 12% 88%, rgba(255,138,42,0.05), transparent 60%),
    #eef0f4;
}
.leistungen-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 60px;
}
.leistung-card {
  --card-runner-soft: rgba(255,255,255,0.14);
  --card-runner-bright: rgba(255,255,255,0.92);
  --card-runner-main: rgba(255,255,255,0.64);
  --card-runner-glow-strong: rgba(255,255,255,0.32);
  --card-runner-glow-soft: rgba(255,255,255,0.14);
  flex: 1 1 calc(33.333% - 16px);
  min-width: 300px;
  background: var(--bg-card);
  border: 0;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--border);
}
.leistung-card::after {
  content: none;
  display: none;
}
.leistung-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: inset 0 0 0 1px var(--border-hover), var(--shadow), var(--shadow-glow);
}
.leistung-card:hover::after { transform: none; }
.leistung-card--wide {
  flex-basis: calc(66.666% - 12px);
}
.leistung-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: rgba(255,85,0,0.08);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--transition);
}
.leistung-card:hover .leistung-number { color: rgba(255,85,0,0.15); }
#leistung-professionelle-webseiten {
  --card-runner-soft: rgba(255,85,0,0.2);
  --card-runner-bright: #ff9b38;
  --card-runner-main: #ff5400;
  --card-runner-glow-strong: rgba(255,85,0,0.6);
  --card-runner-glow-soft: rgba(255,85,0,0.28);
  border-color: rgba(255,85,0,0.28);
  background:
    radial-gradient(ellipse 78% 90% at 18% 12%, rgba(255,85,0,0.38), transparent 58%),
    radial-gradient(ellipse 72% 86% at 90% 86%, rgba(255,138,42,0.26), transparent 62%),
    linear-gradient(135deg, #6a3c2b 0%, #5a3930 38%, #493433 68%, #352d30 100%);
  box-shadow: inset 0 0 0 1px rgba(255,85,0,0.28);
}
#leistung-professionelle-webseiten::after {
  background: linear-gradient(90deg, rgba(255,85,0,0.2), rgba(255,138,42,0.82), rgba(255,85,0,0.2));
}
#leistung-professionelle-webseiten:hover {
  border-color: rgba(255,85,0,0.54);
  box-shadow: inset 0 0 0 1px rgba(255,85,0,0.54);
}
.leistung-card-icon {
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
  border-radius: 24px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 18%, rgba(255,255,255,0.34), transparent 34%),
    linear-gradient(135deg, #d95a00 0%, var(--accent) 52%, #ff8a2a 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 18px 34px rgba(255,85,0,0.18);
  overflow: hidden;
  position: relative;
}
#leistung-professionelle-webseiten .leistung-card-icon {
  width: 176px;
  height: 176px;
  flex-basis: 176px;
  margin: 0 auto 24px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
.leistung-card-icon::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 23px;
  border: 1px solid rgba(255,255,255,0.18);
  pointer-events: none;
}
#leistung-professionelle-webseiten .leistung-card-icon::after {
  display: none;
}
#leistung-professionelle-webseiten .leistung-card-icon::before,
#leistung-google-ads .leistung-card-icon::before,
#leistung-it-loesungen-fuer-unternehmen .leistung-card-icon::before,
#leistung-design-und-werbemittel .leistung-card-icon::before {
  content: '';
  position: absolute;
  inset: -8%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 44%, rgba(255,255,255,0.46) 0%, rgba(255,255,255,0.22) 30%, rgba(255,255,255,0.08) 52%, rgba(255,255,255,0) 74%);
  filter: blur(8px);
  opacity: 0.95;
  pointer-events: none;
  z-index: 0;
}
.leistung-lottie-icon {
  width: 78px;
  height: 78px;
  display: block;
  position: relative;
  z-index: 1;
}
#leistung-professionelle-webseiten .leistung-lottie-icon {
  width: 176px;
  height: 176px;
  filter: none;
}
.leistung-lottie-icon svg {
  width: 100% !important;
  height: 100% !important;
  display: block;
}
.leistung-icon {
  width: 48px; height: 48px;
  color: var(--accent);
  margin-bottom: 20px;
}
.leistung-icon svg { width: 100%; height: 100%; }
.leistung-card h2,
.leistung-card h3 {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 10px;
  color: var(--text);
}
#leistung-professionelle-webseiten h3,
#leistung-professionelle-webseiten > p,
#leistung-professionelle-webseiten .leistung-desc,
#leistung-professionelle-webseiten .leistung-cta {
  color: #ffffff;
}
#leistung-professionelle-webseiten h3,
#leistung-professionelle-webseiten > p {
  text-align: center;
}
#leistung-professionelle-webseiten .leistung-desc {
  color: rgba(255,255,255,0.84);
  text-align: center;
}
#leistung-professionelle-webseiten .leistung-list {
  justify-content: center;
}
#leistung-professionelle-webseiten .leistung-list li {
  border-color: rgba(255,138,42,0.48);
  background:
    linear-gradient(135deg, rgba(255,85,0,0.82), rgba(255,138,42,0.72));
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}
#leistung-professionelle-webseiten:hover .leistung-list li {
  border-color: rgba(255,184,90,0.68);
  background:
    linear-gradient(135deg, rgba(255,85,0,0.96), rgba(255,138,42,0.86));
}
#leistung-professionelle-webseiten .leistung-cta {
  align-self: center;
}
#leistung-google-ads {
  --card-runner-soft: rgba(60,139,217,0.2);
  --card-runner-bright: #74b8f2;
  --card-runner-main: #3C8BD9;
  --card-runner-glow-strong: rgba(60,139,217,0.58);
  --card-runner-glow-soft: rgba(60,139,217,0.28);
  background:
    radial-gradient(circle at 22% 12%, rgba(60,139,217,0.36), transparent 34%),
    radial-gradient(circle at 88% 86%, rgba(116,184,242,0.16), transparent 40%),
    linear-gradient(135deg, #26313f 0%, #151c27 48%, #0B0B0B 100%);
  border-color: rgba(60,139,217,0.34);
  box-shadow: inset 0 0 0 1px rgba(60,139,217,0.34);
}
#leistung-google-ads:hover {
  border-color: rgba(116,184,242,0.58);
  box-shadow: inset 0 0 0 1px rgba(116,184,242,0.58);
}
#leistung-google-ads .leistung-card-icon {
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
#leistung-google-ads .leistung-card-icon::after {
  display: none;
}
#leistung-google-ads h3,
#leistung-google-ads > p,
#leistung-google-ads .leistung-desc,
#leistung-google-ads .leistung-cta {
  color: #ffffff;
}
#leistung-google-ads > p,
#leistung-google-ads .leistung-desc {
  color: rgba(255,255,255,0.86);
}
#leistung-google-ads .leistung-list li {
  border-color: rgba(116,184,242,0.52);
  background:
    radial-gradient(circle at 22% 18%, rgba(255,255,255,0.28), transparent 36%),
    linear-gradient(135deg, rgba(60,139,217,0.82), rgba(34,78,132,0.72) 54%, rgba(18,38,64,0.86));
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 8px 18px rgba(60,139,217,0.12);
}
#leistung-google-ads:hover .leistung-list li {
  border-color: rgba(153,205,249,0.7);
  background:
    radial-gradient(circle at 22% 18%, rgba(255,255,255,0.34), transparent 36%),
    linear-gradient(135deg, rgba(78,158,231,0.92), rgba(40,94,154,0.82) 54%, rgba(18,38,64,0.9));
}
#leistung-it-loesungen-fuer-unternehmen,
#leistung-design-und-werbemittel {
  --card-runner-soft: rgba(255,255,255,0.14);
  --card-runner-bright: rgba(255,255,255,0.92);
  --card-runner-main: rgba(255,255,255,0.64);
  --card-runner-glow-strong: rgba(255,255,255,0.32);
  --card-runner-glow-soft: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.13);
  background:
    radial-gradient(circle at 18% 12%, rgba(255,84,0,0.12), transparent 30%),
    radial-gradient(circle at 86% 90%, rgba(255,84,0,0.16), transparent 42%),
    linear-gradient(145deg, #2D2F38 0%, #1b1d25 48%, #0B0B0B 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.13);
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  column-gap: 18px;
  align-content: start;
  align-items: center;
}
#leistung-design-und-werbemittel {
  background:
    radial-gradient(circle at 20% 10%, rgba(255,84,0,0.16), transparent 32%),
    radial-gradient(circle at 88% 90%, rgba(255,84,0,0.1), transparent 42%),
    linear-gradient(145deg, #343640 0%, #1d1f28 48%, #0B0B0B 100%);
}
#leistung-it-loesungen-fuer-unternehmen:hover,
#leistung-design-und-werbemittel:hover {
  border-color: rgba(255,255,255,0.34);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.34);
}
#leistung-it-loesungen-fuer-unternehmen .leistung-card-icon,
#leistung-design-und-werbemittel .leistung-card-icon {
  width: 96px;
  height: 96px;
  flex-basis: 96px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  grid-column: 1;
  grid-row: 1;
  margin: 0;
}
#leistung-it-loesungen-fuer-unternehmen .leistung-card-icon::after,
#leistung-design-und-werbemittel .leistung-card-icon::after {
  display: none;
}
#leistung-it-loesungen-fuer-unternehmen .leistung-lottie-icon,
#leistung-design-und-werbemittel .leistung-lottie-icon {
  width: 96px;
  height: 96px;
  filter: none;
}
#leistung-it-loesungen-fuer-unternehmen h3,
#leistung-it-loesungen-fuer-unternehmen > p,
#leistung-it-loesungen-fuer-unternehmen .leistung-desc,
#leistung-it-loesungen-fuer-unternehmen .leistung-cta,
#leistung-design-und-werbemittel h3,
#leistung-design-und-werbemittel > p,
#leistung-design-und-werbemittel .leistung-desc,
#leistung-design-und-werbemittel .leistung-cta {
  color: #ffffff;
}
#leistung-it-loesungen-fuer-unternehmen h3,
#leistung-design-und-werbemittel h3 {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  margin: 0;
}
#leistung-it-loesungen-fuer-unternehmen > p,
#leistung-it-loesungen-fuer-unternehmen .leistung-desc,
#leistung-it-loesungen-fuer-unternehmen .leistung-list,
#leistung-it-loesungen-fuer-unternehmen .leistung-cta,
#leistung-design-und-werbemittel > p,
#leistung-design-und-werbemittel .leistung-desc,
#leistung-design-und-werbemittel .leistung-list,
#leistung-design-und-werbemittel .leistung-cta {
  grid-column: 1 / -1;
}
#leistung-it-loesungen-fuer-unternehmen > p,
#leistung-design-und-werbemittel > p {
  margin-top: 18px;
}
#leistung-it-loesungen-fuer-unternehmen > p,
#leistung-it-loesungen-fuer-unternehmen .leistung-desc,
#leistung-design-und-werbemittel > p,
#leistung-design-und-werbemittel .leistung-desc {
  color: rgba(255,255,255,0.84);
}
#leistung-it-loesungen-fuer-unternehmen .leistung-list li,
#leistung-design-und-werbemittel .leistung-list li {
  border-color: rgba(255,255,255,0.34);
  background: rgba(255,255,255,0.14);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16);
}
#leistung-it-loesungen-fuer-unternehmen:hover .leistung-list li,
#leistung-design-und-werbemittel:hover .leistung-list li {
  border-color: rgba(255,255,255,0.38);
  background: rgba(255,255,255,0.2);
}
#leistung-it-loesungen-fuer-unternehmen .leistung-cta,
#leistung-design-und-werbemittel .leistung-cta {
  border: 0;
  background: linear-gradient(to left, #ff8a2a, var(--accent), #d95a00);
}
#leistung-it-loesungen-fuer-unternehmen .leistung-cta:hover,
#leistung-design-und-werbemittel .leistung-cta:hover {
  background: linear-gradient(to left, #ff7a16, #ff4f00, #c94f00);
}
.leistung-card > p {
  font-size: 18px;
  line-height: 1.45;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}
.leistung-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.62;
  margin-bottom: 22px;
}
.leistung-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  flex: 1;
}
.leistung-list li {
  font-size: 14px;
  line-height: 1.25;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: rgba(255,255,255,0.02);
  transition: all var(--transition);
}
.leistung-card:hover .leistung-list li {
  border-color: rgba(255,85,0,0.2);
}
.leistung-cta {
  width: fit-content;
  max-width: 100%;
  min-width: 140px;
  min-height: 40px;
  padding: 9px 22px;
  border: 0;
  border-radius: 30px;
  background: linear-gradient(to left, #ff8a2a, var(--accent), #d95a00);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.12px;
  color: #ffffff;
  transition: background var(--transition), transform var(--transition), color var(--transition), box-shadow var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.116);
}
.leistung-cta::after {
  content: '→';
  font-size: 18px;
  line-height: 1;
  transition: transform var(--transition);
}
.leistung-cta:hover {
  background: linear-gradient(to left, #ff7a16, #ff4f00, #c94f00);
  letter-spacing: 0;
  animation: buttonPulse 1.5s infinite;
}
.leistung-cta:hover::after {
  transform: translateX(4px);
}
#leistung-professionelle-webseiten .leistung-cta,
#leistung-google-ads .leistung-cta {
  border: 0;
  background: linear-gradient(to left, #ff8a2a, var(--accent), #d95a00);
  color: #ffffff;
}
#leistung-professionelle-webseiten .leistung-cta:hover,
#leistung-google-ads .leistung-cta:hover {
  background: linear-gradient(to left, #ff7a16, #ff4f00, #c94f00);
}
.leistung-cta::after {
  display: none !important;
  content: none !important;
}
.leistung-cta:hover::after {
  transform: none !important;
}

.leistungen-cta-block {
  text-align: center;
  padding: 52px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.leistungen-cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,85,0,0.06), transparent 70%);
}
.leistungen-cta-block p {
  font-size: 17.6px;
  color: var(--text-muted);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.leistungen-cta-block .btn { position: relative; z-index: 1; }

/* ============================================================
   ZIELGRUPPEN SECTION
   ============================================================ */
.zielgruppen { background: var(--bg); }
.zielgruppen-wrapper {
  display: flex;
  gap: 60px;
  align-items: center;
}
.zielgruppen-wrapper > * { flex: 1 1 0; }
.ziel-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16.8px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition), padding-left var(--transition);
  cursor: default;
}
.ziel-item:hover {
  color: var(--text);
  padding-left: 12px;
}
.ziel-item:hover .ziel-num { color: var(--accent); }
.ziel-num {
  font-family: var(--font-display);
  font-size: 12.48px;
  font-weight: 700;
  color: var(--text-faint);
  width: 28px;
  flex-shrink: 0;
  transition: color var(--transition);
}
.conclusion-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  position: relative;
  overflow: visible;
}
.conclusion-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at top right, rgba(255,85,0,0.08), transparent 70%);
}
.conclusion-icon {
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.conclusion-card h3 {
  font-family: var(--font-display);
  font-size: 25.6px;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.conclusion-card p {
  color: var(--text-muted);
  font-size: 15.2px;
  line-height: 1.8;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.conclusion-card .btn {
  position: relative;
  z-index: 1;
  min-height: 44px;
  padding-top: 11px;
  padding-bottom: 11px;
  line-height: 1.2;
}

/* ============================================================
   ABLAUF SECTION
   ============================================================ */
.ablauf {
  --bg: #0B0B0B;
  --bg-2: #0B0B0B;
  --bg-3: #0B0B0B;
  --bg-card: #0B0B0B;
  --text: #ffffff;
  --text-muted: #f2f2f4;
  --text-faint: #c9cbd3;
  --border: rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(ellipse 70% 55% at 76% 18%, rgba(255,85,0,0.10), transparent 62%),
    radial-gradient(ellipse 58% 52% at 12% 88%, rgba(255,138,42,0.06), transparent 60%),
    rgba(21,22,29,0.72);
  color: var(--text);
  overflow: hidden;
}
.ablauf::before {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
  z-index: 0;
}
.ablauf > .container {
  position: relative;
  z-index: 2;
}
.ablauf-inner {
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.28fr);
  gap: 24px;
  align-items: stretch;
}
.ablauf-intro {
  --card-runner-soft: rgba(255,85,0,0.2);
  --card-runner-bright: #ff9b38;
  --card-runner-main: #ff5400;
  --card-runner-glow-strong: rgba(255,85,0,0.6);
  --card-runner-glow-soft: rgba(255,85,0,0.28);
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.08), transparent 36%),
    #0B0B0B;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.09);
}
.ablauf-intro .section-label {
  align-self: flex-start;
  color: #ffffff;
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.10);
}
.ablauf-intro .section-title {
  background: linear-gradient(135deg, #ffffff 58%, rgba(255,255,255,0.72));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ablauf-intro .title-accent-word {
  background: linear-gradient(135deg, #ff5400 0%, #ff8a2a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ablauf-intro .section-text {
  color: rgba(255,255,255,0.82);
}
.ablauf-intro .btn {
  width: 100%;
  min-width: 0;
  margin-top: auto;
}
.ablauf-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1fr);
  gap: 16px;
  position: relative;
  min-height: 0;
  height: 100%;
}
.ablauf-step {
  --step-card-padding: 26px;
  --card-runner-soft: rgba(255,85,0,0.2);
  --card-runner-bright: #ff9b38;
  --card-runner-main: #ff5400;
  --card-runner-glow-strong: rgba(255,85,0,0.6);
  --card-runner-glow-soft: rgba(255,85,0,0.28);
  min-width: 0;
  min-height: 0;
  position: relative;
  padding: var(--step-card-padding);
  border: 0;
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.08), transparent 36%),
    #0B0B0B;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.09);
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}
.ablauf-step::before {
  content: none;
  display: none;
}
.ablauf-step > :not(.ablauf-card-runner) {
  position: relative;
  z-index: 1;
}
.ablauf-step > .ablauf-card-runner {
  position: absolute;
  z-index: 2;
}
.step-line { display: none; }
.step-image-card {
  width: calc(100% + (var(--step-card-padding) * 2));
  max-width: none;
  flex: 0 0 auto;
  aspect-ratio: 3 / 4;
  margin: calc(var(--step-card-padding) * -1) calc(var(--step-card-padding) * -1) 0;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.08), transparent 36%),
    rgba(255,255,255,0.04);
  box-shadow: none;
}
.step-image-card picture,
.step-image-card img {
  display: block;
  width: 100%;
  height: 100%;
}
.step-image-card img {
  object-fit: cover;
  object-position: center;
}
.step-circle {
  --step-circle-size: 56px;
  width: var(--step-circle-size);
  height: var(--step-circle-size);
  min-width: var(--step-circle-size);
  min-height: var(--step-circle-size);
  flex: 0 0 var(--step-circle-size);
  aspect-ratio: 1;
  border-radius: 16px;
  background: linear-gradient(to left, #ff8a2a, var(--accent), #d95a00);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.2),
    5px 5px 10px rgba(0,0,0,0.116),
    0 14px 28px rgba(255,84,0,0.22);
  transition: transform var(--transition), background 0.4s ease, box-shadow 0.4s ease;
}
.ablauf-step:hover .step-circle {
  transform: translateY(-2px) scale(1.03);
  background: linear-gradient(to left, #ff7a16, #ff4f00, #c94f00);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.22),
    5px 5px 10px rgba(0,0,0,0.116),
    0 18px 34px rgba(255,84,0,0.32);
}
.step-num {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
}
.step-circle--lottie {
  overflow: hidden;
}
.step-lottie-icon {
  display: block;
  width: 38px;
  height: 38px;
  pointer-events: none;
}
.step-lottie-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.step-circle--lottie:not(.is-loaded) .step-lottie-icon {
  opacity: 0;
}
.step-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 760;
  line-height: 1.16;
  margin-bottom: 12px;
  color: #ffffff;
}
.step-content p {
  font-size: 15.4px;
  color: rgba(255,255,255,0.78);
  line-height: 1.62;
}
@media (max-width: 900px) {
  .ablauf-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .ablauf-intro {
    padding: 26px 22px;
    text-align: center;
  }
  .ablauf-intro .section-label {
    align-self: center;
  }
  .ablauf-intro .section-title,
  .ablauf-intro .section-text {
    text-align: center;
  }
  .ablauf-intro .btn {
    min-height: 54px;
    font-size: 17px;
  }
  .ablauf-steps,
  .page-home .ablauf-steps {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 14px;
    height: auto;
  }
  .ablauf-step,
  .page-home .ablauf-step {
    --step-card-padding: 22px;
    padding: var(--step-card-padding);
    text-align: center;
  }
  .step-content h3,
  .page-home .step-content h3 {
    font-size: 21px;
  }
  .step-content p,
  .page-home .step-content p {
    font-size: 15px;
  }
}

/* ============================================================
   REFERENZEN SECTION
   ============================================================ */
.referenzen { background: var(--bg); }
.referenzen-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 52px;
}
.referenz-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.project-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
.project-card {
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(150px, 1fr) auto;
  background:
    radial-gradient(circle at 18% 0%, rgba(255,85,0,0.14), transparent 34%),
    linear-gradient(145deg, rgba(45,47,56,0.98), rgba(11,11,11,0.98));
  box-shadow: none;
}
.project-card:hover {
  box-shadow: none;
  transform: none !important;
}
.project-media {
  position: relative;
  min-height: 126px;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 10%, rgba(255,85,0,0.18), transparent 34%),
    linear-gradient(145deg, #22242c, #0B0B0B);
}
.project-company-head {
  min-width: 0;
  min-height: 62px;
  display: grid;
  grid-template-columns: minmax(0, 92px) minmax(0, auto) minmax(0, 92px);
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 9px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(11,11,11,0.42);
}
.project-company-logo {
  grid-column: 1;
  justify-self: end;
  width: auto;
  max-width: 92px;
  height: 30px;
  flex: 0 0 auto;
  object-fit: contain;
  padding: 4px 7px;
  border-radius: 8px;
  background: rgba(255,255,255,0.92);
}
.project-company-logo--plain {
  max-width: 86px;
  height: 32px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}
.project-company-copy {
  grid-column: 2;
  justify-self: center;
  width: auto;
  min-width: 0;
  display: grid;
  gap: 4px;
  align-items: center;
  justify-items: center;
  padding: 0;
  text-align: center;
}
.project-company-head > strong {
  grid-column: 2;
  justify-self: center;
}
.project-company-head strong {
  min-width: 0;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
}
.project-company-copy > strong,
.project-company-copy > small {
  grid-column: 1;
  justify-self: center;
}
.project-company-head small {
  display: block;
  overflow: hidden;
  color: rgba(255,138,42,0.88);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.8px;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.project-image {
  width: 100%;
  height: 100%;
  min-height: 126px;
  box-sizing: border-box;
  object-fit: cover;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.28s ease, transform 0.45s ease;
}
.project-card.is-project-type-logo .project-media {
  background: #ffffff;
}
.project-card.is-project-type-logo .project-image {
  object-fit: contain;
  padding: 28px;
  background: #ffffff;
}
.project-card.has-logo-variants.is-project-type-logo .project-image {
  display: none;
}
.project-logo-variants {
  display: none;
  width: 100%;
  height: 100%;
  min-height: 126px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
}
.project-logo-variants.is-visible {
  display: grid;
}
.project-logo-variant {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  justify-items: center;
  gap: 8px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}
.project-logo-variant--light {
  background: #ffffff;
}
.project-logo-variant--dark {
  background:
    radial-gradient(circle at 22% 12%, rgba(255,255,255,0.08), transparent 34%),
    linear-gradient(145deg, #22242c, #0B0B0B);
}
.project-logo-variant img {
  max-width: min(150px, 92%);
  max-height: 76px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.project-logo-variant span {
  color: rgba(255,255,255,0.72);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.project-logo-variant--light span {
  color: rgba(16,19,33,0.62);
}
.project-media-variants {
  display: none;
  width: 100%;
  height: 100%;
  min-height: 126px;
  gap: 10px;
  padding: 12px;
}
.project-media-variants.is-visible {
  display: grid;
}
.project-media-variants--flyer {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}
.project-media-variants--business-card {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.project-media-variant {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  justify-items: center;
  gap: 6px;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,0.08), transparent 34%),
    linear-gradient(145deg, #242731, #111218);
}
.project-media-variant img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.project-media-variant span {
  color: rgba(255,255,255,0.68);
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.project-card:is(.has-flyer-variants.is-project-type-flyer, .has-business-card-variants.is-project-type-visitenkarte) .project-image {
  display: none;
}
.project-card.has-google-ads.is-project-type-google_ads .project-media {
  background:
    radial-gradient(circle at 18% 8%, rgba(255,85,0,0.2), transparent 32%),
    radial-gradient(circle at 86% 82%, rgba(255,138,42,0.12), transparent 38%),
    linear-gradient(145deg, #20232c, #0B0B0B);
}
.project-google-ads-preview {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: none;
  padding: 0;
}
.project-google-ads-preview.is-visible {
  display: block;
}
.project-google-ads-preview.is-prewarming {
  display: block;
  visibility: hidden;
  pointer-events: none;
}
.project-google-ads-detail-template {
  display: none;
}
.project-google-ads-detail-template.is-prewarming {
  position: absolute;
  left: -200vw;
  top: 0;
  width: min(1280px, calc(var(--viewport-width) - 64px));
  height: calc(var(--viewport-height) - var(--bottom-nav-height) - 48px);
  display: block;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
}
.google-ads-view {
  color: #ffffff;
}
.google-ads-view--compact {
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(94px, 1fr) auto;
  gap: 10px;
  overflow: hidden;
  border: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,85,0,0.18), transparent 36%),
    linear-gradient(145deg, rgba(34,36,44,0.92), rgba(11,11,11,0.96));
  padding: 16px 14px 14px;
}
.google-ads-compact-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 5px;
  padding-right: 54px;
  text-align: left;
}
.google-ads-compact-head span {
  color: rgba(255,138,42,0.94);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}
.google-ads-compact-head span b {
  color: #ffb15c;
  font: inherit;
}
.google-ads-bars-shell {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 28px;
  align-items: stretch;
  gap: 10px;
}
.google-ads-bars-nav {
  width: 28px;
  height: 28px;
  align-self: center;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle at 24% 14%, rgba(255,255,255,0.2), transparent 34%),
    linear-gradient(135deg, rgba(255,85,0,0.8), rgba(217,90,0,0.72));
  transition: opacity 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.google-ads-bars-nav:hover {
  border-color: rgba(255,184,90,0.56);
  background:
    radial-gradient(circle at 24% 14%, rgba(255,255,255,0.28), transparent 34%),
    linear-gradient(135deg, rgba(255,118,24,0.92), rgba(255,85,0,0.84));
}
.google-ads-bars-nav:active {
  transform: scale(0.96);
}
.google-ads-bars-nav.is-disabled {
  opacity: 0.34;
}
.google-ads-bars-nav--prev.is-disabled {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.google-ads-bars-nav svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.google-ads-compact-bars {
  min-height: 0;
  display: flex;
  align-items: end;
  gap: 6px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-top: 4px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
}
.google-ads-compact-bars::-webkit-scrollbar,
.google-ads-chart::-webkit-scrollbar {
  display: none;
}
.google-ads-compact-bars span {
  height: 100%;
  flex: 0 0 44px;
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: end;
  justify-items: center;
  gap: 3px;
}
.google-ads-compact-bars i {
  width: 100%;
  min-height: 8px;
  height: var(--bar);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 5px;
  border-radius: 7px 7px 2px 2px;
  background:
    linear-gradient(180deg, rgba(255,138,42,0.95), rgba(255,85,0,0.86));
  transform-origin: bottom;
  animation: googleAdsBarRise 0.7s ease both;
  animation-delay: calc(var(--i) * 0.035s);
}
.google-ads-compact-bars i b {
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}
.google-ads-compact-bars span.is-best i {
  background:
    linear-gradient(180deg, rgba(255,184,90,0.98), rgba(255,85,0,0.96));
}
.google-ads-compact-bars small {
  max-width: 100%;
  overflow: hidden;
  color: rgba(255,255,255,0.76);
  font-size: 9.8px;
  font-weight: 900;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.google-ads-compact-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}
.google-ads-compact-stats span {
  min-width: 0;
  display: grid;
  gap: 6px;
  padding: 7px 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.045);
  color: rgba(255,255,255,0.62);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}
.google-ads-compact-stats b {
  overflow: hidden;
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.project-card.is-project-type-flyer .project-media {
  background:
    radial-gradient(circle at 18% 12%, rgba(255,255,255,0.1), transparent 34%),
    linear-gradient(145deg, #242731, #111218);
}
.project-card.is-project-type-flyer .project-image,
.project-card.is-project-type-visitenkarte .project-image {
  object-fit: contain;
  padding: 8px;
  background: transparent;
}
.project-card.is-project-type-visitenkarte .project-media {
  background:
    radial-gradient(circle at 18% 12%, rgba(255,255,255,0.1), transparent 34%),
    linear-gradient(145deg, #242731, #111218);
}
.project-card:hover .project-image {
  transform: none;
}
.project-image.is-empty {
  display: none;
}
.project-media.is-swapping .project-image {
  opacity: 0.38;
  transform: scale(1.02);
}
.project-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  background:
    radial-gradient(circle at 26% 18%, rgba(255,85,0,0.16), transparent 34%),
    radial-gradient(circle at 82% 84%, rgba(255,138,42,0.08), transparent 42%),
    linear-gradient(145deg, rgba(45,47,56,0.82), rgba(11,11,11,0.94));
}
.project-placeholder.is-visible {
  display: block;
}
.project-media-tool,
.project-website-actions {
  position: absolute;
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.project-media-tool[hidden] {
  display: none;
}
.project-media-tool.is-visible,
.project-website-actions.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.project-expand-btn {
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 28% 18%, rgba(255,255,255,0.22), transparent 34%),
    linear-gradient(135deg, rgba(58,60,70,0.98), rgba(17,18,23,0.96) 58%, rgba(11,11,11,0.98));
  box-shadow:
    0 0 0 1px rgba(255,85,0,0.16),
    0 0 18px rgba(255,85,0,0.16),
    0 12px 28px rgba(255,85,0,0.08);
  transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}
.project-expand-btn::before,
.project-expand-btn::after {
  content: '';
  position: absolute;
  border-radius: inherit;
  transition: opacity 0.4s ease;
}
.project-expand-btn::before {
  inset: 0;
  z-index: 3;
  opacity: 0.9;
  padding: 2px;
  background:
    conic-gradient(
      from 0deg,
      rgba(255,255,255,0) 0deg,
      rgba(255,255,255,0) 232deg,
      rgba(255,255,255,0.16) 260deg,
      rgba(255,255,255,0.92) 292deg,
      rgba(255,255,255,0.32) 322deg,
      rgba(255,255,255,0) 352deg,
      rgba(255,255,255,0) 360deg
    );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: projectZoomLightSpin 2.4s linear infinite;
}
.project-expand-btn::after {
  inset: 0;
  z-index: 1;
  opacity: 1;
  background:
    radial-gradient(circle at 28% 18%, rgba(255,255,255,0.22), transparent 34%),
    linear-gradient(135deg, rgba(58,60,70,0.98), rgba(17,18,23,0.96) 58%, rgba(11,11,11,0.98));
}
.project-card.is-project-type-logo .project-expand-btn {
  color: #ffffff;
}
.project-expand-btn svg {
  position: relative;
  z-index: 4;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.project-expand-btn:hover {
  background:
    radial-gradient(circle at 30% 18%, rgba(255,255,255,0.28), transparent 34%),
    linear-gradient(135deg, rgba(255,118,24,0.98), rgba(255,85,0,0.96) 52%, rgba(217,90,0,0.94));
  box-shadow:
    0 0 0 1px rgba(255,138,42,0.34),
    0 0 22px rgba(255,85,0,0.28),
    0 16px 34px rgba(255,85,0,0.26),
    0 12px 28px rgba(255,85,0,0.14);
}
.project-expand-btn:hover::after {
  background:
    radial-gradient(circle at 30% 18%, rgba(255,255,255,0.28), transparent 34%),
    radial-gradient(circle at 72% 82%, rgba(255,184,90,0.26), transparent 42%),
    linear-gradient(135deg, rgba(255,118,24,0.98), rgba(255,85,0,0.96) 52%, rgba(217,90,0,0.94));
}
.project-card.is-project-type-logo .project-expand-btn:hover {
  background:
    radial-gradient(circle at 30% 18%, rgba(255,255,255,0.28), transparent 34%),
    linear-gradient(135deg, rgba(255,118,24,0.98), rgba(255,85,0,0.96) 52%, rgba(217,90,0,0.94));
}
@keyframes projectZoomLightSpin {
  to {
    transform: rotate(360deg);
  }
}
.project-card.is-project-type-webseite.is-website-mobile-view .project-image {
  object-fit: contain;
  object-position: center center;
  padding: 8px;
  background:
    radial-gradient(circle at 22% 12%, rgba(255,85,0,0.12), transparent 36%),
    linear-gradient(145deg, #22242c, #0B0B0B);
}
.project-website-actions {
  right: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  gap: 5px;
  width: max-content;
}
.project-website-link {
  width: 100%;
  height: 31px;
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 5px 11px;
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 999px;
  box-sizing: border-box;
  color: #ffffff;
  font-size: 10.8px;
  font-weight: 900;
  line-height: 1;
  background:
    radial-gradient(circle at 24% 14%, rgba(255,255,255,0.22), transparent 34%),
    linear-gradient(135deg, rgba(255,85,0,0.92), rgba(217,90,0,0.86));
  box-shadow: 0 14px 30px rgba(0,0,0,0.26);
}
.project-website-link svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.project-website-link:hover {
  border-color: rgba(255,255,255,0.46);
  background:
    radial-gradient(circle at 24% 14%, rgba(255,255,255,0.26), transparent 34%),
    linear-gradient(135deg, rgba(255,118,24,0.95), rgba(255,85,0,0.9));
}
.project-website-view-toggle {
  width: 100%;
  height: 31px;
  min-height: 31px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 3px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  box-sizing: border-box;
  background:
    radial-gradient(circle at 24% 14%, rgba(255,255,255,0.18), transparent 36%),
    linear-gradient(135deg, rgba(18,19,24,0.9), rgba(11,11,11,0.82));
  box-shadow: 0 12px 28px rgba(0,0,0,0.22);
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.project-website-view-toggle button {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 5px 11px;
  border: 0;
  border-radius: 999px;
  color: rgba(255,255,255,0.7);
  font-size: 10.8px;
  font-weight: 900;
  line-height: 1;
  background: transparent;
  transition: color 0.4s ease, background 0.4s ease, transform 0.4s ease;
}
.project-website-view-toggle button:hover,
.project-website-view-toggle button.is-active {
  color: #ffffff;
  background:
    radial-gradient(circle at 24% 14%, rgba(255,255,255,0.24), transparent 34%),
    linear-gradient(135deg, rgba(255,85,0,0.88), rgba(217,90,0,0.8));
}
.project-website-view-toggle button:active {
  transform: scale(0.97);
}
.project-switcher {
  display: grid;
  grid-template-columns: repeat(var(--project-tabs, 5), minmax(0, 1fr));
  gap: 5px;
  padding: 8px;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: rgba(11,11,11,0.52);
}
.project-type-btn {
  min-width: 0;
  min-height: 42px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 6px 4px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 11px;
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.045);
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}
.project-type-btn svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.project-type-btn span {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 9.8px;
  line-height: 1.1;
  font-weight: 800;
}
.project-type-btn:hover,
.project-type-btn.is-active {
  color: #ffffff;
  border-color: rgba(255,122,42,0.58);
  background:
    radial-gradient(circle at 24% 14%, rgba(255,255,255,0.22), transparent 34%),
    linear-gradient(135deg, rgba(255,85,0,0.8), rgba(217,90,0,0.72));
}
.project-type-btn--google_ads:hover,
.project-type-btn--google_ads.is-active {
  border-color: rgba(116,184,242,0.62);
  background:
    radial-gradient(circle at 24% 14%, rgba(255,255,255,0.22), transparent 34%),
    linear-gradient(135deg, rgba(60,139,217,0.88), rgba(24,64,110,0.78));
}
.project-type-btn--logo:hover,
.project-type-btn--flyer:hover,
.project-type-btn--visitenkarte:hover,
.project-type-btn--logo.is-active,
.project-type-btn--flyer.is-active,
.project-type-btn--visitenkarte.is-active {
  border-color: rgba(255,255,255,0.32);
  background:
    radial-gradient(circle at 24% 14%, rgba(255,255,255,0.18), transparent 34%),
    linear-gradient(135deg, rgba(74,78,90,0.92), rgba(34,36,44,0.88));
}
.project-type-btn--more {
  color: #ffffff;
  border-color: rgba(255,138,42,0.36);
  background:
    radial-gradient(circle at 24% 14%, rgba(255,255,255,0.18), transparent 34%),
    linear-gradient(135deg, rgba(255,85,0,0.78), rgba(217,90,0,0.7));
}
.project-type-btn--more .card-arrow-icon {
  width: 17px;
  height: 17px;
}
.project-type-btn--more:hover {
  border-color: rgba(255,184,90,0.6);
  background:
    radial-gradient(circle at 24% 14%, rgba(255,255,255,0.24), transparent 34%),
    linear-gradient(135deg, rgba(255,118,24,0.9), rgba(255,85,0,0.82));
}
.project-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #ffffff;
  padding: 12px;
}
.project-info .ref-cat {
  margin: 0;
  color: rgba(255,85,0,0.92);
  font-size: 10.8px;
  line-height: 1.15;
}
.project-more-btn {
  flex: 0 0 auto;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  background:
    radial-gradient(circle at 24% 14%, rgba(255,255,255,0.18), transparent 34%),
    linear-gradient(to left, #3a3b42, #15161D, #0B0B0B);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 10px 20px rgba(0,0,0,0.18);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.project-more-btn:hover {
  border-color: rgba(255,138,42,0.44);
  background:
    radial-gradient(circle at 24% 14%, rgba(255,255,255,0.2), transparent 34%),
    linear-gradient(to left, #ff8a2a, var(--accent), #d95a00);
}
.referenz-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: none;
}
.project-card:hover {
  box-shadow: none;
  transform: none !important;
}
.project-card--placeholder {
  border-style: dashed;
  border-color: rgba(255,255,255,0.14);
}
.project-card--placeholder .project-media,
.project-card--placeholder .project-info {
  opacity: 0.82;
}
.project-card--all {
  min-height: 0;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --card-runner-soft: rgba(255,85,0,0.2);
  --card-runner-bright: #ff9b38;
  --card-runner-main: #ff5400;
  --card-runner-glow-strong: rgba(255,85,0,0.6);
  --card-runner-glow-soft: rgba(255,85,0,0.28);
  --card-runner-transparent-start: 70deg;
  --card-runner-soft-start: 80deg;
  --card-runner-bright-start: 90deg;
  --card-runner-main-start: 98deg;
  --card-runner-soft-end: 106deg;
  --card-runner-transparent-end: 118deg;
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 8%, rgba(255,85,0,0.24), transparent 34%),
    radial-gradient(circle at 88% 86%, rgba(255,138,42,0.14), transparent 42%),
    linear-gradient(145deg, #30323b 0%, #181920 48%, #0B0B0B 100%);
  border: 0;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.09),
    inset 0 1px 0 rgba(255,255,255,0.1);
}
.referenzen .project-card--all {
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.09),
    inset 0 1px 0 rgba(255,255,255,0.1);
}
body.page-home #projekte .project-card--all {
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.09),
    inset 0 1px 0 rgba(255,255,255,0.1);
}
.project-card--all::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0) 34%),
    linear-gradient(315deg, rgba(255,85,0,0.18), rgba(255,85,0,0) 38%);
  opacity: 0.74;
  pointer-events: none;
}
.project-card--all::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: inherit;
  pointer-events: none;
}
.project-card--all:hover {
  border-color: rgba(255,255,255,0.09);
  background:
    radial-gradient(circle at 20% 8%, rgba(255,85,0,0.32), transparent 34%),
    radial-gradient(circle at 88% 86%, rgba(255,138,42,0.2), transparent 42%),
    linear-gradient(145deg, #363842 0%, #202129 48%, #0B0B0B 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255,85,0,0.36),
    inset 0 1px 0 rgba(255,255,255,0.12);
}
.referenzen .project-card--all:hover {
  box-shadow:
    inset 0 0 0 1px rgba(255,85,0,0.36),
    inset 0 1px 0 rgba(255,255,255,0.12);
}
body.page-home #projekte .project-card--all:hover {
  box-shadow:
    inset 0 0 0 1px rgba(255,85,0,0.36),
    inset 0 1px 0 rgba(255,255,255,0.12);
}
.project-all-inner {
  width: 100%;
  min-height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  align-items: center;
  justify-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.project-all-icon {
  width: 112px;
  height: 112px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  margin-bottom: 8px;
  align-self: start;
}
.project-all-icon::before {
  display: none;
  content: none;
}
.project-all-icon::after {
  display: none;
  content: none;
}
.project-all-lottie-icon {
  width: 112px;
  height: 112px;
  display: block;
  position: relative;
  z-index: 1;
}
.project-all-lottie-icon svg {
  width: 100% !important;
  height: 100% !important;
  display: block;
  filter: drop-shadow(0 0 12px rgba(255,85,0,0.32));
}
.project-all-icon--lottie svg [stroke] {
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}
.project-all-icon--lottie:not(.is-loaded) .project-all-lottie-icon {
  opacity: 0;
}
.project-all-copy {
  max-width: 310px;
  margin: 0;
  color: rgba(255,255,255,0.76);
  font-size: 15.4px;
  font-weight: 400;
  line-height: 1.56;
  align-self: center;
}
.project-all-button {
  box-sizing: border-box;
  width: min(288px, 100%);
  min-width: 0;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 9px 22px;
  border: 0;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.12px;
  background: linear-gradient(to left, #ff8a2a, var(--accent), #d95a00);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.116);
  transition: transform 0.02s ease, background 0.18s ease, box-shadow 0.18s ease;
  align-self: end;
}
.project-all-button::before {
  display: none;
  content: none;
}
.project-card--all:hover .project-all-button {
  background: linear-gradient(to left, #ff7a16, #ff4f00, #c94f00);
  animation: buttonPulse 1.5s infinite;
}
.project-image-dialog {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 34px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.project-image-dialog.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.project-image-dialog__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11,11,11,0.78);
  backdrop-filter: blur(10px);
}
.project-image-dialog__panel {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(var(--viewport-width) - 68px));
  height: calc(var(--viewport-height) - 68px);
  max-height: none;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255,85,0,0.16), transparent 34%),
    linear-gradient(145deg, #22242c, #0B0B0B);
  box-shadow: 0 32px 90px rgba(0,0,0,0.46);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.25s ease;
}
.project-image-dialog.is-open .project-image-dialog__panel {
  transform: translateY(0) scale(1);
}
.project-image-dialog__head {
  min-width: 0;
  padding: 18px 70px 16px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.project-image-dialog__head span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255,138,42,0.92);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.project-image-dialog__head strong {
  display: block;
  overflow: hidden;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.12;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.project-image-dialog__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255,255,255,0.08);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.project-image-dialog__close:hover {
  border-color: rgba(255,138,42,0.5);
  background: rgba(255,85,0,0.2);
}
.project-image-dialog__close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}
.project-image-dialog__media {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08), transparent 34%),
    linear-gradient(145deg, #191b22, #0B0B0B);
}
.project-image-dialog.is-dialog-logo .project-image-dialog__media {
  background: #ffffff;
}
.project-image-dialog.is-dialog-google-ads .project-image-dialog__media {
  align-items: stretch;
  justify-content: stretch;
  padding: 16px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255,85,0,0.14), transparent 36%),
    radial-gradient(circle at 85% 90%, rgba(255,138,42,0.1), transparent 42%),
    linear-gradient(145deg, #171a22, #0B0B0B);
}
.project-image-dialog__media img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 0;
  transform-origin: center center;
  touch-action: none;
  user-select: none;
  -webkit-user-drag: none;
  will-change: transform;
}
.project-image-dialog__media > img[hidden] {
  display: none;
}
.project-image-dialog.is-dialog-logo .project-image-dialog__media > img {
  background: #ffffff;
}
.project-image-dialog__logo-grid {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-auto-rows: minmax(0, 1fr);
  gap: 22px;
}
.project-image-dialog__logo-grid[hidden] {
  display: none;
}
.project-image-dialog__logo-item {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  justify-items: center;
  gap: 14px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.14);
  overflow: hidden;
}
.project-image-dialog__logo-item[hidden] {
  display: none;
}
.project-image-dialog__logo-item--light {
  background: #ffffff;
}
.project-image-dialog__logo-item--dark {
  background:
    radial-gradient(circle at 24% 10%, rgba(255,255,255,0.1), transparent 34%),
    linear-gradient(145deg, #22242c, #0B0B0B);
}
.project-image-dialog__logo-item img {
  width: min(250px, 78%);
  height: auto;
  max-height: 250px;
  object-fit: contain;
}
.project-image-dialog__logo-item span {
  color: rgba(255,255,255,0.74);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.1px;
  line-height: 1;
  text-transform: uppercase;
}
.project-image-dialog__logo-item--light span {
  color: rgba(16,19,33,0.62);
}
.project-image-dialog__variant-grid {
  width: 100%;
  height: 100%;
  display: grid;
  gap: 18px;
}
.project-image-dialog__variant-grid[hidden] {
  display: none;
}
.project-image-dialog__variant-grid.is-flyer {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}
.project-image-dialog__variant-grid.is-visitenkarte {
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: none;
  grid-auto-rows: minmax(0, 1fr);
}
.project-image-dialog__variant-item {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  justify-items: center;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.14);
  overflow: hidden;
  touch-action: none;
  background:
    radial-gradient(circle at 24% 10%, rgba(255,255,255,0.1), transparent 34%),
    linear-gradient(145deg, #22242c, #0B0B0B);
}
.project-image-dialog__variant-item[hidden] {
  display: none;
}
.project-image-dialog__variant-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.project-image-dialog__variant-item span {
  color: rgba(255,255,255,0.74);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.1px;
  line-height: 1;
  text-transform: uppercase;
}
.project-image-dialog__ads {
  width: 100%;
  height: 100%;
  min-height: 0;
}
.project-image-dialog__ads[hidden] {
  display: none;
}
.google-ads-view--detail {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 14px;
  overflow: hidden;
  padding: 28px;
  background:
    radial-gradient(circle at 0% 92%, rgba(255,85,0,0.13), transparent 28%),
    radial-gradient(circle at 90% 8%, rgba(255,138,42,0.14), transparent 34%),
    linear-gradient(115deg, #101420, #15161D 48%, #22242c);
}
.google-ads-detail-head {
  min-width: 0;
}
.google-ads-detail-head span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 22px;
  border: 1px solid rgba(255,138,42,0.48);
  border-radius: 999px;
  color: #ffb15c;
  background:
    radial-gradient(circle at 20% 16%, rgba(255,255,255,0.18), transparent 34%),
    linear-gradient(135deg, rgba(255,85,0,0.22), rgba(217,90,0,0.12));
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.5px;
  line-height: 1;
  text-transform: uppercase;
}
.google-ads-detail-head h3 {
  margin-top: 0;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.02;
}
.google-ads-detail-head p {
  margin-top: 8px;
  color: rgba(255,255,255,0.64);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}
.google-ads-detail-grid {
  min-height: 0;
  display: grid;
  grid-template-columns: 0.78fr 1.42fr;
  gap: 18px;
}
.google-ads-summary-card,
.google-ads-chart-card,
.google-ads-kpi-grid > div {
  border: 1px solid rgba(255,255,255,0.13);
  background:
    radial-gradient(circle at 18% 0%, rgba(255,255,255,0.06), transparent 34%),
    rgba(11,11,11,0.28);
}
.google-ads-summary-card {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}
.google-ads-total strong {
  display: block;
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 800;
  line-height: 0.9;
}
.google-ads-total span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,0.88);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}
.google-ads-summary-card p {
  margin-top: 14px;
  color: rgba(255,255,255,0.64);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}
.google-ads-summary-card i {
  width: 100%;
  height: 8px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #ffb15c);
  transform-origin: left;
}
.google-ads-chart-card {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  padding: 26px;
}
.google-ads-chart-head strong {
  display: block;
  font-family: var(--font-display);
  font-size: 27px;
  line-height: 1.05;
}
.google-ads-chart-head span {
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}
.google-ads-chart {
  min-height: 0;
  height: 100%;
  display: flex;
  align-items: stretch;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 18px 2px 6px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  background: transparent;
}
.google-ads-chart-bar {
  min-height: 0;
  flex: 0 0 88px;
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: end;
  justify-items: center;
  gap: 7px;
}
.google-ads-chart-bar i {
  width: 100%;
  height: var(--bar);
  min-height: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 9px;
  border-radius: 12px 12px 4px 4px;
  background:
    linear-gradient(180deg, rgba(255,138,42,0.98), rgba(255,85,0,0.9));
  transform-origin: bottom;
}
.google-ads-chart-bar i b {
  color: #ffffff;
  font-size: 16px;
  font-weight: 950;
  line-height: 1;
}
.google-ads-chart-bar.is-best i {
  background:
    linear-gradient(180deg, #ffbc6f, var(--accent));
}
.google-ads-chart-bar small {
  color: rgba(255,255,255,0.76);
  font-size: 14.5px;
  font-weight: 800;
  line-height: 1;
}
.google-ads-bars-shell--detail {
  margin-top: 16px;
  grid-template-columns: 36px minmax(0, 1fr) 36px;
}
.google-ads-bars-shell--detail .google-ads-bars-nav {
  width: 36px;
  height: 36px;
}
.google-ads-budget-note {
  margin-top: 14px;
  color: rgba(255,255,255,0.9);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
}
.google-ads-budget-note strong {
  color: var(--accent);
  font: inherit;
  font-size: 1.12em;
  font-weight: 950;
}
.google-ads-budget-note--compact {
  max-width: 100%;
  margin-top: 0;
  color: rgba(255,255,255,0.9);
  font-size: 11.4px;
  font-weight: 800;
  line-height: 1.3;
}
.google-ads-kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.google-ads-kpi-grid > div {
  min-width: 0;
  padding: 14px 16px;
}
.google-ads-kpi-grid span,
.google-ads-kpi-grid small {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
}
.google-ads-kpi-grid strong {
  display: block;
  margin: 8px 0 4px;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 800;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.google-ads-view--detail.is-animated .google-ads-summary-card,
.google-ads-view--detail.is-animated .google-ads-chart-card,
.google-ads-view--detail.is-animated .google-ads-detail-head {
  animation: googleAdsFadeUp 0.55s ease both;
}
.google-ads-view--detail.is-animated .google-ads-summary-card i {
  animation: googleAdsLineGrow 0.8s ease 0.25s both;
}
.google-ads-view--detail.is-animated .google-ads-chart-bar i {
  animation: googleAdsBarRise 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(0.12s + var(--i) * 0.045s);
}
@keyframes googleAdsFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes googleAdsLineGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes googleAdsBarRise {
  from { transform: scaleY(0); opacity: 0.35; }
  to { transform: scaleY(1); opacity: 1; }
}
.project-dialog-open {
  overflow: hidden;
}
@media (max-width: 900px) {
  .project-image-dialog {
    z-index: 20000;
    padding: 6px 6px max(8px, env(safe-area-inset-bottom));
  }

  .project-image-dialog__panel {
    width: min(100%, calc(var(--viewport-width) - 12px));
    height: calc(var(--viewport-height) - 14px - env(safe-area-inset-bottom));
    border-radius: 16px;
  }

  .project-image-dialog__head {
    padding: 14px 62px 12px 16px;
  }

  .project-image-dialog__head span {
    font-size: 10px;
  }

  .project-image-dialog__head strong {
    font-size: clamp(18px, 5.8vw, 23px);
  }

  .project-image-dialog__close {
    top: 11px;
    right: 11px;
    width: 40px;
    height: 40px;
  }

  .project-image-dialog__media {
    padding: 12px;
  }

  .project-image-dialog__logo-grid,
  .project-image-dialog__variant-grid {
    gap: 12px;
  }

  .project-image-dialog__logo-item,
  .project-image-dialog__variant-item {
    gap: 8px;
    padding: 14px;
  }

  .project-image-dialog__logo-item img {
    width: min(220px, 82%);
    max-height: 100%;
  }

  .project-image-dialog__variant-item span,
  .project-image-dialog__logo-item span {
    font-size: 10.5px;
  }

  .project-image-dialog.is-dialog-google-ads .project-image-dialog__media {
    align-items: stretch;
    justify-content: stretch;
    padding: 10px;
    overflow: hidden;
  }

  .project-image-dialog__ads {
    overflow: hidden;
  }

  .google-ads-view--detail {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    grid-template-rows: none;
    gap: 12px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 14px;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .google-ads-detail-head {
    flex: 0 0 auto;
  }

  .google-ads-detail-head span {
    min-height: 30px;
    padding: 7px 14px;
    font-size: 11px;
    letter-spacing: 1px;
  }

  .google-ads-detail-head h3 {
    margin-top: 12px;
    font-size: clamp(28px, 8.8vw, 36px);
    line-height: 1.04;
  }

  .google-ads-detail-head p {
    margin-top: 7px;
    font-size: 13.5px;
  }

  .google-ads-detail-grid {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    gap: 12px;
    min-height: auto;
  }

  .google-ads-summary-card {
    flex: 0 0 auto;
    min-height: auto;
    justify-content: flex-start;
    padding: 18px;
  }

  .google-ads-total strong {
    font-size: 46px;
  }

  .google-ads-total span {
    font-size: 18px;
  }

  .google-ads-summary-card p {
    margin-top: 10px;
    font-size: 13.5px;
  }

  .google-ads-summary-card i {
    height: 6px;
    margin-top: 12px;
  }

  .google-ads-chart-card {
    flex: 0 0 auto;
    min-height: auto;
    height: auto;
    overflow: hidden;
    padding: 16px 12px 14px;
  }

  .google-ads-bars-shell--detail {
    grid-template-columns: 30px minmax(0, 1fr) 30px;
    gap: 10px;
    margin-top: 12px;
  }

  .google-ads-bars-shell--detail .google-ads-bars-nav {
    width: 30px;
    height: 30px;
  }

  .google-ads-chart-head strong {
    font-size: 23px;
  }

  .google-ads-chart-head span {
    font-size: 13px;
  }

  .google-ads-chart {
    min-height: 245px;
    height: 245px;
    display: flex;
    align-items: stretch;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 14px 2px 4px;
    touch-action: none;
    -webkit-overflow-scrolling: touch;
  }

  .google-ads-compact-bars {
    touch-action: none;
  }

  .google-ads-chart-bar {
    flex: 0 0 58px;
    height: 100%;
    gap: 5px;
  }

  .google-ads-chart-bar span {
    font-size: 11.5px;
  }

  .google-ads-chart-bar i {
    width: 100%;
    min-height: 12px;
    padding-top: 7px;
    border-radius: 9px 9px 4px 4px;
  }

  .google-ads-chart-bar i b {
    font-size: 12.5px;
  }

  .google-ads-chart-bar small {
    font-size: 12px;
  }

  .google-ads-budget-note {
    margin-top: 11px;
    font-size: 15px;
  }

  .google-ads-budget-note--compact {
    font-size: 11.8px;
  }

  .google-ads-compact-head {
    padding-right: 72px;
  }

  .google-ads-kpi-grid {
    flex: 0 0 auto;
    gap: 10px;
  }

  .google-ads-kpi-grid > div {
    padding: 13px 12px;
  }

  .google-ads-kpi-grid span,
  .google-ads-kpi-grid small {
    font-size: 11.5px;
  }

  .google-ads-kpi-grid strong {
    font-size: 22px;
  }

  body.project-dialog-open .scroll-progress,
  body.project-dialog-open .scroll-percent {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
@media (hover: hover) and (pointer: fine), (min-width: 901px) {
  .project-image-dialog {
    inset: 0 0 var(--bottom-nav-height) 0;
    padding: 30px 34px;
  }
  .project-image-dialog__panel {
    height: calc(var(--viewport-height) - var(--bottom-nav-height) - 60px);
  }
  .project-image-dialog.is-dialog-logo .project-image-dialog__media > img {
    width: min(250px, 100%);
    max-height: 250px;
    height: auto;
  }
  .project-image-dialog.is-dialog-logo .project-image-dialog__logo-item img {
    width: min(250px, 78%);
  }
}
.ref-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.ref-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.referenz-card:hover .ref-img-wrap img { transform: scale(1.05); }
.ref-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,85,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.referenz-card:hover .ref-overlay { opacity: 1; }
.ref-overlay span {
  font-family: var(--font-display);
  font-size: 17.6px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.8px;
}
.ref-info { padding: 24px; }
.ref-cat {
  font-size: 12.48px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.ref-info h2,
.ref-info h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}
.referenzen-hinweis {
  text-align: center;
  padding: 44px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 100%;
  margin: 0 auto;
}
.referenzen-hinweis p {
  color: var(--text-muted);
  font-size: 15.52px;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ============================================================
   VERTRAUEN SECTION
   ============================================================ */
.vertrauen {
  background: var(--bg-2);
  overflow: hidden;
}
.vertrauen-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(255,85,0,0.06), transparent);
  pointer-events: none;
}
.vertrauen-inner {
  display: flex;
  justify-content: center;
}
.vertrauen-content {
  max-width: 100%;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
}
.vertrauen-content .section-label { display: inline-block; margin-bottom: 20px; }
.vertrauen-content .section-title {
  font-size: 48px;
  margin-bottom: 28px;
}
.vertrauen-content p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 20px;
}
.vertrauen-content .btn { margin-top: 16px; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq { background: var(--bg); }
.faq-list {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(255,85,0,0.3); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  text-align: left;
  font-size: 15.52px;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--transition), color var(--transition);
}
.faq-icon svg { width: 100%; height: 100%; }
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--accent); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer p {
  padding: 0 28px 22px;
  font-size: 14.88px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================================
   KONTAKT SECTION
   ============================================================ */
.kontakt { background: var(--bg-2); }
.kontakt-inner {
  display: flex;
  gap: 80px;
  align-items: start;
}
.kontakt-text { flex: 1 1 40%; min-width: 0; }
.kontakt-form { flex: 1.4 1 0; min-width: 0; }
.kontakt-text .section-label { display: inline-block; margin-bottom: 16px; }
.kontakt-text .section-title {
  text-align: left;
  font-size: 38px;
  margin-bottom: 22px;
}
.kontakt-text p {
  color: var(--text-muted);
  font-size: 15.52px;
  line-height: 1.85;
  margin-bottom: 16px;
}
.kontakt-sub {
  font-style: italic;
  font-size: 14.72px !important;
  border-left: 2px solid var(--accent);
  padding-left: 16px;
  margin-bottom: 32px !important;
}
.kontakt-infos {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.kontakt-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.info-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 18px; height: 18px; color: var(--accent); }
.info-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.28px;
  color: var(--text-faint);
  margin-bottom: 2px;
}
.info-value { font-size: 14.4px; font-weight: 500; color: var(--text); }

/* Form Styles */
.kontakt-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: flex; gap: 20px; }
.form-row .form-group { flex: 1 1 0; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 13.12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.48px;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text);
  font-size: 14.88px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-faint); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,85,0,0.12);
}
.form-group select option { background: var(--bg-3); }
.form-group textarea { resize: vertical; min-height: 120px; }
.kontakt-form .btn { align-self: flex-start; }
.kontakt-form .btn svg { width: 18px; height: 18px; }
.form-check label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}
.form-check input {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--accent);
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.form-feedback {
  min-height: 22px;
  color: var(--text-muted);
  font-size: 14px;
}
.form-feedback.success { color: #22c55e; }
.form-feedback.error { color: #f97316; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  overflow: hidden;
  padding: 76px 0 34px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background:
    radial-gradient(ellipse 65% 58% at 16% 12%, rgba(255,85,0,0.16), transparent 62%),
    radial-gradient(ellipse 55% 50% at 88% 82%, rgba(255,138,42,0.1), transparent 60%),
    linear-gradient(145deg, #15161D 0%, #0B0B0B 48%, #15161D 100%);
  color: #ffffff;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.04), transparent 24%, transparent 76%, rgba(255,255,255,0.035)),
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.08), transparent 34%);
  opacity: 0.72;
}
.footer-shell {
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.footer-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 26px;
  padding: 38px;
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(255,255,255,0.08), transparent 36%),
    linear-gradient(145deg, rgba(37,39,47,0.92), rgba(11,11,11,0.98));
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.09),
    0 24px 58px rgba(0,0,0,0.24);
  color: #ffffff;
}
.footer-main {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(380px, 0.88fr) minmax(0, 1.12fr);
  gap: 44px;
  align-items: center;
}
.footer-brand-content {
  display: grid;
  gap: 18px;
  align-self: start;
}
.footer-logo {
  width: 330px;
  height: auto;
  object-fit: contain;
  margin-top: -8px;
  margin-bottom: 14px;
}
.footer-brand-content h2 {
  margin: 30px 0 0;
  max-width: 640px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}
.footer-brand-content p {
  max-width: 700px;
  margin: 0;
  color: rgba(255,255,255,0.76);
  font-size: 16.2px;
  line-height: 1.68;
}
.footer-link-grid {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-content: center;
  transform: translateY(-8px);
}
.footer-nav-group {
  min-width: 0;
}
.footer-nav-group h4 {
  margin: 0 0 16px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}
.footer-nav-group ul {
  display: grid;
  gap: 8px;
}
.footer-nav-group a {
  min-height: 36px;
  display: flex;
  align-items: center;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.035);
  color: rgba(255,255,255,0.72);
  font-size: 14.2px;
  font-weight: 750;
  line-height: 1.2;
  overflow-wrap: anywhere;
  transition: color 0.35s ease, border-color 0.35s ease, background 0.35s ease, transform 0.35s ease;
}
.footer-nav-group a:hover {
  border-color: rgba(255,138,42,0.4);
  background: rgba(255,85,0,0.11);
  color: #ffffff;
  transform: translateX(3px);
}
.footer .footer-bottom {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.58);
  font-size: 13.4px;
  font-weight: 700;
  text-align: left;
}
body.horizontal-scroll-page .horizontal-stage > .footer > .container {
  height: 100%;
  min-height: 0;
}
body.horizontal-scroll-page .horizontal-stage > .footer .footer-main {
  flex: 1 1 auto;
}
@media (max-width: 1200px) {
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
    transform: none;
  }
}
@media (max-width: 900px) {
  .footer {
    padding: 42px 0 calc(var(--bottom-nav-height) + 28px);
  }
  body.horizontal-scroll-page .horizontal-stage > .footer > .container.footer-shell {
    height: auto;
    min-height: 100%;
  }
  .footer-shell {
    height: auto;
    justify-content: flex-start;
  }
  .footer-main {
    gap: 18px;
  }
  .footer-card {
    padding: 24px;
    overflow: visible;
    height: auto;
  }
  .footer-brand-content h2 {
    margin-top: 16px;
    font-size: 34px;
  }
  .footer-brand-content p {
    font-size: 15.4px;
  }
}
@media (max-width: 600px) {
  .footer-card {
    border-radius: 16px;
    padding: 22px;
  }
  .footer-logo {
    width: 172px;
  }
  .footer-brand-content h2 {
    margin-top: 8px;
    font-size: 30px;
  }
  .footer-link-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ============================================================
   MAGNETIC EFFECT WRAPPER
   ============================================================ */
.magnetic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   CENTERED CONTENT
   ============================================================ */
main section .container,
.hero-content,
.subhero-inner,
.service-layout,
.service-main,
.service-side,
.legal-content,
.vorteil-card,
.ueber-uns-text,
.leistung-card,
.conclusion-card,
.ablauf-step,
.referenz-card,
.referenzen-hinweis,
.vertrauen-content,
.faq-list,
.kontakt-text,
.kontakt-form,
.footer {
  text-align: center;
}
.hero-buttons,
.hero-tags,
.leistung-list,
.kontakt-infos,
.footer-top,
.footer-bottom {
  justify-content: center;
}
.hero-buttons,
.hero-tags {
  align-items: center;
}
.service-main .section-title,
.ueber-uns-text .section-title,
.kontakt-text .section-title {
  text-align: center;
}
.ueber-uns-text p,
.kontakt-text p,
.legal-content p,
.faq-answer p {
  text-align: center;
}
.ziel-item,
.kontakt-info-item {
  justify-content: center;
}
.kontakt-sub {
  border-left: 0;
  padding-left: 0;
}
.kontakt-form .btn {
  align-self: center;
}
.form-group label,
.form-feedback {
  text-align: center;
}
.form-check label {
  justify-content: center;
  text-align: center;
}
.footer-brand p {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   LIGHT / DARK SECTION RHYTHM
   ============================================================ */
main > .hero,
main > .subhero,
main > .section:nth-of-type(odd) {
  --bg: var(--light-bg);
  --bg-2: var(--light-bg-2);
  --bg-3: var(--light-bg-3);
  --bg-card: var(--light-card);
  --text: var(--light-text);
  --text-muted: var(--light-muted);
  --text-faint: var(--light-faint);
  --border: var(--light-border);
  background: rgba(255,255,255,0.96);
  color: var(--light-text);
}
main > .section:nth-of-type(even) {
  --bg: #0B0B0B;
  --bg-2: #0B0B0B;
  --bg-3: #0B0B0B;
  --bg-card: #0B0B0B;
  --text: #ffffff;
  --text-muted: #f2f2f4;
  --text-faint: #c9cbd3;
  --border: rgba(255, 255, 255, 0.06);
  background: rgba(11,11,11,0.76);
  color: var(--text);
}
body.page-home main > .section.leistungen {
  background:
    radial-gradient(ellipse 70% 55% at 76% 18%, rgba(255,85,0,0.10), transparent 62%),
    radial-gradient(ellipse 58% 52% at 12% 88%, rgba(255,138,42,0.06), transparent 60%),
    rgba(21,22,29,0.72);
}
main > .hero,
main > .subhero {
  background:
    radial-gradient(ellipse 70% 55% at 70% 18%, rgba(255,136,0,0.1), transparent 62%),
    radial-gradient(ellipse 60% 55% at 12% 82%, rgba(255,85,0,0.06), transparent 60%),
    rgba(255,255,255,0.96);
}
main > .section:nth-of-type(odd) .section-title,
main > .hero .section-title,
main > .subhero .section-title {
  background: linear-gradient(135deg, var(--light-text) 58%, var(--light-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
main > .section:nth-of-type(even) .section-title {
  background: linear-gradient(135deg, var(--text) 60%, var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
main > .section.vorteile {
  --bg: var(--light-bg);
  --bg-2: var(--light-bg-2);
  --bg-3: var(--light-bg-3);
  --bg-card: var(--light-card);
  --text: var(--light-text);
  --text-muted: var(--light-muted);
  --text-faint: var(--light-faint);
  --border: var(--light-border);
  background:
    radial-gradient(ellipse 70% 55% at 70% 18%, rgba(255,136,0,0.1), transparent 62%),
    radial-gradient(ellipse 60% 55% at 12% 82%, rgba(255,85,0,0.06), transparent 60%),
    rgba(255,255,255,0.96);
  color: var(--light-text);
}
main > .section.vorteile .vorteile-intro .section-title {
  background: linear-gradient(135deg, #ffffff 58%, rgba(255,255,255,0.76));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
main > .section.vorteile .vorteile-intro .title-logo-inline {
  width: 3.7em;
}
main > .section:nth-of-type(odd) .vorteil-card,
main > .section:nth-of-type(odd) .leistung-card,
main > .section:nth-of-type(odd) .referenz-card,
main > .section:nth-of-type(odd) .faq-item,
main > .section:nth-of-type(odd) .kontakt-form,
main > .section:nth-of-type(odd) .visual-block,
main > .section:nth-of-type(odd) .conclusion-card,
main > .section:nth-of-type(odd) .service-side,
main > .section:nth-of-type(odd) .leistungen-cta-block,
main > .section:nth-of-type(odd) .vorteile-cta-block,
main > .section:nth-of-type(odd) .referenzen-hinweis {
  box-shadow: none;
}
main > .section.ablauf {
  --bg: #0B0B0B;
  --bg-2: #0B0B0B;
  --bg-3: #0B0B0B;
  --bg-card: #0B0B0B;
  --text: #ffffff;
  --text-muted: #f2f2f4;
  --text-faint: #c9cbd3;
  --border: rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(ellipse 70% 55% at 76% 18%, rgba(255,85,0,0.10), transparent 62%),
    radial-gradient(ellipse 58% 52% at 12% 88%, rgba(255,138,42,0.06), transparent 60%),
    rgba(21,22,29,0.72);
  color: var(--text);
}
main > .section.ablauf .section-title {
  background: linear-gradient(135deg, #ffffff 58%, rgba(255,255,255,0.72));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
main > .section.ablauf .title-accent-word {
  background: linear-gradient(135deg, #ff5400 0%, #ff8a2a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   HORIZONTAL SECTION SCROLL
   ============================================================ */
body.horizontal-scroll-page {
  width: var(--viewport-width);
  height: var(--viewport-height);
  overflow: hidden;
  background: var(--bg);
}
body.horizontal-scroll-page .horizontal-stage {
  margin-left: 0;
  width: var(--viewport-width);
  position: relative;
  z-index: auto;
  display: flex;
  align-items: stretch;
  height: calc(var(--viewport-height) - var(--bottom-nav-height));
  min-height: calc(var(--viewport-height) - var(--bottom-nav-height));
  overflow-x: hidden;
  overflow-y: hidden;
  overscroll-behavior: contain;
  scroll-behavior: auto;
  scrollbar-width: none;
  will-change: scroll-position;
}
body.horizontal-scroll-page .horizontal-stage::-webkit-scrollbar {
  display: none;
}
body.horizontal-scroll-page main {
  display: contents;
  margin-left: 0;
  width: auto;
}
body.horizontal-scroll-page main > section,
body.horizontal-scroll-page .horizontal-stage > .footer {
  flex: 0 0 var(--viewport-width);
  width: var(--viewport-width);
  min-width: var(--viewport-width);
  height: calc(var(--viewport-height) - var(--bottom-nav-height));
  min-height: calc(var(--viewport-height) - var(--bottom-nav-height));
  margin-left: 0;
  margin-top: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  isolation: auto;
  position: relative;
}
body.horizontal-scroll-page main > section {
  display: flex;
  align-items: stretch;
  padding-top: 75px;
  padding-bottom: 75px;
}
body.horizontal-scroll-page main > section > .container {
  height: 100%;
  min-height: 0;
}
body.horizontal-scroll-page main > section::-webkit-scrollbar,
body.horizontal-scroll-page .horizontal-stage > .footer::-webkit-scrollbar {
  display: none;
}
body.horizontal-scroll-page .horizontal-stage > .footer {
  display: flex;
  align-items: center;
  width: 100%;
  padding-top: 96px;
  padding-bottom: 96px;
}

@media (hover: hover) and (pointer: fine), (min-width: 901px) {
  body.horizontal-scroll-page {
    width: var(--viewport-width);
    height: var(--viewport-height);
    overflow: hidden;
    background: var(--bg);
  }
  body.horizontal-scroll-page .horizontal-stage {
    margin-left: 0;
    width: var(--viewport-width);
    position: relative;
    z-index: auto;
    display: flex;
    align-items: stretch;
    height: calc(var(--viewport-height) - var(--bottom-nav-height));
    min-height: calc(var(--viewport-height) - var(--bottom-nav-height));
    overflow-x: hidden;
    overflow-y: hidden;
    scroll-behavior: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    will-change: scroll-position;
  }
  body.horizontal-scroll-page .horizontal-stage::-webkit-scrollbar {
    display: none;
  }
  body.horizontal-scroll-page main {
    display: contents;
    margin-left: 0;
    width: auto;
  }
  body.horizontal-scroll-page main > section,
  body.horizontal-scroll-page .horizontal-stage > .footer {
    flex: 0 0 var(--viewport-width);
    width: var(--viewport-width);
    min-width: var(--viewport-width);
    height: calc(var(--viewport-height) - var(--bottom-nav-height));
    min-height: calc(var(--viewport-height) - var(--bottom-nav-height));
    margin-left: 0;
    margin-top: 0;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: none;
    box-shadow: none;
    isolation: auto;
    position: relative;
  }
  body.horizontal-scroll-page main > section {
    display: flex;
    align-items: stretch;
    padding: 75px 0;
  }
  body.horizontal-scroll-page main > section > .container {
    height: 100%;
    min-height: 0;
    backface-visibility: hidden;
    transform: translateZ(0);
  }
  body.horizontal-scroll-page .horizontal-stage > .footer > .container {
    backface-visibility: hidden;
    transform: translateZ(0);
  }
  body.horizontal-scroll-page .leistung-card,
  body.horizontal-scroll-page .vorteil-card,
  body.horizontal-scroll-page .project-card {
    contain: layout paint style;
    will-change: transform;
  }
  body.horizontal-scroll-page .project-media,
  body.horizontal-scroll-page .project-logo-variant,
  body.horizontal-scroll-page .project-media-variant,
  body.horizontal-scroll-page .google-ads-view {
    contain: paint;
    will-change: transform;
  }
  body.horizontal-scroll-page main > section::-webkit-scrollbar,
  body.horizontal-scroll-page .horizontal-stage > .footer::-webkit-scrollbar {
    display: none;
  }
  body.horizontal-scroll-page main > section:first-child {
    box-shadow: none;
  }
  body.horizontal-scroll-page .horizontal-stage > .footer {
    display: flex;
    align-items: center;
    width: 100%;
    padding-top: 96px;
    padding-bottom: 96px;
  }
  body.horizontal-scroll-page main > .section {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  body.horizontal-scroll-page main > .subhero {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  body.horizontal-scroll-page main > .hero {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  body.horizontal-scroll-page main > section .reveal-up,
  body.horizontal-scroll-page main > section .reveal-left,
  body.horizontal-scroll-page main > section .reveal-right,
  body.horizontal-scroll-page main > section .reveal-card {
    transform: none;
  }
  body.horizontal-scroll-page main > section .reveal-card {
    opacity: 1;
  }
  body.horizontal-scroll-page .subhero-inner,
  body.horizontal-scroll-page .vertrauen-inner {
    height: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  body.horizontal-scroll-page .service-layout,
  body.horizontal-scroll-page .ueber-uns-inner,
  body.horizontal-scroll-page .kontakt-inner,
  body.horizontal-scroll-page .zielgruppen-wrapper {
    height: 100%;
    min-height: 0;
    align-items: center;
  }
  body.horizontal-scroll-page main > .section.vorteile > .container,
  body.horizontal-scroll-page main > .section.faq > .container,
  body.horizontal-scroll-page main > .section.zielgruppen > .container {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 36px;
    align-items: stretch;
  }
  body.horizontal-scroll-page main > .section.referenzen > .container,
  body.horizontal-scroll-page main > .section.leistungen > .container {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: stretch;
  }
  body.horizontal-scroll-page main > .section.ablauf > .container {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    grid-template-rows: minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
  }
  body.horizontal-scroll-page .vorteile-grid,
  body.horizontal-scroll-page .referenzen-grid {
    height: 100%;
    min-height: 0;
    align-self: stretch;
    align-content: stretch;
  }
  body.horizontal-scroll-page .faq-list {
    width: 100%;
    align-self: center;
  }
  body.horizontal-scroll-page .vertrauen-content {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  body.horizontal-scroll-page .kontakt-form {
    padding: 28px;
    gap: 12px;
  }
  body.horizontal-scroll-page .form-row {
    gap: 12px;
  }
  body.horizontal-scroll-page .form-group {
    gap: 6px;
  }
  body.horizontal-scroll-page .form-group input,
  body.horizontal-scroll-page .form-group select,
  body.horizontal-scroll-page .form-group textarea {
    padding: 10px 12px;
    font-size: 14px;
  }
  body.horizontal-scroll-page .form-group textarea {
    min-height: 86px;
  }
  body.horizontal-scroll-page .form-check label {
    font-size: 12.2px;
    line-height: 1.45;
  }
  body.horizontal-scroll-page .kontakt-form .btn {
    padding: 13px 24px;
  }
  body.horizontal-scroll-page .referenz-card {
    display: flex;
    flex-direction: column;
  }
  body.horizontal-scroll-page .project-card:not(.project-card--all) {
    display: grid;
    grid-template-rows: auto minmax(154px, 1fr) auto;
  }
  body.horizontal-scroll-page .project-surface {
    min-height: 0;
    flex: 1 1 auto;
    padding: 20px;
  }
  body.horizontal-scroll-page .ref-info {
    padding: 18px;
  }
  body.horizontal-scroll-page .referenzen-hinweis {
    padding: 24px;
  }
  body.horizontal-scroll-page .referenzen-hinweis p {
    margin-bottom: 16px;
  }
  body.horizontal-scroll-page .zielgruppen-wrapper {
    gap: 44px;
  }
  body.horizontal-scroll-page .ziel-item {
    padding: 12px 0;
    font-size: 15.5px;
  }
  body.horizontal-scroll-page .conclusion-card {
    padding: 32px;
  }
  body.horizontal-scroll-page .conclusion-card p {
    margin-bottom: 18px;
  }
}

/* ============================================================
   HOME DESKTOP PANEL LAYOUT
   ============================================================ */
@media (hover: hover) and (pointer: fine), (min-width: 901px) {
  body.page-home.horizontal-scroll-page main > .hero,
  body.page-home.horizontal-scroll-page main > .section {
    align-items: stretch;
    padding-top: 75px;
    padding-bottom: 75px;
  }
  body.page-home.horizontal-scroll-page main > .hero > .container,
  body.page-home.horizontal-scroll-page main > .section > .container {
    width: 100%;
    max-width: var(--container);
    height: 100%;
    min-height: 0;
    padding: 0 32px;
    overflow: hidden;
  }
  body.page-home.horizontal-scroll-page main > .hero > .container,
  body.page-home.horizontal-scroll-page main > .section.ueber-uns > .container {
    overflow: visible;
  }
  body.page-home.horizontal-scroll-page main > .section > .container {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr);
    gap: 44px;
    align-items: stretch;
  }
  body.page-home.horizontal-scroll-page main > .section.ablauf > .container {
    grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
    grid-template-rows: minmax(0, 1fr);
    gap: 24px;
  }
  .page-home .section-header {
    width: 100%;
    max-width: none;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .page-home .vorteile-intro,
  .page-home .leistungen-intro,
  .page-home .referenzen-intro,
  .page-home .ablauf-intro {
    align-self: stretch;
    height: 100%;
    min-height: 0;
    padding: 24px;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    row-gap: 14px;
    align-items: stretch;
    justify-content: stretch;
    text-align: center;
  }
  .page-home .vorteile-image-card {
    align-self: stretch;
    height: 100%;
    min-height: 0;
  }
  .page-home .vorteile-intro .btn,
  .page-home .leistungen-intro .btn,
  .page-home .referenzen-intro .btn,
  .page-home .ablauf-intro .btn {
    width: 100%;
    min-width: 0;
    margin-top: 0;
    align-self: end;
    padding: 12px 44px;
    font-size: 18.4px;
  }
  .page-home .section-label {
    margin-bottom: 12px;
  }
  .page-home .section-title {
    font-size: 42px;
    line-height: 1.08;
    margin-bottom: 16px;
  }
  .page-home .vorteile-intro .section-title,
  .page-home .leistungen-intro .section-title,
  .page-home .referenzen-intro .section-title,
  .page-home .ablauf-intro .section-title {
    font-size: 36px;
    line-height: 1.05;
    margin-bottom: 0;
    align-self: start;
  }
  .page-home .section-text {
    font-size: 15.2px;
    line-height: 1.6;
    text-align: left;
  }
  .page-home .vorteile-intro .section-text,
  .page-home .leistungen-intro .section-text,
  .page-home .referenzen-intro .section-text,
  .page-home .ablauf-intro .section-text {
    font-size: 15.4px;
    line-height: 1.56;
    text-align: center;
    margin: 0 auto;
    align-self: center;
  }
  .page-home .vorteile-intro .btn,
  .page-home .leistungen-intro .btn,
  .page-home .referenzen-intro .btn,
  .page-home .ablauf-intro .btn {
    align-self: stretch;
  }
  .page-home .hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(460px, 0.96fr);
    column-gap: 80px;
    align-content: stretch;
    align-items: stretch;
    text-align: left;
    height: 100%;
  }
  .page-home .hero-copy {
    grid-column: 1;
    align-self: stretch;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .page-home .hero-system {
    grid-column: 2;
    align-self: stretch;
    height: 100%;
  }
  .page-home .hero-headline {
    font-size: 80px;
    line-height: 1.01;
    margin-bottom: 0;
  }
  .page-home .hero-sub {
    color: var(--light-text);
    font-size: 20px;
    line-height: 1.5;
    margin: 0;
    max-width: 760px;
  }
  .page-home .hero-buttons .btn {
    min-width: 270px;
    padding: 12px 44px;
    font-size: 18.4px;
  }
  .page-home .hero-buttons {
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    overflow: visible;
  }
  .page-home .hero-tags {
    justify-content: flex-start;
    align-items: flex-start;
    margin: 4px 0 0;
  }
  .page-home .tag {
    font-size: 12.5px;
    padding: 5px 12px;
  }
  .page-home .hero-scroll-hint {
    display: none;
  }

  body.page-home.horizontal-scroll-page main > .section.vorteile > .container {
    grid-template-columns: minmax(270px, 1fr) minmax(270px, 1fr) minmax(0, 2.08fr);
    grid-template-rows: minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
  }

  .page-home .vorteile-grid,
  .page-home .leistungen-grid,
  .page-home .referenzen-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    align-self: stretch;
    height: 100%;
  }
  .page-home .leistungen-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .page-home .project-showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .page-home .vorteile-grid {
    grid-template-rows: repeat(2, minmax(0, 1fr));
    align-self: stretch;
    align-content: stretch;
    height: 100%;
  }
  body.page-home.horizontal-scroll-page .vorteile-grid {
    grid-template-rows: repeat(2, minmax(0, 1fr));
    align-self: stretch;
    align-content: stretch;
    height: 100%;
  }
  .page-home .vorteil-card,
  .page-home .leistung-card,
  .page-home .referenz-card {
    min-width: 0;
    border-radius: 18px;
  }
  .page-home .project-card {
    min-height: 0;
    grid-template-rows: auto minmax(154px, 1fr) auto;
  }
  .page-home .vorteil-card {
    text-align: center;
  }
  .page-home .vorteil-card {
    padding: 32px 14px 16px;
    display: grid;
    grid-template-rows: 58px 48px minmax(0, 1fr);
    row-gap: 10px;
    align-items: start;
    justify-items: center;
    align-content: center;
  }
  .page-home .vorteil-icon {
    width: 58px;
    height: 58px;
    margin: 0;
  }
  .page-home .vorteil-icon svg {
    width: 34px;
    height: 34px;
  }
  .page-home .vorteil-lottie-icon {
    width: 50px;
    height: 50px;
  }
  .page-home .vorteil-card h3 {
    font-size: 16.8px;
    line-height: 1.12;
    min-height: 48px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .page-home .vorteil-card p {
    font-size: 14.2px;
    line-height: 1.5;
    margin: 0 auto;
    align-self: start;
  }
  .page-home .vorteile-cta-block {
    margin: 0;
    padding: 22px 24px;
    align-self: stretch;
  }
  .page-home .vorteile-cta-block p {
    font-size: 14.4px;
    line-height: 1.55;
    margin-bottom: 16px;
  }

  body.page-home.horizontal-scroll-page main > .section.ueber-uns > .container {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 56px;
  }
  .page-home .ueber-uns-text--teaser {
    align-self: center;
  }
  .page-home .ueber-uns-visual--teaser {
    align-self: stretch;
    height: 100%;
    min-height: 0;
  }
  .page-home .visual-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    height: 100%;
  }
  .page-home .visual-block {
    padding: 22px 20px;
  }
  .page-home .stat-number {
    font-size: 38px;
  }
  .page-home .ueber-uns-text .section-title,
  .page-home .kontakt-text .section-title {
    font-size: 44px;
    line-height: 1.12;
    margin-bottom: 18px;
  }
  .page-home .ueber-uns-text--teaser .section-title {
    font-size: 58px;
    line-height: 1.02;
    margin-bottom: 28px;
  }
  .page-home .ueber-uns-text p,
  .page-home .kontakt-text p {
    font-size: 15.6px;
    line-height: 1.68;
    margin-bottom: 14px;
  }
  .page-home .ueber-uns-text--teaser p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 18px;
    text-align: left;
    color: #2e3038;
  }
  .page-home .ueber-uns-text--teaser .btn {
    margin-top: 34px;
  }
  .page-home .ueber-uns-text:not(.ueber-uns-text--teaser) .btn {
    margin-top: 8px;
  }
  .page-home .about-system-grid div {
    min-height: 96px;
  }
  .page-home .about-system-mark {
    min-height: 78px;
  }

  body.page-home.horizontal-scroll-page main > .section.referenzen > .container {
    grid-template-rows: minmax(0, 1fr);
    grid-template-areas: "head cards";
  }
  body.page-home.horizontal-scroll-page main > .section.leistungen > .container {
    grid-template-rows: minmax(0, 1fr);
    grid-template-areas: "head cards";
  }
  .page-home .leistungen .section-header,
  .page-home .referenzen .section-header {
    grid-area: head;
    align-self: end;
  }
  .page-home .leistungen .section-header.leistungen-intro {
    align-self: stretch;
  }
  .page-home .referenzen .section-header.referenzen-intro {
    align-self: stretch;
  }
  .page-home .leistungen-grid,
  .page-home .referenzen-grid {
    grid-area: cards;
  }
  .page-home .leistungen-cta-block,
  .page-home .referenzen-hinweis {
    grid-area: cta;
    align-self: start;
    margin: 24px 0 0;
    padding: 24px;
    text-align: left;
  }
  .page-home .leistungen-cta-block p,
  .page-home .referenzen-hinweis p {
    font-size: 14.4px;
    line-height: 1.55;
    margin-bottom: 16px;
    text-align: left;
  }
  .page-home .leistung-card {
    padding: 24px;
    justify-content: center;
    transform-origin: center;
  }
  .page-home .leistung-card:not(#leistung-professionelle-webseiten):not(#leistung-google-ads) {
    padding: 18px 22px;
  }
  .page-home .leistung-card:hover {
    transform: none;
  }
  body.page-home.horizontal-scroll-page main > .section.leistungen .leistung-card:hover {
    transform: none !important;
  }
  .page-home #leistung-professionelle-webseiten {
    grid-row: auto;
  }
  .page-home #leistung-google-ads {
    grid-column: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
  }
  .page-home #leistung-google-ads .leistung-card-icon {
    align-self: start;
    width: 92px;
    height: 92px;
    flex-basis: 92px;
    margin: 0 0 14px;
  }
  .page-home #leistung-google-ads .leistung-lottie-icon {
    width: 92px;
    height: 92px;
  }
  .page-home #leistung-google-ads .leistung-list {
    justify-content: flex-start;
  }
  .page-home #leistung-google-ads .leistung-cta {
    align-self: flex-start;
    justify-self: start;
  }
  .page-home #leistung-professionelle-webseiten .leistung-card-icon {
    width: 116px;
    height: 116px;
    flex-basis: 116px;
    margin: 0 auto 14px;
  }
  .page-home #leistung-professionelle-webseiten .leistung-lottie-icon {
    width: 116px;
    height: 116px;
  }
  .page-home .leistung-card-icon {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
    border-radius: 20px;
    margin-bottom: 12px;
  }
  .page-home .leistung-card-icon::after {
    border-radius: 19px;
  }
  .page-home .leistung-lottie-icon {
    width: 64px;
    height: 64px;
  }
  .page-home .leistung-number {
    font-size: 34px;
    margin-bottom: 8px;
  }
  .page-home .leistung-card h3 {
    font-size: 22px;
    line-height: 1.12;
    margin-bottom: 10px;
  }
  .page-home .leistung-card > p {
    font-size: 16px;
    line-height: 1.42;
    margin-bottom: 12px;
  }
  .page-home .leistung-desc {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 15.2px;
    line-height: 1.45;
    margin-bottom: 14px;
  }
  .page-home #leistung-professionelle-webseiten .leistung-desc {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
  }
  .page-home .leistung-list {
    flex: 0 0 auto;
    gap: 8px;
    margin-bottom: 16px;
  }
  .page-home .leistung-list li {
    font-size: 13px;
    line-height: 1.2;
    padding: 6px 10px;
  }
  .page-home .leistung-cta {
    font-size: 15px;
    min-height: 40px;
    padding: 9px 22px;
  }
  .page-home #leistung-google-ads .leistung-desc {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
  }
  body.page-home #leistungen .leistungen-grid .leistung-card {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    column-gap: 30px;
    row-gap: 4px;
    align-content: stretch;
    align-items: start;
    justify-content: stretch;
    text-align: left;
    padding: 20px 22px;
  }
  body.page-home #leistungen .leistungen-grid .leistung-card .leistung-card-icon {
    grid-column: 1;
    grid-row: 1 / 3;
    justify-self: center;
    align-self: start;
    width: 96px;
    height: 96px;
    flex-basis: 96px;
    margin: 0;
  }
  body.page-home #leistungen .leistungen-grid .leistung-card .leistung-lottie-icon {
    width: 96px;
    height: 96px;
  }
  body.page-home #leistungen .leistungen-grid .leistung-card h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    margin: 0;
    text-align: left;
  }
  body.page-home #leistungen .leistungen-grid .leistung-card > p {
    grid-column: 2;
    grid-row: 2;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    font-size: 14.6px;
    line-height: 1.34;
    text-align: left;
  }
  body.page-home #leistungen .leistungen-grid .leistung-card .leistung-desc {
    grid-column: 2;
    grid-row: 3;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    font-size: 13.2px;
    line-height: 1.36;
    text-align: left;
  }
  body.page-home #leistungen .leistungen-grid .leistung-card .leistung-list {
    grid-column: 1;
    grid-row: 3 / 5;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
    align-self: stretch;
    justify-self: stretch;
    margin: 8px 0 0;
    gap: 10px;
    grid-auto-rows: minmax(22px, max-content);
  }
  body.page-home #leistungen .leistungen-grid .leistung-card .leistung-list li {
    display: inline-flex;
    width: 100%;
    min-height: 22px;
    align-items: center;
    justify-content: center;
    font-size: 10.8px;
    line-height: 1.1;
    padding: 3px 7px;
    text-align: center;
    white-space: normal;
  }
  body.page-home #leistungen .leistungen-grid #leistung-professionelle-webseiten .leistung-list li {
    font-size: 10.2px;
    padding: 3px 6px;
  }
  body.page-home #leistungen .leistungen-grid .leistung-card .leistung-cta {
    grid-column: 2;
    grid-row: 4;
    align-self: end;
    justify-self: end;
    margin-top: auto;
    min-width: 118px;
    min-height: 34px;
    padding: 7px 12px;
    font-size: 13px;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 10px 18px rgba(0,0,0,0.14);
  }
  body.page-home #leistungen .leistungen-grid .leistung-card .leistung-cta::after {
    content: none;
    display: none;
  }
  body.page-home #leistungen .leistungen-grid .leistung-card .leistung-cta:hover {
    transform: translateY(-1px);
    animation: none;
  }
  body.page-home #leistungen .leistungen-grid #leistung-professionelle-webseiten .leistung-cta {
    background:
      radial-gradient(circle at 18% 12%, rgba(255,122,22,0.72), transparent 36%),
      radial-gradient(circle at 88% 86%, rgba(255,168,72,0.34), transparent 44%),
      linear-gradient(135deg, #a7460d 0%, #783616 42%, #563026 72%, #382a2b 100%);
    border-color: rgba(255,130,42,0.52);
  }
  body.page-home #leistungen .leistungen-grid #leistung-professionelle-webseiten .leistung-cta:hover {
    border-color: rgba(255,138,42,0.62);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 12px 24px rgba(255,85,0,0.14);
  }
  body.page-home #leistungen .leistungen-grid #leistung-google-ads .leistung-cta {
    background:
      radial-gradient(circle at 22% 12%, rgba(60,139,217,0.36), transparent 34%),
      radial-gradient(circle at 88% 86%, rgba(116,184,242,0.16), transparent 40%),
      linear-gradient(135deg, #26313f 0%, #151c27 48%, #0B0B0B 100%);
    border-color: rgba(60,139,217,0.36);
  }
  body.page-home #leistungen .leistungen-grid #leistung-google-ads .leistung-cta:hover {
    border-color: rgba(116,184,242,0.58);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 12px 24px rgba(60,139,217,0.14);
  }
  body.page-home #leistungen .leistungen-grid #leistung-it-loesungen-fuer-unternehmen .leistung-cta {
    background:
      radial-gradient(circle at 18% 12%, rgba(255,255,255,0.12), transparent 32%),
      radial-gradient(circle at 86% 90%, rgba(124,133,144,0.16), transparent 42%),
      linear-gradient(145deg, #2D2F38 0%, #1b1d25 48%, #0B0B0B 100%);
    border-color: rgba(255,255,255,0.16);
  }
  body.page-home #leistungen .leistungen-grid #leistung-design-und-werbemittel .leistung-cta {
    background:
      radial-gradient(circle at 20% 10%, rgba(255,255,255,0.1), transparent 32%),
      radial-gradient(circle at 88% 90%, rgba(124,133,144,0.13), transparent 42%),
      linear-gradient(145deg, #343640 0%, #1d1f28 48%, #0B0B0B 100%);
    border-color: rgba(255,255,255,0.16);
  }
  body.page-home #leistungen .leistungen-grid #leistung-it-loesungen-fuer-unternehmen .leistung-cta:hover,
  body.page-home #leistungen .leistungen-grid #leistung-design-und-werbemittel .leistung-cta:hover {
    border-color: rgba(255,255,255,0.32);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 12px 24px rgba(0,0,0,0.2);
  }
  body.page-home #leistungen .leistungen-grid .leistung-card {
    grid-template-columns: 132px minmax(0, 1fr);
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    grid-template-areas:
      "badges title"
      "badges subtitle"
      "badges text"
      "badges action";
    column-gap: 30px;
    row-gap: 12px;
    padding: 22px 24px;
  }
  body.page-home #leistungen .leistungen-grid #leistung-professionelle-webseiten.leistung-card,
  body.page-home #leistungen .leistungen-grid #leistung-google-ads.leistung-card,
  body.page-home #leistungen .leistungen-grid #leistung-it-loesungen-fuer-unternehmen.leistung-card,
  body.page-home #leistungen .leistungen-grid #leistung-design-und-werbemittel.leistung-card {
    padding: 20px 24px;
    row-gap: 12px;
  }
  body.page-home #leistungen .leistungen-grid .leistung-card .leistung-card-icon {
    position: absolute;
    top: 0;
    left: 18px;
    width: 96px;
    height: 96px;
    flex: 0 0 96px;
    margin: 0 !important;
  }
  body.page-home #leistungen .leistungen-grid .leistung-card .leistung-lottie-icon {
    width: 100px;
    height: 100px;
    transform-origin: center;
  }
  body.page-home #leistungen .leistungen-grid #leistung-professionelle-webseiten .leistung-card-icon,
  body.page-home #leistungen .leistungen-grid #leistung-professionelle-webseiten .leistung-lottie-icon {
    width: 100px;
    height: 100px;
    flex-basis: 100px;
  }
  body.page-home #leistungen .leistungen-grid #leistung-professionelle-webseiten .leistung-lottie-icon {
    transform: scale(1.08);
  }
  body.page-home #leistungen .leistungen-grid #leistung-google-ads .leistung-lottie-icon {
    transform: scale(0.94);
  }
  body.page-home #leistungen .leistungen-grid #leistung-it-loesungen-fuer-unternehmen .leistung-lottie-icon {
    transform: scale(1.08);
  }
  body.page-home #leistungen .leistungen-grid #leistung-design-und-werbemittel .leistung-lottie-icon {
    transform: scale(1.08);
  }
  body.page-home #leistungen .leistungen-grid #leistung-professionelle-webseiten .leistung-card-icon {
    left: 16px;
  }
  body.page-home #leistungen .leistungen-grid .leistung-card h3 {
    grid-area: title;
    align-self: start;
    margin: 0;
    color: #ffffff;
    font-size: 28px;
    line-height: 1.06;
    font-weight: 800;
    text-align: left;
    letter-spacing: 0;
  }
  body.page-home #leistungen .leistungen-grid .leistung-card > p {
    grid-area: subtitle;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    color: rgba(255,255,255,0.95);
    font-size: 16.4px;
    line-height: 1.38;
    font-weight: 800;
    text-align: left;
  }
  body.page-home #leistungen .leistungen-grid .leistung-card .leistung-desc {
    grid-area: text;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    color: rgba(255,255,255,0.82);
    font-size: 14.8px;
    line-height: 1.42;
    font-weight: 500;
    text-align: left;
  }
  body.page-home #leistungen .leistungen-grid .leistung-card .leistung-list {
    grid-area: badges;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
    align-self: stretch;
    justify-self: stretch;
    gap: 9px;
    margin: 112px 0 0;
  }
  body.page-home #leistungen .leistungen-grid .leistung-card .leistung-list li,
  body.page-home #leistungen .leistungen-grid #leistung-professionelle-webseiten .leistung-list li,
  body.page-home #leistungen .leistungen-grid #leistung-it-loesungen-fuer-unternehmen .leistung-list li,
  body.page-home #leistungen .leistungen-grid #leistung-design-und-werbemittel .leistung-list li {
    width: 100%;
    min-height: 24px;
    padding: 4px 8px;
    font-size: 11px;
    line-height: 1.12;
  }
  body.page-home #leistungen .leistungen-grid .leistung-card .leistung-cta {
    grid-area: action;
    align-self: end;
    justify-self: end;
    margin-top: 0;
  }

  .page-home .project-surface {
    min-height: 0;
    flex: 1 1 auto;
    gap: 6px;
    padding: 18px;
  }
  .page-home .project-media,
  .page-home .project-image {
    min-height: 154px;
  }
  .page-home .project-switcher {
    gap: 4px;
    padding: 7px;
  }
  .page-home .project-type-btn {
    min-height: 38px;
    border-radius: 10px;
  }
  .page-home .project-type-btn span {
    font-size: 8.8px;
  }
  .page-home .project-company-head {
    min-height: 58px;
    padding: 8px 13px;
  }
  .page-home .project-company-head strong {
    font-size: 17.5px;
  }
  .page-home .project-company-head small {
    font-size: 9.4px;
  }
  .page-home .project-info {
    padding: 10px;
  }
  .page-home .referenz-card {
    display: flex;
    flex-direction: column;
  }
  .page-home .project-card {
    display: grid;
  }
  body.page-home.horizontal-scroll-page .project-card:not(.project-card--all) {
    display: grid;
    grid-template-rows: auto minmax(154px, 1fr) auto;
  }
  .page-home .project-surface::before {
    width: 116px;
    height: 116px;
    right: -40px;
    top: -40px;
  }
  .page-home .project-surface span {
    font-size: 11px;
  }
  .page-home .project-surface strong {
    font-size: 22px;
  }
  .page-home .ref-info {
    padding: 16px;
  }
  .page-home .ref-cat {
    font-size: 11.5px;
    margin-bottom: 6px;
  }
  .page-home .ref-info h2,
  .page-home .ref-info h3 {
    font-size: 14.2px;
    line-height: 1.35;
  }

  .page-home .ablauf-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: minmax(0, 1fr);
    gap: 16px;
    height: 100%;
    align-self: stretch;
  }
  .page-home .ablauf-step {
    min-width: 0;
    --step-card-padding: 24px;
    padding: var(--step-card-padding);
    display: flex;
  }
  .page-home .step-line {
    display: none;
  }
  .page-home .step-circle {
    --step-circle-size: 54px;
    width: var(--step-circle-size);
    height: var(--step-circle-size);
    min-width: var(--step-circle-size);
    min-height: var(--step-circle-size);
    flex-basis: var(--step-circle-size);
  }
  .page-home .step-content h3 {
    font-size: 21px;
    margin-bottom: 10px;
  }
  .page-home .step-content p {
    font-size: 14.8px;
    line-height: 1.5;
  }

  .page-home .faq-list {
    max-width: none;
    gap: 16px;
    align-self: center;
  }
  .page-home .faq-question {
    padding: 26px 30px;
    font-size: 17px;
  }
  .page-home .faq-answer p {
    padding: 0 30px 26px;
    font-size: 15.2px;
    line-height: 1.65;
  }

  body.page-home.horizontal-scroll-page main > .section.kontakt > .container {
    display: block;
  }
  .page-home .kontakt-inner {
    height: 100%;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 44px;
    align-items: center;
  }
  .page-home .kontakt-sub {
    margin-bottom: 18px !important;
  }
  .page-home .kontakt-infos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
  .page-home .kontakt-info-item {
    flex-direction: column;
    gap: 8px;
    padding: 16px 12px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--bg-card);
  }
  .page-home .kontakt-form {
    padding: 24px;
    gap: 12px;
  }
  .page-home .form-row {
    gap: 12px;
  }
  .page-home .form-group {
    gap: 6px;
  }
  .page-home .form-group input,
  .page-home .form-group select,
  .page-home .form-group textarea {
    padding: 10px 12px;
    font-size: 14px;
  }
  .page-home .form-group textarea {
    min-height: 86px;
  }
  .page-home .form-check label {
    font-size: 12.2px;
    line-height: 1.45;
  }
  .page-home .kontakt-form .btn {
    padding: 13px 24px;
  }

  body.page-home.horizontal-scroll-page main > .section.vertrauen > .container {
    display: flex;
    align-items: stretch;
    justify-content: center;
  }
  .page-home .vertrauen-content {
    max-width: 1040px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .page-home .vertrauen-content .section-title {
    font-size: 58px;
  }
  .page-home .vertrauen-content p {
    font-size: 19px;
    line-height: 1.65;
    margin-bottom: 12px;
  }
  .page-home .vertrauen-content .btn {
    margin-top: 0;
  }
}

@media (hover: hover) and (pointer: fine) and (max-width: 1180px), (min-width: 901px) and (max-width: 1180px) {
  body.page-home.horizontal-scroll-page main > .section > .container {
    grid-template-columns: 1fr;
    gap: 24px;
    overflow-y: auto;
  }
  .page-home .section-header,
  .page-home .section-text,
  .page-home .vorteile-cta-block,
  .page-home .leistungen-cta-block,
  .page-home .referenzen-hinweis,
  .page-home .vorteile-cta-block p,
  .page-home .leistungen-cta-block p,
  .page-home .referenzen-hinweis p {
    text-align: center;
  }
  .page-home .vorteile-intro .btn,
  .page-home .leistungen-intro .btn,
  .page-home .referenzen-intro .btn {
    align-self: center;
  }
  .page-home .vorteile-intro,
  .page-home .leistungen-intro,
  .page-home .referenzen-intro {
    min-height: auto;
    height: auto;
    padding: 24px;
    justify-content: center;
  }
  .page-home .vorteile-image-card {
    height: 220px;
  }
  .page-home .vorteile-intro .section-title,
  .page-home .leistungen-intro .section-title,
  .page-home .referenzen-intro .section-title,
  .page-home .vorteile-intro .btn {
    margin-top: 0;
  }
  .page-home .vorteile-intro .btn {
    width: 100%;
  }
  .page-home .hero-content,
  .page-home .kontakt-inner,
  body.page-home.horizontal-scroll-page main > .section.ueber-uns > .container,
  body.page-home.horizontal-scroll-page main > .section.leistungen > .container,
  body.page-home.horizontal-scroll-page main > .section.referenzen > .container {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .page-home .hero-headline,
  .page-home .hero-sub,
  .page-home .hero-copy,
  .page-home .hero-system,
  .page-home .hero-buttons {
    grid-column: auto;
    grid-row: auto;
    text-align: center;
    justify-content: center;
  }
  .page-home .hero-kicker {
    margin-left: auto;
    margin-right: auto;
  }
  .page-home .hero-headline {
    font-size: 58px;
  }
  .page-home .hero-headline--animated {
    align-items: center;
  }
  .page-home .hero-system {
    max-width: 620px;
  }
  .page-home .vorteile-grid,
  .page-home .leistungen-grid,
  .page-home .referenzen-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-home .ablauf-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1181px) and (max-width: 1400px) {
  body.page-home.horizontal-scroll-page main > .hero > .container,
  body.page-home.horizontal-scroll-page main > .section > .container {
    padding: 0 24px;
  }
  body.page-home.horizontal-scroll-page main > .section > .container {
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 32px;
  }
  body.page-home.horizontal-scroll-page main > .section.vorteile > .container {
    grid-template-columns: minmax(240px, 1fr) minmax(240px, 1fr) minmax(0, 1.8fr);
    gap: 20px;
  }
  .page-home .section-title {
    font-size: 38px;
  }
  .page-home .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
    column-gap: 48px;
  }
  .page-home .hero-headline {
    font-size: 60px;
  }
  .page-home .hero-sub {
    font-size: 19px;
  }
  .page-home .hero-system {
    padding: 24px;
  }
  .page-home .hero-system-logo {
    min-height: 70px;
    margin-bottom: 16px;
  }
  .page-home .hero-system-item {
    min-height: 78px;
    padding: 12px;
  }
  .page-home .hero-proof-card {
    min-height: 52px;
  }
  .page-home .hero-system-text {
    font-size: 13.5px;
    margin-bottom: 12px;
  }
  .page-home .ueber-uns-visual--teaser {
    padding: 24px;
    gap: 16px;
  }
  .page-home .about-system-flow {
    gap: 8px;
  }
  .page-home .about-system-flow span {
    padding: 8px 10px;
    font-size: 12.6px;
  }
  .page-home .about-system-flow i {
    width: 22px;
  }
  .page-home .about-system-grid {
    gap: 10px;
  }
  .page-home .about-system-grid div {
    min-height: 82px;
    padding: 14px;
  }
  .page-home .about-system-grid strong {
    font-size: 19px;
  }
  .page-home .about-system-grid span,
  .page-home .about-system-note span {
    font-size: 12.4px;
  }
  .page-home .vorteile-grid,
  .page-home .leistungen-grid,
  .page-home .referenzen-grid {
    gap: 14px;
  }
  .page-home .leistung-card,
  .page-home .vorteil-card {
    padding: 14px;
  }
  .page-home #leistungen .leistung-list {
    display: flex;
  }
  .page-home .leistungen-cta-block,
  .page-home .vorteile-cta-block,
  .page-home .referenzen-hinweis {
    margin-top: 10px;
    padding: 16px;
  }
  .page-home .project-surface {
    min-height: 110px;
  }
  .page-home .kontakt-inner {
    gap: 32px;
  }
  .page-home .kontakt-form {
    padding: 22px;
    gap: 10px;
  }
}

@media (min-width: 1401px) and (max-width: 1500px) {
  .page-home .hero-headline {
    font-size: 70px;
  }
  .page-home .hero-sub {
    font-size: 19px;
  }
  .page-home .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
    column-gap: 54px;
  }
  .page-home .hero-system {
    padding: 24px;
  }
  .page-home .hero-system-logo {
    min-height: 70px;
    margin-bottom: 14px;
  }
  .page-home .hero-system-item {
    min-height: 76px;
    padding: 11px 12px;
  }
  .page-home .hero-proof-card {
    min-height: 48px;
  }
}

@media (min-width: 1501px) {
  body.page-home #leistungen .leistungen-grid .leistung-card .leistung-list {
    grid-template-rows: none;
    grid-auto-rows: minmax(22px, max-content);
    align-content: start;
    gap: 10px;
  }
  body.page-home #leistungen .leistungen-grid #leistung-it-loesungen-fuer-unternehmen .leistung-list li,
  body.page-home #leistungen .leistungen-grid #leistung-design-und-werbemittel .leistung-list li {
    font-size: 10.2px;
    padding: 3px 6px;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .leistung-card,
  .vorteil-card,
  .referenz-card {
    flex-basis: calc(50% - 12px);
  }
  .leistung-card--wide { flex-basis: calc(50% - 12px); }
}

@media (max-width: 900px) {
  :root {
    --nav-height: 68px;
    --bottom-nav-height: 76px;
  }
  .scroll-progress {
    top: auto;
    bottom: calc(var(--bottom-nav-height) - 6px);
  }
  .scroll-percent {
    top: auto;
    bottom: calc(var(--bottom-nav-height) + 8px);
  }
  .header {
    top: auto;
    bottom: 0;
    height: var(--bottom-nav-height);
    border-top: 1px solid var(--border);
    border-bottom: 0;
    box-shadow: 0 -1px 0 var(--border);
  }
  .nav {
    height: 100%;
    padding: 12px 20px;
    gap: 14px;
  }
  .logo-img {
    height: 34px;
  }
  body.horizontal-scroll-page main > section {
    align-items: flex-start;
    padding: 42px 0;
  }
  body.horizontal-scroll-page main > .hero {
    padding: 38px 0 42px;
  }
  body.horizontal-scroll-page main > section > .container {
    height: auto;
    min-height: 100%;
  }
  body.horizontal-scroll-page .hero-content,
  body.horizontal-scroll-page .ueber-uns-inner,
  body.horizontal-scroll-page .kontakt-inner,
  body.horizontal-scroll-page .service-layout,
  body.horizontal-scroll-page .zielgruppen-wrapper {
    height: auto;
    min-height: 100%;
  }
  body.horizontal-scroll-page .horizontal-stage > .footer {
    align-items: flex-start;
    padding-top: 42px;
    padding-bottom: 42px;
  }
  .ueber-uns-inner,
  .about-profile-layout,
  .about-principles-grid {
    grid-template-columns: 1fr;
  }
  .ueber-uns-inner,
  .about-profile-layout {
    gap: 28px;
  }
  .ueber-uns-text--teaser,
  .about-profile-copy {
    align-items: center;
    text-align: center;
  }
  .ueber-uns-text--teaser {
    align-items: flex-start;
    text-align: left;
  }
  .ueber-uns-text--teaser .section-title,
  .about-profile-copy .section-title {
    text-align: center;
  }
  .ueber-uns-text--teaser .section-title {
    text-align: left;
  }
  .ueber-uns-text--teaser .about-title-animated {
    font-size: 38px;
    line-height: 1.05;
  }
  .ueber-uns-text--teaser p {
    font-size: 17px;
    line-height: 1.72;
    text-align: left;
  }
  .about-profile-copy .btn,
  .ueber-uns-text--teaser .btn {
    align-self: center;
  }
  .ueber-uns-text--teaser .btn {
    align-self: flex-start;
    min-width: 270px;
    padding: 12px 44px;
    font-size: 18.4px;
    margin-top: 28px;
  }
  .ueber-uns-visual--teaser,
  .about-profile-panel {
    min-height: auto;
    padding: 24px;
  }
  .ueber-uns-visual--teaser.ueber-uns-image-teaser {
    flex: 0 0 auto;
    width: 100%;
    min-height: auto;
    padding: 0;
    aspect-ratio: 941 / 1672;
  }
  .ueber-uns-visual--teaser.ueber-uns-image-teaser picture,
  .ueber-uns-visual--teaser.ueber-uns-image-teaser img {
    height: 100%;
  }
  .about-system-flow {
    flex-wrap: wrap;
  }
  .about-system-flow i {
    display: none;
  }
  .about-system-grid,
  .about-profile-stats {
    grid-template-columns: 1fr;
  }
  .about-system-note {
    flex-direction: column;
    text-align: center;
  }
  .nav-links, .nav-contact-text { display: none; }
  .mobile-nav-toggle { display: inline-grid; }
  .nav-cta .btn { display: none; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    bottom: 100%;
    height: calc(var(--viewport-height) - var(--bottom-nav-height));
    max-height: none;
    overflow-y: auto;
    background:
      linear-gradient(180deg, #24262d 0%, #1b1d23 54%, #15161c 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 28px 24px 30px;
    border-top: 1px solid var(--border);
    border-bottom: 0;
    box-shadow: 0 -24px 80px rgba(0,0,0,0.48);
    gap: 10px;
    z-index: 10020;
    animation: slideDown 0.3s ease;
  }
  .nav-links.open > li {
    width: 100%;
  }
  .nav-links.open .nav-item,
  .nav-links.open .nav-dropdown-head {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .nav-links.open .nav-link {
    width: 100%;
    min-height: 58px;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: center;
    justify-content: stretch;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.16);
    background:
      linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0) 42%),
      linear-gradient(135deg, #4b4f5a 0%, #2f333c 48%, #1d2028 100%);
    color: rgba(255,255,255,0.9);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), inset 0 -1px 0 rgba(0,0,0,0.2), 0 12px 32px rgba(0,0,0,0.24);
    font-size: 19px;
    line-height: 1;
  }
  .nav-links.open .nav-icon {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
    justify-self: start;
  }
  .nav-links.open .nav-label {
    min-width: 0;
    justify-self: start;
    text-align: left;
  }
  .nav-links.open .nav-link.active {
    border-color: transparent;
    background: linear-gradient(to left, #ff8a2a, var(--accent), #d95a00);
    color: #ffffff;
    box-shadow: 0 18px 42px rgba(255,85,0,0.24);
  }
  .nav-links.open .nav-link::after {
    display: none;
  }
  .nav-links.open .nav-dropdown-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
    align-items: center;
    gap: 8px;
    min-height: 58px;
    padding: 0 8px 0 0;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.16);
    background:
      linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0) 42%),
      linear-gradient(135deg, #4b4f5a 0%, #2f333c 48%, #1d2028 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), inset 0 -1px 0 rgba(0,0,0,0.2), 0 12px 32px rgba(0,0,0,0.24);
  }
  .nav-links.open .nav-dropdown-head .nav-link {
    min-height: 56px;
    padding: 12px 0 12px 18px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .nav-links.open .nav-dropdown-toggle {
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255,255,255,0.12);
  }
  .nav-links.open .nav-dropdown-toggle svg {
    width: 22px;
    height: 22px;
  }
  .nav-links.open .nav-dropdown.open .nav-dropdown-head {
    border-color: rgba(255,255,255,0.2);
    background:
      linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0) 42%),
      linear-gradient(135deg, #565b66 0%, #383c46 48%, #242832 100%);
  }
  .nav-links.open .nav-dropdown.active .nav-dropdown-head {
    border-color: transparent;
    background: linear-gradient(to left, #ff8a2a, var(--accent), #d95a00);
    box-shadow: 0 18px 42px rgba(255,85,0,0.24);
  }
  .nav-links.open .nav-dropdown.active .nav-dropdown-toggle {
    background: rgba(255,255,255,0.14);
  }
  .nav-links.open .nav-dropdown.open {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .nav-dropdown-menu {
    position: static;
    width: 100%;
    min-width: 0;
    box-shadow: none;
    margin-top: 0;
    padding: 0;
    gap: 8px;
    background: transparent;
    border: 0;
    display: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .nav-links.open .dropdown-link {
    min-height: 42px;
    justify-content: flex-start;
    padding: 10px 18px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.14);
    background:
      linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0) 44%),
      linear-gradient(135deg, #464a54 0%, #2e323b 52%, #1e222b 100%);
    color: rgba(255,255,255,0.86);
    font-size: 15.6px;
    text-align: left;
  }
  .nav-links.open .dropdown-link:hover,
  .nav-links.open .dropdown-link.active {
    background: linear-gradient(to left, #ff8a2a, var(--accent), #d95a00);
    color: #fff;
  }
  .nav-links.open .nav-dropdown.open {
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open .nav-dropdown.open .nav-dropdown-menu {
    display: grid;
  }
  .nav-links.open .mobile-nav-contact-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    margin-top: auto;
    padding: 14px;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,0.09);
    background:
      radial-gradient(circle at 20% 0%, rgba(255,255,255,0.08), transparent 36%),
      #0B0B0B;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.09), 0 18px 46px rgba(0,0,0,0.26);
  }
  .mobile-nav-contact-card {
    min-height: 72px;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.045);
    color: rgba(255,255,255,0.92);
    box-shadow: none;
  }
  .mobile-nav-contact-card strong,
  .mobile-nav-contact-card small {
    display: block;
    min-width: 0;
  }
  .mobile-nav-contact-card strong {
    font-family: var(--font-display);
    font-size: 18.6px;
    line-height: 1.05;
  }
  .mobile-nav-contact-card small {
    margin-top: 5px;
    color: rgba(255,255,255,0.72);
    font-size: 14.6px;
    line-height: 1.1;
  }
  .mobile-nav-contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 17px;
    background: linear-gradient(to left, #ff8a2a, var(--accent), #d95a00);
  }
  .mobile-nav-contact-icon .kontakt-info-lottie-icon,
  .mobile-nav-contact-icon .kontakt-info-lottie-icon svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .ueber-uns-inner,
  .kontakt-inner,
  .service-layout,
  .zielgruppen-wrapper {
    flex-direction: column;
    gap: 48px;
  }
  .service-side {
    position: static;
    width: 100%;
    flex-basis: auto;
  }

  .ablauf-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .ablauf-step {
    flex-basis: auto;
  }
  .step-line { display: none; }
  .footer-top { gap: 32px; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .section { padding: 75px 0; }
  .hero { padding: 56px 0 calc(var(--bottom-nav-height) + 32px); }
  body.horizontal-scroll-page .hero {
    padding: 34px 0 38px;
  }
  .hero-headline { font-size: 42px; }
  .hero-kicker { margin-left: auto; margin-right: auto; }
  .hero-system { padding: 22px; border-radius: 22px; }
  .hero-system-logo { min-height: 66px; margin-bottom: 12px; }
  .hero-system-text { font-size: 13px; margin-bottom: 12px; }
  .hero-system-grid,
  .hero-proof-row { gap: 8px; }
  .hero-system-item { grid-template-columns: 44px minmax(0, 1fr); min-height: 128px; padding: 10px; column-gap: 12px; }
  .hero-system-icon { width: 44px; height: 44px; border-radius: 12px; }
  .hero-system-icon svg { width: 24px; height: 24px; }
  .hero-lottie-icon { width: 36px; height: 36px; }
  .hero-system-item strong { font-size: 15px; }
  .hero-system-badges { gap: 5px; }
  .hero-system-badges span { min-height: 20px; padding: 4px 7px; font-size: 10.8px; }
  .hero-system-item p { grid-column: 2; font-size: 11.8px; line-height: 1.3; }
  .hero-system-actions { grid-column: 2; grid-row: auto; gap: 6px; margin-top: 0; justify-self: start; }
  .hero-system-button { min-height: 32px; padding: 8px 13px; font-size: 12.6px; }
  .hero-proof-row { grid-template-columns: 1fr; }
  .section-title { font-size: 34px; overflow-wrap: anywhere; }
  .section-text,
  .hero-sub,
  .hero-text { max-width: 100%; overflow-wrap: anywhere; }
  .reveal-left,
  .reveal-right {
    transform: translateY(30px);
  }
  .hero-buttons { flex-direction: column; align-items: center; }
  .vorteile-grid,
  .leistungen-grid,
  .referenzen-grid,
  .form-row,
  .footer-top {
    flex-direction: column;
  }
  .leistung-card,
  .vorteil-card,
  .referenz-card,
  .ablauf-step,
  .leistung-card--wide {
    flex-basis: auto;
    min-width: 0;
  }
  .ablauf-steps { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .kontakt-form { padding: 28px 22px; }
  .subhero { min-height: 46vh; padding: 56px 0 calc(var(--bottom-nav-height) + 40px); }
  .service-main .section-title { font-size: 30px; }
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
  a { cursor: pointer; }
}

/* ============================================================
   COMPACT PREMIUM SECTION BUTTONS
   ============================================================ */
body main > section:not(.hero) .btn,
body main > .subhero .btn,
body.page-home main > section:not(.hero) .btn {
  width: fit-content !important;
  max-width: 100%;
  justify-self: center;
  flex: 0 0 auto;
  min-width: 140px;
  min-height: 40px;
  padding: 9px 22px;
  border-radius: 30px;
  gap: 10px;
  font-size: 15px;
  line-height: 1.1;
  letter-spacing: 0.12px;
  border: 0;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.116);
}
body main > section:not(.hero) .btn-primary,
body main > .subhero .btn-primary,
body.page-home main > section:not(.hero) .btn-primary {
  background: linear-gradient(to left, #ff8a2a, var(--accent), #d95a00);
  color: #ffffff;
  animation: none;
}
body main > section:not(.hero) .btn-primary::before,
body main > .subhero .btn-primary::before,
body.page-home main > section:not(.hero) .btn-primary::before {
  display: none;
}
body main > section:not(.hero) .btn-primary > *,
body main > .subhero .btn-primary > *,
body.page-home main > section:not(.hero) .btn-primary > * {
  position: relative;
  z-index: 1;
}
body main > section:not(.hero) .btn-primary:hover,
body main > .subhero .btn-primary:hover,
body.page-home main > section:not(.hero) .btn-primary:hover {
  background: linear-gradient(to left, #ff7a16, #ff4f00, #c94f00);
  animation: none;
}
body main > section:not(.hero) .btn-primary:hover::before,
body main > .subhero .btn-primary:hover::before,
body.page-home main > section:not(.hero) .btn-primary:hover::before {
  display: none;
}
@keyframes sectionButtonGlowSpin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
body main > section:not(.hero) .btn-ghost,
body main > .subhero .btn-ghost,
body.page-home main > section:not(.hero) .btn-ghost {
  border-color: rgba(11, 11, 11, 0.32);
  background:
    radial-gradient(circle at 50% 100%, rgba(255,255,255,0.52), transparent 70%),
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(238,240,244,0.9));
  color: #0B0B0B;
}
body main > section:not(.hero) .btn-ghost:hover,
body main > .subhero .btn-ghost:hover,
body.page-home main > section:not(.hero) .btn-ghost:hover {
  border-color: rgba(11, 11, 11, 0.5);
  background:
    radial-gradient(circle at 50% 100%, rgba(255,255,255,0.24), transparent 70%),
    linear-gradient(135deg, #0B0B0B, #24262e);
  color: #ffffff;
}
body main > section:not(.hero) .btn-large,
body.page-home main > section:not(.hero) .btn-large {
  min-height: 42px;
  padding: 10px 24px;
  font-size: 15.2px;
}
body main > section:not(.hero) .btn-icon-kontakt,
body.page-home main > section:not(.hero) .btn-icon-kontakt {
  width: 22px;
  height: 22px;
}
body main > section:not(.hero) .btn:hover > .btn-icon,
body main > .subhero .btn:hover > .btn-icon,
body.page-home main > section:not(.hero) .btn:hover > .btn-icon {
  animation: sectionButtonIconRing 0.9s both;
  transform-origin: top center;
}
@keyframes sectionButtonIconRing {
  0%, 100% { transform: rotateZ(0); transform-origin: top center; }
  15% { transform: rotateZ(10deg); }
  30% { transform: rotateZ(-10deg); }
  45% { transform: rotateZ(5deg); }
  60% { transform: rotateZ(-5deg); }
  75% { transform: rotateZ(2deg); }
}
body.page-home .ueber-uns-text--teaser .btn {
  opacity: 1;
  transform: none;
  animation: none;
}
body.horizontal-scroll-page main > section .btn.reveal-up {
  opacity: 1 !important;
  transform: none !important;
}
body.page-home main > section:not(.hero) :is(.vorteile-intro, .leistungen-intro, .referenzen-intro, .ablauf-intro) .btn {
  align-self: center !important;
}
body.page-home main > section:not(.hero) .ablauf-intro .btn {
  width: 100% !important;
  min-width: 0 !important;
  align-self: stretch !important;
  justify-self: stretch !important;
}

/* Home hero and section buttons use the same compact pill shape. */
.page-home .hero-buttons .btn {
  min-width: 230px;
  min-height: 44px;
  padding: 10px 28px;
  border: 0;
  border-radius: 30px;
  gap: 10px;
  font-size: 16.4px;
  line-height: 1.1;
  letter-spacing: 0.12px;
  overflow: visible;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.116);
}
.page-home .hero-buttons .btn-icon {
  width: 24px;
  height: 24px;
}
.page-home .hero-buttons .btn-icon-projekte {
  width: 24px;
  height: 24px;
}
.page-home .hero-buttons .btn-primary {
  background: linear-gradient(to left, #ff8a2a, var(--accent), #d95a00);
  background-size: 100% auto;
  animation: none;
}
.page-home .hero-buttons .btn-primary:hover {
  background: linear-gradient(to left, #ff7a16, #ff4f00, #c94f00);
  background-size: 100% auto;
  animation:
    buttonPulse 1.5s infinite;
}
.page-home .hero-buttons .btn-ghost {
  background: linear-gradient(to left, #3a3b42, #15161D, #0B0B0B);
  background-size: 100% auto;
  animation: none;
}
.page-home .hero-buttons .btn-ghost:hover {
  background: linear-gradient(to left, #45474f, #15161D, #0B0B0B);
  background-size: 100% auto;
  animation:
    buttonDarkPulse 1.5s infinite;
}
.nav-cta .btn {
  min-width: 170px;
  min-height: 40px;
  padding: 9px 22px;
  border: 0;
  border-radius: 30px;
  gap: 9px;
  font-size: 14.6px;
  line-height: 1.1;
  letter-spacing: 0.12px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.116);
}
.nav-cta .btn-primary {
  background: linear-gradient(to left, #ff8a2a, var(--accent), #d95a00);
  background-size: 100% auto;
  color: #ffffff;
  animation: none;
}
.nav-cta .btn-primary:hover {
  background: linear-gradient(to left, #ff7a16, #ff4f00, #c94f00);
  color: #ffffff;
  animation: buttonPulse 1.5s infinite;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.116);
}
.nav-cta .btn-icon-kontakt {
  width: 22px;
  height: 22px;
}
body main > section:not(.hero) .btn-primary:hover,
body main > .subhero .btn-primary:hover,
body.page-home main > section:not(.hero) .btn-primary:hover {
  animation: buttonPulse 1.5s infinite;
}
body main > section:not(.hero) .btn-ghost:hover,
body main > .subhero .btn-ghost:hover,
body.page-home main > section:not(.hero) .btn-ghost:hover {
  animation: buttonDarkPulse 1.5s infinite;
}
body main > section.about-profile .about-profile-copy .btn,
body main > section.zielgruppen .conclusion-card .btn {
  min-height: 44px;
  padding-top: 11px;
  padding-bottom: 11px;
  line-height: 1.2;
  overflow: visible;
}
body.page-home #ueber-uns .ueber-uns-text--teaser .btn {
  min-width: 215px;
  min-height: 48px;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 16.2px;
  overflow: visible;
}

@media (hover: hover) and (pointer: fine) and (max-height: 820px), (min-width: 901px) and (max-height: 820px) {
  body.page-home.horizontal-scroll-page main > .section.ueber-uns {
    padding-top: 54px;
    padding-bottom: 54px;
  }
  body.page-home.horizontal-scroll-page main > .section.ueber-uns > .container {
    overflow: visible;
  }
  .page-home .ueber-uns-text--teaser .section-title {
    font-size: 42px;
    line-height: 1;
    margin-bottom: 16px;
  }
  .page-home .ueber-uns-text--teaser p {
    font-size: 15.6px;
    line-height: 1.52;
    margin-bottom: 12px;
  }
  body.page-home #ueber-uns .ueber-uns-text--teaser .btn {
    min-height: 44px;
    padding: 10px 26px;
    font-size: 15.8px;
    margin-top: 18px;
  }
}

/* Browser-Zoom should not switch desktop layout tiers. These classes are based on
   the normalized screen metric from desktop-scale.js instead of CSS viewport width. */
@media (hover: hover) and (pointer: fine), (min-width: 901px) {
  html.desktop-layout-wide body.page-home.horizontal-scroll-page main > .hero > .container,
  html.desktop-layout-wide body.page-home.horizontal-scroll-page main > .section > .container {
    padding: 0 32px;
  }
  html.desktop-layout-wide body.page-home.horizontal-scroll-page main > .section > .container {
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 28px;
  }
  html.desktop-layout-wide body.page-home.horizontal-scroll-page main > .section.vorteile > .container {
    grid-template-columns: minmax(270px, 1fr) minmax(270px, 1fr) minmax(0, 2.08fr);
    gap: 24px;
  }
  html.desktop-layout-wide body.page-home.horizontal-scroll-page main > .section.leistungen > .container {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr);
    grid-template-areas: "head cards";
    gap: 28px;
  }
  html.desktop-layout-wide .page-home .hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(460px, 0.96fr);
    column-gap: 80px;
    align-content: stretch;
    align-items: stretch;
    text-align: left;
    height: 100%;
  }
  html.desktop-layout-wide .page-home .hero-copy {
    grid-column: 1;
    align-self: stretch;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
  }
  html.desktop-layout-wide .page-home .hero-system {
    grid-column: 2;
    align-self: stretch;
    height: 100%;
    max-width: none;
    padding: 24px;
  }
  html.desktop-layout-wide .page-home .hero-headline {
    font-size: 80px;
    line-height: 1.01;
    text-align: left;
  }
  html.desktop-layout-wide .page-home .hero-headline--animated {
    align-items: flex-start;
  }
  html.desktop-layout-wide .page-home .hero-sub {
    font-size: 20px;
    line-height: 1.5;
    text-align: left;
  }
  html.desktop-layout-wide .page-home .section-title {
    font-size: 42px;
    line-height: 1.08;
  }
  html.desktop-layout-wide .page-home .vorteile-intro .section-title,
  html.desktop-layout-wide .page-home .leistungen-intro .section-title,
  html.desktop-layout-wide .page-home .referenzen-intro .section-title {
    font-size: 36px;
    line-height: 1.05;
  }

  html.desktop-layout-medium-large .page-home .hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
    column-gap: 54px;
    text-align: left;
  }
  html.desktop-layout-medium-large .page-home .hero-headline {
    font-size: 70px;
    text-align: left;
  }
  html.desktop-layout-medium-large .page-home .hero-headline--animated {
    align-items: flex-start;
  }
  html.desktop-layout-medium-large .page-home .hero-sub {
    font-size: 19px;
    text-align: left;
  }
  html.desktop-layout-medium-large .page-home .hero-system {
    grid-column: 2;
    max-width: none;
    padding: 24px;
  }
  html.desktop-layout-medium-large .page-home .hero-system-logo {
    min-height: 70px;
    margin-bottom: 14px;
  }
  html.desktop-layout-medium-large .page-home .hero-system-item {
    min-height: 76px;
    padding: 11px 12px;
  }
  html.desktop-layout-medium-large .page-home .hero-proof-card {
    min-height: 48px;
  }

  html.desktop-layout-medium-small body.page-home.horizontal-scroll-page main > .hero > .container,
  html.desktop-layout-medium-small body.page-home.horizontal-scroll-page main > .section > .container {
    padding: 0 24px;
  }
  html.desktop-layout-medium-small body.page-home.horizontal-scroll-page main > .section > .container {
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 32px;
  }
  html.desktop-layout-medium-small .page-home .hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
    column-gap: 48px;
    text-align: left;
  }
  html.desktop-layout-medium-small .page-home .hero-headline {
    font-size: 60px;
    text-align: left;
  }
  html.desktop-layout-medium-small .page-home .hero-headline--animated {
    align-items: flex-start;
  }
  html.desktop-layout-medium-small .page-home .hero-sub {
    font-size: 19px;
    text-align: left;
  }
  html.desktop-layout-medium-small .page-home .section-title {
    font-size: 38px;
  }
  html.desktop-layout-medium-small .page-home .hero-system {
    grid-column: 2;
    max-width: none;
    padding: 24px;
  }
  html.desktop-layout-medium-small .page-home .hero-system-logo {
    min-height: 70px;
    margin-bottom: 16px;
  }
  html.desktop-layout-medium-small .page-home .hero-system-item {
    min-height: 78px;
    padding: 12px;
  }
  html.desktop-layout-medium-small .page-home .hero-proof-card {
    min-height: 52px;
  }
}

@media (hover: hover) and (pointer: fine), (min-width: 901px) {
  html.desktop-layout-wide body.page-home.horizontal-scroll-page main > .section.vorteile > .container {
    grid-template-columns: minmax(260px, 320px) minmax(300px, 360px) minmax(0, 1fr);
    gap: 28px;
  }
  html.desktop-layout-wide .page-home .vorteile-image-card {
    justify-self: stretch;
    width: 100%;
    max-width: 320px;
  }

  html.desktop-layout-wide body.page-home.horizontal-scroll-page main > .section.ueber-uns > .container {
    grid-template-columns: minmax(0, 0.96fr) minmax(560px, 700px);
    gap: 56px;
  }
  html.desktop-layout-wide .page-home .ueber-uns-text--teaser {
    max-width: 820px;
  }
  html.desktop-layout-wide .page-home .ueber-uns-text--teaser .section-title {
    font-size: 58px;
    line-height: 1.02;
    margin-bottom: 28px;
  }
  html.desktop-layout-wide .page-home .ueber-uns-text--teaser p {
    max-width: 760px;
    font-size: 20.4px;
    line-height: 1.66;
    margin-bottom: 18px;
  }
  html.desktop-layout-wide .page-home .ueber-uns-visual--teaser.ueber-uns-image-teaser {
    justify-self: end;
    width: 100%;
    max-width: 700px;
  }

  html.desktop-layout-medium-large body.page-home.horizontal-scroll-page main > .section.ueber-uns > .container,
  html.desktop-layout-medium-small body.page-home.horizontal-scroll-page main > .section.ueber-uns > .container {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 600px);
    gap: 48px;
  }
  html.desktop-layout-medium-large .page-home .ueber-uns-text--teaser .section-title,
  html.desktop-layout-medium-small .page-home .ueber-uns-text--teaser .section-title {
    font-size: 54px;
    line-height: 1.02;
  }
  html.desktop-layout-medium-large .page-home .ueber-uns-text--teaser p,
  html.desktop-layout-medium-small .page-home .ueber-uns-text--teaser p {
    font-size: 19.4px;
    line-height: 1.66;
  }
  html.desktop-layout-medium-large .page-home .ueber-uns-visual--teaser.ueber-uns-image-teaser,
  html.desktop-layout-medium-small .page-home .ueber-uns-visual--teaser.ueber-uns-image-teaser {
    justify-self: end;
    width: 100%;
    max-width: 600px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .header .nav {
    width: 100%;
    height: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 18px 20px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .header .nav-logo {
    display: flex !important;
    flex: 0 0 auto;
  }
  .header .logo-img {
    height: 38px;
  }
  .header .nav-links {
    position: static;
    display: flex !important;
    width: auto;
    flex: 1 1 auto;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    animation: none;
  }
  .header .nav-links > li:not(.nav-dropdown) {
    display: flex;
    width: auto;
  }
  .header .nav-item,
  .header .nav-dropdown {
    width: auto;
    flex-direction: row;
    align-items: center;
  }
  .header .nav-dropdown-head {
    width: auto;
    flex-direction: row;
    justify-content: center;
  }
  .header .nav-dropdown-menu {
    position: absolute;
    top: auto;
    bottom: calc(100% + 14px);
    left: 50%;
    width: 306px;
    min-width: 0;
    display: flex;
    margin-top: 0;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translate(-50%, 10px);
    pointer-events: none;
  }
  .header .nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
  }
  .header .nav-cta {
    display: flex !important;
    flex: 0 0 auto;
  }
  .header .nav-cta .btn {
    display: inline-flex !important;
  }
  .header .mobile-nav-toggle {
    display: none !important;
  }
  .header .mobile-nav-contact-list {
    display: none !important;
  }
}

/* ============================================================
   MOBILE PANEL POLISH
   ============================================================ */
@media (max-width: 900px) {
  body.page-home.horizontal-scroll-page main > .hero > .container,
  body.page-home.horizontal-scroll-page main > .section > .container {
    overflow: visible;
  }

  .page-home .hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .page-home .hero-copy {
    align-items: center;
    text-align: center;
  }
  .page-home .hero-headline,
  .page-home .hero-headline--animated {
    align-items: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .page-home .hero-title-segment {
    margin-left: auto;
    margin-right: auto;
  }
  .page-home .hero-sub,
  .page-home .hero-sub strong,
  .page-home .hero-sub span {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .page-home .hero-buttons {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin: 0 0 10px;
  }
  .page-home .hero-buttons .btn {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 14px 22px;
    font-size: 18px;
    gap: 12px;
  }
  .page-home .hero-buttons .btn-icon {
    width: 29px;
    height: 29px;
  }
  .page-home .hero-system {
    margin-top: 12px;
    padding: 22px;
    gap: 16px;
  }
  .page-home .hero-system-logo,
  .page-home .hero-system-text {
    margin-bottom: 0;
  }
  .page-home .hero-system-grid {
    gap: 14px;
  }
  .page-home .hero-system-item {
    display: block;
    min-height: 0;
    padding: 16px;
  }
  .page-home .hero-system-icon {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 58px;
    height: 58px;
  }
  .page-home .hero-system-icon svg {
    width: 32px;
    height: 32px;
  }
  .page-home .hero-lottie-icon {
    width: 48px;
    height: 48px;
  }
  .page-home .hero-system-item strong {
    display: block;
    margin-left: 72px;
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.15;
    padding-top: 2px;
  }
  .page-home .hero-system-item p {
    margin-left: 72px;
    margin-bottom: 11px;
    font-size: 13.2px;
    line-height: 1.45;
  }
  .page-home .hero-system-badges {
    margin-left: 72px;
    gap: 9px 8px;
    margin-top: 0;
    margin-bottom: 16px;
  }
  .page-home .hero-system-badges span {
    min-height: 26px;
    padding: 6px 10px;
    font-size: 11.6px;
  }
  .page-home .hero-system-actions {
    width: 100%;
    margin-top: 0;
  }
  .page-home .hero-system-button {
    width: 100%;
    min-height: 44px;
    padding: 12px 18px;
    font-size: 15.4px;
  }
  .page-home .hero-proof-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 2px;
  }
  .page-home .hero-proof-card {
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: start;
    min-height: 106px;
    padding: 13px 10px;
    gap: 10px;
    text-align: center;
  }
  .page-home .proof-visual {
    width: 48px;
    height: 48px;
  }
  .page-home .proof-lottie-icon {
    width: 40px;
    height: 40px;
  }
  .page-home .proof-copy {
    gap: 4px;
  }

  .page-home #vorteile > .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .page-home #vorteile .vorteile-intro {
    order: 1;
  }
  .page-home #vorteile .vorteile-image-card {
    order: 2;
    width: 100%;
    height: auto !important;
    min-height: 0;
    max-height: none;
    aspect-ratio: 941 / 1672;
    margin: 0;
  }
  .page-home #vorteile .vorteile-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .page-home #vorteile .vorteile-grid {
    order: 3;
  }

  .page-home #ueber-uns .ueber-uns-text--teaser {
    align-items: stretch;
  }
  .page-home #ueber-uns .ueber-uns-text--teaser .btn,
  body.page-home #ueber-uns .ueber-uns-text--teaser .btn {
    width: 100% !important;
    min-width: 0;
    min-height: 54px;
    padding: 14px 22px;
    font-size: 18px;
    align-self: stretch;
  }

  .page-home #leistungen .leistungen-grid,
  body.page-home.horizontal-scroll-page #leistungen .leistungen-grid {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
    gap: 18px;
  }
  body.page-home #leistungen .leistungen-grid .leistung-card,
  body.page-home #leistungen .leistungen-grid #leistung-professionelle-webseiten.leistung-card,
  body.page-home #leistungen .leistungen-grid #leistung-google-ads.leistung-card,
  body.page-home #leistungen .leistungen-grid #leistung-it-loesungen-fuer-unternehmen.leistung-card,
  body.page-home #leistungen .leistungen-grid #leistung-design-und-werbemittel.leistung-card {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "icon"
      "title"
      "subtitle"
      "text"
      "badges"
      "action";
    gap: 14px;
    min-height: 0;
    padding: 24px 22px;
    text-align: center;
  }
  body.page-home #leistungen .leistungen-grid .leistung-card .leistung-card-icon,
  body.page-home #leistungen .leistungen-grid #leistung-professionelle-webseiten .leistung-card-icon,
  body.page-home #leistungen .leistungen-grid #leistung-google-ads .leistung-card-icon,
  body.page-home #leistungen .leistungen-grid #leistung-it-loesungen-fuer-unternehmen .leistung-card-icon,
  body.page-home #leistungen .leistungen-grid #leistung-design-und-werbemittel .leistung-card-icon {
    position: relative;
    inset: auto;
    grid-area: icon;
    justify-self: center;
    align-self: start;
    width: 128px;
    height: 128px;
    flex: 0 0 128px;
    margin: 0 auto 2px !important;
  }
  body.page-home #leistungen .leistungen-grid .leistung-card .leistung-lottie-icon,
  body.page-home #leistungen .leistungen-grid #leistung-professionelle-webseiten .leistung-lottie-icon,
  body.page-home #leistungen .leistungen-grid #leistung-google-ads .leistung-lottie-icon,
  body.page-home #leistungen .leistungen-grid #leistung-it-loesungen-fuer-unternehmen .leistung-lottie-icon,
  body.page-home #leistungen .leistungen-grid #leistung-design-und-werbemittel .leistung-lottie-icon {
    width: 128px;
    height: 128px;
    transform: none;
  }
  body.page-home #leistungen .leistungen-grid #leistung-professionelle-webseiten .leistung-lottie-icon,
  body.page-home #leistungen .leistungen-grid #leistung-it-loesungen-fuer-unternehmen .leistung-lottie-icon,
  body.page-home #leistungen .leistungen-grid #leistung-design-und-werbemittel .leistung-lottie-icon {
    transform: scale(1.04);
  }
  body.page-home #leistungen .leistungen-grid .leistung-card h3 {
    grid-area: title;
    margin: 0;
    text-align: center;
    font-size: 28px;
    line-height: 1.08;
  }
  body.page-home #leistungen .leistungen-grid .leistung-card > p {
    grid-area: subtitle;
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
    margin: 0;
    text-align: center;
    font-size: 17px;
    line-height: 1.42;
  }
  body.page-home #leistungen .leistungen-grid .leistung-card .leistung-desc {
    grid-area: text;
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
    margin: 0;
    text-align: center;
    font-size: 15.2px;
    line-height: 1.55;
  }
  body.page-home #leistungen .leistungen-grid .leistung-card .leistung-list {
    grid-area: badges;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-self: auto;
    margin: 2px 0 0;
    gap: 10px 9px;
  }
  body.page-home #leistungen .leistungen-grid .leistung-card .leistung-list li,
  body.page-home #leistungen .leistungen-grid #leistung-professionelle-webseiten .leistung-list li,
  body.page-home #leistungen .leistungen-grid #leistung-it-loesungen-fuer-unternehmen .leistung-list li,
  body.page-home #leistungen .leistungen-grid #leistung-design-und-werbemittel .leistung-list li {
    width: auto;
    min-width: min(150px, 100%);
    min-height: 32px;
    padding: 7px 12px;
    font-size: 12.4px;
  }
  body.page-home #leistungen .leistungen-grid .leistung-card .leistung-cta {
    grid-area: action;
    width: 100%;
    min-width: 0;
    min-height: 54px;
    justify-self: stretch;
    align-self: stretch;
    margin-top: 2px;
    padding: 14px 22px;
    font-size: 18px;
    border-radius: 30px;
  }
}

@media (max-width: 600px) {
  .page-home .hero-headline {
    font-size: clamp(36px, 10.2vw, 44px);
  }
  .page-home .hero-sub {
    font-size: 16.5px;
  }
  .page-home .hero-system {
    margin-top: 16px;
  }
  .page-home .hero-proof-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-home .hero-proof-card:nth-child(3) {
    grid-column: 1 / -1;
  }
  .page-home .hero-proof-card {
    min-height: 112px;
  }
  .page-home #leistungen .leistungen-grid {
    gap: 16px;
  }
}

/* Card CTAs use the same premium orange button language as primary CTAs. */
.hero-system-button,
body.page-home .hero-system-button,
.leistung-cta,
body.page-home #leistungen .leistungen-grid .leistung-card .leistung-cta,
body.page-home #leistungen .leistungen-grid #leistung-professionelle-webseiten .leistung-cta,
body.page-home #leistungen .leistungen-grid #leistung-google-ads .leistung-cta,
body.page-home #leistungen .leistungen-grid #leistung-it-loesungen-fuer-unternehmen .leistung-cta,
body.page-home #leistungen .leistungen-grid #leistung-design-und-werbemittel .leistung-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 22px;
  border: 0;
  border-radius: 30px;
  background: linear-gradient(to left, #ff8a2a, var(--accent), #d95a00);
  background-size: 100% auto;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.12px;
  gap: 14px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.116);
  transition: transform 0.24s ease, background 0.4s ease, box-shadow 0.4s ease;
  animation: none;
}
.hero-system-button:hover,
body.page-home .hero-system-button:hover,
.leistung-cta:hover,
body.page-home #leistungen .leistungen-grid .leistung-card .leistung-cta:hover,
body.page-home #leistungen .leistungen-grid #leistung-professionelle-webseiten .leistung-cta:hover,
body.page-home #leistungen .leistungen-grid #leistung-google-ads .leistung-cta:hover,
body.page-home #leistungen .leistungen-grid #leistung-it-loesungen-fuer-unternehmen .leistung-cta:hover,
body.page-home #leistungen .leistungen-grid #leistung-design-und-werbemittel .leistung-cta:hover {
  background: linear-gradient(to left, #ff7a16, #ff4f00, #c94f00);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.116);
  animation: buttonPulse 1.5s infinite;
}

.leistung-cta::after,
body.page-home #leistungen .leistungen-grid .leistung-card .leistung-cta::after,
body.page-home #leistungen .leistungen-grid #leistung-professionelle-webseiten .leistung-cta::after,
body.page-home #leistungen .leistungen-grid #leistung-google-ads .leistung-cta::after,
body.page-home #leistungen .leistungen-grid #leistung-it-loesungen-fuer-unternehmen .leistung-cta::after,
body.page-home #leistungen .leistungen-grid #leistung-design-und-werbemittel .leistung-cta::after {
  content: none;
  display: none;
}

@media (max-width: 900px) {
  .hero-system-button,
  body.page-home .hero-system-button,
  body.page-home #leistungen .leistungen-grid .leistung-card .leistung-cta,
  body.page-home #leistungen .leistungen-grid #leistung-professionelle-webseiten .leistung-cta,
  body.page-home #leistungen .leistungen-grid #leistung-google-ads .leistung-cta,
  body.page-home #leistungen .leistungen-grid #leistung-it-loesungen-fuer-unternehmen .leistung-cta,
  body.page-home #leistungen .leistungen-grid #leistung-design-und-werbemittel .leistung-cta {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 14px 22px;
    font-size: 18px;
  }
}

/* Mobile CTA corrections for intro cards, service cards and project cards. */
@media (max-width: 900px) {
  body.page-home #vorteile .vorteile-intro .btn,
  body.page-home #leistungen .leistungen-intro .btn,
  body.page-home #projekte .referenzen-intro .btn,
  body.page-home #ablauf .ablauf-intro .btn,
  body.page-home main > section:not(.hero) :is(.vorteile-intro, .leistungen-intro, .referenzen-intro, .ablauf-intro) .btn {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 54px !important;
    padding: 14px 22px !important;
    align-self: stretch !important;
    justify-self: stretch !important;
    font-size: 18px !important;
    gap: 12px !important;
  }

  body.page-home #vorteile .vorteile-intro .btn .btn-icon-kontakt,
  body.page-home #leistungen .leistungen-intro .btn .btn-icon-kontakt,
  body.page-home #projekte .referenzen-intro .btn .btn-icon-kontakt,
  body.page-home #ablauf .ablauf-intro .btn .btn-icon-kontakt {
    width: 26px;
    height: 26px;
  }

  body.page-home .hero-buttons .btn,
  body.page-home #ueber-uns .ueber-uns-text--teaser .btn,
  body.page-home main > section:not(.hero) .btn,
  body.page-home .hero-system-button,
  body.page-home #leistungen .leistungen-grid .leistung-card .leistung-cta {
    min-height: 54px !important;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
    font-size: 18px !important;
  }

  body.page-home .hero-buttons .btn-icon,
  body.page-home main > section:not(.hero) .btn-icon-kontakt {
    width: 26px !important;
    height: 26px !important;
  }

  body.page-home #leistungen .leistungen-grid .leistung-card .leistung-list,
  body.page-home #leistungen .leistungen-grid #leistung-professionelle-webseiten .leistung-list,
  body.page-home #leistungen .leistungen-grid #leistung-google-ads .leistung-list,
  body.page-home #leistungen .leistungen-grid #leistung-it-loesungen-fuer-unternehmen .leistung-list,
  body.page-home #leistungen .leistungen-grid #leistung-design-und-werbemittel .leistung-list {
    margin: 6px 0 12px !important;
    gap: 11px 10px !important;
  }

  body.page-home #leistungen .leistungen-grid .leistung-card .leistung-cta,
  body.page-home #leistungen .leistungen-grid #leistung-professionelle-webseiten .leistung-cta,
  body.page-home #leistungen .leistungen-grid #leistung-google-ads .leistung-cta,
  body.page-home #leistungen .leistungen-grid #leistung-it-loesungen-fuer-unternehmen .leistung-cta,
  body.page-home #leistungen .leistungen-grid #leistung-design-und-werbemittel .leistung-cta {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 54px !important;
    padding: 14px 22px !important;
    margin-top: 8px !important;
    border: 0 !important;
    border-radius: 30px !important;
    align-self: stretch !important;
    justify-self: stretch !important;
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    letter-spacing: 0.12px !important;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.18),
      0 14px 26px rgba(0,0,0,0.18),
      5px 5px 10px rgba(0,0,0,0.116) !important;
    transition: transform 0.24s ease, background 0.4s ease, box-shadow 0.4s ease !important;
  }

  body.page-home #leistungen .leistungen-grid #leistung-professionelle-webseiten .leistung-cta {
    border: 1px solid rgba(255,130,42,0.52) !important;
    background:
      radial-gradient(circle at 18% 12%, rgba(255,122,22,0.72), transparent 36%),
      radial-gradient(circle at 88% 86%, rgba(255,168,72,0.34), transparent 44%),
      linear-gradient(135deg, #a7460d 0%, #783616 42%, #563026 72%, #382a2b 100%) !important;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.16),
      0 12px 24px rgba(255,85,0,0.14),
      5px 5px 10px rgba(0,0,0,0.116) !important;
  }

  body.page-home #leistungen .leistungen-grid #leistung-google-ads .leistung-cta {
    border: 1px solid rgba(60,139,217,0.42) !important;
    background:
      radial-gradient(circle at 22% 12%, rgba(60,139,217,0.36), transparent 34%),
      radial-gradient(circle at 88% 86%, rgba(116,184,242,0.16), transparent 40%),
      linear-gradient(135deg, #26313f 0%, #151c27 48%, #0B0B0B 100%) !important;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.16),
      0 12px 24px rgba(60,139,217,0.14),
      5px 5px 10px rgba(0,0,0,0.116) !important;
  }

  body.page-home #leistungen .leistungen-grid #leistung-it-loesungen-fuer-unternehmen .leistung-cta,
  body.page-home #leistungen .leistungen-grid #leistung-design-und-werbemittel .leistung-cta {
    border: 1px solid rgba(255,255,255,0.16) !important;
    background:
      radial-gradient(circle at 20% 10%, rgba(255,255,255,0.12), transparent 32%),
      radial-gradient(circle at 88% 90%, rgba(124,133,144,0.15), transparent 42%),
      linear-gradient(145deg, #343640 0%, #1d1f28 48%, #0B0B0B 100%) !important;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.16),
      0 12px 24px rgba(0,0,0,0.2),
      5px 5px 10px rgba(0,0,0,0.116) !important;
  }

  body.page-home #leistungen .leistungen-grid .leistung-card .leistung-cta:hover,
  body.page-home #leistungen .leistungen-grid #leistung-professionelle-webseiten .leistung-cta:hover,
  body.page-home #leistungen .leistungen-grid #leistung-google-ads .leistung-cta:hover,
  body.page-home #leistungen .leistungen-grid #leistung-it-loesungen-fuer-unternehmen .leistung-cta:hover,
  body.page-home #leistungen .leistungen-grid #leistung-design-und-werbemittel .leistung-cta:hover {
    background:
      radial-gradient(circle at 24% 14%, rgba(255,255,255,0.28), transparent 34%),
      linear-gradient(to left, #ff7a16, #ff4f00, #c94f00) !important;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.22),
      0 16px 30px rgba(255,85,0,0.22),
      5px 5px 10px rgba(0,0,0,0.116) !important;
    animation: buttonPulse 1.5s infinite !important;
  }

  body.page-home #leistungen .leistungen-grid #leistung-professionelle-webseiten .leistung-cta:hover {
    border-color: rgba(255,138,42,0.62) !important;
    background:
      radial-gradient(circle at 18% 12%, rgba(255,142,42,0.82), transparent 36%),
      radial-gradient(circle at 88% 86%, rgba(255,184,90,0.38), transparent 44%),
      linear-gradient(135deg, #b44a0a 0%, #884018 42%, #60312a 72%, #382a2b 100%) !important;
  }

  body.page-home #leistungen .leistungen-grid #leistung-google-ads .leistung-cta:hover {
    border-color: rgba(116,184,242,0.58) !important;
    background:
      radial-gradient(circle at 22% 12%, rgba(72,158,232,0.46), transparent 34%),
      radial-gradient(circle at 88% 86%, rgba(116,184,242,0.2), transparent 40%),
      linear-gradient(135deg, #2c394c 0%, #172133 48%, #0B0B0B 100%) !important;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.18),
      0 14px 28px rgba(60,139,217,0.18),
      5px 5px 10px rgba(0,0,0,0.116) !important;
  }

  body.page-home #leistungen .leistungen-grid #leistung-it-loesungen-fuer-unternehmen .leistung-cta:hover,
  body.page-home #leistungen .leistungen-grid #leistung-design-und-werbemittel .leistung-cta:hover {
    border-color: rgba(255,255,255,0.32) !important;
    background:
      radial-gradient(circle at 20% 10%, rgba(255,255,255,0.16), transparent 32%),
      radial-gradient(circle at 88% 90%, rgba(124,133,144,0.2), transparent 42%),
      linear-gradient(145deg, #3d404b 0%, #20232c 48%, #0B0B0B 100%) !important;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.18),
      0 14px 28px rgba(0,0,0,0.22),
      5px 5px 10px rgba(0,0,0,0.116) !important;
  }

  body.page-home #projekte .referenzen-grid,
  body.page-home #projekte .project-showcase-grid,
  body.page-home.horizontal-scroll-page #projekte .referenzen-grid,
  body.page-home.horizontal-scroll-page #projekte .project-showcase-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-rows: none !important;
    grid-auto-rows: auto !important;
    gap: 18px !important;
  }

  body.page-home #projekte .project-card,
  body.page-home.horizontal-scroll-page #projekte .project-card:not(.project-card--all) {
    width: 100% !important;
    min-width: 0 !important;
    grid-template-rows: auto minmax(220px, auto) auto !important;
  }

  body.page-home #projekte .project-card--all {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 248px !important;
  }

  body.page-home #projekte .project-card--all .project-all-inner {
    gap: 10px !important;
    padding: 28px 22px !important;
  }

  body.page-home #projekte .project-card--all .project-all-copy {
    max-width: 100% !important;
    font-size: 15.8px !important;
    line-height: 1.45 !important;
  }

  body.page-home #projekte .project-card--all .project-all-button {
    width: 100% !important;
    min-height: 54px !important;
    padding: 14px 22px !important;
    font-size: 18px !important;
  }

  body main .btn,
  body main > .subhero .btn {
    min-height: 54px !important;
    padding: 14px 22px !important;
    font-size: 18px !important;
    line-height: 1.1 !important;
  }

  body main .btn .btn-icon,
  body main .btn .btn-icon-kontakt {
    width: 26px !important;
    height: 26px !important;
  }

  body.page-home .hero-system-badges {
    margin-top: 18px !important;
    margin-bottom: 18px !important;
    gap: 10px 8px !important;
  }

  body.page-home .hero-system-actions {
    width: calc(100% - 72px) !important;
    margin-top: 0 !important;
    margin-left: 72px !important;
    justify-content: stretch !important;
  }

  body.page-home .hero-system-item .hero-system-button {
    width: 100% !important;
    min-height: 42px !important;
    padding: 10px 18px !important;
    font-size: 15.6px !important;
  }
}

@media (min-width: 901px) {
  body.page-home #leistungen .leistungen-grid #leistung-professionelle-webseiten .leistung-cta {
    border: 1px solid rgba(255,130,42,0.52);
    background:
      radial-gradient(circle at 18% 12%, rgba(255,122,22,0.72), transparent 36%),
      radial-gradient(circle at 88% 86%, rgba(255,168,72,0.34), transparent 44%),
      linear-gradient(135deg, #a7460d 0%, #783616 42%, #563026 72%, #382a2b 100%);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.16),
      0 12px 24px rgba(255,85,0,0.14),
      5px 5px 10px rgba(0,0,0,0.116);
  }

  body.page-home #leistungen .leistungen-grid #leistung-professionelle-webseiten .leistung-cta:hover {
    border-color: rgba(255,138,42,0.62);
    background:
      radial-gradient(circle at 18% 12%, rgba(255,142,42,0.82), transparent 36%),
      radial-gradient(circle at 88% 86%, rgba(255,184,90,0.38), transparent 44%),
      linear-gradient(135deg, #b44a0a 0%, #884018 42%, #60312a 72%, #382a2b 100%);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.18),
      0 14px 28px rgba(255,85,0,0.18),
      5px 5px 10px rgba(0,0,0,0.116);
  }

  body.page-home #leistungen .leistungen-grid #leistung-google-ads .leistung-cta {
    border: 1px solid rgba(60,139,217,0.42);
    background:
      radial-gradient(circle at 22% 12%, rgba(60,139,217,0.36), transparent 34%),
      radial-gradient(circle at 88% 86%, rgba(116,184,242,0.16), transparent 40%),
      linear-gradient(135deg, #26313f 0%, #151c27 48%, #0B0B0B 100%);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.16),
      0 12px 24px rgba(60,139,217,0.14),
      5px 5px 10px rgba(0,0,0,0.116);
  }

  body.page-home #leistungen .leistungen-grid #leistung-google-ads .leistung-cta:hover {
    border-color: rgba(116,184,242,0.58);
    background:
      radial-gradient(circle at 22% 12%, rgba(72,158,232,0.46), transparent 34%),
      radial-gradient(circle at 88% 86%, rgba(116,184,242,0.2), transparent 40%),
      linear-gradient(135deg, #2c394c 0%, #172133 48%, #0B0B0B 100%);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.18),
      0 14px 28px rgba(60,139,217,0.18),
      5px 5px 10px rgba(0,0,0,0.116);
  }

  body.page-home #leistungen .leistungen-grid #leistung-it-loesungen-fuer-unternehmen .leistung-cta,
  body.page-home #leistungen .leistungen-grid #leistung-design-und-werbemittel .leistung-cta {
    border: 1px solid rgba(255,255,255,0.16);
    background:
      radial-gradient(circle at 20% 10%, rgba(255,255,255,0.12), transparent 32%),
      radial-gradient(circle at 88% 90%, rgba(124,133,144,0.15), transparent 42%),
      linear-gradient(145deg, #343640 0%, #1d1f28 48%, #0B0B0B 100%);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.16),
      0 12px 24px rgba(0,0,0,0.2),
      5px 5px 10px rgba(0,0,0,0.116);
  }

  body.page-home #leistungen .leistungen-grid #leistung-it-loesungen-fuer-unternehmen .leistung-cta:hover,
  body.page-home #leistungen .leistungen-grid #leistung-design-und-werbemittel .leistung-cta:hover {
    border-color: rgba(255,255,255,0.32);
    background:
      radial-gradient(circle at 20% 10%, rgba(255,255,255,0.16), transparent 32%),
      radial-gradient(circle at 88% 90%, rgba(124,133,144,0.2), transparent 42%),
      linear-gradient(145deg, #3d404b 0%, #20232c 48%, #0B0B0B 100%);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.18),
      0 14px 28px rgba(0,0,0,0.22),
      5px 5px 10px rgba(0,0,0,0.116);
  }
}

@media (max-width: 900px) {
  body.page-home #projekte .project-card,
  body.page-home.horizontal-scroll-page #projekte .project-card:not(.project-card--all) {
    grid-template-rows: auto 270px auto !important;
  }

  body.page-home #projekte .project-company-head {
    min-height: 84px !important;
    grid-template-columns: minmax(0, 78px) minmax(0, 1fr) minmax(0, 78px) !important;
    gap: 12px !important;
    padding: 14px 16px !important;
  }

  body.page-home #projekte .project-company-logo {
    max-width: 78px !important;
    height: 42px !important;
  }

  body.page-home #projekte .project-company-logo--plain {
    max-width: 74px !important;
    height: 46px !important;
  }

  body.page-home #projekte .project-company-copy {
    gap: 6px !important;
  }

  body.page-home #projekte .project-company-head strong {
    font-size: 21px !important;
    line-height: 1.08 !important;
  }

  body.page-home #projekte .project-company-head small {
    font-size: 11.4px !important;
    letter-spacing: 0.9px !important;
  }

  body.page-home #projekte .project-media,
  body.page-home #projekte .project-image,
  body.page-home #projekte .project-logo-variants,
  body.page-home #projekte .project-media-variants {
    height: 270px !important;
    min-height: 0 !important;
    max-height: 270px !important;
  }

  body.page-home #projekte .project-media {
    overflow: hidden !important;
  }

  body.page-home #projekte .project-logo-variants,
  body.page-home #projekte .project-media-variants {
    align-self: stretch !important;
  }

  body.page-home #projekte .project-media-variant,
  body.page-home #projekte .project-logo-variant {
    min-height: 0 !important;
    overflow: hidden !important;
  }

  body.page-home #projekte .project-media-variant img,
  body.page-home #projekte .project-logo-variant img {
    min-height: 0 !important;
    max-height: 100% !important;
    object-fit: contain !important;
  }

  body.page-home #projekte .project-expand-btn {
    top: 14px !important;
    right: 14px !important;
    width: 46px !important;
    height: 46px !important;
  }

  body.page-home #projekte .project-expand-btn svg {
    width: 24px !important;
    height: 24px !important;
  }

  body.page-home #projekte .project-website-actions {
    right: 14px !important;
    bottom: 14px !important;
    max-width: calc(100% - 28px) !important;
    gap: 7px !important;
  }

  body.page-home #projekte .project-website-link {
    height: 42px !important;
    min-height: 40px !important;
    padding: 10px 15px !important;
    font-size: 13.2px !important;
    gap: 8px !important;
  }

  body.page-home #projekte .project-website-view-toggle {
    gap: 5px !important;
    height: 42px !important;
    min-height: 40px !important;
    padding: 0 !important;
  }

  body.page-home #projekte .project-website-view-toggle button {
    min-height: 0 !important;
    padding: 10px 15px !important;
    font-size: 13.2px !important;
  }

  body.page-home #projekte .project-switcher {
    grid-template-columns: repeat(auto-fit, minmax(96px, 1fr)) !important;
    gap: 8px !important;
    padding: 12px !important;
  }

  body.page-home #projekte .project-type-btn {
    min-height: 60px !important;
    gap: 6px !important;
    padding: 10px 8px !important;
    border-radius: 13px !important;
  }

  body.page-home #projekte .project-type-btn svg {
    width: 24px !important;
    height: 24px !important;
    stroke-width: 1.9 !important;
  }

  body.page-home #projekte .project-type-btn--more .card-arrow-icon {
    width: 24px !important;
    height: 24px !important;
  }

  body.page-home #projekte .project-type-btn span {
    font-size: 12.2px !important;
    line-height: 1.12 !important;
    white-space: normal !important;
  }

  body.page-home #projekte .project-type-btn--more {
    min-height: 60px !important;
    font-size: 12.4px !important;
  }
}

/* ============================================================
   KONTAKT REDESIGN
   ============================================================ */
main > .section.kontakt,
body.page-home main > .section.kontakt {
  --bg: var(--light-bg);
  --bg-2: var(--light-bg-2);
  --bg-3: var(--light-bg-3);
  --bg-card: var(--light-card);
  --text: var(--light-text);
  --text-muted: var(--light-muted);
  --text-faint: var(--light-faint);
  --border: var(--light-border);
  background:
    radial-gradient(ellipse 70% 55% at 70% 18%, rgba(255,136,0,0.1), transparent 62%),
    radial-gradient(ellipse 60% 55% at 12% 82%, rgba(255,85,0,0.06), transparent 60%),
    rgba(255,255,255,0.96);
  color: var(--light-text);
  overflow: hidden;
}
body.page-home.horizontal-scroll-page main > .section.kontakt > .container,
main > .section.kontakt > .container {
  display: block;
}
.kontakt-shell {
  position: relative;
  z-index: 2;
}
.kontakt-inner,
.page-home .kontakt-inner,
body.horizontal-scroll-page .kontakt-inner,
body.page-home.horizontal-scroll-page .kontakt-inner {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: stretch;
}
.kontakt-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  border: 0;
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.08), transparent 36%),
    #0B0B0B;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.09);
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
}
.kontakt-intro {
  padding: 30px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  row-gap: 16px;
  text-align: left;
}
.kontakt-intro > :not(.intro-card-runner),
.kontakt-form > * {
  position: relative;
  z-index: 1;
}
.kontakt-kicker,
.kontakt-form-head span {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 13px;
  border: 1px solid rgba(255,138,42,0.38);
  border-radius: 999px;
  background: rgba(255,85,0,0.14);
  color: #ffb066;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.kontakt-intro .section-title {
  margin: 0;
  text-align: center;
  font-size: 42px;
  line-height: 1.04;
  color: #ffffff !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #ffffff !important;
}
.kontakt-intro .title-logo-inline--kontakt {
  width: 4.15em;
  margin: 0.1em 0 0 0.16em;
  vertical-align: -0.15em;
}
.kontakt-intro p {
  margin: 0;
  color: rgba(255,255,255,0.8);
  font-size: 16.4px;
  line-height: 1.68;
  text-align: center;
}
.kontakt-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: stretch;
  gap: 10px;
}
.kontakt-tags > span {
  width: 100%;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid rgba(255,138,42,0.34);
  border-radius: 999px;
  background:
    linear-gradient(to left, #ff8a2a, var(--accent), #d95a00);
  color: #ffffff;
  font-size: 13.8px;
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
  white-space: nowrap;
}
.kontakt-tag-icon {
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 25px;
  color: #ffffff;
}
.kontakt-tag-icon svg,
.kontakt-tag-lottie-icon {
  width: 100%;
  height: 100%;
  display: block;
}
.kontakt-tag-lottie-icon {
  pointer-events: none;
}
.kontakt-tag-icon--lottie:not(.is-loaded) .kontakt-tag-lottie-icon {
  opacity: 0;
}
.kontakt-infos,
.page-home .kontakt-infos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.kontakt-info-item,
.page-home .kontakt-info-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 146px;
  padding: 12px 10px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  background: rgba(255,255,255,0.055);
  color: #ffffff;
  text-align: center;
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s ease;
}
a.kontakt-info-item:hover {
  border-color: rgba(255,138,42,0.5);
  background: rgba(255,85,0,0.12);
}
.kontakt-info-item .info-icon,
.page-home .kontakt-info-item .info-icon {
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(to left, #ff8a2a, var(--accent), #d95a00);
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.2),
    0 12px 22px rgba(255,84,0,0.18);
}
.kontakt-info-item .info-icon svg {
  width: 21px;
  height: 21px;
  color: currentColor;
}
.kontakt-info-lottie-icon {
  display: block;
  width: 38px;
  height: 38px;
  pointer-events: none;
}
.kontakt-info-lottie-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.info-icon--lottie:not(.is-loaded) .kontakt-info-lottie-icon {
  opacity: 0;
}
.kontakt-info-item:hover .info-icon {
  background: linear-gradient(to left, #ff7a16, #ff4f00, #c94f00);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.22),
    0 14px 26px rgba(255,84,0,0.24);
}
.kontakt-info-item .info-label {
  display: block;
  margin-bottom: 5px;
  color: rgba(255,255,255,0.56);
  font-size: 12.4px;
  font-weight: 800;
  letter-spacing: 0.72px;
  text-transform: uppercase;
}
.kontakt-info-item .info-value {
  display: block;
  color: #ffffff;
  font-size: 14.6px;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.kontakt-form,
.page-home .kontakt-form,
body.horizontal-scroll-page .kontakt-form {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  background:
    radial-gradient(circle at 86% 0%, rgba(255,85,0,0.12), transparent 36%),
    radial-gradient(circle at 10% 100%, rgba(255,138,42,0.08), transparent 42%),
    #0B0B0B;
  border: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.09);
}
.kontakt-intro,
.kontakt-form,
.page-home .kontakt-form,
body.horizontal-scroll-page .kontakt-form {
  padding-top: 30px;
  padding-bottom: 30px;
}
.kontakt-form-head {
  display: grid;
  gap: 9px;
  text-align: left;
  margin-bottom: 2px;
}
.kontakt-form-head h3 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1.04;
}
.kontakt-form-head p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 14.8px;
  line-height: 1.48;
}
.kontakt-form .form-row,
.page-home .kontakt-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.kontakt-form .form-group,
.page-home .kontakt-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.kontakt-form .form-group label {
  color: #ffffff;
  font-size: 12.7px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-align: left;
}
.kontakt-form .form-group input,
.kontakt-form .form-group select,
.kontakt-form .form-group textarea,
.page-home .kontakt-form .form-group input,
.page-home .kontakt-form .form-group select,
.page-home .kontakt-form .form-group textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  background: rgba(255,255,255,0.065);
  color: #ffffff;
  padding: 11px 14px;
  font-size: 14.4px;
  outline: none;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.kontakt-form .form-group input::placeholder,
.kontakt-form .form-group textarea::placeholder {
  color: rgba(255,255,255,0.38);
}
.kontakt-form .form-group input:focus,
.kontakt-form .form-group select:focus,
.kontakt-form .form-group textarea:focus {
  border-color: rgba(255,138,42,0.72);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 3px rgba(255,85,0,0.14);
}
.kontakt-form .form-group select option {
  background: #15161D;
  color: #ffffff;
}
.kontakt-form .form-group textarea,
.page-home .kontakt-form .form-group textarea {
  height: 106px;
  min-height: 106px;
  max-height: 106px;
  resize: none;
  overflow: auto;
}
.kontakt-form .form-check label {
  width: auto;
  position: relative;
  display: block;
  color: rgba(255,255,255,0.68);
  font-size: 12.1px;
  line-height: 1.42;
  text-align: left;
}
.kontakt-form .form-check input[type="checkbox"],
.page-home .kontakt-form .form-check input[type="checkbox"],
body.horizontal-scroll-page .kontakt-form .form-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: 0;
  top: 1px;
  z-index: 2;
  width: 22px;
  min-width: 22px;
  height: 22px;
  flex: 0 0 22px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  opacity: 0;
}
.kontakt-form .form-check-text {
  position: relative;
  display: block;
  min-height: 22px;
  padding-left: 36px;
}
.kontakt-form .form-check-text::before,
.kontakt-form .form-check-text::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.kontakt-form .form-check-text::before {
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.kontakt-form .form-check-text::after {
  content: "\2713";
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  line-height: 22px;
  text-align: center;
  opacity: 0;
  transform: scale(0.72);
  transform-origin: center;
  transition: opacity 0.18s ease, transform 0.22s ease;
}
.kontakt-form .form-check input[type="checkbox"]:checked + .form-check-text::before {
  border-color: rgba(255,138,42,0.88);
  background: linear-gradient(to left, #ff8a2a, var(--accent), #d95a00);
  box-shadow: 0 8px 18px rgba(255,85,0,0.24);
}
.kontakt-form .form-check input[type="checkbox"]:checked + .form-check-text::after {
  opacity: 1;
  transform: scale(1);
}
.kontakt-form .form-check input[type="checkbox"]:focus-visible + .form-check-text::before {
  outline: 2px solid rgba(255,138,42,0.6);
  outline-offset: 3px;
}
.kontakt-form .btn,
.page-home .kontakt-form .btn {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  align-self: stretch;
  padding: 11px 24px;
  margin-top: 0;
  font-size: 16px;
}
.kontakt-form .btn .btn-icon-kontakt {
  width: 24px;
  height: 24px;
}
.kontakt-form .form-feedback {
  min-height: 18px;
  color: rgba(255,255,255,0.68);
  font-size: 13.2px;
}
.kontakt-intro:hover .runner-a {
  opacity: 1;
}
.kontakt-intro:hover .runner-a .card-runner-path {
  animation: cardRunnerForward 5.8s linear infinite;
}
.kontakt-intro:hover .runner-a::after {
  animation: cardRunnerSpin 5.8s linear infinite;
}
.kontakt-intro:hover .runner-b {
  opacity: 1;
}
.kontakt-intro:hover .runner-b .card-runner-path {
  animation: cardRunnerForwardOffset 5.8s linear infinite;
}
.kontakt-intro:hover .runner-b::after {
  animation: cardRunnerSpinOffset 5.8s linear infinite;
}
@media (max-width: 900px) {
  main > .section.kontakt,
  body.page-home main > .section.kontakt {
    overflow-x: hidden;
    overflow-y: auto;
  }
  .kontakt-inner,
  .page-home .kontakt-inner,
  body.horizontal-scroll-page .kontakt-inner,
  body.page-home.horizontal-scroll-page .kontakt-inner {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .kontakt-intro,
  .kontakt-form,
  .page-home .kontakt-form,
  body.horizontal-scroll-page .kontakt-form {
    height: auto;
    flex: 0 0 auto;
    padding: 24px;
  }
  .kontakt-intro,
  .kontakt-form,
  .page-home .kontakt-form,
  body.horizontal-scroll-page .kontakt-form {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .kontakt-intro {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: stretch;
  }
  .kontakt-intro .section-title {
    text-align: center;
    font-size: 34px;
  }
  .kontakt-form-head h3 {
    font-size: 34px;
    line-height: 1.04;
  }
  .kontakt-intro .title-logo-inline--kontakt {
    width: 4.35em;
  }
  .kontakt-intro p {
    font-size: 15.6px;
  }
  .kontakt-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
  }
  .kontakt-info-item,
  .page-home .kontakt-info-item {
    flex-direction: column;
    min-height: 128px;
    padding: 12px;
  }
  .kontakt-form .form-row,
  .page-home .kontakt-form .form-row {
    grid-template-columns: 1fr;
  }
  .kontakt-form-head h3 {
    font-size: 34px;
    line-height: 1.04;
  }
  .kontakt-form .btn,
  .page-home .kontakt-form .btn {
    min-height: 54px;
    padding: 14px 22px;
    font-size: 18px;
  }
}

/* ============================================================
   SELECTION STYLE
   ============================================================ */
::selection {
  background: rgba(255,85,0,0.25);
  color: var(--text);
}
