/*
   Na, neugierig?
   
   Schön, dass du reinschaust. Diese Website haben wir bei ZovaX Studio
   von Grund auf selbst gebaut: Gestaltung, Aufbau, Animationen und Code.
   Kein Baukasten, kein fertiges Theme.
   
   Der gesamte Auftritt ist urheberrechtlich geschützt, der Code als
   Computerprogramm nach § 69a UrhG. Kopieren, Nachbauen oder
   Weiterverwenden, ganz oder in Teilen, ist ohne unsere schriftliche
   Zustimmung nicht erlaubt.
   
   Du hättest gern so einen Auftritt für dein Unternehmen?
   Dann schreib uns, die Erstberatung kostet nichts: info@zovax-studio.de
   
   ZovaX Studio, Webdesign aus Berlin. www.zovax-studio.de
*/

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/inter-400.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/inter-500.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/inter-600.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/space-grotesk-500.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/space-grotesk-700.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #0a0a0a;
  --paper: #f4f4f2;
  --paper-soft: #ececea;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(10, 10, 10, 0.12);
  --aqua: #57e6e6;
  --grey: #9a9a97;
  --font-head: "Space Grotesk", "Archivo", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--aqua); color: var(--ink); }

img, svg, canvas { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

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

.container {
  width: min(1240px, 92vw);
  margin-inline: auto;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.9s var(--ease-out), opacity 0.6s ease;
}

.preloader.done {
  transform: translateY(-100%);
  opacity: 0.4;
  pointer-events: none;
}

.preloader__logo {
  font-family: var(--font-head);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  overflow: hidden;
}

.preloader__logo span {
  display: inline-block;
  transform: translateY(110%);
  animation: pre-up 0.7s var(--ease-out) forwards;
}

.preloader__logo .dot { color: var(--aqua); }

@keyframes pre-up { to { transform: translateY(0); } }

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--paper);
  pointer-events: none;
  z-index: 150;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, opacity 0.25s ease;
  opacity: 0;
}

.cursor.on { opacity: 1; }
.cursor.grow { width: 56px; height: 56px; }

@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  width: min(1240px, 92vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  z-index: 102;
}

.nav__logo .dot { color: var(--aqua); }

.nav__links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav__links a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--paper);
  opacity: 0.75;
  transition: opacity 0.3s ease;
  padding: 0.4rem 0;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--aqua);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}

.nav__links a:hover,
.nav__links a.active { opacity: 1; }

.nav__links a:hover::after,
.nav__links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__cta {
  display: inline-block;
  border: 1px solid var(--paper);
  border-radius: 999px;
  padding: 0.55rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.nav__cta:hover {
  background: var(--paper);
  color: var(--ink);
}

.nav__burger {
  display: none;
  z-index: 102;
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.nav__burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--paper);
  transition: transform 0.4s var(--ease-out), opacity 0.3s ease;
}

.nav__burger.open span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 101;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  clip-path: circle(0% at calc(100% - 44px) 38px);
  transition: clip-path 0.7s var(--ease-out);
  pointer-events: none;
}

.mobile-menu.open {
  clip-path: circle(150% at calc(100% - 44px) 38px);
  pointer-events: auto;
}

.mobile-menu a {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 9vw, 3.2rem);
  font-weight: 700;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s var(--ease-out), color 0.3s ease;
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu a:nth-child(1) { transition-delay: 0.15s; }
.mobile-menu a:nth-child(2) { transition-delay: 0.22s; }
.mobile-menu a:nth-child(3) { transition-delay: 0.29s; }
.mobile-menu a:nth-child(4) { transition-delay: 0.36s; }
.mobile-menu a:nth-child(5) { transition-delay: 0.43s; }

.mobile-menu a:hover,
.mobile-menu a.active { color: var(--aqua); }

@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__canvas canvas {
  width: 100%;
  height: 100%;
}

.hero__fade {
  position: absolute;
  inset: auto 0 0 0;
  height: 30vh;
  z-index: 2;
  background: linear-gradient(to bottom, transparent, var(--ink));
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 5vw;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 2rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero__tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aqua);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(87, 230, 230, 0.55); }
  55% { box-shadow: 0 0 0 9px rgba(87, 230, 230, 0); }
}

