@charset "UTF-8";
@font-face {
  font-family: "Victor Mono";
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
  src: url("../fonts/Victor_Mono/VictorMono-VariableFont_wght.ttf") format("truetype");
}
@font-face {
  font-family: "Victor Mono";
  font-style: italic;
  font-weight: 100 700;
  font-display: swap;
  src: url("../fonts/Victor_Mono/VictorMono-Italic-VariableFont_wght.ttf") format("truetype");
}
/** 1200px oder schmaler */
/** 992px oder schmaler */
/** 768px oder schmaler */
/** 576px oder schmaler */
/** Breakpoints */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  font-family: "Victor Mono", sans-serif;
}

body {
  background-color: rgb(25, 38, 57);
}

a[href^="/wissen/lexikon/#"] {
  color: #06b6d4;
  text-decoration: none;
  border-bottom: 1px solid rgba(6, 182, 212, 0.3);
  transition: all 0.2s ease;
  font-weight: 500;
}
a[href^="/wissen/lexikon/#"]:hover {
  color: #67e8f9;
  border-bottom-color: #06b6d4;
}
a[href^="/wissen/lexikon/#"]:focus {
  outline: 2px solid #06b6d4;
  outline-offset: 2px;
}

.container {
  max-width: 75rem;
  margin: 0px auto;
  padding: 0 2rem;
}
.container::after {
  display: block;
  clear: both;
  content: "";
}
@media (max-width: 62em) {
  .container {
    padding: 2rem 5vw;
  }
}
@media (max-width: 36em) {
  .container {
    padding: 0 1rem;
  }
}

.header {
  height: 35rem;
  min-height: calc(13rem + 32vw);
  position: relative;
  overflow: hidden;
  background-color: rgb(25, 38, 57);
  /** 1200px oder schmaler */
}
@media (max-width: 75em) {
  .header {
    height: calc(18rem + 32vw);
  }
}
@media (max-width: 62em) {
  .header {
    height: calc(20rem + 32vw);
  }
}
@media (max-width: 48em) {
  .header {
    height: calc(15rem + 32vw);
  }
}
@media (max-width: 36em) {
  .header {
    height: calc(15rem + 32vw);
  }
}

.header__slope {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10vw;
  z-index: 1;
  background-image: linear-gradient(-5.71deg, rgb(25, 38, 57) 49.9%, transparent 50.1%);
  background-repeat: no-repeat;
  background-position: center 100%;
  background-size: 100vw 10vw;
}

.header__container {
  position: relative;
  max-width: 75rem;
  margin: 0px auto;
  padding: 0 2rem;
}
.header__container::after {
  display: block;
  clear: both;
  content: "";
}
@media (max-width: 62em) {
  .header__container {
    padding: 2rem 5vw;
  }
}
@media (max-width: 36em) {
  .header__container {
    padding: 0 1rem;
  }
}

.header::before,
.header::after {
  content: "";
  position: absolute;
  width: 100vw;
  bottom: -9rem;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
  /** 1200px oder schmaler */
}
@media (max-width: 75em) {
  .header::before,
  .header::after {
    bottom: -4rem;
  }
}
@media (max-width: 62em) {
  .header::before,
  .header::after {
    bottom: -1rem;
  }
}

.header::before {
  top: 0;
  background-image: url("../images/pexels-kevin-ku-92347-577585.jpg");
  filter: brightness(0.7);
}
@media (max-width: 36em) {
  .header::before {
    background-size: cover;
  }
}

.header__heading-container {
  clear: both;
}

.header__heading-main {
  font-weight: 700;
  padding-top: 5rem;
  line-height: 92%;
  font-size: 5rem;
  text-align: center;
  color: white;
  text-transform: uppercase;
  text-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.8);
  animation-name: header__heading-main-font-weight;
  animation-delay: 0.5s;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
}
@media (max-width: 62em) {
  .header__heading-main {
    font-size: 3rem;
  }
}
@media (max-width: 48em) {
  .header__heading-main {
    font-size: 2.5rem;
  }
}
@media (max-width: 48em) {
  .header__heading-main {
    font-size: 1.5rem;
    font-weight: 500;
  }
}

@keyframes header__heading-main-font-weight {
  0% {
    opacity: 0;
    font-weight: 100;
  }
  100% {
    opacity: 1;
    font-weight: 700;
  }
}
.header__heading-sub {
  margin-top: 1rem;
  font-size: 1.5rem;
  letter-spacing: 0.25rem;
  text-align: center;
  color: white;
  text-transform: uppercase;
  text-shadow: 0 0 0.15rem black;
  z-index: 1;
  position: relative;
}
@media (max-width: 48em) {
  .header__heading-sub {
    font-size: 1rem;
  }
}

.navigation__list-item {
  list-style-type: none;
  display: block;
  float: left;
  position: relative;
}
@media (max-width: 75em) {
  .navigation__list-item--mobile-hidden {
    display: none;
  }
}
.navigation__list-item--menu {
  float: right;
  font-size: 3rem;
}
.navigation__list-item--dropdown:hover .navigation__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navigation__list-item-link {
  cursor: pointer;
  color: white;
  text-decoration: none;
  padding: 0.5rem 0.1rem 0.1rem 0.25rem;
  margin-top: 2rem;
  margin-left: 0.8rem;
  margin-right: 1.8rem;
  display: block;
  text-shadow: 0 0 0.5rem black;
  border-bottom: 0.15rem solid transparent;
  font-weight: bold;
}
.navigation__list-item-link:hover {
  border-bottom: 0.15rem solid rgb(57, 87, 131);
}
.navigation__list-item--menu .navigation__list-item-link {
  margin-top: 0.4rem;
  margin-right: 0;
  padding-right: 0;
}
.navigation__list-item--menu .navigation__list-item-link:hover {
  border-bottom: 0.15rem solid transparent;
  color: rgb(200, 200, 200);
}
.navigation__list-item-link--logo {
  margin-top: 0.9rem;
  padding-left: 0;
  margin-left: 0;
}
.navigation__list-item-link--logo:hover {
  border-bottom: none;
  color: rgb(200, 200, 200);
}

.navigation__list-item-logo {
  width: 4rem;
  height: 4rem;
  fill: currentColor;
}

.navigation__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 12rem;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(10px);
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.5rem);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(6, 182, 212, 0.2);
  z-index: 1000;
}

.navigation__dropdown-item {
  list-style: none;
}

.navigation__dropdown-link {
  display: block;
  padding: 0.75rem 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}
.navigation__dropdown-link:hover {
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-left-color: #06b6d4;
  padding-left: 1.5rem;
}

.sidenav__opened {
  display: none;
}

.sidenav {
  display: block;
  position: fixed;
  z-index: 15000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.sidenav__opened:checked ~ .sidenav {
  pointer-events: all;
}

/* Seitenleiste eingeblendet
.sidenav__opened:checked ~ .sidenav .sidenav__background {
s. unten in sass umgesetzt
}*/
.sidenav__background {
  display: block;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.85);
  opacity: 0;
  transition: opacity 0.55s ease-in-out;
}
.sidenav__opened:checked ~ .sidenav .sidenav__background {
  opacity: 1;
}

.sidenav__container {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 15rem;
  max-width: 100vw;
  background-color: rgb(235, 235, 235);
  box-shadow: 0 0 1rem black;
  transform: translate(calc(100% + 1rem), 0);
  will-change: transform;
  transition: transform 0.55s ease-in-out;
}
.sidenav__opened:checked ~ .sidenav .sidenav__container {
  transform: translate(0, 0);
}

.sidenav__close {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  color: transparent;
  cursor: pointer;
  display: block;
  width: 1rem;
  height: 1rem;
  border-radius: 10000px;
  background-image: linear-gradient(45deg, transparent 44%, black 45%, black 55%, transparent 56%), linear-gradient(-45deg, transparent 44%, black 45%, black 55%, transparent 56%);
}

.sidenav__nav {
  margin-top: 3.75rem;
  list-style-type: none;
  border-top: 0.0625rem solid rgb(220, 220, 220);
}

.sidenav__nav-link {
  font-size: 1.25rem;
  padding: 0.5rem 1.5rem;
  display: block;
  color: black;
  font-weight: 300;
  text-decoration: none;
  border-bottom: 0.0625rem solid rgb(220, 220, 220);
  background-color: rgb(235, 235, 235);
  transition: color 0.25s ease-in-out, font-weight 0.25s ease-in-out, background-color 0.25s ease-in-out;
}
.sidenav__nav-link:hover {
  background-color: white;
  color: rgb(57, 87, 131);
  font-weight: 700;
}
.sidenav__nav-link--dropdown {
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidenav__dropdown-toggle {
  display: none;
}

.sidenav__dropdown-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.sidenav__dropdown-toggle:checked ~ .sidenav__nav-link--dropdown .sidenav__dropdown-arrow {
  transform: rotate(180deg);
}

.sidenav__dropdown {
  max-height: 0;
  overflow: hidden;
  list-style: none;
  background-color: rgb(245, 245, 245);
  transition: max-height 0.3s ease;
}

.sidenav__dropdown-toggle:checked ~ .sidenav__dropdown {
  max-height: 500px;
}

.sidenav__dropdown-link {
  font-size: 1.1rem;
  padding: 0.5rem 1rem 0.5rem 2rem;
  display: block;
  color: rgb(60, 60, 60);
  font-weight: 300;
  text-decoration: none;
  border-bottom: 0.0625rem solid rgb(230, 230, 230);
  background-color: rgb(245, 245, 245);
  transition: color 0.25s ease-in-out, font-weight 0.25s ease-in-out, background-color 0.25s ease-in-out, padding-left 0.25s ease-in-out;
  position: relative;
  white-space: nowrap;
}
.sidenav__dropdown-link::before {
  content: "→";
  position: absolute;
  left: 1.25rem;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}
.sidenav__dropdown-link:hover {
  background-color: white;
  color: rgb(57, 87, 131);
  font-weight: 700;
  padding-left: 2.5rem;
}
.sidenav__dropdown-link:hover::before {
  opacity: 1;
}

.footer__bg {
  position: relative;
}

.footer__gradient-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.125rem;
  background: linear-gradient(90deg, #06b6d4, #8b5cf6, #f59e0b);
}

.footer__container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 1rem 3.5rem 3rem;
}
@media (max-width: 62em) {
  .footer__container {
    padding: 3rem 5vw 2rem;
  }
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 0.0625rem solid rgba(51, 65, 85, 0.5);
}
@media (max-width: 62em) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 48em) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 62em) {
  .footer__kontakt {
    grid-column: 1/-1;
  }
}

.footer__kontakt-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 1rem;
}

.footer__kontakt-tagline {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer__kontakt-address {
  margin-bottom: 1rem;
}

.footer__kontakt-text {
  color: #cbd5e1;
  margin: 0.4rem 0;
  font-size: 0.9rem;
}

.footer__kontakt-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.footer__kontakt-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}
.footer__kontakt-link--phone {
  color: #67e8f9;
}
.footer__kontakt-link--phone:hover {
  color: #06b6d4;
}
.footer__kontakt-link--mail {
  color: #c4b5fd;
}
.footer__kontakt-link--mail:hover {
  color: #8b5cf6;
}

.footer__kontakt-icon {
  display: inline-flex;
  width: 1.5rem;
  height: 1.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  font-size: 0.75rem;
}
.footer__kontakt-link--phone .footer__kontakt-icon {
  background: rgba(6, 182, 212, 0.2);
}
.footer__kontakt-link--mail .footer__kontakt-icon {
  background: rgba(139, 92, 246, 0.2);
}

