@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Josefin+Slab:ital,wght@0,100..700;1,100..700&display=swap");
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, navigation, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, navigation, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

li {
  list-style-type: none;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: normal;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

@font-face {
  font-family: "Vortigra";
  src: url("../../fonts/Vortigra.eot");
  src: url("../../fonts/Vortigra.eot?#iefix") format("embedded-opentype"), url("../../fonts/Vortigra.woff2") format("woff2"), url("../../fonts/Vortigra.woff") format("woff"), url("../../fonts/Vortigra.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* -----------------------------------------------------------------------------
 OPTIONALER ALT-BLOCK – deaktiviert
------------------------------------------------------------------------------- */
/*
@font-face {
  font-family: 'Jost-SemiBoldItalic';
  src: url('../fonts/Jost-SemiBoldItalic.eot');
  src: local('Jost SemiBold Italic'), local('Jost-SemiBoldItalic'),
       url('../fonts/Jost-SemiBoldItalic.eot?#iefix') format('embedded-opentype'),
       url('../fonts/Jost-SemiBoldItalic.woff2') format('woff2'),
       url('../fonts/Jost-SemiBoldItalic.woff') format('woff'),
       url('../fonts/Jost-SemiBoldItalic.ttf') format('truetype'),
       url('../fonts/Jost-SemiBoldItalic.svg#Jost-SemiBoldItalic') format('svg');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
*/
:root {
  --width: calc(100svw - 200px);
  --tablet-width: calc(100svw - 100px);
  --mobile-width: calc(100svw - 20px);
}

@media (min-width: 768px) and (max-width: 1024px) {
  :root {
    --width: var(--tablet-width);
  }
}
@media (max-width: 767px) {
  :root {
    --width: var(--mobile-width);
  }
}
.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100svw;
  height: 100svh;
  background: #161616;
  z-index: 99999;
  transition: opacity 0.6s ease;
  overflow: hidden;
}
.loading.hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.loading__logo {
  border-radius: 20px;
  width: 300px;
  height: 300px;
  animation-delay: 1s;
  animation: shadowBuild 2s ease forwards;
}

.loading.is-hiding {
  opacity: 0;
  pointer-events: none; /* sofort blockfrei, aber noch sichtbar fürs Fade */
}

.loading.is-gone {
  visibility: hidden;
  display: none;
}

/* verhindert Bounce/Scroll generell während des Ladens */
html.loading-active,
body.loading-active {
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

/* harte Scroll-Sperre: Body wird fixiert */
body.scroll-lock {
  position: fixed;
  width: 100%;
}

@keyframes shadowBuild {
  0% {
    box-shadow: none;
  }
  50% {
    box-shadow: 0px 63px 18px rgba(255, 139, 67, 0), 0px 40px 16px rgba(255, 139, 67, 0.04), 0px 23px 14px rgba(255, 139, 67, 0.13), 0px 10px 10px rgba(255, 139, 67, 0.21), 0px 3px 6px rgba(255, 139, 67, 0.25);
  }
  100% {
    box-shadow: 0px 63px 18px rgba(0, 0, 0, 0), 0px 40px 16px rgba(0, 0, 0, 0.04), 0px 23px 14px rgba(0, 0, 0, 0.13), 0px 10px 10px rgba(0, 0, 0, 0.21), 0px 3px 6px rgba(0, 0, 0, 0.25);
  }
}
html,
body {
  background: #F0F0F0;
  color: #8D8D8D;
  font-family: "Josefin Slab", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  overflow-x: hidden;
  scroll-behavior: smooth;
  width: 100%;
}

div, span, li {
  font-family: "Josefin Slab", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
}

a {
  color: #FF8B43;
  text-decoration: none;
  transition: all ease-in-out 0.2s;
  display: inline-block;
  border-bottom: 1px solid #FF8B43;
}
a:hover {
  color: #8D8D8D;
  border-color: #8D8D8D;
}

p {
  font-family: "Josefin Slab", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  color: #161616;
}
p + p {
  padding-top: 20px;
}

.wrapp {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: center;
}
.parallax-element {
  position: relative;
  top: 0;
  will-change: transform;
  transition: transform 0.1s linear;
}

nav.toc ul li a {
  color: #8D8D8D;
  font-family: "Josefin Slab", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
}

.power-box {
  color: #161616;
  background: linear-gradient(116.91deg, rgba(227, 165, 114, 0.3098039216), rgb(255, 255, 255)) no-repeat;
  border-radius: 10px;
  padding: 0 0 40px;
  border: 1px solid #ffffff;
  box-sizing: border-box;
  border-radius: 24px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 1px 2px rgba(8, 8, 8, 0.2), 0 4px 4px rgba(8, 8, 8, 0.0784313725), 0 7px 0 -12px #077ac7, inset 0 6px 12px rgba(255, 255, 255, 0.1215686275);
  cursor: pointer;
  transform: scale(1);
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .power-box {
    padding-bottom: 20px;
  }
}
.power-box h3 {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
  background: linear-gradient(270deg, rgba(169, 169, 169, 0.76) 100%, rgb(83, 83, 83) 50% 25%);
  padding: 24px 40px 20px;
  color: white;
  border-radius: 20px 20px 0 0;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 1px 2px rgba(8, 8, 8, 0.2), 0 4px 4px rgba(8, 8, 8, 0.0784313725), 0 7px 0 -12px #077ac7, inset 0 6px 12px rgba(255, 255, 255, 0.1215686275);
}
@media (max-width: 767px) {
  .power-box h3 {
    padding: 24px 20px 20px;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 32px;
  }
}
.power-box .button--call {
  width: fit-content;
  background-color: #161616;
}

.power-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 1px 2px rgba(8, 8, 8, 0.2), 0 4px 4px rgba(8, 8, 8, 0.0784313725), 0 7px 0 -12px #077ac7, inset 0 6px 12px rgba(255, 255, 255, 0.1215686275);
}
.power-content img {
  width: 100%;
  border-radius: 16px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 1px 2px rgba(8, 8, 8, 0.2), 0 4px 4px rgba(8, 8, 8, 0.0784313725), 0 7px 0 -12px #077ac7, inset 0 6px 12px rgba(255, 255, 255, 0.1215686275);
}

.power-pull {
  width: 50%;
}
@media (max-width: 767px) {
  .power-pull {
    width: 100%;
    order: 1;
  }
}

.power-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: 10px;
  width: 45%;
}
@media (max-width: 767px) {
  .power-list {
    width: 100%;
    order: 2;
  }
}
.power-list span {
  font-family: "Josefin Slab", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
}
.power-list span svg {
  background: #09a772;
  color: #ffffff;
  border-radius: 50%;
  margin-bottom: -2px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 1px 2px rgba(8, 8, 8, 0.2), 0 4px 4px rgba(8, 8, 8, 0.0784313725), 0 7px 0 -12px #077ac7, inset 0 6px 12px rgba(255, 255, 255, 0.1215686275);
}

.power-flex {
  gap: 40px;
  padding: 40px 40px 0;
}
@media (max-width: 767px) {
  .power-flex {
    padding: 20px 20px 0;
  }
}

/* === Reveal on Viewport – konfliktfrei mit SVG-Rotation =================== */
:root {
  --reveal-translate: -50px;
  --reveal-blur: 30px;
  --reveal-dur: 800ms;
  --reveal-ease: cubic-bezier(.22,.61,.36,1);
  --reveal-stagger: 80ms;
}

/* Standard-Zustand */
.reveal {
  opacity: 0;
  filter: blur(var(--reveal-blur));
  will-change: opacity, filter, translate; /* translate statt transform */
  transition: opacity var(--reveal-dur) var(--reveal-ease), filter calc(var(--reveal-dur) + 200ms) var(--reveal-ease);
}

/* Modern: translate-Eigenschaft (kollidiert nicht mit transform: rotate) */
@supports (translate: 0 0) {
  .reveal {
    translate: 0 var(--reveal-translate);
  }
  .reveal.is-in {
    opacity: 1;
    filter: blur(0);
    translate: 0 0;
  }
}
/* Fallback: Wo translate nicht unterstützt wird */
@supports not (translate: 0 0) {
  .reveal {
    transition: opacity var(--reveal-dur) var(--reveal-ease), filter calc(var(--reveal-dur) + 200ms) var(--reveal-ease), transform var(--reveal-dur) var(--reveal-ease);
  }
  /* Für normale Elemente ok */
  .reveal:not(svg) {
    transform: translateY(var(--reveal-translate));
  }
  .reveal.is-in:not(svg) {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }
  /* Für SVGs: KEIN transform im Reveal, damit deren Rotation erhalten bleibt */
  .reveal:is(svg) { /* nur fade + blur */ }
  .reveal.is-in:is(svg) {
    opacity: 1;
    filter: blur(0);
  }
}
/* Gruppen-Stagger bleibt wie gehabt */
[data-reveal-group] > .reveal {
  transition-delay: calc(var(--i, 0) * var(--reveal-stagger));
}

/* Varianten (optional) */
.reveal[data-reveal=fast] {
  --reveal-dur: 420ms;
}

.reveal[data-reveal=slow] {
  --reveal-dur: 800ms;
}

.reveal[data-reveal=softer] {
  --reveal-translate: -8px;
  --reveal-blur: 6px;
}

/* A11y */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    filter: none !important;
    translate: none !important;
    transition: none !important;
  }
}
@keyframes wave {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(3px);
  }
  100% {
    transform: translateY(0);
  }
}
:root {
  --topbar-pad-x: 100px;
  --topbar-h: 72px; /* mobile Höhe */
  --c-glass: #bbbbbc;
  --c-light: #fff;
  --c-dark: #000;
  --c-content: #224;
  --c-action: #0052f5;
  --c-bg: #E8E8E9;
  --glass-reflex-dark: 1;
  --glass-reflex-light: 1;
  --saturation: 150%;
  font-size: 20px;
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  background: var(--c-bg);
  color: var(--c-content);
}