.hero__title {
  font-size: clamp(2.2rem, 13vw, 11.5rem);
  text-transform: none;
}

.hero__title-word {
  display: block;
  white-space: nowrap;
}

.hero__title .dot { color: var(--aqua); }

.hero__title .char {
  display: inline-block;
  will-change: transform;
}

.hero__sub {
  display: block;
  margin-top: 1.6rem;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
  line-height: 1.6;
  letter-spacing: normal;
  white-space: normal;
  color: var(--grey);
  font-weight: 400;
}

.hero__actions {
  margin-top: 2.6rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  padding: 0.95rem 2.1rem;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--paper);
  transition: color 0.35s ease, border-color 0.35s ease, transform 0.3s var(--ease-out);
}

.btn:active { transform: scale(0.97); }

.btn span { position: relative; z-index: 1; }

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--paper);
  transform: translateY(101%);
  transition: transform 0.45s var(--ease-out);
  border-radius: inherit;
}

.btn:hover::before { transform: translateY(0); }

.btn--solid {
  background: var(--paper);
  color: var(--ink);
}

.btn--solid::before { background: var(--aqua); }

.btn--ghost { color: var(--paper); }
.btn--ghost:hover { color: var(--ink); }

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
}

.hero__scroll::after {
  content: "";
  width: 1px;
  height: 44px;
  background: linear-gradient(var(--paper), transparent);
  animation: drip 1.8s ease infinite;
}

@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.marquee {
  border-block: 1px solid var(--line);
  padding: 1.4rem 0;
  overflow: hidden;
  white-space: nowrap;
  background: var(--ink);
}

.marquee__track {
  display: inline-flex;
  gap: 3rem;
  animation: marquee 26s linear infinite;
  will-change: transform;
}

.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee__track span {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--paper);
}

.marquee__track span:nth-child(even) {
  -webkit-text-stroke: 1px var(--paper);
  color: transparent;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section { padding: clamp(5rem, 12vh, 9rem) 0; }

.section--paper {
  background: var(--paper);
  color: var(--ink);
}

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
  flex-wrap: wrap;
}

.section__kicker {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1rem;
}

.section__title {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
}

.section--paper .section__kicker { color: #6d6d6a; }

.lead {
  margin-top: 1.6rem;
  max-width: 62ch;
  color: var(--grey);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.section--paper .lead { color: #55554f; }

.statement {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 4.6vw, 3.4rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  max-width: 20ch;
}

.statement em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--paper);
}

.section--paper .statement em { -webkit-text-stroke-color: var(--ink); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.card {
  position: relative;
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  padding: 2.2rem 1.9rem;
  overflow: hidden;
  background: var(--paper);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px -22px rgba(10, 10, 10, 0.35);
}

.card::after {
  content: "";
  position: absolute;
  inset: auto -30% -55% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(87, 230, 230, 0.4), transparent 65%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.card:hover::after { opacity: 1; }

.card__num {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: #6d6d6a;
  margin-bottom: 3.6rem;
}

.card__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.4rem;
  color: var(--ink);
}

.card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.7rem;
}

.card p {
  font-size: 0.98rem;
  color: #55554f;
}

@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr; }
  .card__num { margin-bottom: 2rem; }
}

.projects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.project {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  isolation: isolate;
}

.project--wide { grid-column: span 2; aspect-ratio: 21 / 9; }

.project__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: transform 0.8s var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
}

.project:hover .project__bg { transform: scale(1.06); }

.project__bg svg,
.project__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project__bg img { filter: saturate(0.85) brightness(0.92); }

.project--site { aspect-ratio: 2 / 1; }

.project--site .project__bg img {
  object-position: top;
  filter: none;
}

@media (max-width: 760px) {
  .project--site { aspect-ratio: 3 / 2; }
}

.project__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.6rem 1.8rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.82), transparent);
}

.project__body h3 {
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
}