.footer__section-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
.footer__section-title--services {
  background: linear-gradient(135deg, #8b5cf6, #c4b5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer__section-title--legal {
  background: linear-gradient(135deg, #8b5cf6, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__navigation {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__navigation-item {
  margin-bottom: 0.65rem;
}

.footer__navigation-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__navigation-link:hover {
  color: #67e8f9;
  padding-left: 0.75rem;
}

.footer__navigation-bullet {
  font-size: 0.7rem;
}
.footer__navigation-bullet--webdesign {
  color: #06b6d4;
}
.footer__navigation-bullet--marketing {
  color: #8b5cf6;
}
.footer__navigation-bullet--software {
  color: #f59e0b;
}

.footer__navigation-arrow {
  font-size: 0.7rem;
}
.footer__navigation-arrow--cyan {
  color: #06b6d4;
}
.footer__navigation-arrow--purple {
  color: #8b5cf6;
}
.footer__navigation-arrow--orange {
  color: #f59e0b;
}

.footer__breadcrumb {
  padding-top: 2rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 0.0625rem solid rgba(51, 65, 85, 0.3);
}
@media (max-width: 62em) {
  .footer__breadcrumb {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.footer__copyright {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 48em) {
  .footer__copyright {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer__copyright-text {
  margin: 0;
  color: #94a3b8;
  font-size: 0.85rem;
}

.footer__location {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.footer__location-label {
  font-size: 0.75rem;
  color: #94a3b8;
}

.footer__location-badge {
  font-size: 0.85rem;
  color: #cbd5e1;
  padding: 0.375rem 0.75rem;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 0.5rem;
  border: 0.0625rem solid rgba(6, 182, 212, 0.2);
}

.icon {
  fill: currentColor;
  height: 1em;
  vertical-align: middle;
  position: relative;
  top: -0.075em;
}

.button {
  display: inline-block;
  border: 0.125rem solid currentColor;
  border-radius: 10000rem;
  color: rgb(236, 109, 5);
  text-decoration: none;
  padding: 1rem 6rem;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.2rem;
}
.button:hover {
  color: rgb(76.5255319149, 116.8021276596, 175.8744680851);
}

.button--background-blur {
  -webkit-backdrop-filter: blur(3rem);
  backdrop-filter: blur(3rem);
}

.button--white {
  color: white;
  text-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.5);
}
.button--white:hover {
  color: rgb(230, 230, 230);
}

.page-header {
  min-height: calc(20rem + 12vw);
  position: relative;
  overflow: hidden;
  background-color: rgb(25, 38, 57);
}
@media (max-width: 75em) {
  .page-header {
    min-height: calc(16rem + 32vw);
  }
}
@media (max-width: 62em) {
  .page-header {
    min-height: calc(18rem + 32vw);
  }
}
@media (max-width: 48em) {
  .page-header {
    min-height: calc(20rem + 32vw);
  }
}
@media (max-width: 36em) {
  .page-header {
    min-height: calc(22rem + 32vw);
  }
}
.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100vw;
  bottom: -9rem;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
  filter: brightness(0.7);
  z-index: 0;
}
@media (max-width: 75em) {
  .page-header::before {
    bottom: -4rem;
  }
}
@media (max-width: 62em) {
  .page-header::before {
    bottom: -1rem;
  }
}
@media (max-width: 36em) {
  .page-header::before {
    background-size: cover;
  }
}
.page-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.6);
  z-index: 1;
}

.page-header__slope {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10vw;
  z-index: 4;
  background-image: linear-gradient(-5.71deg, rgb(25, 38, 57) 49.9%, transparent 50.1%);
  background-repeat: no-repeat;
  background-position: center 100%;
  background-size: 100vw 10vw;
}

.header__container {
  position: relative;
  z-index: 5;
}

.header__heading-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem 3rem;
}
@media (max-width: 62em) {
  .header__heading-container {
    padding: 4rem 1.5rem 2.5rem;
  }
}
@media (max-width: 48em) {
  .header__heading-container {
    padding: 3rem 1rem 2rem;
  }
}

.page-header__glass-container {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.5rem;
  padding: 3rem 4rem;
  max-width: 50rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
@media (max-width: 62em) {
  .page-header__glass-container {
    padding: 2.5rem 3rem;
    border-radius: 1.25rem;
  }
}
@media (max-width: 48em) {
  .page-header__glass-container {
    padding: 2rem 2rem;
    border-radius: 1rem;
  }
}

.page-header__accent-line {
  width: 4rem;
  height: 0.25rem;
  background: linear-gradient(90deg, #06b6d4, #8b5cf6);
  border-radius: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 48em) {
  .page-header__accent-line {
    width: 3rem;
    margin-bottom: 1.5rem;
  }
}

.page-header__headline {
  font-size: 3.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 1.25rem 0;
  line-height: 1.2;
}
@media (max-width: 62em) {
  .page-header__headline {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 48em) {
  .page-header__headline {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
}

.page-header__subheadline {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 300;
}
@media (max-width: 48em) {
  .page-header__subheadline {
    font-size: 1rem;
  }
}

.page-header__accent-dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
}
@media (max-width: 48em) {
  .page-header__accent-dots {
    margin-top: 1.5rem;
    gap: 0.4rem;
  }
}

.page-header__accent-dot {
  width: 2rem;
  height: 0.25rem;
  border-radius: 1rem;
}
.page-header__accent-dot--cyan {
  background: #06b6d4;
}
.page-header__accent-dot--purple {
  background: #8b5cf6;
  width: 1rem;
}
.page-header__accent-dot--orange {
  background: #f59e0b;
  width: 0.5rem;
}
@media (max-width: 48em) {
  .page-header__accent-dot--cyan {
    width: 1.5rem;
  }
  .page-header__accent-dot--purple {
    width: 0.75rem;
  }
  .page-header__accent-dot--orange {
    width: 0.4rem;
  }
}

.section {
  padding: 4rem 0;
}
@media (max-width: 62em) {
  .section {
    padding: 3rem 0;
  }
}
.section--compact {
  padding: 2rem 0;
}
.section--spacious {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header--left {
  text-align: left;
}
.section-header--compact {
  margin-bottom: 2rem;
}

.section-header__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: white;
}
@media (max-width: 48em) {
  .section-header__title {
    font-size: 1.5rem;
  }
}

.section-header__subtitle {
  color: #94a3b8;
  font-size: 1.05rem;
}
@media (max-width: 48em) {
  .section-header__subtitle {
    font-size: 0.95rem;
  }
}

.grid {
  display: grid;
  gap: 2rem;
}
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 62em) {
  .grid--2 {
    grid-template-columns: 1fr;
  }
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 62em) {
  .grid--3 {
    grid-template-columns: 1fr;
  }
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 62em) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 48em) {
  .grid--4 {
    grid-template-columns: 1fr;
  }
}
.grid--gap-sm {
  gap: 1.25rem;
}
.grid--gap-md {
  gap: 1.5rem;
}
.grid--gap-lg {
  gap: 2rem;
}
.grid--gap-xl {
  gap: 3rem;
}
.grid--narrow {
  max-width: 34.375rem;
  margin: 0 auto;
}
.grid--medium {
  max-width: 62.5rem;
  margin: 0 auto;
}
.grid--wide {
  max-width: 75rem;
  margin: 0 auto;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}
@media (max-width: 62em) {
  .breadcrumb__item {
    font-size: 0.8rem;
    gap: 0.5rem;
  }
}

.breadcrumb__separator {
  font-size: 1rem;
  color: #06b6d4;
  opacity: 0.8;
  margin: 0 0.25rem;
  user-select: none;
}
@media (max-width: 62em) {
  .breadcrumb__separator {
    font-size: 0.9rem;
  }
}

.breadcrumb__link {
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  background: rgba(255, 255, 255, 0.03);
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.2s ease;
}
.breadcrumb__link:hover {
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
}
@media (max-width: 62em) {
  .breadcrumb__link {
    padding: 0.2rem 0.4rem;
  }
}

.breadcrumb__text--active {
  padding: 0.25rem 0.5rem;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(6, 182, 212, 0.05));
  border-radius: 0.375rem;
  color: #06b6d4;
  font-weight: 500;
}
@media (max-width: 62em) {
  .breadcrumb__text--active {
    padding: 0.2rem 0.4rem;
  }
}

@media (max-width: 400px) {
  .breadcrumb__list {
    gap: 0.5rem;
  }
  .breadcrumb__item {
    gap: 0.5rem;
  }
  .breadcrumb__item:not(:first-child):not(:last-child):not(.breadcrumb__item--active) {
    display: none;
  }
  .breadcrumb__item:first-child::after {
    content: "...";
    margin-left: 0.5rem;
    color: #94a3b8;
  }
}
.hero {
  text-align: center;
  max-width: 56.25rem;
  margin: 0 auto;
}
@media (max-width: 62em) {
  .hero {
    padding: 3rem 5vw 2rem;
  }
}
.hero--wide {
  max-width: 75rem;
}
.hero--narrow {
  max-width: 45rem;
}

.hero__badge {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 3.125rem;
  margin-bottom: 1.5rem;
}
.hero__badge--primary {
  background: linear-gradient(135deg, #8b5cf6, #c4b5fd);
}
.hero__badge--software {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}
.hero__badge--webdesign {
  background: linear-gradient(135deg, #8b5cf6, #c4b5fd);
}
.hero__badge--marketing {
  background: linear-gradient(135deg, #06b6d4, #8b5cf6);
}

.hero__badge-text {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
}

.hero__title {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.2;
  color: white;
}
@media (max-width: 62em) {
  .hero__title {
    font-size: 2rem;
  }
}
@media (max-width: 48em) {
  .hero__title {
    font-size: 1.75rem;
  }
}

.hero__highlight {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__highlight--primary {
  background-image: linear-gradient(135deg, #8b5cf6, #c4b5fd);
}
.hero__highlight--software {
  background-image: linear-gradient(135deg, #f59e0b, #d97706);
}
.hero__highlight--webdesign {
  background-image: linear-gradient(135deg, #8b5cf6, #c4b5fd);
}
.hero__highlight--marketing {
  background-image: linear-gradient(135deg, #06b6d4, #8b5cf6);
}

.hero__intro {
  color: #94a3b8;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
@media (max-width: 48em) {
  .hero__intro {
    font-size: 1rem;
  }
}

.card {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  border: 0.0625rem solid #334155;
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.4s ease;
}
.card:hover {
  transform: translateY(-0.75rem);
  box-shadow: 0 1.5625rem 3.125rem rgba(0, 0, 0, 0.4);
}
.card--cyan:hover {
  border-color: #06b6d4;
}
.card--purple:hover {
  border-color: #8b5cf6;
}
.card--orange:hover {
  border-color: #f59e0b;
}
.card--subtle:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.3);
}

.card__image-wrapper {
  position: relative;
  height: 12.5rem;
  overflow: hidden;
}
.card__image-wrapper--small {
  height: 10rem;
}
.card__image-wrapper--large {
  height: 15rem;
}
.card__image-wrapper--xlarge {
  height: 20rem;
}

.card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card__image {
  transform: scale(1.08);
}

.card__image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5rem;
  background: linear-gradient(to top, #0f172a, transparent);
}

.card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.4s ease;
}
.card:hover .card__image-placeholder {
  transform: scale(1.08);
}
.card__image-placeholder--cyan {
  background: linear-gradient(135deg, #0f172a 0%, #164e63 100%);
}
.card__image-placeholder--purple {
  background: linear-gradient(135deg, #0f172a 0%, #4c1d95 100%);
}
.card__image-placeholder--orange {
  background: linear-gradient(135deg, #0f172a 0%, #78350f 100%);
}

.card__category {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  backdrop-filter: blur(0.625rem);
  z-index: 1;
}
.card__category--cyan {
  background: rgba(6, 182, 212, 0.2);
  border: 0.0625rem solid rgba(6, 182, 212, 0.4);
  color: #67e8f9;
}
.card__category--purple {
  background: rgba(139, 92, 246, 0.2);
  border: 0.0625rem solid rgba(139, 92, 246, 0.4);
  color: #c4b5fd;
}
.card__category--orange {
  background: rgba(245, 158, 11, 0.2);
  border: 0.0625rem solid rgba(245, 158, 11, 0.4);
  color: #fcd34d;
}

.card__content {
  padding: 1.75rem;
}
.card__content--compact {
  padding: 1.25rem;
}
.card__content--spacious {
  padding: 2.5rem;
}
.card__content--center {
  text-align: center;
}

.card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #f8fafc;
}
.card__title--small {
  font-size: 1.2rem;
}
.card__title--large {
  font-size: 2rem;
}

.card__description {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.card__description:last-child {
  margin-bottom: 0;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #67e8f9;
  text-decoration: none;
  font-weight: 600;
  transition: gap 0.3s ease;
}
.card__link:hover {
  gap: 0.75rem;
}
.card__link--purple {
  color: #c4b5fd;
}
.card__link--orange {
  color: #fcd34d;
}

.card__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}
.card__icon--cyan {
  background: rgba(6, 182, 212, 0.15);
  color: #67e8f9;
}
.card__icon--purple {
  background: rgba(139, 92, 246, 0.15);
  color: #c4b5fd;
}
.card__icon--orange {
  background: rgba(245, 158, 11, 0.15);
  color: #fcd34d;
}

.overlay-card {
  position: relative;
  height: 11.25rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 0.0625rem solid #334155;
  transition: all 0.3s ease;
  color: white;
}
.overlay-card:hover {
  border-color: #475569;
  transform: translateY(-0.25rem);
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.3);
}
.overlay-card--tall {
  height: 15rem;
}
.overlay-card--short {
  height: 9rem;
}

.overlay-card__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}
.overlay-card:hover .overlay-card__background {
  transform: scale(1.05);
}

.overlay-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.3) 0%, rgba(15, 23, 42, 0.6) 50%, rgba(15, 23, 42, 0.85) 100%);
}

.overlay-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  text-align: center;
  z-index: 1;
}
.overlay-card__content--top {
  bottom: auto;
  top: 0;
}
.overlay-card__content--full {
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.overlay-card__title {
  font-weight: 600;
  font-size: 1rem;
  color: #f8fafc;
  text-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.6);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.overlay-card__text {
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.4;
  text-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.6);
}

.cta-card {
  border-radius: 1.5rem;
  padding: 3.75rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 48em) {
  .cta-card {
    padding: 2.5rem 1.75rem;
  }
}
.cta-card--primary {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(139, 92, 246, 0.08));
  border: 0.0625rem solid rgba(139, 92, 246, 0.2);
}
.cta-card--software {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(217, 119, 6, 0.08));
  border: 0.0625rem solid rgba(245, 158, 11, 0.2);
}
.cta-card--webdesign {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(124, 58, 237, 0.08));
  border: 0.0625rem solid rgba(139, 92, 246, 0.2);
}
.cta-card--marketing {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(139, 92, 246, 0.08));
  border: 0.0625rem solid rgba(6, 182, 212, 0.2);
}
.cta-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
  animation: cta-pulse 4s ease-in-out infinite;
}

@keyframes cta-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}
.cta-card__content {
  position: relative;
  z-index: 1;
}

.cta-card__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}
.cta-card__icon--primary {
  background: linear-gradient(135deg, #8b5cf6, #c4b5fd);
}
.cta-card__icon--software {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}
.cta-card__icon--webdesign {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}
.cta-card__icon--marketing {
  background: linear-gradient(135deg, #06b6d4, #8b5cf6);
}

.cta-card__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: white;
}
@media (max-width: 48em) {
  .cta-card__title {
    font-size: 1.5rem;
  }
}

.cta-card__text {
  color: #94a3b8;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 31.25rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-card__buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-card__button {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}
.cta-card__button--primary {
  background: linear-gradient(135deg, #8b5cf6, #c4b5fd);
}
.cta-card__button--primary:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 0.625rem 1.875rem rgba(6, 182, 212, 0.3);
}
.cta-card__button--secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
}
.cta-card__button--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 50rem;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  border: 0.0625rem solid #334155;
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item:hover {
  border-color: #475569;
}
.faq-item.active {
  border-color: #8b5cf6;
}

.faq-item__question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: #f1f5f9;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: inherit;
}
.faq-item__question:hover {
  color: #c4b5fd;
}

.faq-item__icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.375rem;
  background: rgba(139, 92, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #8b5cf6;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.active .faq-item__answer {
  max-height: 18.75rem;
}

.faq-item__answer-content {
  padding: 0 1.5rem 1.25rem;
  color: #94a3b8;
  line-height: 1.7;
}

.content-section {
  max-width: 50rem;
  margin: 0 auto 4rem;
}
.content-section__text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.content-section__text strong {
  color: #fff;
}
.content-section__list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}
.content-section__list li {
  padding: 1rem 1.5rem;
  margin: 0.75rem 0;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.6) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}
.content-section__list li::before {
  content: "→";
  color: #8b5cf6;
  font-weight: bold;
  margin-right: 0.75rem;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(236, 109, 5, 0.15) 0%, rgba(255, 140, 66, 0.08) 100%);
  border-left: 4px solid #f59e0b;
  padding: 2rem;
  margin: 2.5rem 0;
  border-radius: 0 1rem 1rem 0;
}
.highlight-box__title {
  color: #f59e0b;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.highlight-box__icon {
  font-size: 1.5rem;
}
.highlight-box__content {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}
.highlight-box--cyan {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(8, 145, 178, 0.08) 100%);
  border-left-color: #06b6d4;
}
.highlight-box--cyan .highlight-box__title {
  color: #06b6d4;
}
.highlight-box--purple {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(147, 51, 234, 0.08) 100%);
  border-left-color: #8b5cf6;
}
.highlight-box--purple .highlight-box__title {
  color: #8b5cf6;
}

.text-quality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}
@media (max-width: 768px) {
  .text-quality-grid {
    grid-template-columns: 1fr;
  }
}

.quality-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.6) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.quality-card:hover {
  transform: translateY(-3px);
  border-color: rgba(168, 85, 247, 0.4);
}
.quality-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.quality-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #8b5cf6;
  margin-bottom: 0.75rem;
}
.quality-card__description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

.example-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}
@media (max-width: 768px) {
  .example-comparison {
    grid-template-columns: 1fr;
  }
}

.example-box {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
}
.example-box--bad {
  border-color: rgba(248, 113, 113, 0.3);
}
.example-box--good {
  border-color: rgba(74, 222, 128, 0.3);
}
.example-box__label {
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.example-box--bad .example-box__label {
  color: #f87171;
}
.example-box--good .example-box__label {
  color: #4ade80;
}
.example-box__content {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.content-section__image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  margin: 2rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-examples {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2.5rem 0;
}
@media (max-width: 768px) {
  .cta-examples {
    grid-template-columns: 1fr;
  }
}

.cta-example-card {
  background: rgba(15, 23, 42, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
}
.cta-example-card--bad {
  border-color: rgba(248, 113, 113, 0.4);
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.08) 0%, rgba(15, 23, 42, 0.6) 100%);
}
.cta-example-card--good {
  border-color: rgba(74, 222, 128, 0.4);
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.08) 0%, rgba(15, 23, 42, 0.6) 100%);
}
.cta-example-card__label {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.cta-example-card--bad .cta-example-card__label {
  color: #f87171;
}
.cta-example-card--good .cta-example-card__label {
  color: #4ade80;
}
.cta-example-card__button {
  display: block;
  width: 100%;
  padding: 0.875rem 1.5rem;
  margin-bottom: 0.75rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cta-example-card__button--bad {
  background: rgba(248, 113, 113, 0.15);
  color: #fca5a5;
  border: 1px solid rgba(248, 113, 113, 0.3);
}
.cta-example-card__button--good {
  background: rgba(74, 222, 128, 0.15);
  color: #86efac;
  border: 1px solid rgba(74, 222, 128, 0.3);
}
.cta-example-card__button--good:hover {
  background: rgba(74, 222, 128, 0.25);
  transform: translateY(-2px);
}
.cta-example-card__explanation {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}
.cta-example-card__explanation strong {
  color: #fff;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2.5rem 0;
}
@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

.comparison-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}
.comparison-card:hover {
  transform: translateY(-3px);
}
.comparison-card--ua {
  border-color: rgba(248, 113, 113, 0.3);
}
.comparison-card--ga4 {
  border-color: rgba(74, 222, 128, 0.3);
}
.comparison-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.comparison-card__icon {
  font-size: 1.25rem;
}
.comparison-card__content, .comparison-card__text {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: 0.95rem;
}
.comparison-card__content strong, .comparison-card__text strong {
  color: #fff;
}

.step-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.step-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.6) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  transition: all 0.3s ease;
}
.step-card:hover {
  border-color: rgba(6, 182, 212, 0.4);
  transform: translateX(5px);
}
.step-card__header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
}
.step-card__number {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #06b6d4, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  flex-shrink: 0;
  margin-bottom: 0.75rem;
}
.step-card__title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.step-card__content {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-top: 0.75rem;
  padding-left: 4.25rem;
}
.step-card__content code {
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  padding: 0.15rem 0.4rem;
  border-radius: 0.25rem;
  font-size: 0.9em;
}