@media (max-width: 1000px) {
  :root {
    --topbar-pad-x: 30px;
  }
}
.topbar {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: space-between;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100svw;
  padding: 20px var(--topbar-pad-x);
  z-index: 99999;
  background-color: transparent;
  backdrop-filter: none;
  border: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
  /* Logo */
  /* Burger (jetzt auch auf Desktop sichtbar) */
  /* Navigation:
     - Desktop: per Burger ein-/ausblendbar
     - Mobile: Slide-down-Panel wie gehabt
  */
  /* Zustand: Menü geöffnet (Mobile) */
  /* Zustand: Menü geöffnet (Desktop) – optional gleiche Icon-Animation */
}
@media (max-width: 1000px) {
  .topbar {
    padding: 16px var(--topbar-pad-x);
    min-height: var(--topbar-h);
  }
}
.topbar__navibox {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-end;
  gap: 20px;
  margin-top: -5px;
  z-index: 2;
}
.topbar::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 0;
  left: 0;
  top: 0;
  background: rgba(240, 240, 240, 0.65);
  transition: all ease-in-out 0.2s;
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid transparent;
  backdrop-filter: blur(2px) !important;
  filter: url(#glass-distortion);
  z-index: -1;
}
.topbar::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-sizing: border-box;
  backdrop-filter: blur(0);
  transition: all ease-in-out 0.2s;
  z-index: 1;
  box-shadow: 0;
}
.topbar__logo {
  width: 51px;
  height: 11px;
  margin: 45px 0 0 26px;
  z-index: 99999;
  fill: #ffffff;
  transition: all 500ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.topbar__logo path:nth-child(5) {
  transition: all ease-in-out 0.6s;
}
.topbar__logo-link {
  width: 100px;
  height: 100px;
  background: #161616;
  border-radius: 7px;
  margin-top: -10px;
  overflow: hidden;
  transition: all 500ms cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 10;
}
.topbar__burger {
  display: inline-flex; /* <-- wichtig: sichtbar per Default */
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: 8px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  background: transparent;
  box-shadow: 0;
}
.topbar__burger:active {
  transform: scale(0.96);
}
.topbar__burger:focus-visible {
  outline: 2px solid #FF8B43;
  outline-offset: 2px;
}
.topbar__burger-box {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 16px;
}
.topbar__burger-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: #161616;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.topbar__burger-line:nth-child(1) {
  top: 0;
}
.topbar__burger-line:nth-child(2) {
  top: 7px;
}
.topbar__burger-line:nth-child(3) {
  top: 14px;
}
.topbar__navi {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: space-between;
  gap: 20px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  /* DESKTOP (≥ 831px): standardmäßig versteckt */
  /* MOBILE Panel (unverändert) */
}
@media (min-width: 831px) {
  .topbar__navi {
    transform: translateX(80px);
    opacity: 0;
    pointer-events: none;
    background: transparent;
    padding: 0;
    backdrop-filter: none;
    box-shadow: none;
  }
  .topbar.is-open-desktop .topbar__navi {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
}
@media (max-width: 830px) {
  .topbar__navi {
    position: fixed;
    left: 0;
    right: 0;
    top: calc(env(safe-area-inset-top, 0px) + var(--topbar-h));
    background: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px var(--topbar-pad-x) 16px;
    max-height: calc(100svh - var(--topbar-h) - env(safe-area-inset-top, 0px));
    overflow: auto;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
  }
  .topbar.is-open .topbar__navi {
    transform: translateY(0%);
    opacity: 1;
    pointer-events: auto;
    padding-top: 60px;
    margin-top: 0;
    top: 0;
    height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    flex: 0 1 auto;
    justify-content: center;
  }
}
.topbar__navi-link {
  color: #161616;
  text-decoration: none;
  transform-origin: center;
  transform: scale(1) rotate(0deg);
  transition: all 0.6s ease-out;
  border-bottom: 0;
  /* Mobile: größere Tap-Ziele */
}
.topbar__navi-link span {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
}
.topbar__navi-link.active {
  transition: all 0.6s ease-out;
  transform: scale(0.85);
}
.topbar__navi-link.active span {
  color: #FF8B43;
}
@media (max-width: 830px) {
  .topbar__navi-link {
    display: block;
    padding: 14px 0;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
  .topbar__navi-link span {
    font-family: "Josefin Sans", sans-serif;
    font-weight: 400;
    font-size: 50px;
    line-height: 50px;
  }
}
.topbar.scrolled {
  padding: 20px 50px 10px;
  height: 70px;
  width: calc(100svw - var(--topbar-pad-x));
  margin-left: 50px;
  margin-top: 20px;
  border-radius: 100px;
}
.topbar.scrolled:hover {
  padding: 20px 55px;
}
.topbar.scrolled:hover:before {
  backdrop-filter: blur(20px) !important;
}
.topbar.scrolled:hover .topbar__burger {
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 1px 2px rgba(8, 8, 8, 0.2), 0 4px 4px rgba(8, 8, 8, 0.0784313725), 0 7px 0 -12px #077ac7, inset 0 6px 12px rgba(255, 255, 255, 0.1215686275);
}
.topbar.scrolled::before {
  height: 100%;
  backdrop-filter: blur(10px);
  transition: all ease-in-out 1s;
}
.topbar.scrolled::after {
  backdrop-filter: blur(5px);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 10%), transparent), inset 1.8px 3px 0px -2px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 90%), transparent), inset -2px -2px 0px -2px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 80%), transparent), inset -3px -8px 1px -6px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 60%), transparent), inset -0.3px -1px 4px 0px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 12%), transparent), inset -1.5px 2.5px 0px -2px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent), inset 0px 3px 4px -2px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent), inset 2px -6.5px 1px -4px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 10%), transparent), 0px 1px 5px 0px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 10%), transparent), 0px 6px 16px 0px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 8%), transparent);
}
@media (max-width: 1000px) {
  .topbar.scrolled {
    padding: 20px 40px;
    width: calc(100svw - 60px);
    margin-left: 30px;
  }
}
@media (max-width: 767px) {
  .topbar.scrolled {
    width: calc(100svw - 50px);
    margin-left: 20px;
  }
}
.topbar.scrolled .topbar__logo {
  transform: rotate(0deg);
  width: 120px;
  height: 20px;
  margin: 14px 0 0 -54px;
  fill: transparent;
  transition: all ease-in-out 0.6s;
}
.topbar.scrolled .topbar__logo path:nth-child(5) {
  fill: #ffffff;
  transition: all ease-in-out 0.6s;
}
.topbar.scrolled .topbar__logo-link {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  margin-top: -10px;
  background: #161616;
  transition: all ease-in-out 0.6s;
  border-bottom: 0;
}
.topbar.is-open .topbar__burger .topbar__burger-line:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}
.topbar.is-open .topbar__burger .topbar__burger-line:nth-child(2) {
  opacity: 0;
}
.topbar.is-open .topbar__burger .topbar__burger-line:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}
.topbar.is-open-desktop .topbar__burger .topbar__burger-line:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}
.topbar.is-open-desktop .topbar__burger .topbar__burger-line:nth-child(2) {
  opacity: 0;
}
.topbar.is-open-desktop .topbar__burger .topbar__burger-line:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}
.topbar.is-open-desktop.scrolled {
  background: rgba(255, 255, 255, 0.75);
}