.project__body small {
  display: block;
  margin-top: 0.25rem;
  color: var(--grey);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project__arrow {
  flex: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.35s ease, transform 0.45s var(--ease-out);
}

.project__arrow svg { width: 18px; height: 18px; }

.project:hover .project__arrow {
  background: var(--aqua);
  color: var(--ink);
  transform: rotate(45deg);
}

@media (max-width: 760px) {
  .projects { grid-template-columns: 1fr; }
  .project--wide { grid-column: span 1; aspect-ratio: 4 / 3; }
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.feature {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.8rem 1.5rem;
  transition: border-color 0.35s ease, transform 0.45s var(--ease-out);
}

.feature:hover {
  border-color: var(--aqua);
  transform: translateY(-6px);
}

.feature svg {
  width: 32px;
  height: 32px;
  margin-bottom: 1rem;
  color: var(--paper);
  transition: color 0.3s ease;
}

.feature:hover svg { color: var(--aqua); }

.feature h3 {
  font-size: 1.08rem;
  margin-bottom: 0.4rem;
}

.feature p {
  color: var(--grey);
  font-size: 0.92rem;
  line-height: 1.5;
}

@media (max-width: 980px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 2.6rem 1rem;
}

.stat__num {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  font-weight: 700;
}

.stat__num .plus { color: var(--aqua); }

.stat small {
  display: block;
  margin-top: 0.4rem;
  color: var(--grey);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

@media (max-width: 700px) {
  .stats { grid-template-columns: 1fr; }
  .stat { padding: 1.8rem 1rem; }
}

.page-hero {
  padding: calc(var(--nav-h) + clamp(3.5rem, 10vh, 7rem)) 0 clamp(2.5rem, 7vh, 5rem);
}

.page-hero h1 {
  font-size: clamp(3rem, 10vw, 7.5rem);
}

.page-hero h1 .dot { color: var(--aqua); }

.page-hero p {
  margin-top: 1.4rem;
  color: var(--grey);
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  max-width: 46ch;
}

.page-hero__sub {
  display: block;
  margin-top: 1.4rem;
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: normal;
  color: var(--grey);
  max-width: 46ch;
}

.service-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 4vw, 3rem);
  padding: clamp(1.8rem, 4vw, 2.8rem) 0;
  border-top: 1px solid var(--line-dark);
  transition: padding-left 0.45s var(--ease-out);
}

.service-row:last-of-type { border-bottom: 1px solid var(--line-dark); }

.service-row:hover { padding-left: 1.2rem; }

.service-row__num {
  font-family: var(--font-head);
  font-weight: 700;
  color: #a4a4a0;
}

.service-row h3 {
  font-size: clamp(1.6rem, 4.5vw, 2.8rem);
  transition: color 0.3s ease;
}

.service-row p {
  margin-top: 0.5rem;
  color: #55554f;
  max-width: 52ch;
}

.service-row__tag {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .service-row { grid-template-columns: auto 1fr; }
  .service-row__tag { display: none; }
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  counter-reset: step;
}

.step {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 2rem 1.6rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.45s var(--ease-out);
}

.step:hover {
  border-color: var(--aqua);
  transform: translateY(-6px);
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px var(--grey);
  display: block;
  margin-bottom: 1.6rem;
}

.step h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.step p { color: var(--grey); font-size: 0.95rem; }

@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

.faq-list { border-top: 1px solid var(--line); }

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.3rem, 3vw, 1.9rem) 0;
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.6vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
  transition: color 0.3s ease, padding-left 0.4s var(--ease-out);
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ""; }

.faq-item summary:hover { color: var(--aqua); padding-left: 0.6rem; }

.faq-item summary:focus-visible {
  outline: 2px solid var(--aqua);
  outline-offset: 4px;
}

.faq-item summary::after {
  content: "";
  flex: none;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    linear-gradient(var(--paper), var(--paper)) center / 13px 1.5px no-repeat,
    linear-gradient(var(--paper), var(--paper)) center / 1.5px 13px no-repeat;
  transition: transform 0.45s var(--ease-out), border-color 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(135deg);
  border-color: var(--aqua);
}

.faq-item summary:hover::after { border-color: var(--aqua); }

.faq-answer {
  padding: 0 0 1.6rem;
  max-width: 68ch;
  color: var(--grey);
  animation: faq-open 0.45s var(--ease-out);
}