.verification-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}
@media (max-width: 992px) {
  .verification-methods {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .verification-methods {
    grid-template-columns: 1fr;
  }
}

.verification-method {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.verification-method:hover {
  border-color: rgba(168, 85, 247, 0.4);
  transform: translateY(-3px);
}
.verification-method__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.verification-method__icon {
  font-size: 1.5rem;
}
.verification-method__title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  flex: 1;
}
.verification-method__difficulty {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  background: rgba(168, 85, 247, 0.2);
  color: #8b5cf6;
  font-weight: 500;
}
.verification-method__description {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}
.verification-method__description code {
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  padding: 0.1rem 0.3rem;
  border-radius: 0.2rem;
  font-size: 0.85em;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}
@media (max-width: 768px) {
  .metric-grid {
    grid-template-columns: 1fr;
  }
}

.metric-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}
.metric-card:hover {
  transform: translateY(-5px);
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.15);
}
.metric-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.metric-card__name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #06b6d4;
  margin-bottom: 0.5rem;
}
.metric-card__name a {
  color: inherit;
  text-decoration: none;
}
.metric-card__name a:hover {
  text-decoration: underline;
}
.metric-card__value {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #06b6d4, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}
.metric-card__label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.code-block {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  margin: 2rem 0;
  padding: 1.5rem;
}
.code-block__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(30, 41, 59, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.code-block__icon {
  font-size: 1.25rem;
}
.code-block__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}
.code-block__code {
  padding: 1.5rem;
  margin: 0;
  overflow-x: auto;
  font-family: "Fira Code", "Monaco", "Consolas", monospace;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  white-space: pre;
}
.code-block__code .comment {
  color: rgba(255, 255, 255, 0.4);
}

.keyword-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}
@media (max-width: 992px) {
  .keyword-types {
    grid-template-columns: 1fr;
  }
}

.keyword-type {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.6) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.keyword-type:hover {
  transform: translateY(-5px);
  border-color: rgba(168, 85, 247, 0.4);
}
.keyword-type__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.keyword-type__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #8b5cf6;
  margin-bottom: 1rem;
}
.keyword-type__title a {
  color: inherit;
  text-decoration: none;
}
.keyword-type__title a:hover {
  text-decoration: underline;
}
.keyword-type__text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}
.keyword-type__example {
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  color: #06b6d4;
  font-size: 0.85rem;
  font-style: italic;
  margin-top: auto;
}

.gmb-factors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.gmb-factor {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.6) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.gmb-factor:hover {
  transform: translateY(-3px);
  border-color: rgba(6, 182, 212, 0.4);
}
.gmb-factor__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.gmb-factor__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #06b6d4;
  margin-bottom: 0.75rem;
}
.gmb-factor__title a {
  color: inherit;
  text-decoration: none;
}
.gmb-factor__title a:hover {
  text-decoration: underline;
}
.gmb-factor__description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

.nap-box {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(15, 23, 42, 0.6) 100%);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 1rem;
  padding: 2rem;
  margin: 2rem 0;
}
.nap-box__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #8b5cf6;
  margin-bottom: 1rem;
}
.nap-box__example {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-top: 1.5rem;
}
.nap-box__example code {
  display: block;
  color: #06b6d4;
  font-family: "Fira Code", "Monaco", "Consolas", monospace;
  font-size: 0.9rem;
  line-height: 1.8;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  margin: 0.5rem 0;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.6) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.5;
  transition: all 0.3s ease;
}
.checklist-item::before {
  content: "☐";
  font-size: 1.25rem;
  color: #06b6d4;
  flex-shrink: 0;
}
.checklist-item:hover {
  border-color: rgba(74, 222, 128, 0.4);
}
.checklist-item:hover::before {
  content: "☑";
  color: #4ade80;
}

.os-switcher {
  display: flex;
  gap: 0.5rem;
  margin: 1.5rem 0 1rem;
  flex-wrap: wrap;
}
.os-switcher__button {
  padding: 0.75rem 1.5rem;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.os-switcher__button:hover {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(6, 182, 212, 0.4);
  color: #fff;
}
.os-switcher__button.active, .os-switcher__button--active {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
  border-color: #06b6d4;
  color: #fff;
}

.os-content {
  display: none;
  animation: fadeIn 0.3s ease;
}
.os-content--active, .os-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.psychology-triggers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}
@media (max-width: 992px) {
  .psychology-triggers {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .psychology-triggers {
    grid-template-columns: 1fr;
  }
}

.trigger-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.6) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.trigger-card:hover {
  transform: translateY(-5px);
  border-color: rgba(236, 109, 5, 0.4);
}
.trigger-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.trigger-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 0.75rem;
}
.trigger-card__description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

.motivation {
  margin-top: 2rem;
  padding-bottom: 3rem;
}

.motivation__column-text {
  float: left;
  width: 33.33%;
  padding-right: 4.5rem;
  padding-top: 4rem;
}
@media (max-width: 75em) {
  .motivation__column-text {
    padding-right: 3rem;
  }
}
@media (max-width: 62em) {
  .motivation__column-text {
    padding-top: 0;
    padding-right: 0;
    width: 50%;
  }
}
@media (max-width: 48em) {
  .motivation__column-text {
    width: 100%;
    float: none;
    padding-bottom: 3rem;
  }
}

.motivation__text-heading {
  color: rgb(236, 109, 5);
  font-weight: 500;
  font-size: 2rem;
}
.motivation__text-heading::before {
  content: "";
  display: block;
  width: 3rem;
  height: 0.25rem;
  background-color: rgb(250.5352697095, 137.131120332, 44.2647302905);
  margin-bottom: 0.5rem;
}

.motivation__text {
  color: rgb(236, 109, 5);
  margin-top: 0.2rem;
  font-size: 1.1rem;
}

.motivation__column-images {
  float: left;
  width: 66.66%;
  height: clamp(10rem, 35vw + 10rem, 36rem);
  position: relative;
}
@media (max-width: 62em) {
  .motivation__column-images {
    width: 50%;
    height: clamp(10rem, 25vw + 10rem, 36rem);
  }
}
@media (max-width: 48em) {
  .motivation__column-images {
    width: 80%;
    float: none;
    margin: 0 auto;
    height: clamp(10rem, 40vw + 10rem, 36rem);
  }
}
@media (max-width: 36em) {
  .motivation__column-images {
    width: 90%;
    height: clamp(10rem, 45vw + 10rem, 36rem);
  }
}

/**
 * @param $top: Position from top (in rem)
 * @param $left: Position from left (in %)
 */
.motivation__image {
  width: 50%;
  position: absolute;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
  box-sizing: content-box;
  filter: grayscale(50%);
  transform: scale(1);
  transition: filter ease-in-out 0.2s, transform ease-in-out 0.2s;
}
.motivation__image--first {
  width: 75%;
  z-index: 1;
  top: 0rem;
  left: 25%;
}
.motivation__image--first:hover {
  top: -0.66rem;
  left: calc(25% - 0.66rem);
}
.motivation__image--second {
  width: 37%;
  z-index: 2;
  top: 10rem;
  left: 10%;
}
.motivation__image--second:hover {
  top: 9.34rem;
  left: calc(10% - 0.66rem);
}
.motivation__image--third {
  z-index: 3;
  width: 42%;
  top: 5rem;
  left: 40%;
}
.motivation__image--third:hover {
  top: 4.34rem;
  left: calc(40% - 0.66rem);
}
.motivation__image:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
  border: 0.33rem solid rgb(57, 87, 131);
  padding: 0.33rem;
  z-index: 10;
}

.tours {
  background-color: rgb(25, 38, 57);
  position: relative;
  padding-bottom: 8.5rem;
}

.tours::after, .tours::before {
  bottom: 2.5rem;
  left: 0;
  right: 0;
  position: absolute;
  content: "WEBDESIGN  -  ONLINE-MARKETING  -  SOFTWAREENTWICKLUNG";
  text-transform: uppercase;
  color: rgb(25, 38, 57);
  font-size: min(2.8571428571vw, 3rem);
  font-weight: bold;
  text-shadow: 0 0 1px white;
  text-align: center;
  z-index: 0;
  overflow: hidden;
  white-space: nowrap;
}

@supports (-webkit-text-stroke: 2px rgba(255, 255, 255, 0.2)) or (text-stroke: 2px rgba(255, 255, 255, 0.2)) {
  .tours::before {
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.2);
    text-stroke: 2px rgba(255, 255, 255, 0.2);
    text-shadow: none;
  }
}

@supports (-webkit-text-stroke: 2px transparent) or (text-stroke: 2px transparent) {
  .tours::after {
    -webkit-text-stroke: 2px transparent;
    text-stroke: 2px transparent;
    text-shadow: none;
  }
}

.tours__container {
  position: relative;
  z-index: 1;
  max-width: 75rem;
  margin: 0px auto;
  padding: 0 2rem;
}
.tours__container::after {
  display: block;
  clear: both;
  content: "";
}
@media (max-width: 62em) {
  .tours__container {
    padding: 2rem 5vw;
  }
}
@media (max-width: 36em) {
  .tours__container {
    padding: 0 1rem;
  }
}

.tours__heading {
  color: white;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 1rem;
  font-size: 2rem;
}

.tours__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.tours__card {
  flex: 0 0 21.3rem;
  position: relative;
  margin-top: 3rem;
  height: 28rem;
  overflow: hidden;
  box-shadow: 0 0 1rem transparent;
  transform: scale(1);
  transition: transform 0.25s ease-in-out, box-shadow 0.25s ease-in-out, z-index 0.25s linear;
  z-index: 0;
}
.tours__card:hover {
  transform: scale(1.15);
  box-shadow: 0 0 1rem black;
  transition: transform 0.25s ease-in-out, box-shadow 0.25s ease-in-out, z-index 0s linear;
  z-index: 1000;
}

.tours__card-icon-background {
  background-color: rgb(57, 87, 131);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3rem;
  box-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.5);
  transform: translate(calc(-100% + 3rem), 0);
  transition: transform 0.25s ease-in-out;
}
.tours__card:hover .tours__card-icon-background {
  transform: translate(0, 0);
}

.tours__card-img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  filter: brightness(80%);
}

.tours__card-icon-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translate(0, 0);
  transition: transform 0.25s ease-in-out;
}
.tours__card:hover .tours__card-icon-container {
  transform: translate(calc(50% - 1.5rem), 0);
}

.tours__card-icon {
  width: 3rem;
  color: white;
  display: block;
  padding: 0.3rem;
  filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.5));
}

.tours__card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: white;
  padding: 3rem 1rem 0 1rem;
  text-shadow: 0 0 0.125rem black;
  background-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.25) 20%);
  transform: translate(0, calc(100% - 7.25rem));
  transition: transform 0.25s ease-in-out;
}
.tours__card:hover .tours__card-content {
  transform: translate(0, 0);
}

.tours__card-heading {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.tours__card-heading-first {
  padding-bottom: 0.57rem;
}

.tours__card-location {
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  display: flex;
}

.tours__card-location-icon {
  font-size: 1.25rem;
}

.tours__card-location-text {
  line-height: 1.9rem;
  padding-left: 0.15rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.tours__card-desc {
  font-size: 0.8rem;
  padding: 1.3rem 0;
  background-image: linear-gradient(90deg, rgb(57, 87, 131) 60%, transparent 60%);
  background-position-y: top;
  background-repeat: no-repeat;
  background-size: 100% 0.225rem;
}

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

.story__video {
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
}
@supports (object-fit: cover) and (object-position: center center) {
  .story__video {
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}

.story__video-colorize {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(236, 109, 5, 0.5);
}

.story__container {
  position: relative;
  z-index: 2;
  max-width: 75rem;
  margin: 0px auto;
  padding: 0 2rem;
}
.story__container::after {
  display: block;
  clear: both;
  content: "";
}
@media (max-width: 62em) {
  .story__container {
    padding: 2rem 5vw;
  }
}
@media (max-width: 36em) {
  .story__container {
    padding: 0 1rem;
  }
}

.story__heading {
  color: white;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
  font-size: 2rem;
  text-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.5);
}

.story__desc {
  max-width: 40rem;
  margin: 0 auto;
  color: white;
  text-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.5);
  column-count: 2;
  column-gap: 4rem;
  column-rule: 0.125rem solid rgba(255, 255, 255, 0.5);
  text-align: justify;
}
@media (max-width: 48em) {
  .story__desc {
    column-count: 1;
    text-align: left;
  }
}

.story__book {
  text-align: center;
  padding: 4rem 0 4rem 0;
}

.offers {
  background-color: rgb(240, 240, 240);
  min-height: 5rem;
}

.offers__container {
  display: flex;
  padding-top: 4rem;
  padding-bottom: 4rem;
  max-width: 75rem;
  margin: 0px auto;
  padding: 0 2rem;
}
.offers__container::after {
  display: block;
  clear: both;
  content: "";
}
@media (max-width: 62em) {
  .offers__container {
    padding: 2rem 5vw;
  }
}
@media (max-width: 36em) {
  .offers__container {
    padding: 0 1rem;
  }
}

.offers__card {
  flex: 1 0 0px;
  margin: 0 0.66rem;
  padding: 2rem 1rem;
  background-color: white;
  box-shadow: 0.5rem 0.5rem 2rem black;
  border-left: 0.0625rem solid #e2e2e2;
  border-right: 0.0625rem solid #e2e2e2;
  border-top: 0.0625rem solid #e2e2e2;
  position: relative;
}

.offers__card::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: -0.0625rem;
  right: -0.0625rem;
  height: 0.75rem;
  background-color: rgb(57, 87, 131);
  border-left: 0.0625rem solid rgb(110.4853723404, 129.7539893617, 158.0146276596);
  border-right: 0.0625rem solid rgb(110.4853723404, 129.7539893617, 158.0146276596);
}

.about-me {
  background-color: rgb(25, 38, 57);
  color: white;
  line-height: 1.8rem;
}

.about-me__container {
  padding-top: 4rem;
  padding-bottom: 4rem;
  max-width: 75rem;
  margin: 0px auto;
  padding: 0 2rem;
}
.about-me__container::after {
  display: block;
  clear: both;
  content: "";
}
@media (max-width: 62em) {
  .about-me__container {
    padding: 2rem 5vw;
  }
}
@media (max-width: 36em) {
  .about-me__container {
    padding: 0 1rem;
  }
}

.about-me__headline {
  text-align: center;
  padding-bottom: 2rem;
  padding-top: 2rem;
}

.kontakt__headline {
  margin-bottom: 2rem;
}

/* ========================================
   STARTSEITE STYLES
   Füge diesen Code am Ende der main.scss ein
   ======================================== */
/* Responsive Helper Classes */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

/* Header Section */
.startseite__header {
  min-height: auto;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgb(25, 38, 57) 0%, rgb(15, 23, 42) 100%);
  padding: 2rem 0;
  padding-bottom: 8rem;
}
@media (max-width: 75em) {
  .startseite__header {
    padding-bottom: 6rem;
  }
}
@media (max-width: 62em) {
  .startseite__header {
    padding-bottom: 4rem;
  }
}
@media (max-width: 48em) {
  .startseite__header {
    padding-bottom: 4rem;
  }
}
@media (max-width: 36em) {
  .startseite__header {
    padding-bottom: 4rem;
  }
}

.startseite__header::before,
.startseite__header::after {
  content: "";
  position: absolute;
  width: 100vw;
  bottom: -9rem;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
}
@media (max-width: 75em) {
  .startseite__header::before,
  .startseite__header::after {
    bottom: -4rem;
  }
}
@media (max-width: 62em) {
  .startseite__header::before,
  .startseite__header::after {
    bottom: -1rem;
  }
}

.startseite__header::before {
  top: 0;
  background-image: url("../images/pexels-kevin-ku-92347-577585.jpg");
  filter: brightness(0.7);
  background-size: cover;
}

.startseite__slope {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10vw;
  z-index: 1;
  background-image: linear-gradient(-5.71deg, rgb(25, 38, 57) 49.9%, transparent 50.1%);
  background-repeat: no-repeat;
  background-position: center 100%;
  background-size: 100vw 10vw;
}

/* Hero Wrapper - Übernimmt die Container-Zentrierung */
.startseite__hero-wrapper {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 3.5rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 62em) {
  .startseite__hero-wrapper {
    padding: 0 2rem;
  }
}

/* Hero Grid - Nur noch das Grid-Layout */
.header__hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
}
@media (max-width: 62em) {
  .header__hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
  }
}

/* Hero Section */
.startseite__hero-content {
  padding: 1rem;
  background: radial-gradient(ellipse 65% 65% at center, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.08) 65%, rgba(0, 0, 0, 0.02) 75%, transparent 85%);
}
@media (max-width: 62em) {
  .startseite__hero-content {
    padding-right: 0;
    text-align: center;
  }
}

.startseite__hero-greeting {
  color: #67e8f9;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.startseite__headline {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: white;
}
@media (max-width: 62em) {
  .startseite__headline {
    font-size: 2.5rem;
  }
}
@media (max-width: 48em) {
  .startseite__headline {
    font-size: 2rem;
  }
}

