html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

@font-face {
  font-family: 'RhombusSans';
  src: url('../01_Website/font.woff2') format('woff2');
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f4f4f4;
  --surface-dark: #111111;
  --text: #111111;
  --text-soft: #5f5f5f;
  --text-faint: #8a8a8a;
  --white: #ffffff;
  --black: #111111;
  --black-hover: #2b2b2b;
  --shell-radius: 34px;
  --footer-radius: 34px;
  --container: 1180px;
  --section-gap: 72px;
  --page-pad: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'RhombusSans', Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color 160ms ease; }
a:hover { color: #2b2b2b; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
button:focus-visible, a:focus-visible, input:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 2px;
}
.shell {
  min-height: calc(100vh - 28px);
  background: #fff;
  border-radius: var(--shell-radius);
  overflow: visible;
}
.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
	gap: 14px;
  display: grid;
}
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
}

header.header {
    margin-top: -10px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}
img { object-fit: cover; width: 100%; max-height: 100%; }
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-mark {
  width: 30px;
  height: 28px;
  flex: 0 0 auto;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 1000;
  letter-spacing: -2px;
  font-size: large;
}
.brand-mark.invert { background: var(--white); color: #000; }
.brand-text strong {
  display: block;
  font-size: 0.98rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.brand-text span { display: block; color: var(--text-soft); font-size: 0.92rem; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.button {
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--black);
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  vertical-align: middle;
  transition: background 140ms ease, color 140ms ease;
}
.button:hover { background: var(--black-hover); color: #fff; }
.button.menu-trigger,
.button.close-button,
.button:not(a) { justify-content: center; }
.button.ghost { background: transparent; color: var(--text); padding-inline: 10px; }
.button.ghost:hover { background: transparent; color: #2b2b2b; }
.section { padding: var(--section-gap) 0; }
.section:first-of-type { padding-top: 70px; }
.hero-grid, .cols-2, .cols-3 { display: grid; gap: 26px; }
.hero-grid { grid-template-columns: 1.2fr 0.8fr; align-items: start; }
.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--text-soft);
  font-size: 0.92rem;
}
h1, h2, h3, p { margin: 0; }
h1 {
  max-width: 11ch;
  font-size: clamp(2.65rem, 4vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 700;
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 650;
}
h3 {
  font-size: 1.05rem;
  line-height: 1.15;
  font-weight: 650;
  letter-spacing: -0.01em;
}
.lead { max-width: 60ch; font-size: 1.08rem; color: #1d1d1d; }

.copy {
	color: var(--text-soft);
	font-size: 0.98rem;
	padding-top: 16px;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.side-note { padding-top: 8px; }
.note-list { display: grid; gap: 16px; margin: 0; padding: 0; list-style: none; }
.note-list li { padding-top: 12px; color: var(--text-soft); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 40px; }
.section-head p { max-width: 50ch; color: var(--text-soft); }
.grid-block {
	display: grid;
  gap: 12px;
}
.text-block {
  display: grid;
	grid-auto-rows: max-content;
  gap: 12px;
  background-color: #f9f9f9;
  border-radius: 28px;
  padding: 28px;
}

.box {
   display: flex;
   align-items:center;
	 gap: 8px;
}

.block { margin: -28px -28px 0 -28px; max-height: 220px; padding-bottom: 20px; }
.block img { border-top-left-radius: 30px; border-top-right-radius: 30px; }
.service-list, .step-list, .price-list, .client-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.service-list li, .step-list li, .price-list li, .client-list li { color: var(--text-soft); }
.service-list li::before, .step-list li::before, .client-list li::before {
	text-decoration: none;
	font-weight: bold;
  margin-right: 8px;
}

.service-list li {
  position: relative; /* Container für absolute Positionierung */
  padding-left: 25px; /* Platz für das Zeichen schaffen */
  margin-bottom: 5px;
}

.service-list li::before {
		content: "";
		position: absolute;
  	left: 0;
		top: 6px;
    display: inline-block;
    background: url("./assets/check-circle-broken.svg") no-repeat top right;
		background-size: contain;
    width: 14px;
    height: 14px;
}

.step-number {
  display: block;
  font-size: 0.9rem;
  color: var(--text-faint);
}

.ablauf-carousel {
  position: relative;
}

.ablauf-carousel-shell {
  display: block;
}

.ablauf-carousel-frame {
  position: relative;
}

.ablauf-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  position: relative;
}

.ablauf-card {
  margin: 0;
  position: static;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.ablauf-nav {
  display: none;
}

.ablauf-progress {
  display: none;
}

.ablauf-dot {
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.vorteile-carousel {
  position: relative;
}

.vorteile-carousel-shell {
  display: block;
}

.vorteile-carousel-frame {
  position: relative;
}

.vorteile-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  position: relative;
}

.vorteile-card {
  margin: 0;
  position: static;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.vorteile-progress {
  display: none;
}

.vorteile-dot {
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.leistungen-toggle {
  display: none;
}

.leistungen-cards {
  min-width: 0;
}

.leistungen-tab {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: #f1f1f1;
  color: var(--text-soft);
  padding: 10px 14px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.leistungen-tab.is-active {
  background: var(--text);
  color: #fff;
}

.leistungen-card[hidden] {
  display: none !important;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0px;
  align-items: start;
	padding: 28px;
  background: #f9f9f9;
  border-radius: 28px;
}
.and-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0px;
  align-items: start;
	text-align: center;
	font-size: x-large;
}

.footnote-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0px;
  align-items: start;
	font-size: small;
	padding-left: 28px;
}

.price-name { font-size: 1.04rem; font-weight: 650; }
.price-value { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.03em; }
.price-copy { color: var(--text-soft); }
.contact-slab { display: grid; gap: 14px; align-content: start; }
.contact-meta { display: grid; gap: 10px; color: var(--text-soft); }
.login-panel { display: grid; gap: 18px; max-width: 560px; }
.helper { color: var(--text-soft); font-size: 0.92rem; }
.menu-overlay, .login-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  background: #fff;
}
.menu-overlay.open, .login-overlay.open { display: block; }
.overlay-inner, .login-shell {
  width: min(calc(100% - 2 * var(--page-pad)), var(--container));
  margin: 0 auto;
  min-height: 100vh;
  display: grid;
  align-content: start;
  padding: 14px 0px 20px;
}
.login-shell {
  width: min(calc(100% - 2 * var(--page-pad)), 560px);
  align-content: center;
}
.overlay-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 56px;
}

.close-button {
	font-size: 24px;
}

.menu-list {
  width: min(640px, 100%);
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.menu-list a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 4px 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 650;
  justify-self: start;
}
.menu-list li { display: flex; justify-content: flex-start; }
.menu-list li:last-child { margin-bottom: 0; }
.menu-list li > .button,
.menu-list li > a { align-self: start; }
.overlay-top .brand,
.menu-note,
.menu-list,
.close-button { justify-self: start; }
.overlay-top { width: 100%; }
.overlay-inner .overlay-top,
.overlay-inner .menu-list,
.overlay-inner .menu-note { margin-left: 0; }
.menu-list button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--black);
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 600;
}
.menu-list a:hover, .menu-list button:hover { color: #2b2b2b; }
.menu-list button:hover { background: var(--black-hover); color: #fff; }
.menu-note { max-width: 52ch; margin-top: 36px; color: var(--text-soft); }
.footer-wrap {
  margin-top: 72px;
  background: var(--surface-dark);
  color: #fff;
  overflow: hidden;
}
.footer-inner { padding: 42px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: auto auto;
  gap: 28px;
  align-items: start;
}
.footer-logo {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #fff;
  color: #111;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.footer-claim {
  max-width: 26ch;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.footer-note {
    text-align: right;
}

.footer-bottom {
    padding: 18px 0 28px;
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.9rem;
    display: grid;
    grid-template-columns: 50% 50%;
}

.footer-bottom a { color: rgba(255, 255, 255, 0.76); }
.footer-bottom a:hover { color: #ffffff; }
.footer-bottom a:focus-visible { outline-color: #ffffff; }
.footer-bottom a + a { margin-left: 0; }
.page-title { max-width: 14ch; }
.page-intro { max-width: 56ch; }
.muted { color: var(--text-faint); }
.panel-card { display: grid; gap: 18px; max-width: 560px; }
.input-grid { display: grid; gap: 12px; }
.input-grid .row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
input {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 18px;
  background: #f4f4f4;
  color: var(--text);
  padding: 0 14px;
}
input::placeholder { color: #8d8d8d; }
.note-plain { color: var(--text-soft); }
.muted-box {

}
.notice {
  border-radius: 20px;
  padding: 14px 16px;
}
.notice-success {
  border: 1px solid rgba(34, 197, 94, 0.24);
  background: rgba(34, 197, 94, 0.08);
}
.notice-error {
  border: 1px solid rgba(239, 68, 68, 0.22);
  background: rgba(239, 68, 68, 0.08);
}
.small-link { color: var(--text-soft); }
.auth-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px 0;
}
.auth-card {
  width: min(100%, 560px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
  background: #fff;
  border-radius: 24px;
  padding: 22px;
}
.auth-head { display: grid; gap: 12px; margin-bottom: 18px; }
@media (max-width: 980px) {
  .hero-grid, .cols-2, .cols-3, .footer-grid, .price-row { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: start; }
  .admin-layout, .admin-kpis, .admin-grid-2, .admin-grid-3 { grid-template-columns: 1fr; }
  .admin-nav { position: static; top: auto; }
}
@media (max-width: 720px) {
  body { padding: 10px; }
  .shell { min-height: calc(100vh - 20px); border-radius: 28px; }
  .header-inner { flex-direction: row; align-items: center; }
  .header-actions { width: auto; margin-left: auto; }
  .overlay-inner, .login-shell { width: min(calc(100% - 40px), var(--container)); padding: 14px 10px 10px 10px; }
  .menu-trigger, .close-button {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
  }
  .menu-trigger::before, .close-button::before {
    content: '';
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    line-height: 1;
  }
  .menu-trigger::before { content: '≡'; font-size: 24px; }
  .close-button::before { content: '×'; font-size: 28px; }
  .button, .button:not(.menu-trigger):not(.close-button) { justify-content: center; }
  .section { padding: 52px 0; }
  .section:first-of-type { padding-top: 32px; }
  h1 { max-width: 100%; font-size: clamp(2.3rem, 13vw, 3.7rem); }
  .input-grid .row, .admin-form .row-2, .admin-form .row-3 { grid-template-columns: 1fr; }

  .leistungen-toggle {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
    flex-wrap: wrap;
  }

  .leistungen-cards {
    display: grid;
    gap: 0;
  }

  .leistungen-card {
    min-width: 0;
  }

  .leistungen-card[hidden] {
    display: none !important;
  }

  .ablauf-carousel,
  .vorteile-carousel,
  .ablauf-carousel-shell,
  .vorteile-carousel-shell,
  .ablauf-carousel-frame,
  .vorteile-carousel-frame {
    min-width: 0;
  }

  .ablauf-carousel-shell,
  .vorteile-carousel-shell {
    display: grid;
    align-items: stretch;
    gap: 4px;
  }

  .ablauf-carousel-frame,
  .vorteile-carousel-frame {
    width: 100%;
    max-width: 100%;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    border-radius: 24px;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
  }

  .ablauf-cards,
  .vorteile-cards {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    min-height: 0;
    position: relative;
    width: 100%;
    min-width: 100%;
    transform: translateX(0);
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }

  .ablauf-card,
  .vorteile-card {
    position: static;
    margin: 0;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    width: 100%;
    padding-bottom: 16px;
    flex: 0 0 100%;
    min-width: 100%;
  }

  .ablauf-card.is-active,
  .vorteile-card.is-active {
    opacity: 1;
    transform: none;
    pointer-events: auto;
    z-index: 2;
  }

  .ablauf-card.is-prev,
  .vorteile-card.is-prev {
    transform: none;
  }

  .ablauf-card.is-enter-from-next,
  .vorteile-card.is-enter-from-next,
  .ablauf-card.is-enter-from-prev,
  .vorteile-card.is-enter-from-prev,
  .ablauf-card.is-leave-to-next,
  .vorteile-card.is-leave-to-next,
  .ablauf-card.is-leave-to-prev,
  .vorteile-card.is-leave-to-prev {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .ablauf-card h3,
  .vorteile-card h3 {
    margin-bottom: 2px;
  }

  .ablauf-card .copy,
  .vorteile-card .copy {
    margin-bottom: 0;
    line-height: 1.45;
  }

  .ablauf-nav {
    display: inline-flex;
    align-self: center;
    width: 8px;
    min-width: 8px;
    height: 44px;
    align-items: center;
    justify-content: center;
    color: var(--text-faint);
    opacity: 0.32;
    font-size: 0.55rem;
    font-weight: 500;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    margin-top: 92px;
    flex: 0 0 8px;
    overflow: hidden;
    white-space: nowrap;
  }

  .ablauf-progress,
  .vorteile-progress {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
  }

  .ablauf-dot,
  .vorteile-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.16);
    transition: transform 180ms ease, background-color 180ms ease, width 180ms ease;
  }

  .ablauf-dot.is-active,
  .vorteile-dot.is-active {
    width: 28px;
    background: var(--text);
  }

  .ablauf-dot:focus-visible,
  .vorteile-dot:focus-visible {
    outline: 2px solid var(--text);
    outline-offset: 3px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

#bildbeispiele .bildbeispiele-carousel {
	display: grid;
	gap: 14px;
}

#bildbeispiele .bildbeispiele-carousel-shell {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
}

#bildbeispiele .bildbeispiele-carousel-frame {
	min-width: 0;
	overflow: hidden;
	border-radius: 28px;
	touch-action: pan-y;
	user-select: none;
	-webkit-user-select: none;
}

#bildbeispiele .bildbeispiele-track {
	display: flex;
	gap: 0;
	width: 100%;
	transform: translateX(0);
	transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

#bildbeispiele .bildbeispiele-card {
	flex: 0 0 100%;
	min-width: 100%;
	margin: 0;
	display: grid;
	gap: 0;
	background: #f9f9f9;
	border-radius: 28px;
	overflow: hidden;
}

#bildbeispiele .bildbeispiele-media {
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

#bildbeispiele .bildbeispiele-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#bildbeispiele .bildbeispiele-nav {
	appearance: none;
	border: 0;
	width: 46px;
	height: 46px;
	border-radius: 999px;
	background: var(--black);
	color: #fff;
	font: inherit;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 140ms ease, opacity 140ms ease;
}

#bildbeispiele .bildbeispiele-nav:hover {
	background: var(--black-hover);
}

#bildbeispiele .bildbeispiele-nav:disabled {
	opacity: 0.28;
	cursor: default;
}

#bildbeispiele .bildbeispiele-progress {
	display: flex;
	justify-content: center;
	gap: 8px;
}

#bildbeispiele .bildbeispiele-dot {
	appearance: none;
	border: 0;
	padding: 0;
	margin: 0;
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.16);
	cursor: pointer;
	transition: transform 180ms ease, background-color 180ms ease, width 180ms ease;
}

#bildbeispiele .bildbeispiele-dot.is-active {
	width: 28px;
	background: var(--text);
}

#bildbeispiele .bildbeispiele-dot:focus-visible,
#bildbeispiele .bildbeispiele-nav:focus-visible {
	outline: 2px solid var(--text);
	outline-offset: 3px;
}

@media (max-width: 720px) {
	#bildbeispiele .bildbeispiele-carousel-shell {
		grid-template-columns: 0% auto 0%;
		gap: 0px;
	}

	#bildbeispiele .bildbeispiele-nav {
		width: 40px;
		height: 40px;
	}
	#bildbeispiele button.bildbeispiele-nav {
		visibility: hidden;
	}
}