.faq-answer p + p { margin-top: 0.8rem; }

@keyframes faq-open {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .faq-answer { animation: none; }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 1.6rem;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 0;
  border-top: 1px solid var(--line);
  font-size: 1.05rem;
  transition: padding-left 0.4s var(--ease-out), color 0.3s ease;
}

.contact-line:last-child { border-bottom: 1px solid var(--line); }

a.contact-line:hover { padding-left: 0.8rem; color: var(--aqua); }

.contact-line svg { width: 22px; height: 22px; flex: none; }

.form { display: grid; gap: 1.1rem; }

.form label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.45rem;
}

.form input,
.form textarea {
  width: 100%;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.95rem 1.1rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  resize: vertical;
}

.form input:focus,
.form textarea:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 3px rgba(87, 230, 230, 0.15);
}

.form .hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.choices {
  border: 0;
  padding: 0;
  margin: 0;
}

.choices legend {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.6rem;
}

.choice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice span {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-size: 0.92rem;
  color: var(--grey);
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.choice span:hover {
  border-color: var(--paper);
  color: var(--paper);
}

.choice input:checked + span {
  background: var(--aqua);
  border-color: var(--aqua);
  color: var(--ink);
  font-weight: 600;
}

.choice input:focus-visible + span {
  box-shadow: 0 0 0 3px rgba(87, 230, 230, 0.25);
}

.form .consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--grey);
  cursor: pointer;
  line-height: 1.55;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 0;
}

.form .consent input {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: var(--aqua);
  cursor: pointer;
}

.form .consent a {
  color: var(--paper);
  text-decoration: underline;
}

.form .consent a:hover { color: var(--aqua); }

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

.legal {
  max-width: 72ch;
  padding-bottom: clamp(3rem, 8vh, 6rem);
}

.legal h2 {
  font-size: 1.5rem;
  margin: 2.6rem 0 0.8rem;
}

.legal h3 {
  font-size: 1.1rem;
  margin: 1.8rem 0 0.5rem;
}

.legal p, .legal ul {
  color: var(--grey);
  margin-bottom: 0.9rem;
}

.legal ul { padding-left: 1.2rem; }

.legal a { color: var(--paper); text-decoration: underline; }
.legal a:hover { color: var(--aqua); }

.legal .hinweis {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  font-size: 0.92rem;
}

.accent { color: var(--aqua); }

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  padding: 2.2rem 1.9rem;
  background: var(--paper);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s ease;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px -22px rgba(10, 10, 10, 0.35);
}

.price-card--featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.price-card--featured::after {
  content: "";
  position: absolute;
  inset: auto -30% -55% auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(87, 230, 230, 0.32), transparent 65%);
  pointer-events: none;
}

.price-card__badge {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  z-index: 1;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--aqua);
  border-radius: 999px;
  padding: 0.34rem 0.7rem;
}

.price-card__label {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: #6d6d6a;
  margin-bottom: 1.6rem;
}

.price-card--featured .price-card__label { color: var(--grey); }

.price-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
}

.price-card__for {
  font-size: 0.95rem;
  color: #55554f;
  margin-bottom: 1.8rem;
}

.price-card--featured .price-card__for { color: var(--grey); }

.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-family: var(--font-head);
  margin-bottom: 0.4rem;
}

.price-card__from {
  font-size: 0.95rem;
  font-weight: 500;
  color: #6d6d6a;
}

.price-card--featured .price-card__from { color: var(--grey); }

.price-card__num {
  font-size: clamp(2.4rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-card__vat {
  font-size: 0.82rem;
  color: #6d6d6a;
  margin-bottom: 1.8rem;
}

.price-card--featured .price-card__vat { color: var(--grey); }

.price-card__list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.price-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #55554f;
}

.price-card--featured .price-card__list li { color: var(--paper); }

.price-card__list svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  color: var(--ink);
}

.price-card--featured .price-card__list svg { color: var(--aqua); }

.price-card .btn {
  margin-top: auto;
  align-self: flex-start;
  position: relative;
  z-index: 1;
}

.price-extra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.price-note {
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  padding: 2rem 1.9rem;
}