.startseite__hero-highlight {
  background: linear-gradient(135deg, #8b5cf6, #c4b5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.startseite__hero-intro {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  text-shadow: 3px 3px 3px black;
}
@media (max-width: 48em) {
  .startseite__hero-intro {
    font-size: 1rem;
  }
}

.startseite__hero-location {
  color: whitesmoke;
  font-size: 1rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-shadow: 3px 3px 3px black;
}
@media (max-width: 62em) {
  .startseite__hero-location {
    justify-content: center;
  }
}

.startseite__cta-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
@media (max-width: 62em) {
  .startseite__cta-buttons {
    justify-content: center;
  }
}
.startseite__cta-buttons.mobile-only {
  margin-top: 2rem;
}
.cta-card__content .startseite__cta-buttons {
  justify-content: center !important;
}

.startseite__cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.startseite__cta-button--primary {
  background: linear-gradient(135deg, #8b5cf6, #c4b5fd);
  color: white;
}
.startseite__cta-button--primary:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 0.625rem 1.875rem rgba(6, 182, 212, 0.3);
}
.startseite__cta-button--secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
  color: white;
}
.startseite__cta-button--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Hero Card */
.startseite__hero-card {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  border: 0.0625rem solid #334155;
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
}
.startseite__hero-card.mobile-only {
  margin-top: 2rem;
}

.startseite__hero-avatar {
  width: 12rem;
  height: 12rem;
  background: linear-gradient(135deg, #8b5cf6, #c4b5fd);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  position: relative;
  border: 0.45rem solid transparent;
  background: linear-gradient(135deg, #8b5cf6, #c4b5fd);
}

.startseite__hero-avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.startseite__hero-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 1rem;
}

.startseite__hero-card-text {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive Breakpoint für mobile/desktop Umschaltung */
@media (max-width: 62em) {
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: block !important;
  }
}
/* Main Container */
.startseite__container {
  position: relative;
  z-index: 2;
  background-color: rgb(25, 38, 57);
  width: 100%;
  margin: 0 auto;
  padding: 0 3.5rem;
  max-width: 75rem;
}
@media (max-width: 62em) {
  .startseite__container {
    padding: 2rem 5vw;
  }
}
@media (max-width: 48em) {
  .startseite__container {
    padding: 0 2rem;
  }
}

/* Intro Section */
.startseite__intro {
  padding: 5rem 0 4rem;
  max-width: 50rem;
  margin: 0 auto;
}
@media (max-width: 62em) {
  .startseite__intro {
    padding: 3rem 0 2rem;
  }
}

.startseite__intro-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  color: white;
}
@media (max-width: 48em) {
  .startseite__intro-title {
    font-size: 1.5rem;
  }
}

.startseite__intro-text {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.startseite__intro-highlight {
  color: #67e8f9;
  font-weight: 600;
}

/* Services Section */
.startseite__services {
  padding: 4rem 0;
}
@media (max-width: 62em) {
  .startseite__services {
    padding: 3rem 0;
  }
}

.startseite__section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.startseite__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: white;
}
@media (max-width: 48em) {
  .startseite__section-title {
    font-size: 2rem;
  }
}

.startseite__section-subtitle {
  color: #94a3b8;
  font-size: 1.1rem;
}

.startseite__services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 62em) {
  .startseite__services-grid {
    grid-template-columns: 1fr;
    max-width: 34.375rem;
    margin: 0 auto;
  }
}

.startseite__service-card {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  border: 0.0625rem solid #334155;
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.startseite__service-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.4);
}
.startseite__service-card--seo:hover {
  border-color: #06b6d4;
}
.startseite__service-card--webdesign:hover {
  border-color: #8b5cf6;
}
.startseite__service-card--software:hover {
  border-color: #f59e0b;
}

.startseite__service-image-wrapper {
  position: relative;
  height: 10rem;
  overflow: hidden;
}

.startseite__service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.startseite__service-card:hover .startseite__service-image {
  transform: scale(1.08);
}

.startseite__service-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5rem;
  background: linear-gradient(to top, #0f172a, transparent);
}

.startseite__service-content {
  padding: 2rem;
  text-align: center;
}

.startseite__service-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #f8fafc;
}

.startseite__service-description {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.startseite__service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #67e8f9;
  text-decoration: none;
  font-weight: 600;
  transition: gap 0.3s ease;
}
.startseite__service-link:hover {
  gap: 0.75rem;
}

/* Regional Section */
.startseite__regional {
  padding: 4rem 0;
}
@media (max-width: 62em) {
  .startseite__regional {
    padding: 3rem 0;
  }
}

.startseite__regional-content {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(139, 92, 246, 0.05));
  border: 0.0625rem solid rgba(139, 92, 246, 0.2);
  border-radius: 1.5rem;
  padding: 3rem;
}
@media (max-width: 48em) {
  .startseite__regional-content {
    padding: 2rem;
  }
}

.startseite__regional-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 62em) {
  .startseite__regional-grid {
    grid-template-columns: 1fr;
  }
}

.startseite__regional-item {
  display: flex;
  align-items: start;
  gap: 1rem;
}

.startseite__regional-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(139, 92, 246, 0.2));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.startseite__regional-text {
  flex: 1;
}

.startseite__regional-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f8fafc;
  margin-bottom: 0.5rem;
}

.startseite__regional-description {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
}

/* Benefits Section */
.startseite__benefits {
  padding: 4rem 0;
}
@media (max-width: 62em) {
  .startseite__benefits {
    padding: 3rem 0;
  }
}

.startseite__benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 62em) {
  .startseite__benefits-grid {
    grid-template-columns: 1fr;
    max-width: 34.375rem;
    margin: 0 auto;
  }
}

.startseite__benefit-card {
  position: relative;
  height: 11.25rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 0.0625rem solid #334155;
  transition: all 0.3s ease;
}
.startseite__benefit-card:hover {
  border-color: #475569;
  transform: translateY(-0.25rem);
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.3);
}

.startseite__benefit-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}
.startseite__benefit-card:hover .startseite__benefit-background {
  transform: scale(1.05);
}
.startseite__benefit-card--expertise .startseite__benefit-background {
  background-image: url("../images/home/seo-expertise.webp");
}
.startseite__benefit-card--technical .startseite__benefit-background {
  background-image: url("../images/home/technical.webp");
}
.startseite__benefit-card--personal .startseite__benefit-background {
  background-image: url("../images/home/personal.webp");
}
.startseite__benefit-card--transparent .startseite__benefit-background {
  background-image: url("../images/home/transparent.webp");
}
.startseite__benefit-card--longterm .startseite__benefit-background {
  background-image: url("../images/home/longterm.webp");
}
.startseite__benefit-card--fair .startseite__benefit-background {
  background-image: url("../images/home/fair.webp");
}

.startseite__benefit-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.3) 0%, rgba(15, 23, 42, 0.6) 50%, rgba(15, 23, 42, 0.85) 100%);
}

.startseite__benefit-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  text-align: center;
  z-index: 1;
}

.startseite__benefit-title {
  font-weight: 600;
  font-size: 1rem;
  color: #f8fafc;
  text-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.6);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.startseite__benefit-text {
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.4;
  text-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.6);
}

/* CTA Section */
.startseite__final-cta {
  padding: 4rem 0 5rem;
}
@media (max-width: 62em) {
  .startseite__final-cta {
    padding: 3rem 0 4rem;
  }
}

.leistungen__header {
  min-height: calc(20rem + 12vw);
  position: relative;
  overflow: hidden;
  background-color: rgb(25, 38, 57);
}
@media (max-width: 75em) {
  .leistungen__header {
    min-height: calc(16rem + 32vw);
  }
}
@media (max-width: 62em) {
  .leistungen__header {
    min-height: calc(18rem + 32vw);
  }
}
@media (max-width: 48em) {
  .leistungen__header {
    min-height: calc(20rem + 32vw);
  }
}
@media (max-width: 36em) {
  .leistungen__header {
    min-height: calc(22rem + 32vw);
  }
}

.leistungen__slope {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10vw;
  z-index: 4;
  background-image: linear-gradient(-5.71deg, rgb(25, 38, 57) 49.9%, transparent 50.1%);
  background-repeat: no-repeat;
  background-position: center 100%;
  background-size: 100vw 10vw;
}

.leistungen__header::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100vw;
  bottom: -9rem;
  background-image: url("../images/pexels-divinetechygirl-1181467.webp");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
  filter: brightness(0.7);
  z-index: 0;
}
@media (max-width: 75em) {
  .leistungen__header::before {
    bottom: -4rem;
  }
}
@media (max-width: 62em) {
  .leistungen__header::before {
    bottom: -1rem;
  }
}
@media (max-width: 36em) {
  .leistungen__header::before {
    background-size: cover;
  }
}

.leistungen__header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.6);
  z-index: 1;
}

.leistungen__heading-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem 3rem;
}
@media (max-width: 62em) {
  .leistungen__heading-container {
    padding: 4rem 1.5rem 2.5rem;
  }
}
@media (max-width: 48em) {
  .leistungen__heading-container {
    padding: 3rem 1rem 2rem;
  }
}

.leistungen__glass-container {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.5rem;
  padding: 3rem 4rem;
  max-width: 50rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
@media (max-width: 62em) {
  .leistungen__glass-container {
    padding: 2.5rem 3rem;
    border-radius: 1.25rem;
  }
}
@media (max-width: 48em) {
  .leistungen__glass-container {
    padding: 2rem 2rem;
    border-radius: 1rem;
  }
}

.leistungen__accent-line {
  width: 4rem;
  height: 0.25rem;
  background: linear-gradient(90deg, #06b6d4, #8b5cf6);
  border-radius: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 48em) {
  .leistungen__accent-line {
    width: 3rem;
    margin-bottom: 1.5rem;
  }
}

.leistungen__headline {
  font-size: 3.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 1.25rem 0;
  line-height: 1.2;
}
@media (max-width: 62em) {
  .leistungen__headline {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 48em) {
  .leistungen__headline {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
}

.leistungen__subheadline {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 300;
}
@media (max-width: 48em) {
  .leistungen__subheadline {
    font-size: 1rem;
  }
}

.leistungen__accent-dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
}
@media (max-width: 48em) {
  .leistungen__accent-dots {
    margin-top: 1.5rem;
    gap: 0.4rem;
  }
}

.leistungen__accent-dot {
  width: 2rem;
  height: 0.25rem;
  border-radius: 1rem;
}
.leistungen__accent-dot--cyan {
  background: #06b6d4;
}
.leistungen__accent-dot--purple {
  background: #8b5cf6;
  width: 1rem;
}
.leistungen__accent-dot--orange {
  background: #f59e0b;
  width: 0.5rem;
}
@media (max-width: 48em) {
  .leistungen__accent-dot--cyan {
    width: 1.5rem;
  }
  .leistungen__accent-dot--purple {
    width: 0.75rem;
  }
  .leistungen__accent-dot--orange {
    width: 0.4rem;
  }
}

.leistungen__container {
  position: relative;
  z-index: 2;
  background-color: rgb(25, 38, 57);
  width: 100%;
  margin: 0px auto;
  padding: 0rem 3.5rem;
}
@media (max-width: 62em) {
  .leistungen__container {
    padding: 2rem 5vw;
  }
}

.leistungen__description {
  color: white;
  line-height: 1.8rem;
}
.leistungen__description h3, .leistungen__description p {
  margin: 2rem 15vw;
}
@media (max-width: 62em) {
  .leistungen__description h3, .leistungen__description p {
    margin: 2rem 0;
  }
}

@media (max-width: 62em) {
  .leistungen__headline {
    margin: 1rem 0;
  }
}

.leistungen__button {
  padding: 0.8rem;
  text-decoration: none;
  background-color: rgb(236, 109, 5);
  color: white;
  border: none;
  border-radius: 0.4rem;
  font-size: 1.3rem;
  margin-left: 60vw;
  margin-bottom: 3rem;
  cursor: pointer;
}

.leistungen__hero {
  text-align: center;
  max-width: 56.25rem;
  margin: 0 auto;
}
@media (max-width: 62em) {
  .leistungen__hero {
    padding: 3rem 5vw 2rem;
  }
}

.leistungen__badge {
  display: inline-block;
  background: linear-gradient(135deg, #8b5cf6, #c4b5fd);
  padding: 0.75rem 1.5rem;
  border-radius: 3.125rem;
  margin-bottom: 1.5rem;
}

.leistungen__badge-text {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
}

.leistungen__hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.2;
  color: white;
}
@media (max-width: 62em) {
  .leistungen__hero-title {
    font-size: 2rem;
  }
}
@media (max-width: 48em) {
  .leistungen__hero-title {
    font-size: 1.75rem;
  }
}

.leistungen__hero-highlight {
  background: linear-gradient(135deg, #8b5cf6, #c4b5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.leistungen__hero-intro {
  color: #94a3b8;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
@media (max-width: 48em) {
  .leistungen__hero-intro {
    font-size: 1rem;
  }
}

.leistungen__usp {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(6, 182, 212, 0.1);
  border: 0.0625rem solid rgba(6, 182, 212, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  color: #67e8f9;
  font-weight: 600;
  margin-top: 1.25rem;
}

.leistungen__usp-icon {
  font-size: 1.2rem;
}

.leistungen__services {
  max-width: 75rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 5rem;
}

.leistungen__services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
}
@media (max-width: 62em) {
  .leistungen__services-grid {
    grid-template-columns: 1fr;
    max-width: 34.375rem;
    margin: 0 auto;
  }
}

.leistungen__service-card {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  border: 0.0625rem solid #334155;
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.4s ease;
}
.leistungen__service-card:hover {
  transform: translateY(-0.75rem);
  box-shadow: 0 1.5625rem 3.125rem rgba(0, 0, 0, 0.4);
}
.leistungen__service-card--webdesign:hover {
  border-color: #06b6d4;
}
.leistungen__service-card--marketing:hover {
  border-color: #8b5cf6;
}
.leistungen__service-card--software:hover {
  border-color: #f59e0b;
}

.leistungen__service-image-wrapper {
  position: relative;
  height: 12.5rem;
  overflow: hidden;
}

.leistungen__service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.leistungen__service-card:hover .leistungen__service-image {
  transform: scale(1.08);
}

.leistungen__service-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.4s ease;
}
.leistungen__service-card:hover .leistungen__service-image-placeholder {
  transform: scale(1.08);
}
.leistungen__service-card--webdesign .leistungen__service-image-placeholder {
  background: linear-gradient(135deg, #0f172a 0%, #164e63 100%);
}
.leistungen__service-card--marketing .leistungen__service-image-placeholder {
  background: linear-gradient(135deg, #0f172a 0%, #4c1d95 100%);
}
.leistungen__service-card--software .leistungen__service-image-placeholder {
  background: linear-gradient(135deg, #0f172a 0%, #78350f 100%);
}

.leistungen__service-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5rem;
  background: linear-gradient(to top, #0f172a, transparent);
}

.leistungen__service-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  backdrop-filter: blur(0.625rem);
}
.leistungen__service-card--webdesign .leistungen__service-category {
  background: rgba(6, 182, 212, 0.2);
  border: 0.0625rem solid rgba(6, 182, 212, 0.4);
  color: #67e8f9;
}
.leistungen__service-card--marketing .leistungen__service-category {
  background: rgba(139, 92, 246, 0.2);
  border: 0.0625rem solid rgba(139, 92, 246, 0.4);
  color: #c4b5fd;
}
.leistungen__service-card--software .leistungen__service-category {
  background: rgba(245, 158, 11, 0.2);
  border: 0.0625rem solid rgba(245, 158, 11, 0.4);
  color: #fcd34d;
}

.leistungen__service-content {
  padding: 1.75rem 1.75rem 2rem;
}

.leistungen__service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #f8fafc;
}

.leistungen__service-description {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.leistungen__service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.leistungen__service-feature {
  padding: 0.5rem 0.875rem;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  background: rgba(51, 65, 85, 0.5);
  color: #cbd5e1;
  border: 0.0625rem solid #334155;
}
.leistungen__service-card--webdesign .leistungen__service-feature {
  border-color: rgba(6, 182, 212, 0.2);
}
.leistungen__service-card--marketing .leistungen__service-feature {
  border-color: rgba(139, 92, 246, 0.2);
}
.leistungen__service-card--software .leistungen__service-feature {
  border-color: rgba(245, 158, 11, 0.2);
}

.leistungen__service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #f1f5f9;
  text-decoration: none;
  font-weight: 600;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}
.leistungen__service-card--webdesign .leistungen__service-link {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(6, 182, 212, 0.05));
  border: 0.0625rem solid rgba(6, 182, 212, 0.25);
}
.leistungen__service-card--webdesign .leistungen__service-link:hover {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  border-color: transparent;
}
.leistungen__service-card--marketing .leistungen__service-link {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
  border: 0.0625rem solid rgba(139, 92, 246, 0.25);
}
.leistungen__service-card--marketing .leistungen__service-link:hover {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  border-color: transparent;
}
.leistungen__service-card--software .leistungen__service-link {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
  border: 0.0625rem solid rgba(245, 158, 11, 0.25);
}
.leistungen__service-card--software .leistungen__service-link:hover {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-color: transparent;
}

.leistungen__service-link-arrow {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
}
.leistungen__service-link:hover .leistungen__service-link-arrow {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(0.25rem);
}

.leistungen__section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.leistungen__section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: white;
}
@media (max-width: 48em) {
  .leistungen__section-title {
    font-size: 1.5rem;
  }
}

.leistungen__section-subtitle {
  color: #94a3b8;
  font-size: 1.05rem;
}

.leistungen__why-me {
  max-width: 62.5rem;
  margin: 0 auto;
  padding: 3.75rem 1.25rem;
}

.leistungen__why-me-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 48em) {
  .leistungen__why-me-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 36em) {
  .leistungen__why-me-grid {
    grid-template-columns: 1fr;
  }
}

.leistungen__why-me-item {
  position: relative;
  height: 11.25rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 0.0625rem solid #334155;
  transition: all 0.3s ease;
}
.leistungen__why-me-item:hover {
  border-color: #475569;
  transform: translateY(-0.25rem);
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.3);
}

.leistungen__why-me-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}
.leistungen__why-me-item:hover .leistungen__why-me-background {
  transform: scale(1.05);
}
.leistungen__why-me-item--contact .leistungen__why-me-background {
  background-image: url("../images/ein-ansprechpartner.webp");
}
.leistungen__why-me-item--communication .leistungen__why-me-background {
  background-image: url("../images/direkte-kommunikation.webp");
}
.leistungen__why-me-item--speed .leistungen__why-me-background {
  background-image: url("../images/schnelle-umsetzung.webp");
}
.leistungen__why-me-item--support .leistungen__why-me-background {
  background-image: url("../images/langfristige-betreuung.webp");
}

