/* ==========================================================================
   INTENSITY - Component Styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   NAVIGATION
   -------------------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.nav__logo img {
  max-height: 50px;
  width: auto;
}

/* Menu wrapper (links + CTA) */
.nav__menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Link list */
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-weight: 500;
  font-size: 16px;
  color: var(--color-black);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav__link:hover {
  color: var(--color-lila);
}

/* CTA button in nav — inherits .btn, just sized down */
.nav__cta {
  padding: 12px 20px;
  font-size: 16px;
}

/* Hamburger — hidden on desktop */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background-color: var(--color-black);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger active state (X) */
.nav__hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   NAVIGATION — Tablet & Mobile (max-width: 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .nav__hamburger {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    background-color: var(--color-white);
    border-left: 1px solid var(--color-border);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }

  .nav__menu.open {
    transform: translateX(0);
  }

  .nav__links {
    flex-direction: column;
    gap: 24px;
  }

  .nav__link {
    font-size: 20px;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

/* --------------------------------------------------------------------------
   Hero — Layout
   -------------------------------------------------------------------------- */
.hero {
  background-color: var(--color-white);
  padding: 60px 0;
}

.hero__inner {
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: center;
}

.container.hero__inner{
  max-width: 1200px;
}

.hero__right {
  flex: 0 0 40%;
}

/* --------------------------------------------------------------------------
   Hero — Left Column Content
   -------------------------------------------------------------------------- */
.hero__logo {
  max-height: 70px;
  width: auto;
  margin-bottom: 10px;
}

.hero__accent {
  margin-bottom: 16px;
}

.hero__title {
  margin-bottom: 20px;
}

.hero__text {
  margin-bottom: 16px;
  color: var(--color-text-grey);
  font-size: var(--size-p-large);
}

.hero__text-bold {
  font-weight: 700;
  margin-bottom: 32px;
  font-size: var(--size-p-large);
}

/* CTA row — button + discount text */
.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero__arrow-icon {
  width: 40px;
  height: auto;
  margin-right: 15px;
}

.hero__launchtext {
  display: flex;
  transform: rotate(-4.13deg);
  font-family: 'Gloria Hallelujah', cursive;
  font-size: 22px;
  background: linear-gradient(90deg, var(--color-lila), var(--color-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 16px;
  max-width: 330px;
  line-height: 1.4;
  align-items: end;
  text-align: left;
}

/* --------------------------------------------------------------------------
   Hero — Right Column Slider
   -------------------------------------------------------------------------- */
.hero__slider {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 16px;
  overflow: hidden;
}

.hero__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero__slide.active {
  opacity: 1;
}

/* Slider progress bars */
.slider__progress {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  gap: 6px;
  width: calc(100% - 32px);
  z-index: 10;
}

.slider__progress-bar {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}

.slider__progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--color-white);
  border-radius: 2px;
  transition: width linear;
}

/* --------------------------------------------------------------------------
   Hero — Tablet (max-width: 1024px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero {
    padding: 40px 0;
  }

  .hero__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .hero__left {
    flex: unset;
    max-width: 100%;
    width: 100%;
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
  }

  .hero__right {
    flex: unset;
    width: 40%;
    margin: 0 auto;
  }

  .hero__cta-row {
    justify-content: center;
    flex-direction: column;
  }

  .hero__launchtext {
    max-width: 330px;
  }
}

/* --------------------------------------------------------------------------
   Hero — Mobile (max-width: 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .hero__right {
    width: 95%;
  }

  .hero__launchtext {
    font-size: 17px;
    max-width: 280px;
  }
}

/* ==========================================================================
   STUDIO SECTION
   ========================================================================== */

/* --------------------------------------------------------------------------
   Studio — Layout
   -------------------------------------------------------------------------- */
.studio {
  background-color: var(--color-white);
  padding: 80px 0;
}

.studio__header {
  text-align: center;
  margin-bottom: 60px;
}

.studio__header .accent {
  margin: 0 auto 12px;
}

.studio__header h2 {
  margin-bottom: 16px;
}

.studio__header p {
  max-width: 800px;
  margin: 0 auto;
  color: var(--color-text-grey);
}

.studio__columns {
  display: flex;
  gap: 50px;
  justify-content: center;
}

.studio__left {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 10px 0px;
}

.studio__right {
  flex: 0 0 55%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   Studio — Info Boxes
   -------------------------------------------------------------------------- */
.studio__box {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--color-border);
  border-radius: 0px;
  padding: 24px;
  height: 100%;
}

.studio__icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--color-bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.studio__box-content h5 {
  margin-bottom: 4px;
}

.studio__box-content p {
  color: var(--color-text-grey);
}

/* --------------------------------------------------------------------------
   Studio — Infinite Scroll Sliders
   -------------------------------------------------------------------------- */
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.studio__slider {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.studio__track {
  display: flex;
  width: max-content;
  animation: scrollLeft 25s linear infinite;
}

.studio__track--reverse {
  animation: scrollRight 25s linear infinite;
}

.studio__slide {
  width: 200px;
  height: 240px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 8px;
}

.studio__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   Studio — CTA Button
   -------------------------------------------------------------------------- */
.studio__cta {
  text-align: center;
  margin-top: 50px;
}

/* --------------------------------------------------------------------------
   Studio — Tablet & Mobile (max-width: 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .studio {
    padding: 60px 0;
  }

  .studio__columns {
    flex-direction: column;
    gap: 40px;
  }

  .studio__left {
    flex: none;
    width: 100%;
  }

  .studio__right {
    flex: none;
    width: 100%;
  }
}

/* ==========================================================================
   PAKETE SECTION
   ========================================================================== */

/* --------------------------------------------------------------------------
   Pakete — Layout
   -------------------------------------------------------------------------- */
.pakete {
  background-color: var(--color-bg-light);
  padding: 80px 0;
}

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

.pakete__header .accent {
  margin: 0 auto 12px;
}

.pakete__header h2 {
  margin-bottom: 16px;
}

.pakete__header p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--color-text-grey);
}

/* --------------------------------------------------------------------------
   Pakete — Tab Navigation
   -------------------------------------------------------------------------- */
.pakete__tabs-wrapper {
  position: relative;
  text-align: center;
  margin-bottom: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pakete__tabs {
  display: inline-flex;
  position: relative;
  background: var(--color-white);
  border-radius: 50px;
  padding: 6px;
  gap: 5px;
  border: 1px solid var(--color-border);
}

.pakete__tab {
  position: relative;
  z-index: 1;
  padding: 12px 24px;
  border: none;
  background: none;
  font-family: 'Inter', sans-serif;
  font-size: var(--size-p);
  font-weight: 500;
  color: var(--color-black);
  cursor: pointer;
  border-radius: 50px;
  transition: color 0.3s ease, background-color 0.2s ease;
}

.pakete__tab:hover:not(.pakete__tab--active) {
  background-color: var(--color-bg-light);
}

.pakete__tab--active {
  color: var(--color-white);
  background: var(--color-black);
}

.pakete__tab-indicator-gradient {
  position: absolute;
  top: 3px;
  height: calc(100% - 6px);
  border-radius: 50px;
  background: linear-gradient(90deg, var(--color-lila), var(--color-orange), var(--color-lila));
  background-size: 200% 100%;
  animation: borderFlow 2s linear infinite;
  transition: left 0.3s ease, width 0.3s ease;
  z-index: 0;
}

.pakete__tab-indicator {
  position: absolute;
  top: 6px;
  left: 0;
  height: calc(100% - 12px);
  background: var(--color-button);
  border-radius: 50px;
  transition: left 0.3s ease, width 0.3s ease;
  z-index: 1;
}

@media (max-width: 768px){
  .pakete__panel-title {
    margin-top: 40px!important;
    margin-bottom: 30px!important;
  }
}

/* --------------------------------------------------------------------------
   Pakete — Launchpaket Hint
   -------------------------------------------------------------------------- */
.pakete__launch-hint {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  margin-top: 16px;
  transform: rotate(-4deg);
  left: 40;
  margin-left: -600px;
}

.pakete__launch-arrow {
  width: 30px;
  height: auto;
  transform: scaleX(-1);
  margin-bottom: 4px;
}

.pakete__launch-text {
  font-family: 'Gloria Hallelujah', cursive;
  font-size: 18px;
  background: linear-gradient(90deg, var(--color-lila), var(--color-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 220px;
  line-height: 1.4;
}

@media (max-width:768px){
  .pakete__launch-arrow {
    transform: scaleX(1);
    margin-left: 0px;
  }
  .pakete__launch-hint {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 32px!important;
    transform: rotate(-4deg);
    left: 40;
    margin-left: 0px;
  }
}

/* --------------------------------------------------------------------------
   Pakete — Cards Outer Wrapper
   -------------------------------------------------------------------------- */
.pakete__cards-outer {
  width: 100%;
}

/* --------------------------------------------------------------------------
   Pakete — Panel Titles
   -------------------------------------------------------------------------- */
.pakete__panel-title {
  text-align: center;
  margin-bottom: 32px;
  margin-top: 0px;
}

.pakete__panel-title--creator {
  margin-bottom: 72px;
}

/* --------------------------------------------------------------------------
   Pakete — Cards Layout
   -------------------------------------------------------------------------- */
.pakete__cards {
  display: flex;
  gap: 24px;
  align-items: stretch;
  justify-content: center;
}

.pakete__cards--single {
  justify-content: center;
}

.pakete__cards--single .pakete__card {
  max-width: 480px;
  width: 100%;
}

/* --------------------------------------------------------------------------
   Pakete — Card Base
   -------------------------------------------------------------------------- */
.pakete__card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 32px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pakete__card h5 {
  margin-bottom: 12px;
}

.pakete__card-desc {
  color: var(--color-text-grey);
  margin-bottom: 12px;
}

/* --------------------------------------------------------------------------
   Pakete — Featured Card (gradient border)
   -------------------------------------------------------------------------- */
.pakete__card--featured {
  position: relative;
  border: none !important;
  background: var(--color-white);
  border-radius: 10px;
  padding: 40px 32px 22px;
  z-index: 0;
  transform: scale(1.04);
}

.pakete__card--featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--color-lila), var(--color-orange), var(--color-lila));
  background-size: 200% 100%;
  z-index: -2;
  transition: background-position 0.3s ease;
}

.pakete__card--featured:hover::before {
  animation: borderFlow 1.5s linear infinite;
}

.pakete__card--featured::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--color-white);
  border-radius: 8px;
  z-index: -1;
}