/* Body-Lock wenn Menü offen */
@media (max-width: 830px) {
  .no-scroll {
    overflow: hidden;
    height: 100svh;
    touch-action: none;
  }
}

/* Motion-Respect */
@media (prefers-reduced-motion: reduce) {
  .topbar,
  .topbar * {
    transition: none !important;
    animation: none !important;
  }
}
/* Ensure the path can transform around its own box and not get clipped */
.topbar__logo {
  overflow: visible;
  transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1), fill 1s ease;
}

.topbar__logo .logo-piece--spin {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 500ms cubic-bezier(0.22, 0.61, 0.36, 1), fill 500ms ease;
  will-change: transform;
}

/* On hover over the whole logo link, animate only the 5th path */
.topbar__logo-link:hover .topbar__logo {
  transform: scale(1.1);
}
.topbar__logo-link:hover .topbar__logo .logo-piece--spin {
  transform: scale(1.05) rotate(360deg);
  fill: #FF8B43 !important;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .topbar__logo .logo-piece--spin {
    transition: none;
  }
}
.topbar.scrolled.scrolled-overflow {
  overflow: hidden;
}

@keyframes addOverflow {
  to {
    overflow: hidden;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg {
    transform: none !important;
  }
}
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero {
  display: block;
  position: relative;
  width: 100svw;
  height: 100svh;
  overflow: hidden;
  padding: 210px 20px 20px;
  z-index: 2;
  box-sizing: border-box;
  isolation: isolate; /* saubere Ebenen */
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 150px at var(--mx, 50%) var(--my, 50%), rgba(255, 139, 67, 0.2), transparent 70%);
  pointer-events: none;
  z-index: 1;
  display: none;
}
.hero-bg, .hero .logo-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(100%, 1000px); /* max 1000px, sonst responsive */
  height: auto;
  height: 100svh;
  width: auto;
  transform: translate(-49%, -50%); /* zentriert */
  will-change: transform, filter;
  z-index: -1;
  filter: blur(0);
}
.hero .logo-bg {
  z-index: -2;
  filter: blur(5px);
  width: 85svw;
  height: auto;
}
.hero-overlay {
  position: absolute;
  right: 0;
  width: 50%;
  height: 200px;
  top: 0;
  margin-top: 45svh;
  background: #FF8B43;
  mix-blend-mode: multiply;
  transform: translateX(100px);
  animation-delay: 2s;
  animation: slideIn 0.8s ease-out forwards;
  display: none;
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-end;
  height: 100%;
  z-index: 2;
}
.hero__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  width: auto;
  padding-top: 17px;
  z-index: 2;
}
@media (max-width: 767px) {
  .hero__intro {
    margin-bottom: 50px;
  }
}
.hero__intro span {
  letter-spacing: 2px;
  transition: all ease-in-out 0.6s;
}
.hero__intro a {
  transition: all ease-in-out 0.6s;
  transform: scale(1);
  height: 40px;
  padding-top: 10px;
  border-bottom: 0;
}
.hero__intro:hover a {
  transform: scale(1.1);
}
.hero__title {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 16px;
  color: #161616;
  padding: 0;
  text-transform: uppercase;
  text-align: center;
  transform: scale(1);
}
@media (max-width: 767px) {
  .hero__title {
    font-family: "Josefin Sans", sans-serif;
    font-weight: 400;
    font-size: 26px;
    line-height: 24px;
  }
}
.hero__title span {
  display: block;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 12.5px;
  line-height: 24px;
}
@media (max-width: 767px) {
  .hero__title span {
    line-height: 18px;
  }
}
.hero__cta {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: center;
  padding: 0;
  border-radius: 20px;
  box-shadow: 0px 63px 18px 0px rgba(0, 0, 0, 0), 0px 40px 16px 0px rgba(0, 0, 0, 0.04), 0px 23px 14px 0px rgba(0, 0, 0, 0.13), 0px 10px 10px 0px rgba(0, 0, 0, 0.21), 0px 3px 6px 0px rgba(0, 0, 0, 0.25);
}
.hero__cta a {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #F0F0F0;
  padding: 12px 20px 10px;
  display: block;
  background: #ffffff;
  transition: all ease-in-out 0.6s;
}
.hero__cta a:first-child {
  border-radius: 20px 0 0 20px;
  border-right: 1px solid #ebebeb;
}
.hero__cta a:last-child {
  border-radius: 0 20px 20px 0;
  border-left: 1px solid #ebebeb;
}
.hero__cta a:hover {
  background: #F0F0F0;
  color: #8D8D8D;
  text-shadow: 0px 63px 18px rgba(0, 0, 0, 0), 0px 40px 16px rgba(0, 0, 0, 0.04), 0px 23px 14px rgba(0, 0, 0, 0.13), 0px 10px 10px rgba(0, 0, 0, 0.21), 0px 3px 6px rgba(0, 0, 0, 0.25);
}
.hero__cta-title {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  padding-bottom: 10px;
}
.hero__cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  width: 100%;
}