.leistungen__why-me-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.3) 0%, rgba(15, 23, 42, 0.6) 50%, rgba(15, 23, 42, 0.85) 100%);
}

.leistungen__why-me-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  text-align: center;
  z-index: 1;
}

.leistungen__why-me-label {
  font-weight: 600;
  font-size: 1rem;
  color: #f8fafc;
  text-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.6);
  line-height: 1.3;
}

.leistungen__process {
  max-width: 62.5rem;
  margin: 0 auto;
  padding: 3.75rem 1.25rem;
}

.leistungen__process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 1.25rem;
}
.leistungen__process-timeline::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 10%;
  right: 10%;
  height: 0.125rem;
  background: linear-gradient(90deg, #06b6d4, #8b5cf6);
  z-index: 0;
}
@media (max-width: 48em) {
  .leistungen__process-timeline::before {
    display: none;
  }
}
@media (max-width: 48em) {
  .leistungen__process-timeline {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.leistungen__process-timeline--three-items::before {
  left: 20%;
  right: 20%;
}

.leistungen__process-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 48em) {
  .leistungen__process-step {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 1.25rem;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    border: 0.0625rem solid #334155;
    border-radius: 1rem;
    padding: 1.25rem;
  }
}

.leistungen__process-step-number {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #8b5cf6, #c4b5fd);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  border: 0.25rem solid rgb(25, 38, 57);
}
@media (max-width: 48em) {
  .leistungen__process-step-number {
    margin: 0;
    width: 3rem;
    height: 3rem;
    font-size: 1.1rem;
    flex-shrink: 0;
  }
}

.leistungen__process-step-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.375rem;
  color: #f1f5f9;
}

.leistungen__process-step-desc {
  font-size: 0.85rem;
  color: #94a3b8;
  max-width: 8.75rem;
  margin: 0 auto;
}
@media (max-width: 48em) {
  .leistungen__process-step-desc {
    max-width: none;
  }
}

.leistungen__tech-stack {
  max-width: 62.5rem;
  margin: 0 auto;
  padding: 3.75rem 1.25rem;
}

.leistungen__tech-stack-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.leistungen__tech-stack-item {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  border: 0.0625rem solid #334155;
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  font-weight: 500;
  color: #cbd5e1;
  transition: all 0.3s ease;
}
.leistungen__tech-stack-item:hover {
  border-color: #06b6d4;
  color: #67e8f9;
}

.leistungen__references-teaser {
  max-width: 50rem;
  margin: 0 auto;
  padding: 3.75rem 1.25rem;
}

.leistungen__references-card {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  border: 0.0625rem solid #334155;
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
}
@media (max-width: 48em) {
  .leistungen__references-card {
    padding: 2rem 1.5rem;
  }
}

.leistungen__references-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: white;
}

.leistungen__references-text {
  color: #94a3b8;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  max-width: 31.25rem;
  margin-left: auto;
  margin-right: auto;
}

.leistungen__references-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(139, 92, 246, 0.1);
  border: 0.0625rem solid rgba(139, 92, 246, 0.3);
  color: #c4b5fd;
  text-decoration: none;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}
.leistungen__references-link:hover {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
  border-color: transparent;
}

.leistungen__faq {
  max-width: 50rem;
  margin: 0 auto;
  padding: 3.75rem 1.25rem;
}

.leistungen__faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.leistungen__faq-item {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  border: 0.0625rem solid #334155;
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.leistungen__faq-item:hover {
  border-color: #475569;
}

.leistungen__faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: #f1f5f9;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: inherit;
}
.leistungen__faq-question:hover {
  color: #67e8f9;
}

.leistungen__faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.375rem;
  background: rgba(6, 182, 212, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #06b6d4;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.leistungen__faq-item.active .leistungen__faq-icon {
  transform: rotate(45deg);
}

.leistungen__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.leistungen__faq-item.active .leistungen__faq-answer {
  max-height: 18.75rem;
}

.leistungen__faq-answer-content {
  padding: 0 1.5rem 1.25rem;
  color: #94a3b8;
  line-height: 1.7;
}

.leistungen__contact-teaser {
  max-width: 62.5rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 5rem;
}

.leistungen__contact-card {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(139, 92, 246, 0.08));
  border: 0.0625rem solid rgba(139, 92, 246, 0.2);
  border-radius: 1.5rem;
  padding: 3.75rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.leistungen__contact-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
  animation: leistungen-pulse 4s ease-in-out infinite;
}
@media (max-width: 48em) {
  .leistungen__contact-card {
    padding: 2.5rem 1.75rem;
  }
}

@keyframes leistungen-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}
.leistungen__contact-content {
  position: relative;
  z-index: 1;
}

.leistungen__contact-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #8b5cf6, #c4b5fd);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

.leistungen__contact-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: white;
}
@media (max-width: 48em) {
  .leistungen__contact-title {
    font-size: 1.5rem;
  }
}

.leistungen__contact-text {
  color: #94a3b8;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 31.25rem;
  margin-left: auto;
  margin-right: auto;
}

.leistungen__contact-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.leistungen__contact-button {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}
.leistungen__contact-button--primary {
  background: linear-gradient(135deg, #8b5cf6, #c4b5fd);
}
.leistungen__contact-button--primary:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 0.625rem 1.875rem rgba(6, 182, 212, 0.3);
}
.leistungen__contact-button--secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
}
.leistungen__contact-button--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.webdesign__container {
  line-height: 1.8rem;
  position: relative;
  z-index: 2;
  background-color: rgb(25, 38, 57);
  width: 100%;
  color: white;
  margin: 0px auto;
  max-width: 1200px;
}
@media (max-width: 62em) {
  .webdesign__container {
    padding: 2rem 5vw;
  }
}

.webdesign__description {
  color: white;
  line-height: 1.8rem;
}
.webdesign__description h3, .webdesign__description p {
  margin: 2rem 15vw;
}
@media (max-width: 62em) {
  .webdesign__description h3, .webdesign__description p {
    margin: 2rem 0;
  }
}

.webdesign__offer-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 3rem auto;
  margin-top: 3rem;
  margin-bottom: 3rem;
  background-color: rgb(25, 38, 57);
}
@media (max-width: 62em) {
  .webdesign__offer-wrapper {
    justify-content: center;
  }
}
@media (max-width: 48em) {
  .webdesign__offer-wrapper {
    display: block;
  }
}

.webdesign__offer-card {
  padding: 6rem 1.5rem 2rem 1.5rem;
  background-color: rgb(76.5255319149, 116.8021276596, 175.8744680851);
  width: 25vw;
  background-image: linear-gradient(40deg, rgb(76.5255319149, 116.8021276596, 175.8744680851), rgb(25, 38, 57));
  transition: transform 0.3s ease-in-out, z-index 0.3s linear;
  z-index: 0;
}
.webdesign__offer-card:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out, z-index 0s linear;
  z-index: 1000;
}
@media (max-width: 48em) {
  .webdesign__offer-card {
    width: 80vw;
    margin: 0 auto;
    margin-bottom: 2rem;
    z-index: 1000;
  }
}