.pakete__card--featured > * {
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   Pakete — Badge
   -------------------------------------------------------------------------- */
.pakete__badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-white);
  border-radius: 10px;
  padding: 8px 21px;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  z-index: 10;
  background: linear-gradient(var(--color-button), var(--color-button)) padding-box, linear-gradient(180deg, var(--color-lila) 0%, var(--color-orange) 100%) border-box;
  border: 3px solid transparent;
}

/* --------------------------------------------------------------------------
   Pakete — Price
   -------------------------------------------------------------------------- */
.pakete__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}

.pakete__price-amount {
  font-size: var(--size-h2);
  font-weight: 700;
  line-height: 1;
}

.pakete__price-unit {
  font-size: var(--size-p);
  color: var(--color-text-grey);
}

.pakete__price-amount--gradient {
  background: linear-gradient(90deg, var(--color-lila), var(--color-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.pakete__price-old {
  color: #E53535 !important;
  font-weight: 700 !important;
  text-decoration: line-through;
  font-size: var(--size-p);
}

/* --------------------------------------------------------------------------
   Pakete — Features List
   -------------------------------------------------------------------------- */
.pakete__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.pakete__features li {
  font-size: var(--size-p);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pakete__features li::before {
  content: '\2713';
  color: var(--color-black);
  font-weight: 700;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Pakete — Button (full width)
   -------------------------------------------------------------------------- */
.pakete__btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

/* --------------------------------------------------------------------------
   Pakete — Commercial Rights Feature Items
   -------------------------------------------------------------------------- */
.pakete__feature--no {
  color: var(--color-text-grey);
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.pakete__feature--no::before {
  display: none;
}

.pakete__feature-no__row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-black);
}

.pakete__feature.pakete__feature--no {
  gap: 5px;
}

.pakete__feature--no .pakete__feature-x {
  color: var(--color-black);
  font-weight: 600;
}

.pakete__feature--yes-commercial {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pakete__feature-hint {
  font-size: 12px;
  color: var(--color-text-grey);
  padding-left: 22px;
}

.pakete__feature-hint-link {
  color: var(--color-lila);
  text-decoration: underline;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Pakete — Tablet & Mobile (max-width: 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .pakete {
    padding: 60px 0;
  }

  .pakete__tabs {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
    border-radius: 50px;
  }

  .pakete__tabs::-webkit-scrollbar {
    display: none;
  }

  .pakete__tab {
    flex: 1;
    padding: 10px 16px;
    font-size: 14px;
  }

  .pakete__cards-outer {
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    padding-top: 24px;
    margin-top: -24px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
  }

  .pakete__cards-outer::-webkit-scrollbar {
    display: none;
  }

  .pakete__cards {
    display: flex;
    gap: 12px;
    overflow: visible !important;
    width: max-content;
    padding-left: calc(50vw - 80vw / 2);
    padding-right: calc(50vw - 80vw / 2);
    padding-top: 24px;
    padding-bottom: 16px;
  }

  .pakete__card {
    min-width: 80vw;
    width: 85vw;
    flex: none;
    scroll-snap-align: center;
  }

  .pakete__card--featured {
    min-width: 80vw;
    width: 85vw;
    transform: none;
  }

  .pakete__cards--single .pakete__card {
    min-width: 80vw;
    width: 85vw;
  }

  .pakete__launch-hint {
    margin-top: 12px;
  }
}

/* --------------------------------------------------------------------------
   ZUSATZLEISTUNGEN — Add-on services table
   -------------------------------------------------------------------------- */
.zusatz {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
}



.zusatz__header {
  text-align: center;
  margin-bottom: 40px;
}

.zusatz__header h2 {
  margin-bottom: 16px;
}

.zusatz__header p {
  color: var(--color-text-grey);
  font-size: var(--size-p);
}

.zusatz__table-wrap {
  background: var(--color-white);
  border-radius: 12px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  width: 1000px;
}

.zusatz__table {
  width: 100%;
  border-collapse: collapse;
}

.zusatz__table thead tr {
  background: var(--color-white);
}

.zusatz__table th {
  padding: 16px 24px;
  text-align: left;
  font-size: var(--size-p);
  font-weight: 600;
  color: var(--color-black);
  border-bottom: 1px solid var(--color-border);
}

.zusatz__table td {
  padding: 20px 24px;
  font-size: var(--size-p);
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}

.zusatz__table tbody tr:last-child td {
  border-bottom: none;
}

.zusatz__table td small {
  display: block;
  font-size: var(--size-p-small);
  color: var(--color-text-grey);
  margin-top: 4px;
}

.zusatz__plus {
  font-weight: 700;
  margin-right: 8px;
  color: var(--color-black);
}

.zusatz__save {
  color: #42ba48;
  font-size: 13px;
  margin-left: 4px;
  font-weight: 600;
}

.zusatz__cta {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .zusatz__table-wrap {
    width: 100%;
}
}

/* ZUSATZLEISTUNGEN — Mobile: convert table rows to cards */
@media (max-width: 768px) {
  .zusatz__table-wrap {
    background: transparent;
    border: none;
    overflow: visible;
    width: 100%;
  }

  .zusatz__table,
  .zusatz__table tbody,
  .zusatz__table tr {
    display: block;
    width: 100%;
  }

  .zusatz__table thead {
    display: none;
  }

  .zusatz__table tbody tr {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .zusatz__table td {
    padding: 0;
    border: none;
    font-size: var(--size-p);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* First td = service name, full width */
  .zusatz__table td:first-child {
    font-weight: 600;
    flex-direction: column;
    align-items: flex-start;
  }

  /* Add labels before price columns */
  .zusatz__table td:nth-child(2)::before {
    content: 'Buchungsseite:';
    font-size: var(--size-p-small);
    color: var(--color-text-grey);
    font-weight: 400;
  }

  .zusatz__table td:nth-child(3)::before {
    content: 'Vor Ort:';
    font-size: var(--size-p-small);
    color: var(--color-text-grey);
    font-weight: 400;
  }

  .zusatz__table td:nth-child(2),
  .zusatz__table td:nth-child(3) {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  /* Price and save hint stay on same line */
  .zusatz__save {
    margin-left: 8px;
    white-space: nowrap;
  }
}

/* --------------------------------------------------------------------------
   GALERIE SECTION
   -------------------------------------------------------------------------- */
.galerie {
  background: var(--color-white);
  padding: 80px 0;
}

.galerie .container{
  max-width: 100%;
  padding: 0 20px;
}

.galerie__header {
  text-align: center;
  margin-bottom: 48px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.galerie__header .accent {
  margin: 0 auto 12px;
}

.galerie__header h2 {
  margin-bottom: 0;
}

/* Grid: 4 columns desktop, max-width 1400px */
.galerie__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0 auto;
}

/* Each grid item */
.galerie__item {
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4/5;
  cursor: pointer;
}

/* Image zoom on hover with overflow hidden */
.galerie__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.galerie__item:hover img {
  transform: scale(1.08);
}

.galerie__cta {
  text-align: center;
  margin-top: 48px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Lightbox */
.galerie__lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.galerie__lightbox.active {
  display: flex;
}

.galerie__lightbox-img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.galerie__lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

.galerie__lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: white;
  font-size: 48px;
  cursor: pointer;
  line-height: 1;
  z-index: 1001;
}

.galerie__lightbox-prev,
.galerie__lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 48px;
  cursor: pointer;
  padding: 16px 20px;
  border-radius: 8px;
  z-index: 1001;
  transition: background 0.2s ease;
}

.galerie__lightbox-prev:hover,
.galerie__lightbox-next:hover {
  background: rgba(255,255,255,0.3);
}

.galerie__lightbox-prev { left: 24px; }
.galerie__lightbox-next { right: 24px; }

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .galerie__grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    gap: 20px;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .galerie__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .galerie .container{
    padding: 0px;
  }  

  .galerie__lightbox-prev { left: 8px; }
  .galerie__lightbox-next { right: 8px; }
}

/* --------------------------------------------------------------------------
   WARUM WIR SECTION
   -------------------------------------------------------------------------- */
.warum-wir {
  background: var(--color-white);
  padding: 80px 0;
}

.warum-wir__header {
  text-align: center;
  margin-bottom: 48px;
}

.warum-wir__header .accent {
  margin: 0 auto 12px;
}

.warum-wir__header h2 {
  margin-bottom: 0;
}

.warum-wir__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.warum-wir__card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 0px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.warum-wir__icon {
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.warum-wir__card h5 {
  font-size: var(--size-h5);
  font-weight: 700;
  margin: 0;
}

.warum-wir__card p {
  font-size: var(--size-p);
  color: var(--color-text-grey);
  margin: 0;
}

.warum-wir__cta {
  text-align: center;
  margin-top: 48px;
}

/* Tablet */
@media (max-width: 1024px) {
  .warum-wir__grid {
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .warum-wir {
    padding: 60px 0;
  }

  .warum-wir__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* --------------------------------------------------------------------------
   SO FUNKTIONIERT'S SECTION
   -------------------------------------------------------------------------- */
.so-funktionierts {
  background: var(--color-bg-light);
  padding: 80px 0;
}

.so-funktionierts__header {
  text-align: center;
  margin-bottom: 48px;
}

.so-funktionierts__header .accent {
  margin: 0 auto 12px;
}

.so-funktionierts__header h2 {
  margin-bottom: 16px;
}

.so-funktionierts__header p {
  font-size: var(--size-p);
  color: var(--color-text-grey);
  max-width: 600px;
  margin: 0 auto;
}

.so-funktionierts__card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 48px 40px;
  border: 1px solid var(--color-border);
}

.so-funktionierts__steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
}

/* Each step */
.so-funktionierts__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  gap: 12px;
}

/* Gradient border circle */
.so-funktionierts__circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background:
    linear-gradient(var(--color-button), var(--color-button)) padding-box,
    linear-gradient(180deg, var(--color-lila) 0%, var(--color-orange) 100%) border-box;
  border: 3px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Connector line between steps */
.so-funktionierts__connector {
  flex: 0 0 60px;
  height: 1px;
  background: var(--color-border);
  margin-top: 32px;
  align-self: flex-start;
}

.so-funktionierts__step-label {
  font-size: var(--size-p-small);
  color: var(--color-text-grey);
  font-weight: 400;
}

.so-funktionierts__step h5 {
  font-size: var(--size-h5);
  font-weight: 700;
  margin: 0;
}

.so-funktionierts__step p {
  font-size: var(--size-p);
  color: var(--color-text-grey);
  margin: 0;
  max-width: 160px;
}

.so-funktionierts__cta {
  text-align: center;
  margin-top: 48px;
}

/* Tablet */
@media (max-width: 1024px) {
  .so-funktionierts__card {
    padding: 40px 24px;
  }

  .so-funktionierts__connector {
    flex: 0 0 30px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .so-funktionierts {
    padding: 60px 0;
  }

  .so-funktionierts__card {
    padding: 32px 20px;
  }

  .so-funktionierts__steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .so-funktionierts__connector {
    width: 1px;
    height: 40px;
    flex: 0 0 40px;
    margin-top: 0;
    align-self: center;
  }

  .so-funktionierts__step p {
    max-width: 100%;
  }
}

/* --------------------------------------------------------------------------
   KUNDENSTIMMEN SECTION
   -------------------------------------------------------------------------- */
.kundenstimmen {
  background: var(--color-white);
  padding: 80px 0;
}

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

.kundenstimmen__header .accent {
  margin: 0 auto 12px;
}

.kundenstimmen__header h2 {
  margin-bottom: 16px;
}

.kundenstimmen__header p {
  font-size: var(--size-p);
  color: var(--color-text-grey);
  margin: 0 auto;
}

.kundenstimmen__embed {
  width: 100%;
  margin: 0 auto;
  max-width: 1100px;
}

/* Placeholder styling - remove once Trustindex is embedded */
.kundenstimmen__placeholder {
  background: var(--color-bg-light);
  border: 2px dashed var(--color-border);
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
  color: var(--color-text-grey);
}

.kundenstimmen__placeholder p {
  font-size: var(--size-p);
  margin-bottom: 8px;
}

.kundenstimmen__placeholder p.small {
  font-size: var(--size-p-small);
}

.kundenstimmen__cta {
  text-align: center;
  margin-top: 48px;
}

/* Mobile */
@media (max-width: 768px) {
  .kundenstimmen {
    padding: 60px 0;
  }
}

/* --------------------------------------------------------------------------
   AUSTOBEN SECTION
   -------------------------------------------------------------------------- */
.austoben {
  background: var(--color-black);
  padding: 80px 0;
  color: var(--color-white);
}

/* Intro: two columns */
.austoben__intro {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.austoben__intro-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.austoben__intro-left .accent {
  color: transparent;
}

.austoben__intro-left h2 {
  color: var(--color-white);
  margin: 0;
}

.austoben__intro-left p {
  color: rgba(255,255,255,0.75);
  font-size: var(--size-p-large);
  margin: 0;
}

.austoben__intro-left strong {
  color: var(--color-white);
}

.austoben__list {
  list-style: disc;
  padding-left: 20px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.austoben__list li {
  color: rgba(255,255,255,0.75);
  font-size: var(--size-p-large);
}

.austoben__intro-right {
  flex: 1;
}

.austoben__img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  max-height: 500px;
}

/* Form container */
.austoben__form-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 48px;
}

.austoben__form-title {
  color: var(--color-white);
  font-size: var(--size-h4);
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}

.austoben__form-title--upload {
  margin-top: 40px;
  margin-bottom: 8px;
}

.austoben__upload-hint {
  color: rgba(255,255,255,0.5);
  font-size: var(--size-p-small);
  margin-bottom: 24px;
  text-align: center;
}

/* Form rows */
.austoben__form-row {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.austoben__form-row--1 { grid-template-columns: 1fr; }
.austoben__form-row--2 { grid-template-columns: repeat(2, 1fr); }
.austoben__form-row--3 { grid-template-columns: repeat(3, 1fr); }

/* Inputs */
.austoben__field input,
.austoben__field textarea {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--color-white);
  font-family: 'Inter', sans-serif;
  font-size: var(--size-p);
  outline: none;
  transition: border-color 0.2s ease;
}

.austoben__field input::placeholder,
.austoben__field textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.austoben__field input:focus,
.austoben__field textarea:focus {
  border-color: var(--color-lila);
}

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

/* Upload boxes */
.austoben__uploads {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.austoben__upload-box {
  background: rgba(255,255,255,0.05);
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  text-align: center;
}

.austoben__upload-box:hover {
  border-color: var(--color-lila);
  background: rgba(163,20,198,0.08);
}

.austoben__upload-box.has-file {
  border-color: var(--color-orange);
  background: rgba(255,136,0,0.08);
}

.austoben__upload-icon {
  color: rgba(255,255,255,0.5);
}

.austoben__upload-label {
  font-size: var(--size-p-small);
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

.austoben__upload-status {
  font-size: var(--size-p-small);
  color: rgba(255,255,255,0.35);
}

/* Submit */
.austoben__submit {
  width: fit-content;
  display: block;
  margin: 0 auto 20px;
}

.austoben__privacy {
  font-size: var(--size-p-small);
  color: rgba(255,255,255,0.4);
  text-align: center;
}

.austoben__privacy a {
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
  .austoben {
    padding: 60px 0;
  }

  .austoben__intro {
    flex-direction: column-reverse;
    gap: 32px;
    margin-bottom: 48px;
  }

  .austoben__intro-left {
    text-align: center;
    align-items: center;
  }

  .austoben__intro-left .accent {
    margin: 0 auto;
  }

  .austoben__list {
    text-align: left;
    display: inline-block;
  }

  .austoben__form-wrap {
    padding: 24px 20px;
  }

  .austoben__form-row--2,
  .austoben__form-row--3 {
    grid-template-columns: 1fr;
  }

  .austoben__uploads {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --------------------------------------------------------------------------
   FAQ SECTION
   -------------------------------------------------------------------------- */
.faq {
  background: var(--color-white);
  padding: 80px 0;
}

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

.faq__header .accent {
  margin: 0 auto 12px;
}

.faq__header h2 {
  margin-bottom: 0;
}

.faq__list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__item {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: var(--size-p);
  font-weight: 600;
  color: var(--color-black);
  text-align: left;
  gap: 16px;
  transition: background 0.2s ease;
}

.faq__question:hover {
  background: var(--color-bg-light);
}

.faq__icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--color-black);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}

/* Rotate + to X when open */
.faq__item.active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq__item.active .faq__answer {
  max-height: 400px;
  padding: 0 24px 24px;
}

.faq__answer p {
  font-size: var(--size-p);
  color: var(--color-text-grey);
  line-height: 1.7;
  margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .faq {
    padding: 60px 0;
  }

  .faq__question {
    padding: 20px;
    font-size: var(--size-p);
  }

  .faq__answer {
    padding: 0 20px;
  }

  .faq__item.active .faq__answer {
    padding: 0 20px 20px;
  }
}

/* --------------------------------------------------------------------------
   FINALER CTA SECTION
   -------------------------------------------------------------------------- */
.cta-final {
  background: var(--color-black);
  display: flex;
  align-items: stretch;
  max-height: 450px;
  overflow: hidden;
  position: relative;
}

/* Left and right sliders */
.cta-final__slider {
  width: 280px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

/* Fade edges top and bottom */
.cta-final__slider--left {
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
}

.cta-final__slider--right {
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
}

.cta-final__track {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px 12px;
}

.cta-final__track img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

@keyframes scrollDown {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes scrollUp {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

.cta-final__track--down {
  animation: scrollDown 20s linear infinite;
}

.cta-final__track--up {
  animation: scrollUp 20s linear infinite;
}

/* Center content */
.cta-final__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px;
  gap: 20px;
}

.cta-final__content h2 {
  color: var(--color-white);
  margin: 0;
}

.cta-final__content p {
  color: rgba(255,255,255,0.7);
  font-size: var(--size-p);
  margin: 0;
  line-height: 1.7;
}

/* Mobile: hide sliders, show only content */
@media (max-width: 768px) {
  .cta-final {
    flex-direction: column;
  }

  .cta-final__slider {
    display: none;
  }

  .cta-final__content {
    padding: 60px 24px;
  }
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding-top: 60px;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
}

.footer__logo {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}

.footer__desc {
  font-size: var(--size-p);
  color: var(--color-text-grey);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer__slogan {
  font-size: var(--size-p);
  color: var(--color-black);
  line-height: 1.6;
}

.footer__heading {
  font-size: var(--size-h5);
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: var(--size-p);
  color: var(--color-text-grey);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--color-black);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--size-p);
  color: var(--color-text-grey);
  line-height: 1.5;
}

.footer__contact li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-black);
}

.footer__contact a {
  color: var(--color-text-grey);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__contact a:hover {
  color: var(--color-black);
}

/* Socials bar */
.footer__socials-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--color-bg-light);
  border-radius: 12px;
  padding: 20px 32px;
  margin-bottom: 0;
}

.footer__socials-label {
  font-size: var(--size-p);
  font-weight: 700;
  color: var(--color-black);
  white-space: nowrap;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__socials a {
  color: var(--color-black);
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
}

.footer__socials a:hover {
  opacity: 0.6;
}

/* Bottom bar */
.footer__bottom {
  border-top: 1px solid var(--color-border);
  margin-top: 32px;
  padding: 24px 0;
}

.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

.footer__copyright {
  font-size: var(--size-p-small);
  color: var(--color-text-grey);
}

.footer__legal {
  display: flex;
  gap: 32px;
}

.footer__legal a {
  font-size: var(--size-p-small);
  color: var(--color-text-grey);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__legal a:hover {
  color: var(--color-black);
}

/* Tablet */
@media (max-width: 1024px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer__col--brand {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__col--brand {
    grid-column: auto;
  }

  .footer__socials-bar {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer__socials {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer__bottom .container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer__legal {
    gap: 20px;
  }
}

/* ==========================================================================
   LEGAL PAGES (Impressum, Datenschutz)
   ========================================================================== */
.legal-page {
  padding: 80px 0;
  background: var(--color-white);
}

.legal-container {
  max-width: 800px;
}

.legal-page h1 {
  font-size: var(--size-h1);
  font-weight: 700;
  margin-bottom: 48px;
}

.legal-page h2 {
  font-size: var(--size-h3);
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.legal-page h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.legal-page h3 {
  font-size: var(--size-h5);
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal-page h4 {
  font-size: var(--size-p);
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 8px;
}

.legal-page p {
  font-size: var(--size-p);
  color: var(--color-text-grey);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-page ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-page ul li {
  font-size: var(--size-p);
  color: var(--color-text-grey);
  line-height: 1.8;
  margin-bottom: 4px;
}

.legal-page a {
  color: var(--color-lila);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .legal-page {
    padding: 48px 0;
  }
}