.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover; /* passt Video auf die Section */
  z-index: -2;
  opacity: 0.1;
  filter: blur(7px);
  display: none;
}

#logo-slider, #logo-slider-2 {
  max-width: 100svw;
  overflow: hidden;
  z-index: 2;
  margin: 5px 0;
}

#logo-slider .splide__slide, #logo-slider-2 .splide__slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background: #d2d2d2;
  border-radius: 10px;
}

#logo-slider img, #logo-slider-2 img {
  max-height: 200px;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

#logo-slider img:hover, #logo-slider-2 img:hover {
  opacity: 1;
}

.splide__track {
  position: relative;
  margin-top: 0;
}

.section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  width: 100%;
  max-width: calc(100svw - 200px);
  margin-top: 200px;
  box-sizing: border-box;
}
@media (max-width: 1000px) {
  .section {
    padding: 20px;
    width: calc(100svw - 20px);
    max-width: 1000px;
    margin-top: 100px;
  }
}
.section--sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: center;
  margin-top: 50px;
}
.section--sub .section__subtitle {
  margin-bottom: -30px;
  z-index: 9;
  background: rgba(255, 139, 67, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-sizing: border-box;
  padding: 10px;
  border-radius: 12px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 1px 2px rgba(8, 8, 8, 0.2), 0 4px 4px rgba(8, 8, 8, 0.0784313725), 0 7px 0 -12px #077ac7, inset 0 6px 12px rgba(255, 255, 255, 0.1215686275);
  cursor: pointer;
  transform: scale(1);
  transition: all 0.3s ease;
}
@media (max-width: 762px) {
  .section--sub {
    padding-left: 10px;
  }
}
.section__title span {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 75px;
  line-height: 25px;
  color: #161616;
  padding: 0 10px 40px;
  text-transform: uppercase;
  letter-spacing: 10px;
}
@media (max-width: 1000px) {
  .section__title span {
    font-family: "Josefin Sans", sans-serif;
    font-weight: 400;
    font-size: 75px;
    line-height: 25px;
    letter-spacing: 10px;
  }
}
@media (max-width: 767px) {
  .section__title span {
    font-family: "Josefin Sans", sans-serif;
    font-weight: 400;
    font-size: 50px;
    line-height: 20px;
    letter-spacing: 10px;
  }
}
@media (max-width: 600px) {
  .section__title span {
    font-family: "Josefin Sans", sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 0px;
    letter-spacing: 6px;
  }
}
.section__subtitle {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
  color: #ffffff;
  background: linear-gradient(270deg, rgba(169, 169, 169, 0.76) 100%, rgb(83, 83, 83) 50% 25%);
  padding: 14px 15px 10px;
  margin-bottom: 40px;
  border-radius: 10px;
  display: inline-block;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 1px 2px rgba(8, 8, 8, 0.2), 0 4px 4px rgba(8, 8, 8, 0.0784313725), 0 7px 0 -12px #077ac7, inset 0 6px 12px rgba(255, 255, 255, 0.1215686275);
}
@media (max-width: 767px) {
  .section__subtitle {
    font-family: "Josefin Sans", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
  }
}
.section--prozess {
  position: relative;
}
.section--prozess .section__overlay {
  display: none;
  position: absolute;
  left: 0;
  width: 50%;
  height: 75px;
  top: 0;
  margin-top: 10svh;
  margin-left: -100px;
  background: #FF8B43;
  mix-blend-mode: multiply;
}
@media (max-width: 767px) {
  .section--prozess .section__overlay {
    margin-left: -100px;
    width: 75%;
  }
}
.section--preise {
  position: relative;
  padding: 180px 100px;
  background-color: #eaeaea;
  max-width: 100%;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .section--preise {
    padding: 100px 20px;
    max-width: 100%;
  }
}
.section--preise .section__content {
  max-width: calc(100svw - 200px);
  background: red;
}
@media (max-width: 767px) {
  .section--preise .section__content {
    max-width: 100%;
  }
}
.section--preise .section__overlay {
  position: absolute;
  display: none;
  right: 0;
  width: 50%;
  height: 150px;
  top: 0;
  margin-top: 10svh;
  margin-right: -200px;
  background: #FF8B43;
  mix-blend-mode: multiply;
}
@media (max-width: 767px) {
  .section--preise .section__overlay {
    margin-left: -100px;
    width: 75%;
  }
}
.section--legal {
  margin-top: 100px;
  margin-bottom: 100px;
}
.section--legal .section__title {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
  text-transform: none;
  padding: 40px 0 10px;
}
.section--legal a {
  color: #FF8B43;
}
.section--end {
  align-items: center;
  margin-top: 100px;
}

.sub-overlay {
  width: 50svw;
  position: absolute;
}

.img-txt {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 40px;
  padding-top: 50px;
}
@media (max-width: 767px) {
  .img-txt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    flex: 0 1 auto;
    justify-content: space-between;
  }
}
.img-txt__overlay {
  display: none;
  position: absolute;
  left: 0;
  width: 50%;
  height: 200px;
  top: 0;
  margin-top: 25svh;
  margin-left: -250px;
  background: #FF8B43;
  mix-blend-mode: multiply;
}
@media (max-width: 767px) {
  .img-txt__overlay {
    margin-left: -100px;
    width: 75%;
  }
}
.img-txt__img {
  width: calc(33.3333333333% - 20px);
}
@media (max-width: 767px) {
  .img-txt__img {
    width: 75%;
  }
}
.img-txt__txt {
  font-family: "Josefin Slab", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  font-weight: 100 !important;
  width: calc(66.6666666667% - 20px);
  padding-top: 20px;
}
@media (max-width: 767px) {
  .img-txt__txt {
    width: 100%;
  }
}
.img-txt h3 {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 32px;
  color: #8D8D8D;
  padding-bottom: 20px;
}