.webdesign__offer-headline {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.webdesign__offer-price {
  text-shadow: 0 0 0.4rem black;
  text-align: right;
  margin-top: 2.5rem;
}

.webdesign__benefits {
  padding: 4rem 0;
}

.webdesign__benefit-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.4s ease;
}
.webdesign__benefit-card:hover .webdesign__benefit-image-placeholder {
  transform: scale(1.08);
}
.webdesign__benefit-card--01 .webdesign__benefit-image-placeholder {
  background: linear-gradient(135deg, #0f172a 0%, #4c1d95 100%);
}
.webdesign__benefit-card--02 .webdesign__benefit-image-placeholder {
  background: linear-gradient(135deg, #0f172a 0%, #164e63 100%);
}
.webdesign__benefit-card--03 .webdesign__benefit-image-placeholder {
  background: linear-gradient(135deg, #0f172a 0%, #78350f 100%);
}
.webdesign__benefit-card--04 .webdesign__benefit-image-placeholder {
  background: linear-gradient(135deg, #0f172a 0%, #065f46 100%);
}
.webdesign__benefit-card--05 .webdesign__benefit-image-placeholder {
  background: linear-gradient(135deg, #0f172a 0%, #7c2d12 100%);
}
.webdesign__benefit-card--06 .webdesign__benefit-image-placeholder {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
}

.webdesign__problem-solution {
  padding: 4rem 0;
  max-width: 62.5rem;
  margin: 0 auto;
}

.webdesign__comparison {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 62em) {
  .webdesign__comparison {
    grid-template-columns: 1fr;
  }
}

.webdesign__comparison-card {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  border: 0.0625rem solid #334155;
  border-radius: 1.5rem;
  padding: 2rem;
}
.webdesign__comparison-card--problem {
  border-color: rgba(239, 68, 68, 0.3);
}
.webdesign__comparison-card--solution {
  border-color: rgba(34, 197, 94, 0.3);
}

.webdesign__comparison-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.webdesign__comparison-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.webdesign__comparison-card--problem .webdesign__comparison-icon {
  background: rgba(239, 68, 68, 0.1);
}
.webdesign__comparison-card--solution .webdesign__comparison-icon {
  background: rgba(34, 197, 94, 0.1);
}

.webdesign__comparison-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f8fafc;
}

.webdesign__comparison-list {
  list-style: none;
}

.webdesign__comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
}

.webdesign__comparison-item-icon {
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.webdesign__guarantees {
  padding: 4rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.webdesign__guarantee-item--performance .webdesign__guarantee-background {
  background: linear-gradient(135deg, #f59e0b 0%, #0f172a 100%);
}

.webdesign__guarantee-item--mobile .webdesign__guarantee-background {
  background: linear-gradient(135deg, #06b6d4 0%, #0f172a 100%);
}

.webdesign__guarantee-item--security .webdesign__guarantee-background {
  background: linear-gradient(135deg, #10b981 0%, #0f172a 100%);
}

.webdesign__guarantee-item--communication .webdesign__guarantee-background {
  background: linear-gradient(135deg, #8b5cf6 0%, #0f172a 100%);
}

.webdesign__guarantee-item--pricing .webdesign__guarantee-background {
  background: linear-gradient(135deg, #ef4444 0%, #0f172a 100%);
}

.webdesign__guarantee-item--speed .webdesign__guarantee-background {
  background: linear-gradient(135deg, #3b82f6 0%, #0f172a 100%);
}

.webdesign__investment {
  padding: 4rem 0;
}

.webdesign__pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 62.5rem;
  margin: 0 auto;
}
@media (max-width: 62em) {
  .webdesign__pricing-grid {
    grid-template-columns: 1fr;
    max-width: 34.375rem;
  }
}

.webdesign__pricing-card {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  border: 0.0625rem solid #334155;
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
}
.webdesign__pricing-card:hover {
  transform: translateY(-0.5rem);
  border-color: #8b5cf6;
  box-shadow: 0 1rem 2rem rgba(139, 92, 246, 0.2);
}
.webdesign__pricing-card--featured {
  border-color: #8b5cf6;
}
.webdesign__pricing-card--featured::before {
  content: "Beliebt";
  position: absolute;
  top: -0.75rem;
  right: 1.5rem;
  background: linear-gradient(135deg, #8b5cf6, #c4b5fd);
  padding: 0.375rem 1rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.webdesign__pricing-header {
  margin-bottom: 1.5rem;
}

.webdesign__pricing-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 0.5rem;
}

.webdesign__pricing-desc {
  font-size: 0.85rem;
  color: #94a3b8;
}

.webdesign__pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.webdesign__pricing-period {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

.webdesign__pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.webdesign__pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.webdesign__pricing-feature-icon {
  color: #8b5cf6;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.webdesign__pricing-button {
  display: block;
  width: 100%;
  padding: 1rem;
  background: rgba(139, 92, 246, 0.1);
  border: 0.0625rem solid rgba(139, 92, 246, 0.3);
  border-radius: 0.75rem;
  color: #f1f5f9;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease;
}
.webdesign__pricing-button:hover {
  background: linear-gradient(135deg, #8b5cf6, #c4b5fd);
  border-color: transparent;
}
.webdesign__pricing-card--featured .webdesign__pricing-button {
  background: linear-gradient(135deg, #8b5cf6, #c4b5fd);
  border-color: transparent;
}

.webdesign__cta {
  padding: 2rem 0 5rem;
}

.online-marketing__container {
  position: relative;
  z-index: 2;
  background-color: rgb(25, 38, 57);
  width: 100%;
  margin: 0px auto;
  padding: 0rem 3.5rem 5rem;
  max-width: 1200px;
}
@media (max-width: 62em) {
  .online-marketing__container {
    padding: 2rem 5vw 3rem;
  }
}

.online-marketing__comparison {
  margin-bottom: 5rem;
}
.online-marketing__comparison .card--red,
.online-marketing__comparison .card--purple {
  padding: 1rem;
}

.online-marketing__comparison-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.online-marketing__comparison-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.card--red .online-marketing__comparison-icon {
  background: rgba(239, 68, 68, 0.2);
}
.card--purple .online-marketing__comparison-icon {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.online-marketing__comparison-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f8fafc;
}

.online-marketing__comparison-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.online-marketing__comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.online-marketing__comparison-item-icon {
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.card--red .online-marketing__comparison-item-icon {
  color: #fca5a5;
}
.card--purple .online-marketing__comparison-item-icon {
  color: #c4b5fd;
}

.online-marketing__comparison-item-text {
  color: #94a3b8;
  line-height: 1.6;
}

.online-marketing__pillars {
  margin-bottom: 5rem;
}

.online-marketing__timeline {
  margin-bottom: 5rem;
}

.online-marketing__timeline-wrapper {
  max-width: 75rem;
  margin: 0 auto;
  position: relative;
}

.online-marketing__timeline-line {
  position: absolute;
  top: 4.5rem;
  left: 12%;
  right: 12%;
  height: 0.125rem;
  background: linear-gradient(90deg, #06b6d4, #8b5cf6);
}
@media (max-width: 62em) {
  .online-marketing__timeline-line {
    display: none;
  }
}

.online-marketing__timeline-steps {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
}
@media (max-width: 62em) {
  .online-marketing__timeline-steps {
    flex-direction: column;
  }
}

.online-marketing__timeline-step {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.online-marketing__timeline-card {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  border: 0.0625rem solid #334155;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.online-marketing__timeline-card:hover {
  border-color: #8b5cf6;
  transform: translateY(-0.25rem);
}

.online-marketing__timeline-image-wrapper {
  position: relative;
  height: 5.5rem;
  overflow: hidden;
}

.online-marketing__timeline-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.online-marketing__timeline-number {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  width: 1.75rem;
  height: 1.75rem;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
}

.online-marketing__timeline-card-content {
  padding: 1.25rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.online-marketing__timeline-card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #f8fafc;
}

.online-marketing__timeline-card-text {
  color: #94a3b8;
  font-size: 0.85rem;
  line-height: 1.5;
}

.online-marketing__pricing {
  margin-bottom: 5rem;
}
.online-marketing__pricing .grid {
  margin-bottom: 3rem;
}
.online-marketing__pricing .card--featured {
  position: relative;
  border-color: #8b5cf6;
  transform: scale(1.02);
  box-shadow: 0 1rem 2rem rgba(139, 92, 246, 0.3);
}
.online-marketing__pricing .card--featured:hover {
  transform: scale(1.04) translateY(-0.5rem);
  box-shadow: 0 1.5rem 3rem rgba(139, 92, 246, 0.4);
}

.online-marketing__pricing-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  z-index: 1;
}

.online-marketing__pricing-header {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(124, 58, 237, 0.05));
  padding: 2rem;
  text-align: center;
  border-bottom: 0.0625rem solid rgba(139, 92, 246, 0.2);
}

.online-marketing__pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #f8fafc;
}

.online-marketing__pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.online-marketing__pricing-amount {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 0.5rem;
}

.online-marketing__pricing-period {
  font-size: 1rem;
  color: #94a3b8;
}

.online-marketing__pricing-content {
  padding: 2rem;
}

.online-marketing__pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.online-marketing__pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.5;
}
.online-marketing__pricing-feature::before {
  content: "✓";
  width: 1.25rem;
  height: 1.25rem;
  background: rgba(139, 92, 246, 0.2);
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c4b5fd;
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 0.125rem;
}

.online-marketing__pricing-note {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(124, 58, 237, 0.05));
  border: 0.0625rem solid rgba(139, 92, 246, 0.2);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  max-width: 62rem;
  margin: 0 auto;
  text-align: center;
}
.online-marketing__pricing-note p {
  color: #cbd5e1;
  line-height: 1.7;
}
.online-marketing__pricing-note strong {
  color: #c4b5fd;
}

.online-marketing__faq {
  margin-bottom: 5rem;
}

.online-marketing__faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 62rem;
  margin: 0 auto;
}

.online-marketing__faq-item {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  border: 0.0625rem solid #334155;
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.online-marketing__faq-item:hover {
  border-color: #475569;
}
.online-marketing__faq-item.active {
  border-color: #8b5cf6;
}

.online-marketing__faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: #f1f5f9;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: inherit;
}
.online-marketing__faq-question:hover {
  color: #c4b5fd;
}

.online-marketing__faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.375rem;
  background: rgba(139, 92, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #8b5cf6;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.online-marketing__faq-item.active .online-marketing__faq-icon {
  transform: rotate(45deg);
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
}

.online-marketing__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.online-marketing__faq-item.active .online-marketing__faq-answer {
  max-height: 25rem;
}

.online-marketing__faq-answer-content {
  padding: 0 1.5rem 1.25rem;
  color: #94a3b8;
  line-height: 1.7;
}

.softwareentwicklung__container {
  position: relative;
  z-index: 2;
  background-color: rgb(25, 38, 57);
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 3.5rem 5rem;
}
@media (max-width: 62em) {
  .softwareentwicklung__container {
    padding: 2rem 5vw;
  }
}

.softwareentwicklung__categories {
  margin-bottom: 5rem;
}

.softwareentwicklung__category-header {
  position: relative;
  height: 10rem;
  overflow: hidden;
}

.softwareentwicklung__category-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.card:hover .softwareentwicklung__category-background {
  transform: scale(1.08);
}

.softwareentwicklung__category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4rem;
  background: linear-gradient(to top, #0f172a, transparent);
}

.softwareentwicklung__category-content {
  padding: 1.75rem;
}

.softwareentwicklung__category-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #f8fafc;
}

.softwareentwicklung__category-description {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.softwareentwicklung__category-examples {
  margin-bottom: 1.25rem;
}

.softwareentwicklung__category-example-title {
  color: #cbd5e1;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.softwareentwicklung__category-example-list {
  list-style: none;
}

.softwareentwicklung__category-example-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.85rem;
  margin-bottom: 0.375rem;
}
.softwareentwicklung__category-example-item::before {
  content: "→";
  color: #f59e0b;
  font-weight: 700;
  flex-shrink: 0;
}

.softwareentwicklung__category-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.softwareentwicklung__category-tech-tag {
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(51, 65, 85, 0.5);
  color: #cbd5e1;
  border: 0.0625rem solid #334155;
}

.softwareentwicklung__howitworks {
  margin-bottom: 5rem;
}

.softwareentwicklung__hiw-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: start;
}
@media (max-width: 62em) {
  .softwareentwicklung__hiw-grid {
    grid-template-columns: 1fr;
  }
}

.softwareentwicklung__hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.softwareentwicklung__hiw-step {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  border: 0.0625rem solid #334155;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  transition: all 0.3s ease;
}
.softwareentwicklung__hiw-step:hover {
  border-color: #475569;
  transform: translateX(0.5rem);
}

.softwareentwicklung__hiw-step-number {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.softwareentwicklung__hiw-step-content {
  flex: 1;
}

.softwareentwicklung__hiw-step-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #f1f5f9;
}

.softwareentwicklung__hiw-step-description {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.6;
}

.softwareentwicklung__hiw-benefits {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(217, 119, 6, 0.08));
  border: 0.0625rem solid rgba(245, 158, 11, 0.2);
  border-radius: 1.5rem;
  padding: 2rem;
}

.softwareentwicklung__hiw-benefits-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #f8fafc;
}

.softwareentwicklung__hiw-benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.softwareentwicklung__hiw-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.softwareentwicklung__hiw-benefit-icon {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.softwareentwicklung__hiw-benefit-content {
  flex: 1;
}

.softwareentwicklung__hiw-benefit-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #f1f5f9;
}

.softwareentwicklung__hiw-benefit-text {
  color: #94a3b8;
  font-size: 0.85rem;
  line-height: 1.5;
}

.softwareentwicklung__stack {
  margin-bottom: 5rem;
}

.softwareentwicklung__stack-intro {
  text-align: center;
  max-width: 43.75rem;
  margin: 0 auto 2.5rem;
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1.7;
}

.softwareentwicklung__faq {
  margin-bottom: 5rem;
}

.softwareentwicklung__faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 50rem;
  margin: 0 auto;
}

.softwareentwicklung__faq-item {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  border: 0.0625rem solid #334155;
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.softwareentwicklung__faq-item:hover {
  border-color: #475569;
}

.softwareentwicklung__faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: #f1f5f9;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: inherit;
}
.softwareentwicklung__faq-question:hover {
  color: #fcd34d;
}

.softwareentwicklung__faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.375rem;
  background: rgba(245, 158, 11, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #f59e0b;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.softwareentwicklung__faq-item.active .softwareentwicklung__faq-icon {
  transform: rotate(45deg);
}

.softwareentwicklung__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.softwareentwicklung__faq-item.active .softwareentwicklung__faq-answer {
  max-height: 18.75rem;
}

.softwareentwicklung__faq-answer-content {
  padding: 0 1.5rem 1.25rem;
  color: #94a3b8;
  line-height: 1.7;
}

.softwareentwicklung__cta {
  margin-bottom: 5rem;
}

.kontakt__header {
  min-height: calc(20rem + 12vw);
  position: relative;
  overflow: hidden;
  background-color: rgb(25, 38, 57);
}
@media (max-width: 75em) {
  .kontakt__header {
    min-height: calc(16rem + 32vw);
  }
}
@media (max-width: 62em) {
  .kontakt__header {
    min-height: calc(18rem + 32vw);
  }
}
@media (max-width: 48em) {
  .kontakt__header {
    min-height: calc(20rem + 32vw);
  }
}
@media (max-width: 36em) {
  .kontakt__header {
    min-height: calc(22rem + 32vw);
  }
}

.kontakt__slope {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10vw;
  z-index: 4;
  background-image: linear-gradient(-5.71deg, rgb(25, 38, 57) 49.9%, transparent 50.1%);
  background-repeat: no-repeat;
  background-position: center 100%;
  background-size: 100vw 10vw;
}

.kontakt__header::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100vw;
  bottom: -9rem;
  background-image: url("../images/pexels-asphotograpy-887751.jpg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
  filter: brightness(0.7);
  z-index: 0;
}
@media (max-width: 75em) {
  .kontakt__header::before {
    bottom: -4rem;
  }
}
@media (max-width: 62em) {
  .kontakt__header::before {
    bottom: -1rem;
  }
}
@media (max-width: 36em) {
  .kontakt__header::before {
    background-size: cover;
  }
}

.kontakt__header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.6);
  z-index: 1;
}

.kontakt__heading-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem 3rem;
}
@media (max-width: 62em) {
  .kontakt__heading-container {
    padding: 4rem 1.5rem 2.5rem;
  }
}
@media (max-width: 48em) {
  .kontakt__heading-container {
    padding: 3rem 1rem 2rem;
  }
}

.kontakt__glass-container {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.5rem;
  padding: 3rem 4rem;
  max-width: 50rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
@media (max-width: 62em) {
  .kontakt__glass-container {
    padding: 2.5rem 3rem;
    border-radius: 1.25rem;
  }
}
@media (max-width: 48em) {
  .kontakt__glass-container {
    padding: 2rem 2rem;
    border-radius: 1rem;
  }
}

.kontakt__accent-line {
  width: 4rem;
  height: 0.25rem;
  background: linear-gradient(90deg, #06b6d4, #8b5cf6);
  border-radius: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 48em) {
  .kontakt__accent-line {
    width: 3rem;
    margin-bottom: 1.5rem;
  }
}

.kontakt__headline {
  font-size: 3.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 1.25rem 0;
  line-height: 1.2;
}
@media (max-width: 62em) {
  .kontakt__headline {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 48em) {
  .kontakt__headline {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
}

.kontakt__subheadline {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 300;
}
@media (max-width: 48em) {
  .kontakt__subheadline {
    font-size: 1rem;
  }
}

.kontakt__accent-dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
}
@media (max-width: 48em) {
  .kontakt__accent-dots {
    margin-top: 1.5rem;
    gap: 0.4rem;
  }
}

.kontakt__accent-dot {
  width: 2rem;
  height: 0.25rem;
  border-radius: 1rem;
}
.kontakt__accent-dot--cyan {
  background: #06b6d4;
}
.kontakt__accent-dot--purple {
  background: #8b5cf6;
  width: 1rem;
}
.kontakt__accent-dot--orange {
  background: #f59e0b;
  width: 0.5rem;
}
@media (max-width: 48em) {
  .kontakt__accent-dot--cyan {
    width: 1.5rem;
  }
  .kontakt__accent-dot--purple {
    width: 0.75rem;
  }
  .kontakt__accent-dot--orange {
    width: 0.4rem;
  }
}

.kontakt__container {
  position: relative;
  z-index: 2;
  background-color: rgb(25, 38, 57);
  max-width: 1200px;
  color: white;
  min-height: 100%;
  padding: 0 2rem;
  line-height: 1.8rem;
  margin: 1rem auto;
}

#kontakt__formular {
  padding: 2rem 15vw;
}
@media (max-width: 62em) {
  #kontakt__formular {
    padding: 2rem 5vw;
  }
}

.kontakt__intro {
  padding: 2rem 15vw;
}
@media (max-width: 62em) {
  .kontakt__intro {
    padding: 2rem 5vw;
  }
}

.kontakt__form-header {
  text-align: center;
  margin-bottom: 48px;
}

.kontakt__badge {
  display: inline-block;
  background: linear-gradient(135deg, #06b6d4, #8b5cf6);
  padding: 12px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.kontakt__badge-text {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.kontakt__title {
  color: #f8fafc;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.kontakt__title-highlight {
  background: linear-gradient(135deg, #06b6d4, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kontakt__subtitle {
  color: #94a3b8;
  font-size: 1.1rem;
  margin: 0 auto;
  max-width: 450px;
  line-height: 1.6;
}

.kontakt__subtext {
  color: #94a3b8;
  font-size: 1.1rem;
  margin: 0 auto;
  line-height: 1.6;
}

.kontakt__quick-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 48em) {
  .kontakt__quick-buttons {
    grid-template-columns: 1fr;
  }
}

.kontakt__quick-link {
  text-decoration: none;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s;
}
.kontakt__quick-link--phone {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(6, 182, 212, 0.05));
  border: 1px solid rgba(6, 182, 212, 0.3);
}
.kontakt__quick-link--phone:hover {
  border-color: #06b6d4;
  transform: translateY(-2px);
}
.kontakt__quick-link--email {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05));
  border: 1px solid rgba(139, 92, 246, 0.3);
}
.kontakt__quick-link--email:hover {
  border-color: #8b5cf6;
  transform: translateY(-2px);
}

.kontakt__quick-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.kontakt__quick-icon--phone {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}
.kontakt__quick-icon--email {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.kontakt__quick-label {
  color: #64748b;
  font-size: 0.8rem;
  margin-bottom: 2px;
}

.kontakt__quick-value {
  color: #f1f5f9;
  font-weight: 600;
}

.kontakt__card {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid #334155;
  border-radius: 24px;
  padding: 40px;
}
@media (max-width: 48em) {
  .kontakt__card {
    padding: 28px 20px;
  }
}

.kontakt__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.kontakt__pulse-dot {
  width: 8px;
  height: 8px;
  background: #06b6d4;
  border-radius: 50%;
  animation: kontakt__pulse 2s infinite;
}

@keyframes kontakt__pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.kontakt__card-intro {
  color: #94a3b8;
  font-size: 0.9rem;
}

.kontakt__form-group {
  margin-bottom: 22px;
}

.kontakt__label {
  display: block;
  color: #e2e8f0;
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.kontakt__input,
.kontakt__textarea {
  width: 100%;
  padding: 16px 20px;
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: 12px;
  font-size: 1rem;
  color: #f1f5f9;
  box-sizing: border-box;
  outline: none;
  transition: all 0.3s;
  font-family: inherit;
}
.kontakt__input:focus,
.kontakt__textarea:focus {
  border-color: #06b6d4;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.15);
}
.kontakt__input::placeholder,
.kontakt__textarea::placeholder {
  color: #64748b;
}

.kontakt__textarea {
  resize: vertical;
  min-height: 120px;
}

.kontakt__projekt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 48em) {
  .kontakt__projekt-grid {
    grid-template-columns: 1fr;
  }
}

.kontakt__projekt-input {
  display: none;
}
.kontakt__projekt-input:checked + .kontakt__projekt-card {
  background: rgba(6, 182, 212, 0.1);
  border-color: #06b6d4;
}
.kontakt__projekt-input[value=seo]:checked + .kontakt__projekt-card {
  background: rgba(139, 92, 246, 0.1);
  border-color: #8b5cf6;
}
.kontakt__projekt-input[value=sonstiges]:checked + .kontakt__projekt-card {
  background: rgba(245, 158, 11, 0.1);
  border-color: #f59e0b;
}

.kontakt__projekt-card {
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: 10px;
  padding: 14px 8px;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
}
.kontakt__projekt-card:hover {
  border-color: #06b6d4;
}

.kontakt__projekt-icon {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.kontakt__projekt-text {
  color: #cbd5e1;
  font-size: 0.8rem;
}

.kontakt__submit {
  display: inline-block;
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(6, 182, 212, 0.25);
  margin-top: 6px;
}
.kontakt__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(6, 182, 212, 0.35);
}

.kontakt__form-footer {
  text-align: center;
  margin-top: 32px;
}

.kontakt__footer-text {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
}

.kontakt__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 48em) {
  .kontakt__form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.kontakt__card--success,
.kontakt__card--error {
  text-align: center;
  padding: 60px 40px;
}

.kontakt__card--success {
  border-color: rgba(74, 222, 128, 0.3);
}

.kontakt__card--error {
  border-color: rgba(248, 113, 113, 0.3);
}

.kontakt__success-icon {
  font-size: 4rem;
  margin-bottom: 24px;
}

.kontakt__success-title {
  color: #f8fafc;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 16px 0;
}

.kontakt__success-text {
  color: #94a3b8;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 0 32px 0;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.impressum__header {
  min-height: calc(20rem + 12vw);
  position: relative;
  overflow: hidden;
  background-color: rgb(25, 38, 57);
}
@media (max-width: 75em) {
  .impressum__header {
    min-height: calc(16rem + 32vw);
  }
}
@media (max-width: 62em) {
  .impressum__header {
    min-height: calc(18rem + 32vw);
  }
}
@media (max-width: 48em) {
  .impressum__header {
    min-height: calc(20rem + 32vw);
  }
}
@media (max-width: 36em) {
  .impressum__header {
    min-height: calc(22rem + 32vw);
  }
}

.impressum__slope {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10vw;
  z-index: 4;
  background-image: linear-gradient(-5.71deg, rgb(25, 38, 57) 49.9%, transparent 50.1%);
  background-repeat: no-repeat;
  background-position: center 100%;
  background-size: 100vw 10vw;
}

.impressum__header::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100vw;
  bottom: -9rem;
  background-image: url("../images/pexels-divinetechygirl-1181467.jpg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
  filter: brightness(0.7);
  z-index: 0;
}
@media (max-width: 75em) {
  .impressum__header::before {
    bottom: -4rem;
  }
}
@media (max-width: 62em) {
  .impressum__header::before {
    bottom: -1rem;
  }
}
@media (max-width: 36em) {
  .impressum__header::before {
    background-size: cover;
  }
}

.impressum__header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.6);
  z-index: 1;
}

.impressum__heading-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem 3rem;
}
@media (max-width: 62em) {
  .impressum__heading-container {
    padding: 4rem 1.5rem 2.5rem;
  }
}
@media (max-width: 48em) {
  .impressum__heading-container {
    padding: 3rem 1rem 2rem;
  }
}

.impressum__glass-container {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.5rem;
  padding: 3rem 4rem;
  max-width: 50rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
@media (max-width: 62em) {
  .impressum__glass-container {
    padding: 2.5rem 3rem;
    border-radius: 1.25rem;
  }
}
@media (max-width: 48em) {
  .impressum__glass-container {
    padding: 2rem 2rem;
    border-radius: 1rem;
  }
}

.impressum__accent-line {
  width: 4rem;
  height: 0.25rem;
  background: linear-gradient(90deg, #06b6d4, #8b5cf6);
  border-radius: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 48em) {
  .impressum__accent-line {
    width: 3rem;
    margin-bottom: 1.5rem;
  }
}

.impressum__headline {
  font-size: 3.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 1.25rem 0;
  line-height: 1.2;
}
@media (max-width: 62em) {
  .impressum__headline {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 48em) {
  .impressum__headline {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
}

.impressum__subheadline {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 300;
}
@media (max-width: 48em) {
  .impressum__subheadline {
    font-size: 1rem;
  }
}

.impressum__accent-dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
}
@media (max-width: 48em) {
  .impressum__accent-dots {
    margin-top: 1.5rem;
    gap: 0.4rem;
  }
}

.impressum__accent-dot {
  width: 2rem;
  height: 0.25rem;
  border-radius: 1rem;
}
.impressum__accent-dot--cyan {
  background: #06b6d4;
}
.impressum__accent-dot--purple {
  background: #8b5cf6;
  width: 1rem;
}
.impressum__accent-dot--orange {
  background: #f59e0b;
  width: 0.5rem;
}
@media (max-width: 48em) {
  .impressum__accent-dot--cyan {
    width: 1.5rem;
  }
  .impressum__accent-dot--purple {
    width: 0.75rem;
  }
  .impressum__accent-dot--orange {
    width: 0.4rem;
  }
}

.impressum__container {
  position: relative;
  z-index: 2;
  background-color: rgb(25, 38, 57);
  width: 100%;
  margin: 0px auto;
  padding: 0 2rem;
}

.impressum__description {
  color: white;
  line-height: 1.8rem;
}
.impressum__description h3, .impressum__description p {
  margin: 2rem 15vw;
}

.impressum__description-headline2 {
  text-align: center;
}

.impressum__li {
  margin: 2rem 17vw;
}

.blog__header {
  min-height: calc(3rem + 22vw);
  position: relative;
  overflow: hidden;
  background-color: rgb(25, 38, 57);
  /** 1200px oder schmaler */
}
@media (max-width: 75em) {
  .blog__header {
    height: calc(10rem + 32vw);
  }
}
@media (max-width: 62em) {
  .blog__header {
    height: calc(10rem + 32vw);
  }
}
@media (max-width: 48em) {
  .blog__header {
    height: calc(10rem + 32vw);
  }
}
@media (max-width: 36em) {
  .blog__header {
    height: calc(10rem + 32vw);
  }
}

.blog__slope {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10vw;
  z-index: 1;
  background-image: linear-gradient(-5.71deg, rgb(25, 38, 57) 49.9%, transparent 50.1%);
  background-repeat: no-repeat;
  background-position: center 100%;
  background-size: 100vw 10vw;
}

.blog__headline {
  color: white;
  text-align: center;
  padding-top: 6rem;
  display: block;
  text-shadow: 0 0 0.2rem black;
}

.blog__header::before,
.blog__header::after {
  content: "";
  position: absolute;
  width: 100vw;
  bottom: -9rem;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
  /** 1200px oder schmaler */
}
@media (max-width: 75em) {
  .blog__header::before,
  .blog__header::after {
    bottom: -4rem;
  }
}
@media (max-width: 62em) {
  .blog__header::before,
  .blog__header::after {
    bottom: -1rem;
  }
}

.blog__header::before {
  top: 0;
  background-image: url("../images/pexels-pixabay-261662.jpg");
  filter: brightness(0.7);
}
@media (max-width: 36em) {
  .blog__header::before {
    background-size: cover;
  }
}

.blog__description {
  color: white;
  line-height: 1.8rem;
}
.blog__description h3, .blog__description p {
  margin: 2rem 15vw;
}
@media (max-width: 62em) {
  .blog__description h3, .blog__description p {
    margin: 2rem 5vw;
  }
}

.blog {
  background-color: rgb(25, 38, 57);
  position: relative;
  padding-bottom: 8.5rem;
}

.blog::after, .blog::before {
  bottom: 2.5rem;
  left: 0;
  right: 0;
  position: absolute;
  content: "WEBDESIGN  -  ONLINE-MARKETING  -  SOFTWAREENTWICKLUNG";
  text-transform: uppercase;
  color: rgb(25, 38, 57);
  font-size: min(2.8571428571vw, 3rem);
  font-weight: bold;
  text-shadow: 0 0 1px white;
  text-align: center;
  z-index: 0;
  overflow: hidden;
  white-space: nowrap;
}

@supports (-webkit-text-stroke: 2px rgba(255, 255, 255, 0.2)) or (text-stroke: 2px rgba(255, 255, 255, 0.2)) {
  .blog::before {
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.2);
    text-stroke: 2px rgba(255, 255, 255, 0.2);
    text-shadow: none;
  }
}

@supports (-webkit-text-stroke: 2px transparent) or (text-stroke: 2px transparent) {
  .blog::after {
    -webkit-text-stroke: 2px transparent;
    text-stroke: 2px transparent;
    text-shadow: none;
  }
}

.blog__container {
  position: relative;
  z-index: 1;
  background-color: rgb(25, 38, 57);
  padding-bottom: 3rem;
}

.blog__heading {
  color: white;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 1rem;
  font-size: 2rem;
}

.blog__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.blog__card {
  flex: 0 0 21.3rem;
  position: relative;
  margin-top: 3rem;
  height: 14rem;
  overflow: hidden;
  box-shadow: 0 0 1rem transparent;
  transform: scale(1);
  transition: transform 0.25s ease-in-out, box-shadow 0.25s ease-in-out, z-index 0.25s linear;
  z-index: 0;
}
.blog__card:hover {
  transform: scale(1.15);
  box-shadow: 0 0 1rem black;
  transition: transform 0.25s ease-in-out, box-shadow 0.25s ease-in-out, z-index 0s linear;
  z-index: 1000;
}

.blog__card-icon-background {
  background-color: rgb(57, 87, 131);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3rem;
  box-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.5);
  transform: translate(calc(-100% + 3rem), 0);
  transition: transform 0.25s ease-in-out;
}
.blog__card:hover .blog__card-icon-background {
  transform: translate(0, 0);
}

.blog__card-icon-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translate(0, 0);
  transition: transform 0.25s ease-in-out;
}
.blog__card:hover .blog__card-icon-container {
  transform: translate(calc(50% - 1.5rem), 0);
}

.blog__card-icon {
  width: 3rem;
  color: white;
  display: block;
  padding: 0.3rem;
  filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.5));
}

