@font-face {
  font-family: 'Ephesis';
  src: url('../fonts/Ephesis-Regular.woff') format('woff');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Meow Script';
  src: url('../fonts/MeowScript-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Light.woff2') format('woff2'),
       url('../fonts/Montserrat-Light.woff') format('woff');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
       url('../fonts/Montserrat-Regular.woff') format('woff');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Medium.woff2') format('woff2'),
       url('../fonts/Montserrat-Medium.woff') format('woff');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2'),
       url('../fonts/Montserrat-SemiBold.woff') format('woff');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.woff2') format('woff2'),
       url('../fonts/Montserrat-Bold.woff') format('woff');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ============================================
   Design-Tokens (1:1 wie Hauptseite)
   ============================================ */
:root {
  --pink: #FE7DDA;
  --lightPink: #FDA1D3;
  --darkPink: #E456A6;
  --green: #85E8B9;
  --lightGreen: #BAFFE6;
  --darkGreen: #40D49B;
  --purple: #7287FF;
  --lightPurple: #87A0FF;
  --darkPurple: #4D5EF7;
  --yellow: #FFFB00;
  --black: #181818;
  --dark: #110728;
  --white: #FFFFFF;
  --grey: #D9D9D9;
  --lightGrey: #ECECEC;

  /* Tool-Brand-Farben */
  --wp-blue: #21759B;
  --shopify-green: #B7F36A;
  --kirby-coral: #FF6B5B;
  --turquoise: #79FAD3;

  --gradient-pink: linear-gradient(90deg, var(--pink), var(--lightPink));
  --drop-shadow: drop-shadow(0px 10px 8px #00000020);

  --big-body-text: 1.08rem;
  --margin-side: -3vw;
  --content-width: 1200px;
  --section-y: clamp(58px, 7vh, 96px);
  --section-y-mobile: 40px;
  --contact-space-top: clamp(220px, 28vh, 360px);
}

html.light-mode { --background-color: var(--white); --text-color: var(--black); }
html.dark-mode  { --background-color: var(--dark);  --text-color: var(--white); }
html { --background-color: var(--white); --text-color: var(--black); }

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0; width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  background: var(--background-color);
  color: var(--text-color);
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
  line-height: 1.5;
}

/* Subtiles Punkte-Raster (wie Hauptseite) */
body::before {
  content: none;
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image: radial-gradient(circle, color-mix(in srgb, var(--text-color) 18%, transparent) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.45;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, filter 0.2s ease;
}
img, svg { max-width: 100%; height: auto; display: block; }
::-webkit-scrollbar { width: 0; }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 10px; }
::selection { background: var(--pink); color: var(--white); }

/* ============================================
   Typografie
   ============================================ */
h1, h2, h3, h4, h5, h6 { margin: 1em 0; }
strong, b { font-weight: 600; }

h1 { font-weight: 300; font-size: clamp(42px, 6vw, 50px); line-height: 1.2em; }
h2 { font-weight: 300; font-size: clamp(32px, 5vw, 42px); }
h3 { font-weight: 400; font-size: clamp(26px, 4vw, 32px); line-height: 1.1em; }
h4 { font-weight: 400; line-height: 1.1em; }
p  { line-height: 1.5em; }

img { border-radius: 30px; }

.lead { font-size: var(--big-body-text); font-weight: 300; max-width: 60ch; }

.seo-copy {
  padding-top: clamp(28px, 4vw, 54px);
}
.seo-copy h2 {
  max-width: 18ch;
  margin-bottom: clamp(24px, 3vw, 42px);
}
.seo-copy-grid {
  display: block;
  width: 100%;
  max-width: 78ch;
}
.seo-copy-grid p {
  min-width: 0;
  max-width: 100%;
  margin: 0;
  font-size: clamp(1rem, 1.15vw, 1.16rem);
  line-height: 1.72;
  opacity: 0.9;
  overflow-wrap: break-word;
}
.seo-copy-grid p + p {
  margin-top: 1.2em;
}

.pill-outline {
  display: inline-block;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin: 0;
  line-height: 1.1;
}

main {
  padding: 2em 0 2.5em;
  margin-top: 0;
  min-height: 75vh;
}

/* Volle Breite – wie Hauptseite */
.container {
  width: 100%;
  margin: 0;
  padding: 0 3vw;
  position: relative;
}

section { padding: var(--section-y) 0; position: relative; }

/* ============================================
   Header
   ============================================ */
.header {
  align-items: center;
  color: var(--text-color);
  display: flex;
  justify-content: space-between;
  padding: 5px 3vw;
  height: 90px;
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: color 0.4s ease;
}

.header:has(.burger-menu.open) {
  z-index: 1100;
}

.logo { width: 100px; display: block; }
.logo img { width: 100%; border-radius: 0; }

.header-right-part {
  display: flex; justify-content: space-between; align-items: center;
  width: 150px;
}

/* ============================================
   Sun-Moon-Switch
   ============================================ */
.mode-switch {
  cursor: pointer;
  width: 80px; height: 40px;
  background: transparent;
  border: 0; padding: 0;
}
.mode-switch svg,
.mode-switch img { width: 100%; height: 100%; border-radius: 0; }

#sun-moon-switch #toogle-sun {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
#sun-moon-switch #wolke-1,
#sun-moon-switch #wolke-2 {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), fill 0.3s ease;
  will-change: transform;
}
#sun-moon-switch #sun-moon-switch-bg { transition: fill 0.35s ease; }
#sun-moon-switch #switch-stoke { transition: stroke 0.35s ease; }
#sun-moon-switch #punkte,
#sun-moon-switch #stars { transition: opacity 0.3s ease; }
#sun-moon-switch [id^="Ellipse"] { transition: fill 0.3s ease; }
.mode-switch #wolke-1,
.mode-switch #wolke-2 { filter: drop-shadow(0 1px 1px rgba(0,0,0,0.15)); }