.button {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  position: relative;
  display: inline-block;
  background: #FF8B43;
  color: #ffffff;
  padding: 15px 23px;
  margin-top: 10px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 5px;
  transform: translate(var(--tx, 0), var(--ty, 0)) scale(var(--scale, 1));
  transition: transform 0.6 ease;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 1px 2px rgba(8, 8, 8, 0.2), 0 4px 4px rgba(8, 8, 8, 0.0784313725), 0 7px 0 -12px #077ac7, inset 0 6px 12px rgba(255, 255, 255, 0.1215686275);
  border-bottom: 0;
}
.button:hover {
  color: #ffffff;
}
.button:hover::before {
  opacity: 1;
}
.button--call {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: 10px;
}
.button__img {
  border-radius: 10%;
  box-shadow: 0 0 0 1px inset color-mix(in srgb, #FFFFFF 10%, transparent), 0 0 0.75em inset color-mix(in srgb, #FFFFFF 20%, transparent);
  background-color: color-mix(in srgb, #FFFFFF 5%, transparent);
  overflow: clip;
  width: 50px;
  height: 50px;
  position: relative;
}
.button__img img {
  width: 110%;
  box-shadow: none !important;
}
.button__txt-big {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
}
.button__txt-small {
  font-family: "Josefin Slab", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  padding-left: 3px;
  font-weight: 400;
}

.cards {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: space-between;
  padding: 30px 0 50px;
}
@media (max-width: 767px) {
  .cards {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    flex: 0 1 auto;
    justify-content: flex-start;
    width: 100%;
    padding: 20px 0;
    gap: 20px;
  }
}
.cards__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: space-between;
  width: calc(33.3333333333% - 20px);
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  padding: 50px;
  box-sizing: border-box;
  position: relative;
  transition: all ease-in-out 0.3s;
  box-shadow: 0 0 0 1px inset color-mix(in srgb, #FFFFFF 10%, transparent), 0 0 0.75em inset color-mix(in srgb, #FFFFFF 20%, transparent);
  background-color: color-mix(in srgb, #FFFFFF 5%, transparent);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-sizing: border-box;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 1px 2px rgba(8, 8, 8, 0.2), 0 4px 4px rgba(8, 8, 8, 0.0784313725), 0 7px 0 -12px #077ac7, inset 0 6px 12px rgba(255, 255, 255, 0.1215686275);
  cursor: pointer;
  transform: scale(1);
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .cards__card {
    width: 100%;
    padding: 20px;
  }
}
@media (max-width: 500px) {
  .cards__card {
    width: 100%;
  }
}
.cards__card-overlay {
  position: absolute;
  left: 0;
  width: 35%;
  height: 60px;
  top: 0;
  margin-top: 30px;
  margin-left: 0;
  left: 0;
  background: #FF8B43;
  mix-blend-mode: multiply;
  transition: all ease-in-out 0.3s;
}
.cards__card + svg {
  width: 70px;
  height: 70px;
  /* position: absolute; */
  margin-left: -20px;
  z-index: 2;
  margin-right: -20px;
}
@media (max-width: 767px) {
  .cards__card + svg {
    margin: 0;
    transform: rotate(90deg);
    width: 100%;
  }
}
.cards__card:hover .cards__card-overlay {
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
}
.cards__icon {
  height: 50px;
  display: inline;
  margin-right: 20px;
  margin-bottom: -10px;
}
@media (max-width: 767px) {
  .cards__icon {
    margin-bottom: 10px;
    display: block;
  }
}
.cards__title {
  padding-bottom: 20px;
}
.cards__title span {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 30px;
  display: inline-block;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .cards__title {
    font-family: "Josefin Sans", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
  }
}

.labels {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.labels__label {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: center;
  font-family: "Josefin Slab", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  gap: 10px;
  border-radius: 10px;
  padding: 7px 20px;
  border: 1px solid #e2e2e2;
  position: relative;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 1px 2px rgba(8, 8, 8, 0.2), 0 4px 4px rgba(8, 8, 8, 0.0784313725), 0 7px 0 -12px #077ac7, inset 0 6px 12px rgba(255, 255, 255, 0.1215686275);
}
.labels__icon {
  width: 25px;
  display: inline-block;
}
.labels__cursor {
  background: url(/assets/img/cursor.png);
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 20px;
  margin-top: 30px;
  transform: rotate(-45deg);
}

/* ===== Tooltips: additive Styles (Pseudo-Variante) ===== */
/* Nutze diese, wenn du KEINEN globalen Tooltip brauchst */
.labels--tooltips .labels__label {
  position: relative; /* für absolute Tooltip-Positionierung */
  cursor: default; /* behält Standard-Optik; ändere auf pointer, wenn gewünscht */
}
.labels--tooltips .labels__label::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 14px);
  transform: translateX(-50%) translateY(6px);
  width: min(420px, 90vw);
  padding: 14px 16px;
  font-size: 0.95rem;
  line-height: 1.45;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 30;
  white-space: normal;
  text-align: left;
}
.labels--tooltips .labels__label::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%) scale(0.98);
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.9);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  opacity: 0;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 29;
}
.labels--tooltips .labels__label:hover::after, .labels--tooltips .labels__label:focus-visible::after, .labels--tooltips .labels__label.is-open::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.labels--tooltips .labels__label:hover::before, .labels--tooltips .labels__label:focus-visible::before, .labels--tooltips .labels__label.is-open::before {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
.labels--tooltips .labels__label.tooltip--left::after, .labels--tooltips .labels__label.tooltip--left::before {
  left: 20%;
  transform: translateX(-20%) translateY(0);
}
.labels--tooltips .labels__label.tooltip--right::after, .labels--tooltips .labels__label.tooltip--right::before {
  left: 80%;
  transform: translateX(-80%) translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .labels--tooltips .labels__label::after, .labels--tooltips .labels__label::before {
    transition: none;
  }
}

@media (max-width: 640px) {
  .labels--tooltips .labels__label::after {
    bottom: auto;
    top: calc(100% + 14px);
    left: 0;
    transform: translateX(0) translateY(6px);
  }
  .labels--tooltips .labels__label:hover::after,
  .labels--tooltips .labels__label:focus-visible::after,
  .labels--tooltips .labels__label.is-open::after {
    transform: translateX(0) translateY(0);
  }
  .labels--tooltips .labels__label::before {
    bottom: auto;
    top: calc(100% + 8px);
    left: 24px;
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
  }
}
.labels--tooltips .labels__label:not([data-tooltip])::after,
.labels--tooltips .labels__label:not([data-tooltip])::before {
  display: none;
}

/* ===== Wenn du den globalen Tooltip nutzt, deaktiviere die Pseudo-Tooltips ===== */
.labels--tooltips--global .labels__label::after,
.labels--tooltips--global .labels__label::before {
  content: none !important;
  display: none !important;
}

/* ===== Globaler Tooltip (mausfolgend, viewport-safe) ===== */
.tooltip-bubble {
  position: fixed;
  top: 20px;
  left: -20px;
  transform: translate(-9999px, -9999px);
  max-width: min(420px, 90vw);
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  line-height: 1.45;
  font-size: 0.95rem;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.12s ease;
  white-space: normal;
}

.tooltip-bubble.is-visible {
  opacity: 1;
}

.tooltip-bubble::after {
  content: none !important;
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .tooltip-bubble {
    transition: none;
  }
}
/* HARD KILL: Pseudo-Tooltips vollständig abschalten, wenn global aktiv */
.labels--tooltips--global .labels__label::before,
.labels--tooltips--global .labels__label::after,
.labels--tooltips--global .labels__label:hover::before,
.labels--tooltips--global .labels__label:hover::after,
.labels--tooltips--global .labels__label:focus::before,
.labels--tooltips--global .labels__label:focus::after,
.labels--tooltips--global .labels__label:focus-visible::before,
.labels--tooltips--global .labels__label:focus-visible::after,
.labels--tooltips--global .labels__label.is-open::before,
.labels--tooltips--global .labels__label.is-open::after {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: none !important;
}

/* =========================
   Preise / Container
   ========================= */
.preise {
  --gap: 40px;
  position: relative;
  width: 100%;
  margin-top: 25px;
  transition: height 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
  isolation: isolate;
}
@media (max-width: 767px) {
  .preise {
    --gap: 20px;
  }
}

/* =========================
   Stage (stapelt die Gruppen übereinander, aber im Flow)
   ========================= */
.preise__stage {
  display: grid; /* wichtig: kein absolute mehr nötig */
  grid-template-columns: 1fr;
  position: relative;
}

/* =========================
   Gruppen (Subscription/Projekt)
   ========================= */
.preise__group {
  /* FIX: absolute/inset entfernt, damit die Sektion Höhe hat */
  /* position: absolute;
     inset: 0; */
  grid-area: 1/1; /* beide Gruppen in dieselbe Grid-Zelle legen */
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: var(--gap);
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform, opacity;
  pointer-events: none;
  opacity: 0;
  transform: translateX(28px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 1px 2px rgba(8, 8, 8, 0.2), 0 4px 4px rgba(8, 8, 8, 0.0784313725), 0 7px 0 -12px #077ac7, inset 0 6px 12px rgba(255, 255, 255, 0.1215686275);
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(116.91deg, rgba(227, 165, 114, 0.3098039216), rgb(255, 255, 255)) no-repeat;
}
.preise__group.is-active {
  position: static;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.preise__group:not(.is-active) {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.preise__group.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* Enter/Leave States für JS */
.preise__group.enter-from-left {
  transform: translateX(-28px);
  opacity: 0;
}

.preise__group.enter-from-right {
  transform: translateX(28px);
  opacity: 0;
}

.preise__group.leave-to-left {
  transform: translateX(-28px);
  opacity: 0;
}

.preise__group.leave-to-right {
  transform: translateX(28px);
  opacity: 0;
}

/* =========================
   Einzelne Cards
   ========================= */
.preise__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  box-sizing: border-box;
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  flex: 1;
  min-width: 280px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 1px 2px rgba(8, 8, 8, 0.2), 0 4px 4px rgba(8, 8, 8, 0.0784313725), 0 7px 0 -12px #077ac7, inset 0 6px 12px rgba(255, 255, 255, 0.1215686275);
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform, opacity;
}

/* =========================
   Card Inhalte
   ========================= */
.preise__title {
  border-radius: 5px;
  padding: 7px 20px;
  border: 1px solid #e2e2e2;
  white-space: nowrap;
}

.preise__preis {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  padding: 20px 0;
}

.preise__list {
  margin-top: 20px;
  margin-left: 24px;
}
.preise__list li {
  margin-bottom: 10px;
  position: relative;
}
.preise__list li:last-child {
  margin-bottom: 0;
}
.preise__list li span {
  font-family: "Josefin Slab", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  display: inline-block;
  margin-left: 10px;
}
.preise__list li svg {
  position: absolute;
  left: 0;
  top: 2px;
  margin-left: -27px;
}
.preise__list li svg path:nth-child(2) {
  fill: green;
}

.preise__button {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  position: relative;
  display: block;
  background: #FF8B43;
  color: #ffffff;
  padding: 15px 23px;
  margin: 30px 0 10px;
  width: 100%;
  border-radius: 5px;
  box-sizing: border-box;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 1px 2px rgba(8, 8, 8, 0.2), 0 4px 4px rgba(8, 8, 8, 0.0784313725), 0 7px 0 -12px #077ac7, inset 0 6px 12px rgba(255, 255, 255, 0.1215686275);
  transform: translate(var(--tx, 0), var(--ty, 0)) scale(var(--scale, 1));
  transition: all 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.preise__button span {
  display: block;
  position: relative;
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 100%;
}
.preise__button span::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 50%;
  text-align: center;
  width: 100%;
  color: #161616;
  opacity: 0;
  transition: all ease-in-out 0.2s;
}
.preise__button:hover {
  color: #ffffff;
}
.preise__button:hover span {
  transform: translateY(-50%);
  color: #FF8B43;
}
.preise__button:hover span::after {
  opacity: 1;
}
.preise__button:hover::before {
  opacity: 1;
}

.preise__call {
  color: #FF8B43;
  position: relative;
  text-align: center;
  margin-bottom: 20px;
}
.preise__call::after {
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  display: block;
  left: 0;
  bottom: 0;
  background: #FF8B43;
  transition: all ease-in-out 0.3s;
}
.preise__call:hover:after {
  background: #8D8D8D;
}

/* =========================
   Accessibility / Reduced Motion
   ========================= */
@media (prefers-reduced-motion: reduce) {
  .preise,
  .preise__group,
  .preise__card {
    transition: none !important;
    transition-delay: 0ms !important;
  }
}
/* ===== Switcher ===== */
.switcher {
  position: relative;
  border: 5px solid #eaeaea;
  border-radius: 5px;
  overflow: hidden;
  margin: 40px 0 0;
  background: transparent;
  --switcher-gap: 0; /* kannst du anpassen */
  outline: 1px solid #8D8D8D;
  box-shadow: 0 0.450581px rgba(255, 255, 255, 0.3019607843), 0 0 36.0465px rgba(255, 255, 255, 0.0588235294);
  /* Highlight-Thumb */
}
.switcher__btn {
  position: relative;
  z-index: 2; /* über dem Thumb */
  flex: 1 1 0;
  text-align: center;
  appearance: none;
  border: 0;
  background: none;
  padding: 0.6rem 1.5rem;
  cursor: pointer;
  font: inherit;
  line-height: 1;
  color: currentColor;
  transition: color 0.3s ease;
}
.switcher__btn.is-active {
  color: #fff;
}
.switcher::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%; /* Hälfte, weil 2 Buttons */
  height: 100%;
  border-radius: 5px;
  background: #FF8B43;
  transform: translateX(var(--x, 0%));
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 1px 2px rgba(8, 8, 8, 0.2), 0 4px 4px rgba(8, 8, 8, 0.0784313725), 0 7px 0 -12px #077ac7, inset 0 6px 12px rgba(255, 255, 255, 0.1215686275);
  z-index: 1;
}

.section--faq {
  display: grid;
  grid-template-columns: 1fr 1fr; /* zwei Spalten */
  gap: 24px;
  align-items: start;
}

.section--faq .section__title {
  grid-column: 1/-1;
  margin-bottom: 10px;
}

/* Karten-Style */
.faq-item {
  background: #2a292e;
  border-radius: 10px;
  overflow: hidden; /* hält Ränder sauber */
  width: 100%;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 1px 2px rgba(8, 8, 8, 0.2), 0 4px 4px rgba(8, 8, 8, 0.0784313725), 0 7px 0 -12px #077ac7, inset 0 6px 12px rgba(255, 255, 255, 0.1215686275);
}
@media (max-width: 767px) {
  .faq-item {
    width: 80%;
  }
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Josefin Slab", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
}

.faq-icon {
  font-weight: bold;
  transition: transform 0.3s ease;
}

/* Collapsible: Höhe + vertikale Paddings animieren (kein Shorthand!) */
.faq-answer {
  overflow: hidden;
  max-height: 0;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 0;
  padding-bottom: 0;
  transition: max-height 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), padding-top 0.3s ease, padding-bottom 0.3s ease;
  will-change: max-height;
}

.faq-item.active .faq-answer {
  /* nur vertikale Paddings setzen – L/R bleiben konstant */
  padding-top: 16px;
  padding-bottom: 20px;
}
.faq-item.active .faq-answer p {
  color: #ffffff;
}

/* Inhalte sauber an Kanten */
.faq-answer > :first-child {
  margin-top: 0;
}

.faq-answer > :last-child {
  margin-bottom: 0;
}

/* Nur vertikale Paddings im aktiven Zustand setzen (kein L/R-Shorthand) */
.faq-item.active .faq-answer {
  padding-top: 16px;
  padding-bottom: 20px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 900px) {
  .section--faq {
    grid-template-columns: 1fr;
  }
}
.footer {
  font-family: "Josefin Slab", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: center;
  background: #161616;
  width: 100%;
  max-width: 100%;
  margin-top: 100px;
  padding: 20px;
  box-sizing: border-box;
}
.footer__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: calc(100svw - 200px);
  color: #8D8D8D;
}
@media (max-width: 767px) {
  .footer__content {
    max-width: 100%;
  }
}
.footer__links {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: 20px;
}
.footer__item {
  border-bottom: 0;
  color: #ffffff;
}