.price-note h3 {
  font-size: 1.2rem;
  margin-bottom: 0.9rem;
}

.price-note p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #55554f;
  margin-bottom: 0.8rem;
}

.price-note p:last-child { margin-bottom: 0; }

.price-note__price {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--ink);
}

.price-legal {
  margin-top: 1.6rem;
  font-size: 0.85rem;
  color: #6d6d6a;
  max-width: 70ch;
}

@media (max-width: 980px) {
  .pricing { grid-template-columns: 1fr; }
  .price-extra { grid-template-columns: 1fr; }
  .price-card__label { margin-bottom: 1.1rem; }
}

.why__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.why__head { position: sticky; top: calc(var(--nav-h) + 1.5rem); }

.why__body { max-width: 66ch; }

.why__body p {
  color: var(--grey);
  margin-bottom: 1.1rem;
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  line-height: 1.7;
}

.why__body p:last-child { margin-bottom: 0; }

.why__mehr { margin-top: 1.8rem; }

.why__lead {
  color: var(--paper) !important;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem) !important;
  line-height: 1.35 !important;
  letter-spacing: -0.01em;
  margin-bottom: 1.8rem !important;
}

@media (max-width: 860px) {
  .why__grid { grid-template-columns: 1fr; }
  .why__head { position: static; margin-bottom: 1.6rem; }
}

.footer__social {
  display: flex;
  gap: 0.7rem;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--grey);
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, transform 0.35s var(--ease-out);
}

.footer__social a:hover {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
  transform: translateY(-3px);
}

.footer__social svg { width: 18px; height: 18px; }

.anfrage {
  position: relative;
  overflow: hidden;
}

.anfrage::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 30%;
  width: 640px;
  height: 640px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(87, 230, 230, 0.10), transparent 62%);
  pointer-events: none;
}

.anfrage .container { position: relative; z-index: 1; }

.anfrage__grid { margin-top: clamp(2rem, 5vw, 3.4rem); }

.lead strong { color: var(--paper); font-weight: 600; }

.cta {
  position: relative;
  text-align: center;
  padding: clamp(6rem, 16vh, 11rem) 0;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 640px;
  height: 640px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(87, 230, 230, 0.14), transparent 60%);
  pointer-events: none;
}

.cta h2 {
  font-size: clamp(2.6rem, 8vw, 6rem);
  margin-bottom: 2.2rem;
}

.cta h2 em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 2px var(--paper);
}

.cta__note {
  position: relative;
  margin: -1.4rem 0 2.2rem;
  color: var(--grey);
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 2.2rem 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.footer__logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
}

.footer__logo .dot { color: var(--aqua); }

.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1.6rem;
  font-size: 0.9rem;
}

.footer nav a {
  color: var(--grey);
  transition: color 0.3s ease;
}

.footer nav a:hover { color: var(--paper); }

.footer small { color: var(--grey); font-size: 0.85rem; }

.js .reveal {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity 0.9s ease, transform 0.9s var(--ease-out);
}

.js .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

.page-fade {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: var(--ink);
  transform: scaleY(0);
  transform-origin: bottom;
  pointer-events: none;
}

.page-fade.leaving {
  animation: wipe-in 0.5s var(--ease-out) forwards;
}

@keyframes wipe-in {
  to { transform: scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 1rem; }
.jc-center { justify-content: center; }
.btn--ink { color: var(--ink); border-color: var(--ink); }
.preloader__logo span:nth-child(2) { animation-delay: 0.12s; }
.preloader__logo span:nth-child(3) { animation-delay: 0.24s; }

.hero__canvas { opacity: 0.5; }

.hero__sub {
  color: #d9d9d6;
  text-shadow: 0 2px 14px rgba(10, 10, 10, 0.85);
}

.hero__title .char { will-change: auto; }

.sent {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}

.sent.open { opacity: 1; visibility: visible; }

.sent__card {
  position: relative;
  width: min(440px, 100%);
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--ink);
  padding: clamp(2rem, 6vw, 3rem) clamp(1.5rem, 5vw, 2.6rem);
  transform: translateY(26px) scale(0.96);
  opacity: 0;
  transition: transform 0.6s var(--ease-out), opacity 0.5s ease;
}