html.dark-mode #sun-moon-switch #toogle-sun { transform: translateX(55px); }
html.dark-mode #sun-moon-switch #wolke-1,
html.dark-mode #sun-moon-switch #wolke-2 {
  fill: #3e5590;
  transform: translateX(-25px);
  filter: url(#cloud-shadow);
}
html.dark-mode #sun-moon-switch #punkte,
html.dark-mode #sun-moon-switch #stars { opacity: 1; }
html.dark-mode #sun-moon-switch [id="Ellipse 7"] { fill: #C8CCE8; }
html.dark-mode #sun-moon-switch [id="Ellipse 9"] { fill: #C0C4E4; }
html.dark-mode #sun-moon-switch [id="Ellipse 4"] { fill: #AABBD8; }
html.dark-mode #sun-moon-switch [id="Ellipse 6"] { fill: #A8B8D8; }
html.dark-mode #sun-moon-switch [id="Ellipse 8"] { fill: #8898C4; }
html.dark-mode #sun-moon-switch [id="Ellipse 5"] { fill: #7E8EC0; }
html.dark-mode #sun-moon-switch #switch-stoke { stroke: #1b3578; }
html.dark-mode #sun-moon-switch #sun-moon-switch-bg { fill: #02094e; }
html.dark-mode #sun-moon-switch #sum-mood-bg {
  fill: url(#moon-gradient);
  filter: url(#moon-shadow);
}


/* ============================================
   Burger
   ============================================ */
.burger-menu {
  cursor: pointer;
  height: 50px; width: 40px;
  position: relative; z-index: 50;
  background: transparent; border: 0; padding: 0;
  display: flex; align-items: center;
}
.burger-menu.open { z-index: 1101; }
.burger-menu svg { width: 100%; }
.burger-menu .line {
  transform-box: fill-box;
  transform-origin: center;
  transition: all 0.3s ease;
  stroke: var(--text-color);
}
html.dark-mode .burger-menu .line { stroke: #fff; }
.burger-menu.open .line1 { stroke: #fff; transform: translateY(18px) rotate(45deg); }
.burger-menu.open .line2 { stroke: #fff; opacity: 0; }
.burger-menu.open .line3 { stroke: #fff; transform: translateY(-18px) rotate(-45deg); }

.menu {
  background: var(--darkPurple);
  box-shadow: 0 2px 10px #0000001a;
  color: #fff;
  font-size: clamp(5vh, 8vw, 60px);
  height: 100vh;
  padding: 100px 10vw;
  position: fixed; top: 0;
  width: 100%;
  z-index: 1000;
  right: -100%;
  transition: right 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  display: flex; flex-direction: column; justify-content: space-between;
}
.menu.open { right: 0; }
.menu ul { list-style: none; margin: 0; padding: 0; }
.menu li { padding: 10px 0; }
.menu li a { color: #fff; opacity: 0.7; transition: 0.2s; font-weight: 300; }
.menu li a:hover { opacity: 1; }
.menu-footer {
  display: flex; gap: 20px 6vw; flex-wrap: wrap; margin-top: 50px;
  font-size: 1.1rem;
}
.menu-footer a { color: #fff; display: flex; align-items: center; gap: 12px; }

/* ============================================
   Hero
   ============================================ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  position: relative;
  padding: 110px 0 54px;
  isolation: isolate;
  overflow: hidden;
}
.hero-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 3vw;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(160px, auto) minmax(0, 1fr) minmax(180px, auto);
  grid-template-rows: auto 1fr auto auto;
  column-gap: clamp(20px, 3vw, 60px);
  row-gap: clamp(20px, 2.5vw, 36px);
  align-items: center;
}
.hero-tags {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  justify-self: start;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 5;
  margin: 0;
  padding: 0;
}
.hero-counter {
  grid-column: 1;
  grid-row: 3;
  align-self: end;
  justify-self: start;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  z-index: 5;
}
.hero-counter-num {
  display: inline-flex;
  align-items: baseline;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: clamp(48px, 5.5vw, 84px);
  line-height: 1;
  color: var(--text-color);
  min-width: 2.4ch;
  font-variant-numeric: tabular-nums;
}
.hero-counter-value {
  display: inline-block;
  min-width: 1.8ch;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.hero-counter-plus {
  font-size: 0.6em;
  font-weight: 300;
  margin-left: 0.05em;
}
.hero-counter-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.35;
  color: color-mix(in srgb, var(--text-color) 70%, transparent);
}
.hero-counter-label span {
  display: block;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--text-color) 35%, transparent);
  background: transparent;
  color: var(--text-color);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  width: fit-content;
  max-width: 14rem;
  overflow: hidden;
  white-space: nowrap;
}
.hero-type {
  grid-column: 1 / -1;
  grid-row: 1 / 4;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 4;
  pointer-events: none;
  transform: translateY(clamp(-148px, -16vh, -92px));
}
.hero h1 {
  margin: 0;
  width: fit-content;
  max-width: 100%;
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: uppercase;
  position: relative;
  z-index: 3;
}
.hero-word {
  display: block;
  color: var(--text-color);
}
.hero-word-web {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(72px, 10.5vw, 230px);
  font-weight: 700;
  letter-spacing: 0;
  color: var(--background-color);
  -webkit-text-stroke: 0;
  text-shadow:
    -2px  0   0 var(--text-color),
     2px  0   0 var(--text-color),
     0   -2px 0 var(--text-color),
     0    2px 0 var(--text-color),
    -1.4px -1.4px 0 var(--text-color),
     1.4px  1.4px 0 var(--text-color),
    -1.4px  1.4px 0 var(--text-color),
     1.4px -1.4px 0 var(--text-color);
}
.hero-word-design {
  font-family: 'Meow Script', 'Ephesis', cursive;
  font-size: clamp(104px, 13.5vw, 300px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.18;
  text-transform: none;
  padding: 0 0.12em 0.18em;
  margin: -0.22em 0 -0.18em;
  transform: translateX(clamp(20px, 4vw, 80px));
}
.hero-word-dresden {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: clamp(24px, 2.6vw, 58px);
  letter-spacing: 0.55em;
  margin-top: 0.2em;
  padding-left: 0.55em;
  transform: translateX(clamp(-54px, -4vw, -24px));
}

/* Foto-Badge mit rotierendem Text */
.hero-photo {
  grid-column: 3;
  grid-row: 3 / 5;
  align-self: end;
  justify-self: end;
  position: relative;
  width: clamp(150px, 16vw, 220px);
  height: clamp(150px, 16vw, 220px);
  display: block;
  text-decoration: none;
  z-index: 6;
  transform: translate(clamp(-96px, -7vw, -48px), clamp(-88px, -7vh, -44px));
}
.hero-photo img {
  position: absolute;
  inset: 13%;
  width: 74%;
  height: 74%;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 24%;
  display: block;
}
.hero-photo-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: heroRingSpin 34s linear infinite;
}
.hero-photo-text {
  fill: var(--text-color);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}
@keyframes heroRingSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-webdesign-arrow {
  position: absolute;
  top: clamp(22px, 4vh, 62px);
  right: clamp(120px, 15vw, 250px);
  width: clamp(58px, 7vw, 104px);
  height: auto;
  z-index: 5;
  border-radius: 0;
  pointer-events: none;
  filter: drop-shadow(0 16px 22px #00000014);
  transform: translate3d(var(--hero-arrow-x, 0px), var(--hero-arrow-y, 0px), 0) rotate(calc(-8deg + var(--hero-arrow-r, 0deg)));
  transform-origin: 62% 60%;
  will-change: transform;
}

/* Dekorativer 3D-Wuerfel */
.hero-deco {
  position: absolute;
  pointer-events: none;
  color: var(--text-color);
  z-index: 1;
}
.hero-deco--cube {
  width: clamp(80px, 9vw, 130px);
  height: auto;
  right: clamp(20px, 5vw, 96px);
  top: clamp(170px, 24vh, 250px);
  opacity: 0.85;
  animation: heroCubeFloat 6s ease-in-out infinite;
  transform-origin: 50% 50%;
}
.hero-deco--grid {
  --hero-grid-cell: clamp(18px, 1.6vw, 24px);
  width: calc(var(--hero-grid-cell) * 12);
  height: calc(var(--hero-grid-cell) * 7);
  left: 8%;
  top: 32%;
  background-image:
    linear-gradient(color-mix(in srgb, var(--text-color) 18%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--text-color) 18%, transparent) 1px, transparent 1px);
  background-size: var(--hero-grid-cell) var(--hero-grid-cell), var(--hero-grid-cell) var(--hero-grid-cell);
  border: 1px solid color-mix(in srgb, var(--text-color) 22%, transparent);
  z-index: 1;
}
.hero-pink-ball {
  position: absolute;
  width: 26%;
  aspect-ratio: 1;
  top: -18%;
  left: 20%;
  background: url("../img/pink-ball.svg") center / contain no-repeat;
  filter: drop-shadow(0 6px 10px #00000014);
  animation: heroBallFloat 8s ease-in-out infinite;
}
@keyframes heroBallFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@keyframes heroCubeFloat {
  0%   { transform: translateY(0) rotate(-4deg); }
  50%  { transform: translateY(-18px) rotate(5deg); }
  100% { transform: translateY(0) rotate(-4deg); }
}

.hero .lead {
  grid-column: 2;
  grid-row: 3;
  align-self: end;
  justify-self: start;
  margin: 0 0 0 clamp(56px, 7vw, 128px);
  width: min(50ch, 58vw);
  max-width: min(50ch, 58vw);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 300;
  text-align: left;
  position: relative;
  z-index: 5;
}
.hero .cta-link {
  grid-column: 2;
  grid-row: 4;
  align-self: start;
  justify-self: start;
  margin: 12px 0 0 clamp(56px, 7vw, 128px);
  position: relative;
  z-index: 5;
}

.hero-word-web,
.hero-word-design,
.hero-word-dresden {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  animation: heroTextReveal 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-word-design { animation-delay: 0.16s; }
.hero-word-dresden { animation-delay: 0.32s; }

.hero-tag {
  max-width: 0;
  opacity: 0;
  animation: heroBubbleGrow 0.62s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-tag:nth-child(1) { animation-delay: 0.9s; }
.hero-tag:nth-child(2) { animation-delay: 1.06s; }
.hero-tag:nth-child(3) { animation-delay: 1.22s; }
.hero-tag:nth-child(4) { animation-delay: 1.38s; }

.hero-deco--grid,
.hero-pink-ball,
.hero-deco--cube,
.hero-counter,
.hero .lead,
.hero .cta-link {
  opacity: 0;
  animation: heroObjectIn 0.62s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-deco--grid { animation-delay: 0.72s; }
.hero-pink-ball {
  animation:
    heroObjectIn 0.62s cubic-bezier(0.22, 1, 0.36, 1) 0.86s forwards,
    heroBallFloat 8s ease-in-out 1.48s infinite;
}
.hero-deco--cube {
  animation:
    heroObjectIn 0.62s cubic-bezier(0.22, 1, 0.36, 1) 1.02s forwards,
    heroCubeFloat 6s ease-in-out 1.64s infinite;
}
.hero-counter { animation-delay: 1.52s; }
.hero .lead { animation-delay: 1.64s; }
.hero .cta-link { animation-delay: 1.78s; }

.hero .lead {
  opacity: 1;
  animation: none;
  filter: none;
}

.hero-webdesign-arrow {
  opacity: 0;
  animation: heroCursorCrash 1.35s cubic-bezier(0.22, 1, 0.36, 1) 1.92s forwards;
}
.hero-photo {
  opacity: 0;
  animation: heroContactPop 0.68s cubic-bezier(0.18, 1.28, 0.32, 1) 2.18s forwards;
}

@keyframes heroTextReveal {
  from { opacity: 0; clip-path: inset(0 100% 0 0); filter: blur(6px); }
  to { opacity: 1; clip-path: inset(0 0 0 0); filter: blur(0); }
}
@keyframes heroBubbleGrow {
  from { max-width: 0; opacity: 0; padding-left: 0; padding-right: 0; }
  to { max-width: 14rem; opacity: 1; padding-left: 20px; padding-right: 20px; }
}
@keyframes heroObjectIn {
  from { opacity: 0; filter: blur(8px); }
  to { opacity: 1; filter: blur(0); }
}
@keyframes heroCursorCrash {
  0% {
    opacity: 0;
    transform: translate3d(calc(var(--hero-arrow-x, 0px) + 82px), calc(var(--hero-arrow-y, 0px) - 34px), 0) rotate(10deg) scale(1.04);
    filter: saturate(1.35) contrast(1.12) drop-shadow(0 16px 16px #0000001f);
  }
  72% {
    opacity: 1;
    transform: translate3d(calc(var(--hero-arrow-x, 0px) - 4px), calc(var(--hero-arrow-y, 0px) + 2px), 0) rotate(-10deg) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate3d(var(--hero-arrow-x, 0px), var(--hero-arrow-y, 0px), 0) rotate(calc(-8deg + var(--hero-arrow-r, 0deg))) scale(1);
  }
}
@keyframes heroContactPop {
  from {
    opacity: 0;
    transform: translate(clamp(-96px, -7vw, -48px), clamp(-88px, -7vh, -44px)) scale(0.72);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translate(clamp(-96px, -7vw, -48px), clamp(-88px, -7vh, -44px)) scale(1);
    filter: blur(0);
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 88px 0 36px;
    align-items: flex-start;
    overflow: hidden;
  }
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: repeat(6, auto);
    row-gap: 14px;
    align-items: start;
  }
  .hero-tags {
    display: none;
  }
  .hero-type {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
    transform: none;
  }
  .hero-deco--grid {
    position: absolute;
    grid-column: 1 / -1;
    grid-row: auto;
    left: 5vw;
    top: clamp(46px, 6vh, 78px);
    justify-self: auto;
    margin: 0;
    opacity: 0;
    z-index: 0;
  }
  .hero-pink-ball {
    left: 8%;
  }
  .hero-counter {
    grid-column: 1;
    grid-row: 5;
    justify-self: start;
    margin: 28px 0 0;
  }
  .hero-counter-num {
    font-size: clamp(46px, 14vw, 68px);
  }
  .hero-photo {
    grid-column: 1 / -1;
    grid-row: 6;
    justify-self: center;
    width: clamp(128px, 34vw, 160px);
    height: clamp(128px, 34vw, 160px);
    margin: 0;
    transform: translateY(-42px);
    animation-name: heroContactPopMobile;
  }
  .hero .lead { grid-column: 1 / -1; grid-row: 3; z-index: 5; }
  .hero .cta-link { grid-column: 1 / -1; grid-row: 4; z-index: 5; }
  .hero-deco--wireframe { right: -2%; opacity: 0.4; }
  .hero-deco--cube {
    left: auto;
    right: 15vw;
    top: clamp(395px, 49vh, 455px);
    width: clamp(54px, 14vw, 76px);
    opacity: 0;
    z-index: 3;
  }
  .hero-webdesign-arrow {
    top: clamp(24px, 5vh, 52px);
    right: 8vw;
    width: clamp(46px, 11vw, 68px);
    opacity: 0.82;
  }
}

@keyframes heroContactPopMobile {
  from {
    opacity: 0;
    transform: translateY(-42px) scale(0.72);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(-42px) scale(1);
    filter: blur(0);
  }
}

/* ============================================
   Schwebende Shapes
   ============================================ */
.shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  filter: var(--drop-shadow);
  animation: floatY 9s ease-in-out infinite;
}
.shape img { width: 100%; border-radius: 0; }
.shape-pink-ball   { width: clamp(80px, 11vw, 160px); top: 15%; right: 28%; animation-duration: 7s; z-index: 3; }
.shape-green-ball  { width: clamp(70px, 9vw, 130px);  top: 68%; left: 4%; animation-duration: 11s; animation-direction: reverse; z-index: 3; }
.shape-pink-bar    { width: clamp(160px, 22vw, 320px); top: 45%; right: -40px; transform: rotate(28deg); animation-duration: 13s; }
.shape-green-bar   { width: clamp(140px, 18vw, 260px); top: 25%; left: 35%; transform: rotate(-12deg); animation-duration: 10s; animation-direction: reverse; }
.shape-pink-bar-2  { width: clamp(120px, 14vw, 200px); bottom: 12%; left: 18%; transform: rotate(15deg); animation-duration: 12s; }
.shape-green-bar-2 { width: clamp(110px, 13vw, 180px); bottom: 25%; right: 22%; transform: rotate(-25deg); animation-duration: 9s; animation-direction: reverse; }
@keyframes floatY {
  0%, 100% { transform: translateY(0) var(--rot, ); }
  50%      { transform: translateY(-22px) var(--rot, ); }
}
.bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }

/* ============================================
   CTA-Button mit Kugel-Pfeil wie auf der Hauptseite
   ============================================ */
.cta-link {
  min-height: 30px;
  padding: 0;
  padding-left: 35px;
  padding-right: 35px;
  font-size: var(--big-body-text);
  font-weight: 400;
  align-self: flex-start;
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.25em;
  transition: text-decoration-color 0.35s ease;
}
.cta-link .pfeil {
  width: 27px;
  height: 30px;
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transform-origin: center;
  transition:
    left 0.72s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.72s cubic-bezier(0.33, 1, 0.68, 1);
}
.cta-link .pfeil svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.cta-link #pfeil {
  transform-origin: center center;
  transform-box: fill-box;
  transition: transform 0.72s cubic-bezier(0.33, 1, 0.68, 1);
}
.cta-link:hover .pfeil {
  left: calc(100% - 27px);
  transform: translateY(-50%) rotate(360deg);
}
.cta-link:hover #pfeil { transform: none; }
.cta-link:hover { text-decoration-color: currentColor; }

.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 2px solid var(--text-color);
  background: transparent;
  border-radius: 50px;
  padding: 10px 20px;
  margin-top: 10px;
  font: 500 1rem 'Montserrat', sans-serif;
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.3s;
}
.btn:hover { background: var(--text-color); color: var(--background-color); }

/* ============================================
   Intro
   ============================================ */
.intro { padding: var(--section-y) 0; position: relative; }
.intro h2 { margin-bottom: 30px; }
.intro .heart {
  width: 1.1em; height: 1.1em;
  vertical-align: -0.25em;
  display: inline-block;
  border-radius: 0;
}

/* ============================================
   Leistungen
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 48px) clamp(20px, 2.5vw, 36px);
  margin-top: 50px;
  position: relative;
  z-index: 1;
}
.service-card {
  border: 0;
  border-radius: 0;
  padding: 22px 0 0;
  background: transparent;
  position: relative;
}
.service-card .service-icon {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 0 18px;
  color: var(--text-color);
}
.service-card h3 { margin: 0 0 12px; font-weight: 400; font-size: clamp(1.15rem, 1.4vw, 1.45rem); line-height: 1.2; }
.service-card p { margin: 0; opacity: 0.85; font-size: 0.95rem; line-height: 1.6; }
@media (max-width: 900px) {
  .seo-copy-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Toolset / Tech-Stack
   ============================================ */
#tools .container {
  display: block;
}
#tools {
  padding: var(--section-y) 0;
}
#tools h2 {
  margin-bottom: 1em;
}
#tools > .container > .lead {
  width: 75%;
  max-width: none;
}
.toolset {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 64px);
  position: relative;
  z-index: 1;
}
.tool-card {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: var(--text-color);
  text-decoration: none;
  display: block;
}
.tool-card h3 {
  margin: 0 0 16px;
  font-size: 1.35rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tool-card h3 .dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 6px #00000018);
  transition: transform 0.2s ease;
}
.tool-card:hover h3 .dot,
.tools-note:hover h3 .dot {
  transform: scale(1.18);
}
.tool-card.wp      h3 .dot { background: radial-gradient(circle at 32% 28%, #EAF4FC 0%, #5BA8E8 55%, #1E78D4 100%); }
.tool-card.kirby   h3 .dot { background: radial-gradient(circle at 32% 28%, #FFE1D6 0%, #FF8568 55%, #E85A3C 100%); }
.tool-card.shopify h3 .dot { background: radial-gradient(circle at 32% 28%, #E8F6D2 0%, #7BC93F 55%, #4FA82E 100%); }
.tool-card.eigen   h3 .dot { background: radial-gradient(circle at 32% 28%, #FFD9EE 0%, #FF7DC2 55%, #E5479F 100%); border: 0; }
.tool-card p { margin: 0 0 14px; opacity: 0.85; font-size: 0.95rem; }
.tool-card ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.tool-card li {
  font-size: 0.85rem;
  border: 1px solid color-mix(in srgb, var(--text-color) 45%, transparent);
  padding: 5px 10px;
  border-radius: 999px;
  background: transparent;
}
.tools-note {
  margin-top: clamp(44px, 6vw, 80px);
  margin-left: calc((100% - (3 * clamp(32px, 4vw, 64px))) / 4 + clamp(32px, 4vw, 64px));
  width: 75%;
  max-width: none;
  text-align: left;
}
.tools-note h3 {
  margin: 0 0 16px;
  font-size: 1.35rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tools-note h3 .dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 6px #00000018);
  background: radial-gradient(circle at 32% 28%, #DDF8EE 0%, #A8EDD0 55%, #7FD2B0 100%);
  transition: transform 0.2s ease;
}
.tools-note p {
  margin: 0 0 22px;
  font-size: 0.95rem;
  opacity: 0.85;
}
.tools-note .cta-link {
  margin-top: 4px;
}

/* ============================================
   Webdesign-Slider
   ============================================ */
.webdesign-slider-section {
  padding: var(--section-y) 0;
  overflow: hidden;
}
.scroll-slider {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  margin-top: 30px;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
.scroll-slider.dragging { cursor: grabbing; }
.scroll-slider-track {
  display: flex;
  gap: 20px;
  will-change: transform;
}
.scroll-slider-track > .slide {
  flex: 0 0 auto;
  width: 78vw;
  max-width: 600px;
  border-radius: 30px;
  overflow: hidden;
  filter: var(--drop-shadow);
}
@media (min-width: 768px) {
  .scroll-slider-track > .slide { width: 42vw; }
  .scroll-slider-track { gap: 30px; }
}
@media (min-width: 1800px) {
  .scroll-slider-track > .slide { width: 28vw; }
  .scroll-slider-track { gap: 40px; }
}
.scroll-slider-track img {
  width: 100%; height: auto; display: block;
  border-radius: 30px;
  pointer-events: none;
  user-select: none;
}

/* ============================================
   Process
   ============================================ */
.process-section {
  position: relative;
}
.process-scroll {
  width: 100%;
}
.process {
  --process-inset: clamp(18px, 3vw, 38px);
  --process-cell-size: 48px;
  --process-cols: 36;
  --process-rows: 12;
  --process-width: calc(var(--process-cols) * var(--process-cell-size));
  --process-height: calc(var(--process-rows) * var(--process-cell-size));
  width: 100%;
  max-width: 100%;
  aspect-ratio: var(--process-cols) / var(--process-rows);
  height: auto;
  min-height: 0;
  margin-top: 56px;
  margin-left: 0;
  margin-right: 0;
  counter-reset: step;
  position: relative;
  z-index: 1;
  padding: 38px var(--process-inset) 34px;
  color: var(--text-color);
  border: 1px solid color-mix(in srgb, var(--text-color) 22%, transparent);
  background-color: transparent;
  background-image:
    linear-gradient(color-mix(in srgb, var(--text-color) 11%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--text-color) 11%, transparent) 1px, transparent 1px);
  background-size: calc(100% / var(--process-cols)) calc(100% / var(--process-rows)), calc(100% / var(--process-cols)) calc(100% / var(--process-rows));
  overflow: hidden;
}
.process-caption {
  position: relative;
  z-index: 3;
  pointer-events: none;
  font-family: ui-monospace, 'SFMono-Regular', Consolas, monospace;
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--text-color) 62%, transparent);
}
.process-line {
  position: absolute;
  left: clamp(28px, 4vw, 64px);
  right: clamp(28px, 4vw, 64px);
  top: 96px;
  width: calc(100% - clamp(56px, 8vw, 128px));
  height: 250px;
  overflow: visible;
  z-index: 2;
  pointer-events: none;
}
.process-line path {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
}
.process-line-shadow {
  stroke: color-mix(in srgb, var(--text-color) 24%, transparent);
  transform: translateY(13px);
}
.process-line-main {
  stroke: var(--text-color);
  filter: drop-shadow(0 6px 8px #00000020);
}
.reveal.in .process-line path {
  animation: drawProcess 1.8s ease forwards;
}
.reveal.in .process-line-shadow {
  animation-delay: 0.1s;
}
.reveal.in .process-line-main {
  animation-delay: 0.25s;
}
.process-step {
  position: absolute;
  width: calc((100% - 2 * var(--process-inset)) / 5 - 16px);
  padding: 0 8px 0 0;
  border-radius: 0;
  background: transparent;
  z-index: 3;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
}
.process-grid-hover {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(var(--process-grid-cols, 1), 1fr);
  grid-template-rows: repeat(var(--process-grid-rows, 1), 1fr);
  pointer-events: auto;
}
.process-grid-cell {
  background: color-mix(in srgb, var(--pink) 0%, transparent);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--pink) 0%, transparent);
  transition: background-color 1.25s ease-out, box-shadow 1.25s ease-out;
}
.process-grid-cell:hover {
  background: color-mix(in srgb, var(--pink) 62%, transparent);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--pink) 78%, transparent), 0 0 18px color-mix(in srgb, var(--pink) 30%, transparent);
  transition-duration: 0.12s;
}
.process-num {
  position: absolute;
  left: 0;
  top: -86px;
  width: clamp(48px, 4vw, 64px);
  height: clamp(48px, 4vw, 64px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 400;
  color: var(--text-color);
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--text-color) 20%, transparent);
  box-shadow: 0 8px 18px #00000018;
}
html.dark-mode .process-num {
  background: var(--dark);
}
html.light-mode .process-num {
  background: var(--white);
}
.process-step h3 {
  margin: 0 0 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.15rem, 1.7vw, 1.6rem);
  font-weight: 400;
  line-height: 1.15;
}
.process-step p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.82;
  line-height: 1.45;
}
.process-step-1 { left: var(--process-inset); bottom: 38px; }
.process-step-2 { left: calc(var(--process-inset) + (100% - 2 * var(--process-inset)) / 5); bottom: 38px; }
.process-step-3 { left: calc(var(--process-inset) + 2 * (100% - 2 * var(--process-inset)) / 5); bottom: 38px; }
.process-step-4 { left: calc(var(--process-inset) + 3 * (100% - 2 * var(--process-inset)) / 5); bottom: 38px; }
.process-step-5 { left: calc(var(--process-inset) + 4 * (100% - 2 * var(--process-inset)) / 5); bottom: 38px; }
.reveal.in .process-step {
  animation: processPoint 0.55s ease forwards;
}
.reveal.in .process-step-1 { animation-delay: 0.2s; }
.reveal.in .process-step-2 { animation-delay: 0.45s; }
.reveal.in .process-step-3 { animation-delay: 0.7s; }
.reveal.in .process-step-4 { animation-delay: 0.95s; }
.reveal.in .process-step-5 { animation-delay: 1.2s; }
@keyframes drawProcess {
  to { stroke-dashoffset: 0; }
}
@keyframes processPoint {
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 850px) {
  .process {
    min-height: auto;
    display: grid;
    gap: 28px;
    padding: 72px 22px 34px 48px;
    overflow: visible;
  }
  .process-caption {
    position: absolute;
    top: 18px;
    right: 18px;
    text-align: right;
    max-width: calc(100% - 36px);
  }
  .process-line {
    display: none;
  }
  .process::before {
    content: '';
    position: absolute;
    left: 46px;
    right: auto;
    top: 20px;
    bottom: 20px;
    height: auto;
    width: 2px;
    background: var(--darkPink);
  }
  .process::after { display: none; }
  .process-step {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
  }
  .process-num {
    left: -24px;
    top: 0;
    width: 46px;
    height: 46px;
    font-size: 1rem;
  }
  .process-step h3,
  .process-step p {
    margin-left: 40px;
  }
}

@media (max-width: 850px) {
  .process-section .container {
    overflow: visible;
  }
  .process-scroll {
    width: calc(100vw - 6vw);
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .process-scroll::-webkit-scrollbar {
    display: none;
  }
  .process {
    --process-cols: 30;
    --process-rows: 10;
    width: var(--process-width);
    min-width: var(--process-width);
    height: var(--process-height);
    min-height: var(--process-height);
    display: block;
    padding: 38px var(--process-inset) 34px;
    overflow: hidden;
    margin-left: 0;
    margin-right: 0;
  }
  .process-caption {
    position: relative;
    top: auto;
    right: auto;
    max-width: none;
    text-align: left;
  }
  .process-line {
    display: block;
  }
  .process::before,
  .process::after {
    display: none;
  }
  .process-step {
    position: absolute;
    width: calc((100% - 2 * var(--process-inset)) / 5 - 16px);
  }
  .process-step-1 { left: var(--process-inset); bottom: 38px; }
  .process-step-2 { left: calc(var(--process-inset) + (100% - 2 * var(--process-inset)) / 5); bottom: 38px; }
  .process-step-3 { left: calc(var(--process-inset) + 2 * (100% - 2 * var(--process-inset)) / 5); bottom: 38px; }
  .process-step-4 { left: calc(var(--process-inset) + 3 * (100% - 2 * var(--process-inset)) / 5); bottom: 38px; }
  .process-step-5 { left: calc(var(--process-inset) + 4 * (100% - 2 * var(--process-inset)) / 5); bottom: 38px; }
  .process-num {
    left: 0;
    top: -86px;
    width: clamp(48px, 4vw, 64px);
    height: clamp(48px, 4vw, 64px);
    font-size: clamp(1rem, 1.4vw, 1.25rem);
  }
  .process-step h3,
  .process-step p {
    margin-left: 0;
  }
}

/* ============================================
   FAQ wie Hauptseiten-Startseite
   ============================================ */
.faq-section {
  padding: var(--section-y) 3vw;
  width: 100%;
  min-width: 100%;
  display: block;
  position: relative;
  z-index: 20;
  overflow: visible;
}
.faq-title {
  margin: 0 0 clamp(28px, 4vw, 52px);
  font-weight: 300;
  font-size: clamp(32px, 5vw, 42px);
  line-height: 1.2;
  letter-spacing: 0;
}
.faq-letter {
  position: absolute;
  z-index: 80;
  height: 1px;
  left: 0;
  top: 0;
  width: 100%;
  pointer-events: none;
}
.letter-container {
  position: absolute;
  left: 0;
  top: 0;
  backface-visibility: hidden;
  will-change: transform;
  touch-action: none;
  user-select: none;
  cursor: grab;
  pointer-events: auto;
  z-index: 81;
}
.letter-container:active,
.letter-container.is-dragging {
  cursor: grabbing;
  z-index: 90;
}
.letter-container[data-letter="f"] {
  width: 90px;
  height: 110px;
  transform: translate3d(10vw, 220px, 0);
}
.letter-container[data-letter="a"] {
  width: 114px;
  height: 110px;
  transform: translate3d(48vw, 110px, 0);
}
.letter-container[data-letter="q"] {
  width: 110px;
  height: 110px;
  transform: translate3d(80vw, 300px, 0);
}
img.letter {
  height: 100%;
  width: 100%;
  display: block;
  filter: var(--drop-shadow);
  border-radius: 0 !important;
  pointer-events: none;
}
.faq-home-item {
  background: transparent;
  color: var(--text-color);
  padding: 0;
  width: 100%;
  max-width: 100%;
  border: 1px solid transparent;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  overflow: hidden;
  transition: border-color 0.3s ease, border-radius 0.3s ease, padding 0.3s ease;
  position: relative;
  z-index: 30;
}
.faq-home-item + .faq-home-item { margin-top: 7px; }
.faq-home-item.is-open {
  border-color: var(--text-color);
  border-radius: 20px;
  padding: 0 20px;
}
.faq-question {
  cursor: pointer;
  padding: 0 2.2em 0 0;
  border: 0;
  background: transparent;
  color: var(--text-color);
  min-height: 72px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  text-align: left;
  gap: 24px;
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.3;
  overflow-wrap: anywhere;
  transition: padding-left 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-home-item:hover .faq-question {
  padding-left: 8px;
}
.faq-question::after {
  content: '↓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5em;
  height: 1.5em;
  min-width: 1.5em;
  font-size: 1.2em;
  line-height: 1;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}
.faq-home-item.is-open .faq-question::after { transform: translateY(-50%) rotate(180deg); }
.faq-question:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(-8px);
  transition: grid-template-rows 0.48s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease, transform 0.36s ease;
}
.faq-home-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
}
.faq-answer > p {
  overflow: hidden;
  width: var(--content-width);
  max-width: 100%;
  margin: 0;
  padding: 5px 0 18px;
  line-height: 1.7;
  opacity: 0.92;
}

/* ============================================
   Kontakt
   ============================================ */
#kontakt {
  overflow: hidden;
  padding-top: var(--contact-space-top);
  padding-bottom: clamp(150px, 18vh, 240px);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 70px);
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact-grid::before {
  content: none;
  position: absolute;
  left: 50%;
  right: auto;
  top: -0.38em;
  z-index: -1;
  font-size: clamp(92px, 16vw, 260px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  color: var(--background-color);
  -webkit-text-stroke: 0;
  text-shadow:
    -2px  0   0 color-mix(in srgb, var(--text-color) 22%, transparent),
     2px  0   0 color-mix(in srgb, var(--text-color) 22%, transparent),
     0   -2px 0 color-mix(in srgb, var(--text-color) 22%, transparent),
     0    2px 0 color-mix(in srgb, var(--text-color) 22%, transparent),
    -1.4px -1.4px 0 color-mix(in srgb, var(--text-color) 22%, transparent),
     1.4px  1.4px 0 color-mix(in srgb, var(--text-color) 22%, transparent),
    -1.4px  1.4px 0 color-mix(in srgb, var(--text-color) 22%, transparent),
     1.4px -1.4px 0 color-mix(in srgb, var(--text-color) 22%, transparent);
  opacity: 0.48;
  transform: translateX(-50%);
  pointer-events: none;
}
.contact-bg-word {
  position: absolute;
  left: 50%;
  top: -0.38em;
  z-index: -1;
  display: flex;
  gap: 0.14em;
  font-size: clamp(92px, 16vw, 260px);
  font-weight: 700;
  line-height: 1;
  color: var(--background-color);
  opacity: 0.48;
  transform: translateX(-50%);
  pointer-events: none;
}
.contact-bg-word span {
  display: block;
  text-shadow:
    -2px  0   0 color-mix(in srgb, var(--text-color) 22%, transparent),
     2px  0   0 color-mix(in srgb, var(--text-color) 22%, transparent),
     0   -2px 0 color-mix(in srgb, var(--text-color) 22%, transparent),
     0    2px 0 color-mix(in srgb, var(--text-color) 22%, transparent),
    -1.4px -1.4px 0 color-mix(in srgb, var(--text-color) 22%, transparent),
     1.4px  1.4px 0 color-mix(in srgb, var(--text-color) 22%, transparent),
    -1.4px  1.4px 0 color-mix(in srgb, var(--text-color) 22%, transparent),
     1.4px -1.4px 0 color-mix(in srgb, var(--text-color) 22%, transparent);
  opacity: var(--contact-letter-opacity, 1);
  filter: blur(calc((1 - var(--contact-letter-opacity, 1)) * 8px));
  transform: translateY(calc((1 - var(--contact-letter-opacity, 1)) * -18px)) scale(calc(0.96 + var(--contact-letter-opacity, 1) * 0.04));
  transition: opacity 0.18s linear, filter 0.18s linear, transform 0.18s linear;
}
.contact-info {
  grid-column: 1 / 9;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 42px) clamp(20px, 3vw, 48px);
}
.contact-info h2 {
  grid-column: 1 / -1;
  margin: 0;
  font-size: clamp(38px, 4.8vw, 82px);
  line-height: 1.05;
  letter-spacing: 0;
}
.contact-info .lead {
  grid-column: 1 / 6;
  margin: 0;
  max-width: 42ch;
  font-size: clamp(1.05rem, 1.4vw, 1.45rem);
}
.contact-rows {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 0;
  padding: clamp(12px, 2vw, 22px) 0 0;
}
.contact-info .row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.contact-info .row:nth-child(2) {
  justify-self: center;
}
.contact-info .row:nth-child(3) {
  justify-self: end;
}
.contact-info h3 {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.62;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.contact-info a,
.contact-info span {
  font-size: clamp(1.05rem, 1.7vw, 1.75rem);
  font-weight: 300;
  line-height: 1.18;
}
.contact-info a:hover { color: var(--darkPink); }
.contact-photo {
  grid-column: 9 / 13;
  justify-self: end;
  align-self: center;
  position: relative;
  width: clamp(220px, 23vw, 360px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: visible;
}
.contact-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  object-position: 50% 22%;
  filter: drop-shadow(0 24px 44px #00000024);
}
.contact-linkedin {
  position: absolute;
  left: -6%;
  bottom: 12%;
  width: clamp(48px, 5vw, 76px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--text-color);
  border: 1px solid color-mix(in srgb, var(--background-color) 35%, transparent);
  z-index: 3;
  filter: drop-shadow(0 14px 22px #00000022);
  transition: transform 0.3s ease;
}
.contact-linkedin:hover {
  transform: scale(1.08);
}
.contact-linkedin img {
  width: 42%;
  height: 42%;
  border-radius: 0;
  object-fit: contain;
  filter: invert(1);
}
html.dark-mode .contact-linkedin {
  background: var(--text-color);
  border-color: color-mix(in srgb, var(--text-color) 30%, transparent);
}
html.dark-mode .contact-linkedin img {
  filter: none;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    min-height: clamp(330px, 92vw, 430px);
  }
  .contact-info,
  .contact-photo {
    grid-column: 1;
  }
  .contact-info {
    grid-template-columns: 1fr;
  }
  .contact-info h2,
  .contact-info .lead,
  .contact-rows {
    grid-column: 1;
  }
  .contact-rows {
    grid-template-columns: 1fr;
    row-gap: 18px;
    width: calc(100% - clamp(132px, 38vw, 172px));
    max-width: 24rem;
  }
  .contact-info .row:nth-child(n) {
    justify-self: start;
  }
  .contact-photo {
    position: absolute;
    right: 0;
    top: clamp(144px, 36vw, 178px);
    bottom: auto;
    justify-self: end;
    align-self: start;
    width: clamp(116px, 33vw, 154px);
  }
  .contact-linkedin {
    width: clamp(34px, 10vw, 44px);
  }
}

/* ============================================
   Footer (1:1 Hauptseite mit 3D-Deko und Mail rechts)
   ============================================ */
.footer {
  background: var(--background-color);
  color: var(--text-color);
  padding: clamp(3.5rem, 5vw, 6rem) clamp(1.5rem, 5vw, 5rem) 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  --footer-main: var(--text-color);
  --footer-muted: rgba(24, 24, 24, 0.74);
  --footer-border: rgba(24, 24, 24, 0.12);
  --footer-stroke-fill: #fff;
  --footer-stroke-blend: multiply;
}
html.dark-mode .footer {
  --footer-muted: rgba(255, 255, 255, 0.76);
  --footer-border: rgba(255, 255, 255, 0.16);
  --footer-stroke-fill: #000;
  --footer-stroke-blend: screen;
}
.footer a { color: inherit; }

/* 3D-Pink-Schlange (Deko) */
.footer-deco {
  position: absolute;
  right: 4%;
  top: 13%;
  width: clamp(240px, 55vw, 933px);
  pointer-events: none;
  z-index: 2;
  transform: rotate(-22deg);
  transform-origin: right center;
}
.footer-deco img { width: 100%; border-radius: 0; }

.cta {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
  margin-bottom: clamp(3rem, 7vw, 7rem);
  position: relative;
}
.ctaLine1 {
  display: flex; align-items: center;
  gap: clamp(1rem, 2vw, 2.5rem);
  flex-wrap: wrap;
  margin-bottom: 0.05em;
}
.ctaLine2 {
  display: flex; align-items: baseline;
  flex-wrap: wrap; justify-content: flex-end;
  column-gap: 2em;
}
.ctaLine3 { display: flex; align-items: baseline; flex-wrap: wrap; position: relative; z-index: 3; }
.ctaText {
  font-size: clamp(42px, 8.8vw, 152px);
  letter-spacing: 0.06em;
  line-height: 0.95;
  text-transform: uppercase;
}
.ctaThin { font-weight: 300; color: var(--footer-main); }
.ctaOutlineWrapper { position: relative; display: inline-block; z-index: 4; }
.ctaOutlineFill {
  font-weight: 900; color: var(--background-color);
  position: relative; display: inline-block; z-index: 1;
}
.ctaOutlineStroke {
  font-weight: 900; color: var(--footer-main);
  -webkit-text-stroke: 4px var(--footer-main);
  position: absolute; top: 0; left: 0;
  z-index: 3; white-space: nowrap;
}
.projektWrapper { position: relative; display: inline-block; }
.ctaBoldFill {
  font-weight: 900; color: var(--footer-main);
  display: inline-block; position: relative; z-index: 1;
}
.ctaBoldStroke {
  font-weight: 900; color: var(--footer-stroke-fill);
  -webkit-text-stroke: 4px var(--footer-main);
  paint-order: stroke fill;
  position: absolute; top: 0; left: 0;
  z-index: 3; white-space: nowrap;
  mix-blend-mode: var(--footer-stroke-blend);
}

/* WhatsApp-Switch im CTA */
.waSwitch {
  display: inline-flex; align-items: center;
  background: linear-gradient(to right, #d1fee9, #9fefca);
  border-radius: 999px;
  padding: 7px;
  width: clamp(120px, 13vw, 180px);
  height: 80px;
  position: relative;
  overflow: hidden;
  transition: filter 0.2s ease;
  cursor: pointer;
  transform: translateY(-0.16em);
  flex-shrink: 0;
}
.waSwitch:hover { filter: brightness(0.93); }
.waSwitchKnob {
  position: absolute;
  left: -3px; top: 50%;
  transform: translateY(-50%);
  width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  transition: left 0.2s ease;
  z-index: 1;
}
.waSwitchKnob img { width: 83px; height: 83px; max-width: none; border-radius: 0; }
.waSwitch:hover .waSwitchKnob { left: calc(100% - 80px); }
.waSwitchLabel {
  position: absolute; left: 0; right: 0;
  text-align: center;
  color: #0a0a0a;
  font-size: clamp(0.65rem, 0.85vw, 0.8rem);
  font-weight: 600; line-height: 1.2;
  padding-left: 82px; padding-right: 12px;
  transition: padding 0.2s ease;
  pointer-events: none;
}
.waSwitch:hover .waSwitchLabel { padding-left: 12px; padding-right: 82px; }

/* Mail-Icon: rechts absolut positioniert */
.mailCta {
  position: absolute;
  right: clamp(2rem, 6vw, 5.5rem);
  bottom: clamp(5.25rem, 10vw, 7.75rem);
  display: inline-flex;
  color: var(--footer-main);
  z-index: 3;
}
.mailCtaIcon {
  width: clamp(112px, 11vw, 148px);
  height: auto;
  display: block;
  transition: transform 0.2s ease;
}
.mailCta:hover .mailCtaIcon { transform: translateX(0.3rem); }

.footer-nav {
  display: flex;
  gap: clamp(2rem, 5vw, 6rem);
  margin-bottom: clamp(2rem, 4vw, 4rem);
  flex-wrap: wrap;
  position: relative; z-index: 1;
}
.footer-nav-col { display: flex; flex-direction: column; gap: 0.45rem; }
.footer-nav-col a {
  font-size: clamp(0.92rem, 1.05vw, 1.05rem);
  color: var(--footer-muted);
  transition: color 0.2s ease;
  line-height: 1.8;
}
.footer-nav-col a:hover { color: var(--footer-main); }

.bottomBar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--footer-border);
  position: relative; z-index: 1;
}
.copyright { font-size: 0.85rem; margin: 0; }
.legal { display: flex; gap: 1.5rem; }
.legal a { font-size: 0.85rem; transition: color 0.2s ease; }

@media (max-width: 640px) {
  .mailCta {
    position: relative;
    right: 0; bottom: 0;
    margin: 0 0 1.8rem auto;
  }
  .footer-deco { width: 235px; top: 31%; right: -3%; }
}

/* ============================================
   Floating WhatsApp – versteckt initial, fade ein/aus
   ============================================ */
.whatsapp-button {
  position: fixed;
  bottom: 3vw;
  right: 3vw;
  z-index: 50;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  filter: drop-shadow(0 10px 10px #00000030);
  transition: transform 0.3s ease, filter 0.3s ease, opacity 0.4s ease;
  opacity: 0;
  transform: translateY(18px) scale(0.72);
  pointer-events: none;
}
.whatsapp-button.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  animation: popIn 0.5s ease;
}
.whatsapp-button.hide {
  opacity: 0;
  transform: translateY(18px) scale(0.72);
  pointer-events: none;
}
.whatsapp-button img { width: 60px; height: 60px; border-radius: 0; }
.whatsapp-button:hover {
  transform: scale(1.2) rotate(3deg);
  filter: drop-shadow(0 10px 5px #00000020);
}
@keyframes popIn {
  0% { transform: scale(0) rotate(90deg); opacity: 0; }
  70% { transform: scale(1.2) rotate(-5deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

/* ============================================
   Cookie-Banner
   ============================================ */
@keyframes cookieSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@keyframes cookieSlideOut {
  from { transform: translateY(0); opacity: 1; }
  to   { transform: translateY(100%); opacity: 0; }
}
.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 480px;
  max-width: calc(100% - 2em);
  background: var(--background-color);
  color: var(--text-color);
  border: 2px solid var(--text-color);
  border-radius: 30px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  z-index: 60;
  text-align: center;
  font-size: 14px;
  animation: cookieSlideIn 0.5s ease-out;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner.hiding { animation: cookieSlideOut 0.5s ease-out forwards; }
.cookie-icon {
  width: 80px;
  margin: -80px auto 10px;
  display: block;
}
.cookie-icon img { width: 100%; border-radius: 0; }
.cookie-banner p { margin: 0 0 15px; line-height: 1.45; }
.cookie-banner a { text-decoration: underline; }
.cookie-buttons {
  display: flex; justify-content: space-between; gap: 10px;
  flex-wrap: wrap;
}
.cookie-buttons button {
  background: var(--background-color);
  border: 2px solid var(--text-color);
  color: var(--text-color);
  border-radius: 50px;
  padding: 10px 15px;
  cursor: pointer;
  flex: 1;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}
.cookie-buttons button:hover { background: var(--text-color); color: var(--background-color); }
@media (max-width: 768px) {
  .cookie-banner {
    bottom: 0; right: auto; left: 1em;
    width: calc(100% - 2em);
    border-radius: 30px 30px 0 0;
    border-bottom: 0;
  }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

.service-card,
.tool-card {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in .service-card,
.reveal.in .tool-card {
  opacity: 1;
  transform: translateY(0);
}
.reveal.in .service-card:nth-child(1),
.reveal.in .tool-card:nth-child(1) { transition-delay: 0.08s; }
.reveal.in .service-card:nth-child(2),
.reveal.in .tool-card:nth-child(2) { transition-delay: 0.18s; }
.reveal.in .service-card:nth-child(3),
.reveal.in .tool-card:nth-child(3) { transition-delay: 0.28s; }
.reveal.in .service-card:nth-child(4),
.reveal.in .tool-card:nth-child(4) { transition-delay: 0.38s; }
.reveal.in .service-card:nth-child(5) { transition-delay: 0.48s; }
.reveal.in .service-card:nth-child(6) { transition-delay: 0.58s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .service-card,
  .tool-card { opacity: 1; transform: none; }
  .hero-word-web,
  .hero-word-design,
  .hero-word-dresden {
    opacity: 1;
    clip-path: none;
    filter: none;
  }
  .hero-tag {
    max-width: 14rem;
    opacity: 1;
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-deco--grid,
  .hero-pink-ball,
  .hero-deco--cube,
  .hero-counter,
  .hero .lead,
  .hero .cta-link,
  .hero-webdesign-arrow,
  .hero-photo {
    opacity: 1;
    filter: none;
  }
}

/* Responsive */
@media (max-width: 900px) {
  html,
  body,
  .scroll-slider,
  .scroll-slider.dragging,
  .letter-container,
  .letter-container:active,
  .letter-container.is-dragging {
    cursor: default !important;
  }
  #tools .container {
    display: block;
  }
  #tools h2 {
    margin-bottom: 1em;
  }
  #tools > .container > .lead {
    margin: 0;
    width: 100%;
  }
  .toolset {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(40px, 5vw, 72px);
    margin-top: 48px;
  }
  .tool-card:nth-child(n),
  .tools-note {
    grid-column: auto;
    grid-row: auto;
  }
  .tools-note {
    margin-top: clamp(44px, 6vw, 80px);
    margin-left: 0;
    width: 100%;
  }
  section {
    padding: var(--section-y-mobile) 0;
  }
  .intro {
    padding: var(--section-y-mobile) 0;
  }
  .services-grid {
    gap: 24px 28px;
    margin-top: 32px;
  }
  .webdesign-slider-section {
    padding: var(--section-y-mobile) 0;
  }
  #tools,
  .process-section {
    padding: var(--section-y-mobile) 0;
  }
  #kontakt {
    padding-top: calc(var(--section-y-mobile) * 2);
    padding-bottom: calc(var(--section-y-mobile) * 1.2);
  }
  .faq-section {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: var(--section-y-mobile) 3vw;
    box-sizing: border-box;
    overflow: hidden;
  }
  .faq-home-item,
  .faq-home-item:hover {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    transform: none;
  }
  .faq-home-item.is-open {
    padding-left: 14px;
    padding-right: 14px;
  }
  .faq-question,
  .faq-answer,
  .faq-answer > p {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .scroll-slider {
    margin-top: 20px;
  }
  .faq-letter {
    position: relative !important;
    height: 140px !important;
    margin: 10px 0 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
  }
  .faq-section .letter-container {
    position: absolute;
    left: 0;
    top: 0;
    cursor: default !important;
    transition: none !important;
  }
  .faq-section .letter-container[data-letter="f"] {
    transform: translate3d(8vw, 8px, 0) rotate(-2deg);
  }
  .faq-section .letter-container[data-letter="a"] {
    transform: translate3d(38vw, 18px, 0) rotate(1deg);
  }
  .faq-section .letter-container[data-letter="q"] {
    transform: translate3d(68vw, 6px, 0) rotate(2deg);
  }
  .faq-question {
    font-size: clamp(1rem, 4vw, var(--big-body-text));
    gap: 14px;
  }
  .hero {
    align-items: flex-start;
    padding-top: 88px;
  }
  .hero-inner {
    padding: 0 3vw;
    min-height: auto;
  }
  .hero-type {
    margin: 0 0 2px;
  }
  .hero-word-web {
    font-size: clamp(48px, 12vw, 74px);
  }
  .hero-word-design {
    margin: 0.02em 0 -0.04em;
    margin-left: 0;
    font-size: clamp(54px, 13vw, 84px);
    line-height: 1.22;
    padding: 0 0.08em 0.2em;
    transform: none;
  }
  .hero-word-dresden {
    font-size: clamp(17px, 4vw, 28px);
    letter-spacing: 0.32em;
    margin-top: 0.68em;
    padding-left: 0.32em;
    transform: none;
  }
  .hero-tag {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
  .hero .lead {
    width: 100% !important;
    max-width: 34rem !important;
    margin: clamp(26px, 6vh, 46px) 0 0;
    font-size: 1rem;
    line-height: 1.45;
    text-align: left;
    overflow-wrap: anywhere;
  }
  .hero-webdesign-arrow {
    top: 34px;
    right: 8vw;
    width: 50px;
    opacity: 0;
    filter: saturate(1.45) contrast(1.18) drop-shadow(0 8px 10px #00000038);
  }
  .hero .cta-link {
    font-size: 1rem;
    line-height: 1.25;
    justify-self: start;
    margin: -2px 0 0;
  }
  .ctaText { font-size: clamp(36px, 8vw, 92px); letter-spacing: 0.045em; }
  .ctaOutlineStroke, .ctaBoldStroke { -webkit-text-stroke: 3px var(--footer-main); }
  .waSwitch { width: 158px; height: 68px; padding: 0; }
  .waSwitchKnob { width: 68px; height: 68px; }
  .waSwitchKnob img { width: 66px; height: 66px; }
  .waSwitch:hover .waSwitchKnob { left: calc(100% - 68px); }
}
@media (max-width: 640px) {
  .header { padding: 5px 3vw; }
  .hero h1 {
    width: 100%;
  }
  .hero-word-web {
    font-size: clamp(48px, 15vw, 74px);
  }
  .hero-word-design {
    font-size: clamp(54px, 15.5vw, 78px);
    line-height: 1.22;
    padding: 0 0.08em 0.2em;
    transform: none;
  }
  .hero-word-dresden {
    font-size: clamp(17px, 4.8vw, 28px);
    letter-spacing: 0.32em;
    padding-left: 0.32em;
    transform: none;
  }
  .toolset {
    grid-template-columns: 1fr;
  }
  .footer {
    padding: 74px 28px 0;
    min-height: 0;
  }
  .cta {
    margin-bottom: 4.2rem;
  }
  .ctaText { font-size: clamp(32px, 8.8vw, 42px); letter-spacing: 0.075em; white-space: nowrap; }
  .ctaLine1 {
    position: relative;
    gap: 10px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-right: 116px;
  }
  .ctaLine1 .ctaThin {
    max-width: calc(100% - 116px);
  }
  .ctaLine2 {
    column-gap: 0.35em;
    justify-content: flex-start;
    margin-left: clamp(34px, 10vw, 48px);
    margin-top: 0.06em;
  }
  .ctaLine3 {
    justify-content: flex-start;
    margin-top: 0.1em;
  }
  .projektWrapper {
    transform: translateY(0.42em);
  }
  .footer-deco {
    width: 250px;
    top: 166px;
    right: 4px;
    z-index: 5;
    transform: rotate(-16deg);
  }
  .waSwitch {
    position: absolute;
    right: 0;
    top: -1px;
    width: 112px;
    height: 50px;
    padding: 3px;
  }
  .waSwitchKnob { width: 50px; height: 50px; }
  .waSwitchKnob img { width: 52px; height: 52px; }
  .waSwitch:hover .waSwitchKnob { left: calc(100% - 50px); }
  .waSwitchLabel {
    font-size: 0.64rem;
    padding-left: 54px;
    padding-right: 8px;
  }
  .waSwitch:hover .waSwitchLabel { padding-left: 8px; padding-right: 54px; }
  .mailCta {
    position: absolute;
    right: 38px;
    top: 254px;
    margin: 0;
  }
  .mailCtaIcon {
    width: 82px;
  }
  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem 2.8rem;
    margin-bottom: 2.4rem;
  }
  .footer-nav-col a {
    font-size: 1rem;
    line-height: 1.95;
  }
  .bottomBar { flex-direction: column; align-items: flex-start; }
  .legal { display: none; }
}

/* ============================================
   Subpages (Tool-Detailseiten)
   ============================================ */
.sub-hero {
  min-height: auto;
  padding: 130px 0 54px;
  position: relative;
  overflow: hidden;
}
.sub-hero .container {
  max-width: none;
  margin: 0;
  text-align: left;
  position: relative;
  z-index: 1;
}
.sub-hero .container::before {
  content: '';
  position: absolute;
  right: clamp(20px, 8vw, 160px);
  top: clamp(30px, 5vw, 72px);
  width: calc(14 * 24px);
  height: calc(7 * 24px);
  z-index: -1;
  background-image:
    linear-gradient(color-mix(in srgb, var(--text-color) 14%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--text-color) 14%, transparent) 1px, transparent 1px);
  background-size: 24px 24px;
  border-right: 1px solid color-mix(in srgb, var(--text-color) 14%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--text-color) 14%, transparent);
  opacity: 0.8;
}
.sub-hero .container::after {
  content: '';
  position: absolute;
  right: clamp(230px, 19vw, 360px);
  top: clamp(18px, 4vw, 54px);
  width: clamp(46px, 5vw, 76px);
  aspect-ratio: 1;
  border-radius: 50%;
  z-index: -1;
  background:
    radial-gradient(ellipse at 30% 26%, #ffffff78 0 9%, #ffffff32 18%, #ffffff00 36%),
    radial-gradient(circle at 42% 38%, var(--sub-accent-light, var(--lightPink)) 0 38%, var(--sub-accent, var(--pink)) 76%);
  box-shadow:
    inset -8px -10px 15px color-mix(in srgb, #000 14%, transparent),
    inset -10px -10px 12px color-mix(in srgb, var(--sub-accent, var(--pink)) 28%, transparent);
  filter: drop-shadow(0 18px 22px color-mix(in srgb, var(--sub-accent, var(--pink)) 28%, transparent));
}
.wordpress-page { --sub-accent: #21759B; --sub-accent-light: #8FC6E8; }
.kirby-page { --sub-accent: #FF6B5B; --sub-accent-light: #FFB0A7; }
.shopify-page { --sub-accent: #B7F36A; --sub-accent-light: #DCFFAC; }
.eigenentwicklung-page { --sub-accent: #7287FF; --sub-accent-light: #B7C1FF; }
.sub-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: color-mix(in srgb, var(--text-color) 60%, transparent);
  margin: 0 0 28px;
}
.sub-hero-breadcrumb a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.sub-hero-breadcrumb a:hover { color: var(--darkPink); }
.sub-hero h1 {
  margin: 0 0 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.sub-hero h1 .sub-h1-line {
  display: block;
  margin-top: 0.9em;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: clamp(14px, 1.4vw, 20px);
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--text-color) 70%, transparent);
}
.sub-hero .lead {
  margin: 0 0 32px;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 300;
  max-width: 64ch;
}
.sub-hero .cta-link { margin-top: 6px; }
.sub-section { padding: clamp(32px, 4vw, 56px) 0; position: relative; }
.sub-section .container { max-width: none; margin: 0; }
.sub-section h2 { margin: 0 0 18px; max-width: none; }
.sub-section h2.sub-nowrap-heading {
  max-width: none;
  white-space: nowrap;
}
.sub-section .lead { margin: 0 0 34px; max-width: 68ch; }
.sub-section .sub-text { max-width: 70ch; opacity: 0.9; line-height: 1.7; font-size: 1.02rem; }
.sub-section .sub-text + .sub-text { margin-top: 18px; }
.sub-two-col-text {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 72px);
  max-width: none;
  margin: 0;
}
.sub-two-col-text p {
  margin: 0;
  font-size: clamp(1rem, 1.15vw, 1.16rem);
  line-height: 1.72;
  opacity: 0.9;
}
.sub-section .sub-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(20px, 2.5vw, 40px);
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}
.sub-section .sub-list li {
  border-top: 1px solid color-mix(in srgb, var(--text-color) 20%, transparent);
  padding-top: 16px;
}
.sub-section .sub-list li strong {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 1.05rem;
}
.sub-section .sub-list li span {
  display: block;
  opacity: 0.82;
  font-size: 0.95rem;
  line-height: 1.55;
}
.sub-tabs {
  margin-top: clamp(28px, 3vw, 42px);
  display: grid;
  grid-template-columns: minmax(190px, 0.28fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 72px);
  align-items: start;
}
.sub-tab-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 1px solid color-mix(in srgb, var(--text-color) 18%, transparent);
  padding-left: clamp(14px, 1.6vw, 22px);
}
.sub-tab {
  appearance: none;
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: color-mix(in srgb, var(--text-color) 62%, transparent);
  cursor: pointer;
  font: inherit;
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: left;
  padding: 12px 0;
  position: relative;
  transition: color 0.18s ease, transform 0.18s ease;
}
.sub-tab::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(clamp(14px, 1.6vw, 22px) * -1 - 1px);
  width: 3px;
  height: 0;
  transform: translateY(-50%);
  background: var(--sub-accent, var(--pink));
  transition: height 0.18s ease;
}
.sub-tab:hover,
.sub-tab:focus-visible,
.sub-tab.is-active {
  color: var(--text-color);
}
.sub-tab:hover {
  transform: translateX(3px);
}
.sub-tab:focus-visible {
  outline: 2px solid var(--sub-accent, var(--pink));
  outline-offset: 4px;
}
.sub-tab.is-active::before {
  height: 70%;
}
.sub-tab-panels {
  min-width: 0;
  padding-top: 0;
}
.sub-tab-panel {
  max-width: 82ch;
}
.sub-tab-panel[hidden] {
  display: none;
}
.sub-tab-panel h3 {
  margin: 0 0 14px;
  font-size: clamp(1.45rem, 2.2vw, 2.4rem);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: 0;
}
.sub-tab-panel p {
  margin: 0;
  max-width: 72ch;
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  line-height: 1.72;
  opacity: 0.88;
}
.sub-tab-panel p + p {
  margin-top: 14px;
}
.subpage .services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  margin-top: 32px;
}
.subpage .service-card { opacity: 1; transform: none; }
.subpage .service-card {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
.subpage .service-icon {
  width: 56px;
  height: 56px;
  padding: 16px;
  box-sizing: border-box;
  border-radius: 50%;
  overflow: visible;
  color: #000;
  background:
    radial-gradient(circle at 32% 28%,
      color-mix(in srgb, var(--sub-accent-light, var(--lightPink)) 60%, #ffffff) 0%,
      var(--sub-accent-light, var(--lightPink)) 38%,
      var(--sub-accent, var(--pink)) 100%);
  box-shadow:
    inset -4px -5px 9px color-mix(in srgb, #000 18%, transparent),
    inset 3px 4px 6px color-mix(in srgb, #ffffff 35%, transparent);
  filter: drop-shadow(0 10px 16px color-mix(in srgb, var(--sub-accent, var(--pink)) 28%, transparent));
  margin: 0 0 18px;
}
.subpage .service-card .service-icon { transition: transform 0.25s ease; }
.subpage .service-card:hover .service-icon { transform: scale(1.08); }
.subpage .service-card h3 {
  font-size: clamp(1.08rem, 1.35vw, 1.32rem);
}
.subpage .service-card p {
  max-width: 42ch;
}
.sub-process-list {
  list-style: none;
  padding: 0;
  margin: 44px 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 76px);
  border: 0;
  background: transparent;
}
.sub-process-list li {
  position: relative;
  width: auto;
  min-width: 0;
  padding: 0;
  padding-top: clamp(28px, 3vw, 44px);
  background: transparent;
}
.sub-process-num {
  width: clamp(54px, 4.6vw, 70px);
  height: clamp(54px, 4.6vw, 70px);
  margin-bottom: clamp(22px, 2.2vw, 30px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  font-weight: 400;
  color: var(--text-color);
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--text-color) 22%, transparent);
  box-shadow: 0 8px 18px #00000018;
}
.sub-process-list strong {
  display: block;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.15rem, 1.7vw, 1.6rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-color);
}
.sub-process-list span {
  display: block;
  max-width: 28ch;
  opacity: 0.86;
  font-size: 0.98rem;
  line-height: 1.5;
}
.sub-process-list .sub-process-num {
  display: grid;
  place-items: center;
  max-width: none;
  opacity: 1;
  line-height: 1;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 400;
}
.sub-faq { padding-top: clamp(40px, 6vw, 80px); }
.sub-cta-section {
  padding: clamp(70px, 9vw, 130px) 0;
  text-align: center;
}
.sub-cta-section .container { max-width: 720px; margin: 0 auto; }
.sub-cta-section h2 { margin: 0 0 16px; }
.sub-cta-section .lead { margin: 0 auto 30px; max-width: 56ch; }
.sub-cta-section .cta-link { display: inline-block; }

@media (max-width: 900px) {
  .sub-hero .container::before {
    right: calc(var(--page-pad) * -0.45);
    top: 76px;
    width: min(64vw, 310px);
    height: 154px;
  }
  .sub-hero .container::after {
    right: clamp(16px, 7vw, 44px);
    top: 64px;
    width: clamp(44px, 12vw, 58px);
  }
  .subpage .container {
    max-width: 100vw;
    overflow-x: clip;
  }
  .subpage h1,
  .subpage h2,
  .subpage h3,
  .subpage p,
  .subpage span {
    overflow-wrap: break-word;
  }
  .sub-section h2.sub-nowrap-heading {
    white-space: normal;
  }
  .sub-two-col-text {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 100%;
    width: 100%;
  }
  .sub-two-col-text > *,
  .subpage .service-card,
  .sub-process-list > *,
  .sub-tab-panel {
    min-width: 0;
    max-width: 100%;
  }
  .subpage .services-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    max-width: 100%;
    width: 100%;
  }
  .sub-process-list {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 100%;
    width: 100%;
  }
  .sub-process-list span {
    max-width: 68ch;
  }
  .sub-tabs {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    max-width: 100%;
  }
  .sub-tab-list {
    flex-direction: row;
    overflow-x: auto;
    border-left: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--text-color) 18%, transparent);
    padding-left: 0;
    padding-bottom: 2px;
    scrollbar-width: thin;
  }
  .sub-tab {
    flex: 0 0 auto;
    width: auto;
    white-space: nowrap;
    padding: 12px 2px 14px;
  }
  .sub-tab::before {
    top: auto;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    transform: none;
    opacity: 0;
  }
  .sub-tab.is-active::before {
    height: 3px;
    opacity: 1;
  }
  .sub-tab-panels {
    padding-top: 0;
    border-top: 0;
  }
}

@media (max-width: 560px) {
  .sub-tab-list {
    margin-right: calc(var(--page-pad) * -1);
    padding-right: var(--page-pad);
  }
  .sub-tab-panel h3 {
    font-size: clamp(1.28rem, 7vw, 1.75rem);
  }
}

@media (max-width: 1100px) {
  .hero-type {
    width: 100% !important;
    max-width: 100% !important;
    justify-self: stretch !important;
    transform: none !important;
  }
  .hero h1 {
    width: 100% !important;
    max-width: 100% !important;
  }
  .hero-word-web {
    font-size: clamp(48px, 12vw, 74px) !important;
  }
  .hero-word-design {
    font-size: clamp(54px, 13vw, 84px) !important;
    line-height: 1.22 !important;
    padding: 0 0.08em 0.2em !important;
    transform: none !important;
  }
  .hero-word-dresden {
    font-size: clamp(17px, 4vw, 28px) !important;
    letter-spacing: 0.32em !important;
    padding-left: 0.32em !important;
    transform: none !important;
  }
}