.work {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
  margin-top: 100px;
  overflow: hidden;
  padding-bottom: 20px;
}
@media (max-width: 763px) {
  .work {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    flex: 0 1 auto;
    justify-content: flex-start;
    margin-top: 25px;
  }
}
.work__card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: 20px;
  width: calc(50% - 10px);
  height: 500px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid #ffffff;
  transform: scale(1);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 1px 2px rgba(8, 8, 8, 0.2), 0 4px 4px rgba(8, 8, 8, 0.0784313725), 0 7px 0 -12px #077ac7, inset 0 6px 12px rgba(255, 255, 255, 0.1215686275);
  transition: all cubic-bezier(0.22, 0.61, 0.36, 1) 0.6s;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
}
.work__card--big {
  width: calc(66% - 10px);
}
.work__card--small {
  width: calc(33% - 10px);
}
@media (max-width: 763px) {
  .work__card {
    width: 100% !important;
    height: auto;
    gap: 0;
  }
}
.work__card:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  transform: translateY(100%);
  z-index: 2;
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.22, 0.61, 0.36, 1) 0.6s;
}
.work__card:hover {
  transform: scale(0.95);
}
.work__card:hover::before {
  opacity: 1;
  transform: translateY(0);
  transition: all cubic-bezier(0.22, 0.61, 0.36, 1) 0.6s;
}
.work__card:hover .work__txt {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) 0.3s;
}
.work__card:hover .work__img img {
  transform: scale(1.25);
}
.work__card:hover .work__label, .work__card:hover .work__desc {
  opacity: 1;
}
.work__txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 20px;
  box-sizing: border-box;
  transform: translateY(100%);
  opacity: 0;
  z-index: 2;
  transition: all 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) 0.3s;
}
@media (max-width: 763px) {
  .work__txt {
    position: relative;
    transform: translateY(0);
    opacity: 1;
    transition: all 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) 0.3s;
    order: 2;
    background: rgba(0, 0, 0, 0.75);
    margin-top: 0;
    width: 100%;
    border-radius: 0 0 10px 10px;
    margin-left: 0;
  }
}
.work__title {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 46px;
  color: #ffffff;
  margin-bottom: 20px;
}
@media (max-width: 763px) {
  .work__title {
    font-family: "Josefin Sans", sans-serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 5px;
  }
}
.work__desc {
  font-family: "Josefin Slab", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #ffffff;
  font-weight: 600;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) 0.6s;
}
@media (max-width: 763px) {
  .work__desc {
    opacity: 1;
  }
}
.work__img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}
.work__img img {
  transform: scale(1);
  height: 100%;
  margin-bottom: -10px;
  transition: all 1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.3s;
}
@media (max-width: 763px) {
  .work__img {
    order: 1;
    border-radius: 10px 10px 0 0;
  }
}
.work__label {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 20px;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) 0.8s;
}
.work__label span {
  background: rgba(255, 255, 255, 0.75);
  color: #161616;
  padding: 5px 13px;
  border-radius: 5px;
  backdrop-filter: blur(5px) !important;
}
@media (max-width: 763px) {
  .work__label {
    opacity: 1;
  }
}