.blog__card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: white;
  padding: 3rem 1rem 0 1rem;
  text-shadow: 0 0 0.125rem black;
  background-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.25) 20%);
  transform: translate(0, calc(100% - 11.25rem));
  transition: transform 0.25s ease-in-out;
}
.blog__card:hover .blog__card-content {
  transform: translate(0, 0);
}

.blog__card-heading {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.blog__card-location {
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  display: flex;
}

.blog__card-location-text {
  line-height: 1.9rem;
  padding-left: 0.15rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.blog__card-desc {
  font-size: 0.8rem;
  padding: 1.3rem 0;
  background-image: linear-gradient(90deg, rgb(57, 87, 131) 60%, transparent 60%);
  background-position-y: top;
  background-repeat: no-repeat;
  background-size: 100% 0.225rem;
}

.blog__posts-topic-headline {
  color: white;
  text-align: center;
  margin-top: 4rem;
}

.blog__date-article {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 100;
}

.blog-articles__container {
  padding: 2rem 15vw;
  background-color: rgb(25, 38, 57);
  line-height: 1.8rem;
}
@media (max-width: 62em) {
  .blog-articles__container {
    padding: 2rem 5vw;
  }
}

.blog-articles__article-headline {
  color: white;
  margin: 0 0 2rem 0;
}

.blog-articles__article-date {
  font-size: 0.8rem;
  margin: 0 0 1rem 0;
  color: rgba(255, 255, 255, 0.7);
}

.blog-articles__text {
  color: white;
  margin: 0.8rem 0 0.8rem 0;
}

.blog-articles__h3 {
  color: white;
  margin: 2.5rem 0 1.5rem 0;
  font-size: 1.3em;
}

.blog-articles__ul {
  color: white;
}

.blog-articles__ul-item {
  color: white;
  margin-left: 1.5rem;
}

.blog-articles__ol {
  color: white;
  margin: 1.5rem 0 0.5rem 1.5rem;
}

.blog-articles__ol-item {
  color: white;
  margin: 1rem 0 0.3rem 1.5rem;
}

.blog-articles__h4 {
  color: white;
  margin: 1.5rem 0 0.5rem 0;
}

.blog-articles__image {
  max-width: 400px;
  height: auto;
  margin: 1rem;
  float: right;
}

.standorte__header {
  min-height: calc(3rem + 22vw);
  position: relative;
  overflow: hidden;
  background-color: rgb(25, 38, 57);
  /** 1200px oder schmaler */
}
@media (max-width: 75em) {
  .standorte__header {
    height: calc(16rem + 32vw);
  }
}
@media (max-width: 62em) {
  .standorte__header {
    height: calc(10rem + 32vw);
  }
}
@media (max-width: 48em) {
  .standorte__header {
    height: calc(10rem + 32vw);
  }
}
@media (max-width: 36em) {
  .standorte__header {
    height: calc(10rem + 32vw);
  }
}

.standorte__slope {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10vw;
  z-index: 1;
  background-image: linear-gradient(-5.71deg, rgb(25, 38, 57) 49.9%, transparent 50.1%);
  background-repeat: no-repeat;
  background-position: center 100%;
  background-size: 100vw 10vw;
}

.standorte__headline {
  color: white;
  text-align: center;
  padding-top: 6rem;
  display: block;
  text-shadow: 0 0 0.2rem black;
}

.standorte__header::before,
.standorte__header::after {
  content: "";
  position: absolute;
  width: 100vw;
  bottom: -9rem;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
  /** 1200px oder schmaler */
}
@media (max-width: 75em) {
  .standorte__header::before,
  .standorte__header::after {
    bottom: -4rem;
  }
}
@media (max-width: 62em) {
  .standorte__header::before,
  .standorte__header::after {
    bottom: -1rem;
  }
}

.standorte__header::before {
  top: 0;
  background-image: url("../images/pexels-divinetechygirl-1181467.jpg");
  filter: brightness(0.7);
}
@media (max-width: 36em) {
  .standorte__header::before {
    background-size: cover;
  }
}

.standorte__container {
  position: relative;
  z-index: 2;
  background-color: rgb(25, 38, 57);
  width: 100%;
  margin: 0px auto;
  padding: 0 2rem;
}
@media (max-width: 62em) {
  .standorte__container {
    padding: 2rem 5vw;
  }
}

.standorte__description {
  color: white;
  line-height: 1.8rem;
}
.standorte__description h3, .standorte__description p {
  margin: 2rem 15vw;
}
@media (max-width: 62em) {
  .standorte__description h3, .standorte__description p {
    margin: 2rem 0;
  }
}

.standorte__headline {
  padding: 2rem 15vw;
}
@media (max-width: 62em) {
  .standorte__headline {
    margin: 1rem 0;
  }
}

.standorte__ul {
  margin: 3rem 15vw;
}

.references__card {
  background: linear-gradient(135deg, rgb(76.5255319149, 116.8021276596, 175.8744680851), rgb(57, 87, 131));
  color: white;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 60px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  max-width: 1200px;
  margin: 2rem auto;
}

.references__image {
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 600;
}

.references__content {
  padding: 40px;
}

.references__header-section {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.references__title h3 {
  font-size: 32px;
  margin-bottom: 10px;
}

.references__title .references__website-link {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
}

.references__title .references__website-link:hover {
  text-decoration: underline;
}

.references__project-date {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
}

.references__description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.references__results-box {
  background: rgb(236, 109, 5);
  color: white;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.references__results-box h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.references__results-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.references__stat {
  flex: 1;
  min-width: 200px;
}

.references__stat-number {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 5px;
}

.references__stat-label {
  font-size: 14px;
  opacity: 0.9;
}

.references__highlights {
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 30px;
}

.references__highlights h4 {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.references__highlights ul {
  list-style: none;
}

.references__highlights li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  color: var(--text-gray);
}

.references__highlights li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-green);
  font-weight: bold;
}

.references__tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.references__tech-tag {
  background: rgb(57, 87, 131);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.page-header::before {
  background-image: url("../images/pexels-divinetechygirl-1181467.webp");
}

.referenzen__container {
  position: relative;
  z-index: 2;
  background-color: rgb(25, 38, 57);
  width: 100%;
  margin: 0px auto;
  padding: 5rem 3.5rem;
}
@media (max-width: 62em) {
  .referenzen__container {
    padding: 2rem 5vw;
  }
}

.referenzen__showcase {
  max-width: 75rem;
  margin: 3rem auto 0;
}

.referenzen__showcase-item {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  border: 0.0625rem solid #334155;
  border-radius: 1.5rem;
  overflow: visible;
  margin-bottom: 5rem;
  transition: all 0.4s ease;
  position: relative;
}
.referenzen__showcase-item:hover {
  border-color: #475569;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.4);
}
.referenzen__showcase-item--webdesign .referenzen__showcase-image-placeholder {
  background: linear-gradient(135deg, #0f172a 0%, #164e63 100%);
}
.referenzen__showcase-item--webdesign .referenzen__showcase-category {
  background: rgba(6, 182, 212, 0.2);
  border: 0.0625rem solid rgba(6, 182, 212, 0.4);
  color: #67e8f9;
}
.referenzen__showcase-item--webdesign .referenzen__showcase-link {
  color: #67e8f9;
}
.referenzen__showcase-item--webdesign .referenzen__showcase-link:hover {
  color: #06b6d4;
}
.referenzen__showcase-item--webdesign .referenzen__premium-stats {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.12), rgba(8, 145, 178, 0.08));
  border-color: rgba(6, 182, 212, 0.35);
}
.referenzen__showcase-item--webdesign .referenzen__highlight-item::before {
  background: rgba(6, 182, 212, 0.2);
  color: #67e8f9;
}
.referenzen__showcase-item--marketing .referenzen__showcase-image-placeholder {
  background: linear-gradient(135deg, #0f172a 0%, #4c1d95 100%);
}
.referenzen__showcase-item--marketing .referenzen__showcase-category {
  background: rgba(139, 92, 246, 0.2);
  border: 0.0625rem solid rgba(139, 92, 246, 0.4);
  color: #c4b5fd;
}
.referenzen__showcase-item--marketing .referenzen__showcase-link {
  color: #c4b5fd;
}
.referenzen__showcase-item--marketing .referenzen__showcase-link:hover {
  color: #8b5cf6;
}
.referenzen__showcase-item--marketing .referenzen__premium-stats {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(124, 58, 237, 0.08));
  border-color: rgba(139, 92, 246, 0.35);
}
.referenzen__showcase-item--marketing .referenzen__highlight-item::before {
  background: rgba(139, 92, 246, 0.2);
  color: #c4b5fd;
}

.referenzen__showcase-image-header {
  position: relative;
  height: 30rem;
  overflow: hidden;
  border-radius: 1.5rem 1.5rem 0 0;
}
@media (max-width: 62em) {
  .referenzen__showcase-image-header {
    height: 24rem;
  }
}

.referenzen__showcase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}
.referenzen__showcase-item:hover .referenzen__showcase-image {
  transform: scale(1.05);
}

.referenzen__showcase-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.4s ease;
}
.referenzen__showcase-item:hover .referenzen__showcase-image-placeholder {
  transform: scale(1.05);
}

.referenzen__showcase-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.25) 50%, rgba(15, 23, 42, 0.45) 100%);
}