.sent.open .sent__card { transform: translateY(0) scale(1); opacity: 1; }

.sent__card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 420px;
  height: 420px;
  transform: translate(-50%, -45%);
  background: radial-gradient(circle, rgba(87, 230, 230, 0.16), transparent 62%);
  pointer-events: none;
}

.sent__mark {
  position: relative;
  width: 92px;
  height: 92px;
  margin: 0 auto 1.6rem;
}

.sent__mark svg { width: 100%; height: 100%; overflow: visible; }

.sent__mark circle,
.sent__mark path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sent__mark circle {
  stroke: var(--aqua);
  stroke-width: 3;
  stroke-dasharray: 176;
  stroke-dashoffset: 176;
}

.sent__mark path {
  stroke: var(--paper);
  stroke-width: 4.5;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
}

.sent.open .sent__mark circle { animation: mark-ring 0.75s var(--ease-out) 0.15s forwards; }
.sent.open .sent__mark path   { animation: mark-check 0.45s var(--ease-out) 0.72s forwards; }
.sent.open .sent__mark        { animation: mark-pop 0.5s var(--ease-out) 0.95s; }

@keyframes mark-ring  { to { stroke-dashoffset: 0; } }
@keyframes mark-check { to { stroke-dashoffset: 0; } }
@keyframes mark-pop {
  0%, 100% { transform: scale(1); }
  45% { transform: scale(1.07); }
}

.sent__card h3 {
  font-size: clamp(1.6rem, 4.5vw, 2.1rem);
  margin-bottom: 0.8rem;
}

.sent__card p {
  color: var(--grey);
  font-size: 1rem;
  margin-bottom: 1.8rem;
}

.sent__card .btn { justify-content: center; }

.btn[disabled] { opacity: 0.6; pointer-events: none; }

.form__hint {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  font-size: 0.92rem;
  color: var(--grey);
  line-height: 1.55;
}

.form__hint a { color: var(--paper); text-decoration: underline; }
.form__hint a:hover { color: var(--aqua); }

@media (prefers-reduced-motion: reduce) {
  .sent, .sent__card { transition: none; }
  .sent__mark circle, .sent__mark path { stroke-dashoffset: 0; animation: none !important; }
  .sent__mark { animation: none !important; }
}

.nav__logo,
.footer__logo {
  display: inline-flex;
  align-items: center;
}

.logo-mark {
  width: 1.5em;
  height: 1.38em;
  flex: none;
  overflow: visible;
  margin-right: 0.55rem;
}

.footer__logo .logo-mark {
  width: 1.55em;
  height: 1.43em;
}

@media (max-width: 339px) {
  .nav__logo span:not(.dot) { display: none; }
  .nav__logo .dot { display: none; }
  .logo-mark { margin-right: 0; height: 1.6em; }
}

.rotator {
  display: inline-block;
  height: 1.12em;
  overflow: hidden;
  vertical-align: bottom;

  padding-inline: 0.06em;
  margin-inline: -0.06em;
}

.rotator__list {
  display: flex;
  flex-direction: column;
  animation: rotator-lauf 13.5s infinite;
  will-change: transform;
}

.rotator__list span {
  height: 1.12em;
  line-height: 1.12em;
  color: var(--aqua);
  white-space: nowrap;
}

@keyframes rotator-lauf {
  0%,     13.2% { transform: translateY(0); }
  16.7%,  29.9% { transform: translateY(-1.12em); }
  33.4%,  46.6% { transform: translateY(-2.24em); }
  50.1%,  63.3% { transform: translateY(-3.36em); }
  66.8%,  80.0% { transform: translateY(-4.48em); }
  83.5%,  96.7% { transform: translateY(-5.60em); }
  100%          { transform: translateY(-6.72em); }
}

@media (prefers-reduced-motion: reduce) {
  .rotator__list { animation: none; }
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.intro-grid__bild {
  width: 100%;
  max-width: 560px;
  height: auto;
  justify-self: end;
}

@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .intro-grid__bild { justify-self: center; max-width: 460px; }
}