/* =============== Modal =============== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  align-items: center;
  justify-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.modal[aria-hidden=true] {
  opacity: 0;
}
.modal.is-open {
  pointer-events: auto;
  opacity: 1;
  backdrop-filter: blur(11px);
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100vw - 32px, 100%);
  max-height: calc(100vh - 32px);
  background: #F0F0F0;
  color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  transform: translateY(10px) scale(0.98);
  transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.25s ease;
  opacity: 0;
}
.is-open .modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}
.modal__close:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: scale(1.05);
}
.modal__close:active {
  transform: scale(0.98);
}

.modal__content {
  padding: clamp(16px, 2.5vw, 28px);
  overflow: auto;
  max-height: calc(100vh - 32px);
}

/* Inhaltstypen (Auto/Custom) */
.work-modal__figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
}
.work-modal__figure img {
  display: block;
  width: 100%;
  height: auto;
}

.work-modal__title {
  font-size: clamp(22px, 3.2vw, 30px);
  line-height: 1.2;
  margin: 20px 0;
  width: 100%;
  color: #FF8B43;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 46px;
}

.work-modal__desc {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 20px;
  font-family: "Josefin Slab", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
  font-weight: 400;
}

.work-modal__img-txt {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.work-modal__img-txt h4 {
  color: #ffffff;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
  background: #8D8D8D;
  padding: 10px 15px;
  border-radius: 10px 10px 0 0;
  margin-bottom: 15px;
}
.work-modal__img-txt + .work-modal__img-txt {
  margin-top: 50px;
}
@media (max-width: 763px) {
  .work-modal__img-txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    flex: 0 1 auto;
    justify-content: space-between;
  }
}

.work-modal__case, .work-modal__konzept, .work-modal__ergebnis {
  width: 75%;
  border-radius: 10px;
  box-sizing: border-box;
  z-index: 1;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
}
.work-modal__case p, .work-modal__konzept p, .work-modal__ergebnis p {
  color: #ffffff;
  padding: 10px 20px 20px;
}
@media (max-width: 763px) {
  .work-modal__case, .work-modal__konzept, .work-modal__ergebnis {
    width: 100%;
  }
}

@media (max-width: 763px) {
  .work-modal__case {
    order: 2;
  }
}

.work-modal__ergebnis {
  width: 100%;
  margin: 50px 0 60px;
  background: #ffffff;
}
.work-modal__ergebnis p {
  color: #8D8D8D;
}
.work-modal__ergebnis h4 {
  background: #FF8B43;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
  color: #161616;
  padding: 10px 15px;
  border-radius: 10px 10px 0 0;
  margin-bottom: 15px;
}

.work-modal__figure-1, .work-modal__figure-2 {
  width: 75%;
  margin-left: -25%;
}
.work-modal__figure-1 img, .work-modal__figure-2 img {
  border-radius: 10px;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 763px) {
  .work-modal__figure-1, .work-modal__figure-2 {
    width: 100%;
    margin-left: 0;
  }
}