.referenzen__showcase-category {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.625rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  backdrop-filter: blur(0.625rem);
  z-index: 1;
}

.referenzen__showcase-content {
  padding: 2.5rem;
}
@media (max-width: 62em) {
  .referenzen__showcase-content {
    padding: 2rem 1.5rem;
  }
}

.referenzen__showcase-header {
  margin-bottom: 1.5rem;
}

.referenzen__showcase-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #f8fafc;
  line-height: 1.2;
}
@media (max-width: 48em) {
  .referenzen__showcase-title {
    font-size: 1.5rem;
  }
}

.referenzen__showcase-link {
  display: inline-block;
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.referenzen__showcase-date {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 500;
}

.referenzen__showcase-description {
  color: #cbd5e1;
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.referenzen__premium-stats {
  border-radius: 1.25rem;
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.referenzen__premium-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(6, 182, 212, 0.1), transparent 60%);
  pointer-events: none;
}

.referenzen__stats-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.referenzen__stats-icon {
  font-size: 1.75rem;
}

.referenzen__stats-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #f8fafc;
}

.referenzen__stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 48em) {
  .referenzen__stats-grid {
    grid-template-columns: 1fr;
  }
}

.referenzen__stat-premium {
  text-align: center;
  padding: 1.25rem;
  background: rgba(15, 23, 42, 0.4);
  border-radius: 0.875rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.05);
}

.referenzen__stat-number-premium {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #8b5cf6, #c4b5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
@media (max-width: 48em) {
  .referenzen__stat-number-premium {
    font-size: 1.75rem;
  }
}

.referenzen__stat-label-premium {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.4;
}

.referenzen__highlights-section {
  margin-bottom: 2rem;
}

.referenzen__highlights-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.referenzen__highlights-icon {
  font-size: 1.25rem;
}

.referenzen__highlights-title {
  font-size: 1rem;
  color: #f8fafc;
  font-weight: 600;
}

.referenzen__highlights-list {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.referenzen__highlight-item {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.6;
  padding-left: 1.75rem;
  position: relative;
}
.referenzen__highlight-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  font-size: 0.7rem;
  top: 0.125rem;
}
.referenzen__highlight-item strong {
  color: #f8fafc;
  font-weight: 600;
  display: block;
  margin-bottom: 0.125rem;
}

.referenzen__tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.referenzen__tech-tag {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  background: rgba(51, 65, 85, 0.5);
  color: #cbd5e1;
  border: 0.0625rem solid #334155;
}

.referenzen__cta {
  margin-top: 2rem;
}

.referenzen__cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}
.referenzen__cta-button--primary {
  background: linear-gradient(135deg, #8b5cf6, #c4b5fd);
}
.referenzen__cta-button--primary:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 0.625rem 1.875rem rgba(6, 182, 212, 0.3);
}
.referenzen__cta-button--secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
}
.referenzen__cta-button--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.ueber-uns__header {
  min-height: calc(20rem + 12vw);
  position: relative;
  overflow: hidden;
  background-color: rgb(25, 38, 57);
}
@media (max-width: 75em) {
  .ueber-uns__header {
    min-height: calc(16rem + 32vw);
  }
}
@media (max-width: 62em) {
  .ueber-uns__header {
    min-height: calc(18rem + 32vw);
  }
}
@media (max-width: 48em) {
  .ueber-uns__header {
    min-height: calc(20rem + 32vw);
  }
}
@media (max-width: 36em) {
  .ueber-uns__header {
    min-height: calc(22rem + 32vw);
  }
}

.ueber-uns__slope {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10vw;
  z-index: 4;
  background-image: linear-gradient(-5.71deg, rgb(25, 38, 57) 49.9%, transparent 50.1%);
  background-repeat: no-repeat;
  background-position: center 100%;
  background-size: 100vw 10vw;
}

.ueber-uns__header::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100vw;
  bottom: -9rem;
  background-image: url("../images/pexels-pixabay-261662.webp");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
  filter: brightness(0.7);
  z-index: 0;
}
@media (max-width: 75em) {
  .ueber-uns__header::before {
    bottom: -4rem;
  }
}
@media (max-width: 62em) {
  .ueber-uns__header::before {
    bottom: -1rem;
  }
}
@media (max-width: 36em) {
  .ueber-uns__header::before {
    background-size: cover;
  }
}

.ueber-uns__header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.6);
  z-index: 1;
}

.ueber-uns__heading-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem 3rem;
}
@media (max-width: 62em) {
  .ueber-uns__heading-container {
    padding: 4rem 1.5rem 2.5rem;
  }
}
@media (max-width: 48em) {
  .ueber-uns__heading-container {
    padding: 3rem 1rem 2rem;
  }
}

.ueber-uns__glass-container {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.5rem;
  padding: 3rem 4rem;
  max-width: 50rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
@media (max-width: 62em) {
  .ueber-uns__glass-container {
    padding: 2.5rem 3rem;
    border-radius: 1.25rem;
  }
}
@media (max-width: 48em) {
  .ueber-uns__glass-container {
    padding: 2rem 2rem;
    border-radius: 1rem;
  }
}

.ueber-uns__accent-line {
  width: 4rem;
  height: 0.25rem;
  background: linear-gradient(90deg, #06b6d4, #8b5cf6);
  border-radius: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 48em) {
  .ueber-uns__accent-line {
    width: 3rem;
    margin-bottom: 1.5rem;
  }
}

.ueber-uns__headline {
  font-size: 3.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 1.25rem 0;
  line-height: 1.2;
}
@media (max-width: 62em) {
  .ueber-uns__headline {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 48em) {
  .ueber-uns__headline {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
}

.ueber-uns__subheadline {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 300;
}
@media (max-width: 48em) {
  .ueber-uns__subheadline {
    font-size: 1rem;
  }
}

.ueber-uns__accent-dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
}
@media (max-width: 48em) {
  .ueber-uns__accent-dots {
    margin-top: 1.5rem;
    gap: 0.4rem;
  }
}

.ueber-uns__accent-dot {
  width: 2rem;
  height: 0.25rem;
  border-radius: 1rem;
}
.ueber-uns__accent-dot--cyan {
  background: #06b6d4;
}
.ueber-uns__accent-dot--purple {
  background: #8b5cf6;
  width: 1rem;
}
.ueber-uns__accent-dot--orange {
  background: #f59e0b;
  width: 0.5rem;
}
@media (max-width: 48em) {
  .ueber-uns__accent-dot--cyan {
    width: 1.5rem;
  }
  .ueber-uns__accent-dot--purple {
    width: 0.75rem;
  }
  .ueber-uns__accent-dot--orange {
    width: 0.4rem;
  }
}

.ueber-uns__container {
  position: relative;
  z-index: 2;
  background-color: rgb(25, 38, 57);
  width: 100%;
  margin: 0px auto;
  padding: 0rem 3.5rem;
}
@media (max-width: 62em) {
  .ueber-uns__container {
    padding: 2rem 5vw;
  }
}

.ueber-uns__hero {
  text-align: center;
  max-width: 56.25rem;
  margin: 0 auto;
}
@media (max-width: 62em) {
  .ueber-uns__hero {
    padding: 3rem 5vw 2rem;
  }
}

.ueber-uns__badge {
  display: inline-block;
  background: linear-gradient(135deg, #8b5cf6, #c4b5fd);
  padding: 0.75rem 1.5rem;
  border-radius: 3.125rem;
  margin-bottom: 1.5rem;
}

.ueber-uns__badge-text {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
}

.ueber-uns__hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.2;
  color: white;
}
@media (max-width: 62em) {
  .ueber-uns__hero-title {
    font-size: 2rem;
  }
}
@media (max-width: 48em) {
  .ueber-uns__hero-title {
    font-size: 1.75rem;
  }
}

.ueber-uns__hero-highlight {
  background: linear-gradient(135deg, #8b5cf6, #c4b5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ueber-uns__hero-intro {
  color: #94a3b8;
  font-size: 1.1rem;
  line-height: 1.8;
}
@media (max-width: 48em) {
  .ueber-uns__hero-intro {
    font-size: 1rem;
  }
}

.ueber-uns__split-section {
  padding: 3rem 0 5rem;
  max-width: 62.5rem;
  margin: 0 auto;
}

.ueber-uns__split-content {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 62em) {
  .ueber-uns__split-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.ueber-uns__story-column {
  order: 1;
}
@media (max-width: 62em) {
  .ueber-uns__story-column {
    order: 2;
  }
}

.ueber-uns__story-intro {
  color: #e2e8f0;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.ueber-uns__milestones {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ueber-uns__milestone {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  border: 0.0625rem solid #334155;
  border-left: 0.25rem solid #06b6d4;
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  transition: all 0.3s ease;
}
.ueber-uns__milestone:hover {
  border-left-color: #8b5cf6;
  transform: translateX(0.25rem);
}

.ueber-uns__milestone-year {
  display: inline-block;
  background: rgba(6, 182, 212, 0.1);
  border: 0.0625rem solid rgba(6, 182, 212, 0.3);
  color: #67e8f9;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.ueber-uns__milestone-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f8fafc;
  margin-bottom: 0.5rem;
}

.ueber-uns__milestone-description {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.6;
}

.ueber-uns__info-column {
  position: sticky;
  top: 2rem;
  order: 2;
}
@media (max-width: 62em) {
  .ueber-uns__info-column {
    position: static;
    order: 1;
    max-width: 28rem;
    margin: 0 auto;
  }
}

.ueber-uns__photo-card {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  border: 0.0625rem solid #334155;
  border-radius: 1.5rem;
  overflow: hidden;
  padding: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.ueber-uns__photo-wrapper {
  position: relative;
  width: 14rem;
  height: 14rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 0.25rem solid transparent;
  background: linear-gradient(135deg, #8b5cf6, #c4b5fd);
  padding: 0.25rem;
}

.ueber-uns__photo-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: #1e293b;
}

.ueber-uns__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  background: linear-gradient(135deg, #164e63 0%, #4c1d95 100%);
}

.ueber-uns__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ueber-uns__photo-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 0.5rem;
}

.ueber-uns__photo-title {
  color: #67e8f9;
  font-size: 1rem;
  font-weight: 600;
}

.ueber-uns__quick-facts {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  border: 0.0625rem solid #334155;
  border-radius: 1rem;
  padding: 1.5rem;
}

.ueber-uns__quick-facts-title {
  font-size: 1rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 1rem;
  text-align: center;
}

.ueber-uns__facts-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ueber-uns__fact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(30, 41, 59, 0.5);
  border-radius: 0.5rem;
}

.ueber-uns__fact-icon {
  width: 2rem;
  height: 2rem;
  background: rgba(6, 182, 212, 0.1);
  border: 0.0625rem solid rgba(6, 182, 212, 0.3);
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.ueber-uns__fact-text {
  color: #e2e8f0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.ueber-uns__expertise-section {
  padding: 3rem 0 5rem;
  max-width: 62.5rem;
  margin: 0 auto;
}

.ueber-uns__section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.ueber-uns__section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: white;
}
@media (max-width: 48em) {
  .ueber-uns__section-title {
    font-size: 1.5rem;
  }
}

.ueber-uns__section-subtitle {
  color: #94a3b8;
  font-size: 1.05rem;
}

.ueber-uns__expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 62em) {
  .ueber-uns__expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 48em) {
  .ueber-uns__expertise-grid {
    grid-template-columns: 1fr;
    max-width: 25rem;
    margin: 0 auto;
  }
}

.ueber-uns__expertise-card {
  position: relative;
  height: 11.25rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 0.0625rem solid #334155;
  transition: all 0.3s ease;
}
.ueber-uns__expertise-card:hover {
  border-color: #475569;
  transform: translateY(-0.25rem);
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.3);
}

.ueber-uns__expertise-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}
.ueber-uns__expertise-card:hover .ueber-uns__expertise-background {
  transform: scale(1.05);
}
.ueber-uns__expertise-card--php .ueber-uns__expertise-background {
  background-image: url("../images/stack/php.webp");
}
.ueber-uns__expertise-card--laravel .ueber-uns__expertise-background {
  background-image: url("../images/stack/laravel.webp");
}
.ueber-uns__expertise-card--vue .ueber-uns__expertise-background {
  background-image: url("../images/stack/vue.webp");
}
.ueber-uns__expertise-card--javascript .ueber-uns__expertise-background {
  background-image: url("../images/stack/javascript.webp");
}
.ueber-uns__expertise-card--database .ueber-uns__expertise-background {
  background-image: url("../images/stack/sql.webp");
}
.ueber-uns__expertise-card--seo .ueber-uns__expertise-background {
  background-image: url("../images/stack/seo-optimization.webp");
}
.ueber-uns__expertise-card--ecommerce .ueber-uns__expertise-background {
  background-image: url("../images/stack/ecommerce-business.webp");
}
.ueber-uns__expertise-card--googleads .ueber-uns__expertise-background {
  background-image: url("../images/stack/google-ads-campaign.webp");
}
.ueber-uns__expertise-card--hosting .ueber-uns__expertise-background {
  background-image: url("../images/stack/webhosting-server.webp");
}

.ueber-uns__expertise-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.3) 0%, rgba(15, 23, 42, 0.6) 50%, rgba(15, 23, 42, 0.85) 100%);
}

.ueber-uns__expertise-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  text-align: center;
  z-index: 1;
}

.ueber-uns__expertise-name {
  font-weight: 600;
  font-size: 1rem;
  color: #f8fafc;
  text-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.6);
  line-height: 1.3;
}

.ueber-uns__private-section {
  padding: 3rem 0 5rem;
  max-width: 50rem;
  margin: 0 auto;
}

.ueber-uns__private-intro {
  color: #e2e8f0;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.ueber-uns__hobby-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 48em) {
  .ueber-uns__hobby-grid {
    grid-template-columns: 1fr;
  }
}

.ueber-uns__hobby-card {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  border: 0.0625rem solid #334155;
  border-radius: 1.25rem;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.ueber-uns__hobby-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.25rem;
  background: linear-gradient(90deg, #06b6d4, #8b5cf6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.ueber-uns__hobby-card:hover::before {
  transform: scaleX(1);
}
.ueber-uns__hobby-card:hover {
  transform: translateY(-0.25rem);
  border-color: rgba(6, 182, 212, 0.4);
}

.ueber-uns__hobby-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.ueber-uns__hobby-emoji {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.ueber-uns__hobby-title {
  font-weight: 600;
  color: #f8fafc;
  font-size: 1.25rem;
}

.ueber-uns__hobby-text {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.7;
}

.ueber-uns__cta {
  padding: 3rem 0 5rem;
  max-width: 50rem;
  margin: 0 auto;
}

.ueber-uns__contact-card {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(139, 92, 246, 0.08));
  border: 0.0625rem solid rgba(139, 92, 246, 0.2);
  border-radius: 1.5rem;
  padding: 3.75rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 48em) {
  .ueber-uns__contact-card {
    padding: 2.5rem 1.75rem;
  }
}
.ueber-uns__contact-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
  animation: ueber-uns-pulse 4s ease-in-out infinite;
}

@keyframes ueber-uns-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}
.ueber-uns__contact-content {
  position: relative;
  z-index: 1;
}

.ueber-uns__contact-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #8b5cf6, #c4b5fd);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

.ueber-uns__contact-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: white;
}
@media (max-width: 48em) {
  .ueber-uns__contact-title {
    font-size: 1.5rem;
  }
}

.ueber-uns__contact-text {
  color: #94a3b8;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 31.25rem;
  margin-left: auto;
  margin-right: auto;
}

.ueber-uns__contact-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.ueber-uns__contact-button {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}
.ueber-uns__contact-button--primary {
  background: linear-gradient(135deg, #8b5cf6, #c4b5fd);
}
.ueber-uns__contact-button--primary:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 0.625rem 1.875rem rgba(6, 182, 212, 0.3);
}
.ueber-uns__contact-button--secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
}
.ueber-uns__contact-button--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.lexikon__alphabet-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(0, 191, 255, 0.05));
  border-radius: 12px;
}

.lexikon__alphabet-link {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background: linear-gradient(135deg, blueviolet, #00bfff);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.lexikon__alphabet-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(138, 43, 226, 0.3);
}

.lexikon__letter-section {
  margin-bottom: 3rem;
}

.lexikon__letter-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: blueviolet;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid blueviolet;
}

.u-mb-4 {
  margin-bottom: 4rem;
}

.u-mb-3 {
  margin-bottom: 3rem;
}

.u-mt-4 {
  margin-top: 4rem;
}

.u-center-container {
  max-width: 50rem;
  margin: 0 auto 3rem;
}

.section-header--left {
  text-align: left;
}

.card__category-wrapper {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.card__category--static {
  position: static;
}

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