.work-modal__figure-2 {
  margin-right: -25%;
  margin-left: 0;
}
@media (max-width: 763px) {
  .work-modal__figure-2 {
    width: 100%;
    margin-right: 0;
  }
}

/* Responsive Layout (Bild + Text nebeneinander bei großen Screens) */
@media (min-width: 860px) {
  .work-modal {
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
  }
  .work-modal__figure {
    align-self: stretch;
  }
}
/* =============== Work Hover bleibt wie gehabt =============== */
/* (nur kleine Ergänzungen) */
.work .work__card {
  cursor: pointer;
}
.work .work__img img {
  object-fit: cover;
  width: 100%;
}

.target {
  background: linear-gradient(116.91deg, rgba(227, 165, 114, 0.3098039216), rgb(255, 255, 255)) no-repeat;
  padding: 15px;
  border: 1px solid #ffffff;
  border-radius: 24px;
  box-shadow: 0 0.450581px rgba(255, 255, 255, 0.3019607843), 0 0 36.0465px rgba(255, 255, 255, 0.0588235294);
  margin-top: 40px;
}
@media (max-width: 767px) {
  .target {
    padding: 0;
  }
}
.target__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: 40px;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.1019607843), 0 0 1.8px rgba(255, 255, 255, 0.1882352941);
  border: 1px solid #f2f2f2;
  border-radius: 20px;
}
.target__choice {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: 20px;
  background: rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 20px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 1px 2px rgba(8, 8, 8, 0.2), 0 4px 4px rgba(8, 8, 8, 0.0784313725), 0 7px 0 -12px #077ac7, inset 0 6px 12px rgba(255, 255, 255, 0.1215686275);
}
.target__choice-item {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-sizing: border-box;
  padding: 10px;
  border-radius: 12px;
  width: calc(20% - 20px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 1px 2px rgba(8, 8, 8, 0.2), 0 4px 4px rgba(8, 8, 8, 0.0784313725), 0 7px 0 -12px #077ac7, inset 0 6px 12px rgba(255, 255, 255, 0.1215686275);
  cursor: pointer;
  transform: scale(1);
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .target__choice-item {
    display: none;
  }
}
.target__choice-item span {
  display: block;
  font-family: "Josefin Slab", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  padding-top: 10px;
}
.target__choice-item:hover {
  background: rgba(0, 0, 0, 0.08);
  transform: scale(1.1);
}
.target__choice-item:active {
  background: rgba(255, 139, 67, 0.5);
  transform: scale(0.9);
}
.target__choice-item.is-active {
  background: #FF8B43;
  color: #ffffff;
}
.target__content {
  position: relative;
  overflow: hidden;
  transition: height 0.3s ease;
  border-radius: 12px;
}
@media (max-width: 767px) {
  .target__content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: wrap;
    flex: 0 1 auto;
    justify-content: flex-start;
    gap: 20px;
    box-shadow: none;
  }
}
.target__content-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  margin-top: 20px;
  background-color: rgba(1, 1, 1, 0.05);
  padding: 10px;
  border-radius: 7px;
  box-sizing: border-box;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 1px 2px rgba(8, 8, 8, 0.2), 0 4px 4px rgba(8, 8, 8, 0.0784313725), 0 7px 0 -12px #077ac7, inset 0 6px 12px rgba(255, 255, 255, 0.1215686275);
}
.target__content-list-item {
  font-weight: 600;
}
.target__content-list-item svg {
  margin-bottom: -6px;
}
.target__content-list-item svg path:nth-child(2) {
  fill: #FF8B43;
}
.target__content-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.3s ease;
  display: flex;
  background: #fcfcfc;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 1px 2px rgba(8, 8, 8, 0.2), 0 4px 4px rgba(8, 8, 8, 0.0784313725), 0 7px 0 -12px #077ac7, inset 0 6px 12px rgba(255, 255, 255, 0.1215686275);
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .target__content-item {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    position: relative;
    z-index: 1;
  }
}
@media (max-width: 600px) {
  .target__content-item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: wrap;
    flex: 0 1 auto;
    justify-content: flex-start;
  }
}
.target__content-item.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .target__content-item.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    position: relative;
    z-index: 1;
  }
}
.target__content-text {
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: center;
  order: 2;
  width: 125%;
}
@media (max-width: 767px) {
  .target__content-text {
    font-family: "Josefin Slab", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .target__content-text {
    order: 2;
  }
}
.target__content-text span {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 22px;
  display: none;
}
@media (max-width: 767px) {
  .target__content-text span {
    display: block;
    padding-bottom: 10px;
    color: #FF8B43;
  }
}
.target__content-image {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: center;
}
.target__content-image img {
  object-fit: cover;
  width: 100%;
}
@media (max-width: 600px) {
  .target__content-image {
    width: 100%;
    order: 1;
  }
}

.howto {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  gap: 20px;
  margin: 40px 0 80px;
}
@media (max-width: 767px) {
  .howto {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: wrap;
    flex: 0 1 auto;
    justify-content: flex-start;
  }
}
.howto__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: stretch;
  width: calc(33% - 11px);
  box-sizing: border-box;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 1px 2px rgba(8, 8, 8, 0.2), 0 4px 4px rgba(8, 8, 8, 0.0784313725), 0 7px 0 -12px #077ac7, inset 0 6px 12px rgba(255, 255, 255, 0.1215686275);
}
@media (max-width: 767px) {
  .howto__item {
    width: 100%;
  }
}
.howto__item img {
  width: 100%;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 1px 2px rgba(8, 8, 8, 0.2), 0 4px 4px rgba(8, 8, 8, 0.0784313725), 0 7px 0 -12px #077ac7, inset 0 6px 12px rgba(255, 255, 255, 0.1215686275);
  border-radius: 16px;
  margin-bottom: 20px;
}
.howto__item span {
  position: absolute;
  top: 0;
  left: 0;
  margin: 10px 10px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
  color: #FF8B43;
}
.howto__title {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
}

.who {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0;
}
@media (max-width: 767px) {
  .who {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: wrap;
    flex: 0 1 auto;
    justify-content: flex-start;
  }
}
.who__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  flex: 0 1 auto;
  justify-content: space-between;
  position: relative;
  width: calc(50% - 10px);
  background: #ffffff;
  padding: 20px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 1px 2px rgba(8, 8, 8, 0.2), 0 4px 4px rgba(8, 8, 8, 0.0784313725), 0 7px 0 -12px #077ac7, inset 0 6px 12px rgba(255, 255, 255, 0.1215686275);
  border-radius: 24px;
  box-sizing: border-box;
}
@media (min-width: 1600px) {
  .who__item {
    width: calc(25% - 10px);
  }
}
@media (max-width: 767px) {
  .who__item {
    width: 100%;
  }
}
.who__item img {
  width: 100%;
  margin-top: 20px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 1px 2px rgba(8, 8, 8, 0.2), 0 4px 4px rgba(8, 8, 8, 0.0784313725), 0 7px 0 -12px #077ac7, inset 0 6px 12px rgba(255, 255, 255, 0.1215686275);
  margin-bottom: 0;
  border-radius: 14px;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.01);
}
.who__desc {
  width: 100%;
  text-align: center;
  font-weight: 600;
}

.section--workshop .section__subtitle {
  margin-bottom: 0;
}

/*# sourceMappingURL=main.css.map */
