:root {
  --vh: 1vh;

  /* Dark Theme (Default) */
  --bg-color: #000000;
  --bg-gradient: linear-gradient(135deg, #000000 0%, #001a3c 100%);
  --nav-bg-gradient: linear-gradient(
    135deg,
    rgba(36, 17, 68, 0.97),
    rgba(90, 13, 58, 0.97)
  );
  --nav-scrolled-bg-gradient: linear-gradient(
    135deg,
    rgba(36, 17, 68, 0.99),
    rgba(90, 13, 58, 0.99)
  );
  --text-color: #ffffff;
  --shadow-color: rgba(0, 0, 0, 0.6);
  --footer-bg-gradient: linear-gradient(135deg, #1a1a1a, #101010);
}

/* Light Theme */
:root.light-theme {
  --bg-color: #f5f5f5;
  --bg-gradient: linear-gradient(135deg, #ffffff 0%, #e0e8f9 100%);
  --nav-bg-gradient: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.97),
    rgba(230, 230, 250, 0.97)
  );
  --nav-scrolled-bg-gradient: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.99),
    rgba(230, 230, 250, 0.99)
  );
  --text-color: #333333;
  --shadow-color: rgba(0, 0, 0, 0.2);
  --footer-bg-gradient: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}

/* Light Theme Text Color Adjustments */
:root.light-theme .nav-link,
:root.light-theme .nav-link.cta-button {
  color: #333333;
}

:root.light-theme .elegant-text {
  color: #333333;
}

:root.light-theme .team-member-premium .description {
  color: rgba(51, 51, 51, 0.8);
}

:root.light-theme .team-member-premium .position {
  color: #333333;
}

:root.light-theme .service-item p,
:root.light-theme .benefit-item p,
:root.light-theme .feature-list li,
:root.light-theme .insight-box p,
:root.light-theme .roadmap-conclusion {
  color: rgba(51, 51, 51, 0.9);
}

:root.light-theme .testimonial-author {
  color: #5729a0;
}

:root.light-theme .testimonial-text {
  color: #000000;
}

:root.light-theme .author-company {
  color: #000000;
}

:root.light-theme .luxury-testimonial p {
  color: rgba(51, 51, 51, 0.9);
}

:root.light-theme .luxury-subtitle {
  color: rgba(51, 51, 51, 0.9);
}

:root.light-theme .footer-section p,
:root.light-theme .footer-links-list a {
  color: rgba(51, 51, 51, 0.8);
}

:root.light-theme .copyright {
  color: rgba(51, 51, 51, 0.7);
}

:root.light-theme .jusatech-powered a {
  color: rgba(51, 51, 51, 0.7);
}

:root.light-theme .footer-links-list a::before {
  color: #5729a0;
}

:root.light-theme .insight-box {
  background: rgba(87, 41, 160, 0.05);
  border-left: 4px solid #5729a0;
}

:root.light-theme .segment-content p {
  color: rgba(51, 51, 51, 0.9);
}

:root.light-theme .feature-list li::before {
  color: #5729a0;
}

:root.light-theme .amazon-help-text {
  color: #333333;
}

:root.light-theme .segment-content-container {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(87, 41, 160, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

:root.light-theme .loader .word {
  color: #333333;
}

:root.light-theme .menu-toggle span {
  background-color: #333333;
}

:root.light-theme .section-title,
:root.light-theme .luxury-title,
:root.light-theme .roadmap-title {
  -webkit-text-fill-color: transparent;
}

:root.light-theme .colorFont {
  -webkit-text-fill-color: transparent;
}

:root.light-theme .footer-section h3 {
  -webkit-text-fill-color: transparent;
}

/* Anpassung für einige spezielle Elemente */
:root.light-theme .image-container:not(.active)::after {
  color: #333333;
  background: rgba(255, 255, 255, 0.7);
}

:root.light-theme .nav-link.cta-button,
:root.light-theme .nav-link.cta-button.orange {
  color: white;
}

:root.light-theme .action-button {
  color: white;
}

:root.light-theme .team-member-premium h2 {
  -webkit-text-fill-color: transparent;
}

:root.light-theme .content-benefit-text {
  color: #333333;
}

:root.light-theme .social-icon {
  background-color: rgba(51, 51, 51, 0.1);
}

:root.light-theme .header {
  /* Kein Background-Image - Video wird in beiden Themes verwendet */
}

/* Anpassen der Navigation im Light Theme */
:root.light-theme .nav-links.active {
  background: var(--nav-bg-gradient);
}

/* Dunkle Texte für mobile Menü */
@media (max-width: 768px) {
  :root.light-theme .nav-links {
    background: var(--nav-bg-gradient);
  }
}

/* Body-Hintergrund für die gesamte Seite beibehalten */
body {
  margin: 0;
  padding: 0;
  background: var(--bg-gradient);
  font-family: Arial, sans-serif;
  color: var(--text-color);
  overflow-x: hidden;
  position: relative;
  align-items: center;
  text-align: center;
}

/* Header mit Video-Background */
.header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  padding-top: 150px;
  overflow: hidden;
}

/* Hero Video Styling */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  /* Für bessere mobile Performance */
  will-change: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Dark Theme Overlay */
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 26, 60, 0.8));
  z-index: -1;
}

/* Light Theme Header anpassen - weißer Gradient über Video */
:root.light-theme .header::before {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.8),
    rgba(224, 232, 249, 0.8)
  );
}

/* Zusätzlicher radialer Gradient für beide Themes */
.header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(87, 41, 160, 0.3),
    transparent 70%
  );
  z-index: 0;
}

.logo {
  position: relative;
  max-width: 1050px;
  width: 100%;
  height: auto;
  z-index: 1;
  animation: fadeInDown 1.5s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.loader {
  color: rgb(255, 255, 255);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 3vw;
  box-sizing: content-box;
  height: 6vw;
  display: flex;
  border-radius: 8px;
  position: relative;
  z-index: 2;
}

.words {
  overflow: hidden;
  position: relative;
  height: 6vw;
}

.words::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 20;
}

.word {
  display: block;
  height: 100%;
  padding-left: 6px;
  color: white;
  animation: spin_4991 8s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.rocket-icon {
  height: 4vw;
  vertical-align: middle;
  margin-right: 8px;
}

@keyframes spin_4991 {
  0% {
    transform: translateY(0);
  }
  16% {
    transform: translateY(-100%);
  }
  32% {
    transform: translateY(-200%);
  }
  48% {
    transform: translateY(-300%);
  }
  64% {
    transform: translateY(-400%);
  }
  80% {
    transform: translateY(-500%);
  }
  100% {
    transform: translateY(-500%);
  }
}

@media (max-width: 768px) {
  .header {
    padding-top: 120px;
  }

  .amazon-help-text {
    font-size: 5vw;
    margin: 5px 0;
  }

  .loader {
    height: 60px;
    font-size: 5vw;
  }

  .words {
    font-size: 5vw;
    height: 60px;
    overflow: hidden;
  }

  .word {
    height: 60px;
    line-height: 60px;
  }

  .rocket-icon {
    width: 30px;
    height: 30px;
    margin-right: 8px;
  }

  @keyframes spin_4991 {
    0%,
    15% {
      transform: translateY(0);
    }
    20%,
    35% {
      transform: translateY(-100%);
    }
    40%,
    55% {
      transform: translateY(-200%);
    }
    60%,
    75% {
      transform: translateY(-300%);
    }
    80%,
    95% {
      transform: translateY(-400%);
    }
    100% {
      transform: translateY(-500%);
    }
  }

  .logo {
    max-width: 85%;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .header {
    padding-top: 100px;
  }

  .amazon-help-text {
    font-size: 6vw;
  }

  .loader {
    height: 50px;
    font-size: 6vw;
  }

  .words {
    font-size: 6vw;
    height: 50px;
  }

  .word {
    height: 50px;
    line-height: 50px;
  }

  .rocket-icon {
    width: 25px;
    height: 25px;
    margin-right: 6px;
  }

  @keyframes spin_4991 {
    0%,
    15% {
      transform: translateY(0);
    }
    20%,
    35% {
      transform: translateY(-100%);
    }
    40%,
    55% {
      transform: translateY(-200%);
    }
    60%,
    75% {
      transform: translateY(-300%);
    }
    80%,
    95% {
      transform: translateY(-400%);
    }
    100% {
      transform: translateY(-500%);
    }
  }

  .logo {
    max-width: 90%;
    margin-bottom: 15px;
  }
}

/* Gradientshift2 Animation beibehalten */
@keyframes gradientShift2 {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}

/* Footer Links */
.footer-links {
  margin-top: 50px;
  text-align: center;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
}

/* Image Showcase */
.image-showcase {
  height: 100vh;
  width: 100%;
  display: flex;
  overflow: hidden;
  position: relative;
  background: transparent;
  box-sizing: border-box;
}

.image-container {
  position: relative;
  flex: 1;
  min-width: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  transition: flex 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
  overflow: hidden;
  box-sizing: border-box;
  cursor: pointer;
}

.image-container:last-child {
  border-right: none;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.primary-image {
  position: relative;
  z-index: 1;
}

.hover-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
  visibility: hidden;
  transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.image-buttons {
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  z-index: 3;
  opacity: 1;
  transform: none;
  transition: all 0.5s ease;
}

.image-button {
  padding: 10px 20px;
  background: linear-gradient(135deg, #5729a0, #d51f89);
  color: white;
  border: none;
  border-radius: 0;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.image-button.amazon {
  background: linear-gradient(135deg, #ff9900, #e07b00);
}

.image-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Desktop Klick-Effekte - Keine Hover-Effekte mehr */
@media (min-width: 769px) {
  .image-showcase .image-container.active {
    flex: 3;
  }

  .image-showcase .image-container.active .primary-image {
    opacity: 0;
  }

  .image-showcase .image-container.active .hover-image {
    opacity: 1;
    visibility: visible;
  }

  .image-showcase .image-container.active .image-buttons {
    opacity: 1;
    transform: none;
    top: 50px;
  }

  .image-showcase .image-container:not(.active) {
    flex: 0.7;
    overflow: hidden;
    position: relative;
  }

  .image-showcase .image-container:not(.active) img {
    opacity: 0.5;
  }

  /* Hover-Effekte für Desktop */
  .image-showcase .image-container:not(.active):hover .primary-image {
    opacity: 0.9 !important;
    filter: brightness(1.2);
    transition: all 0.5s ease;
  }

  .image-showcase .image-container:not(.active):hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
  }

  .image-showcase .image-container:not(.active)::after {
    content: "Klick für mehr";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 15px;
    border-radius: 0;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 5;
    pointer-events: none;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .image-showcase .image-container:not(.active):hover::after {
    opacity: 1;
    animation: pulse 2s infinite;
  }

  .image-showcase .image-container:not(.active):hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
      circle at center,
      rgba(255, 255, 255, 0.2),
      transparent 70%
    );
    z-index: 3;
    opacity: 0;
    animation: glow 2s infinite;
  }

  @keyframes pulse {
    0%,
    100% {
      transform: translate(-50%, -50%) scale(1);
    }
    50% {
      transform: translate(-50%, -50%) scale(1.05);
    }
  }

  @keyframes glow {
    0%,
    100% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
  }
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
  .image-showcase {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
    box-sizing: border-box;
    height: auto;
    min-height: 100vh;
    flex-direction: column;
  }

  .image-container {
    opacity: 1;
    flex: 1;
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    overflow: hidden;
    box-sizing: border-box;
    height: 25vh !important;
    max-height: 25vh !important;
    min-height: 0 !important;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .image-container:last-child {
    border-bottom: none;
  }

  .image-container img {
    opacity: 1;
    transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
  }

  .image-container.active {
    flex: 4;
    height: 70vh !important;
    max-height: 70vh !important;
    min-height: 70vh !important;
  }

  .image-container.active .primary-image {
    opacity: 0;
  }

  .image-container.active .hover-image {
    opacity: 1;
    visibility: visible;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
  }

  .image-container.active .image-buttons {
    opacity: 1;
    transform: none;
    top: 50px;
  }

  .image-container:not(.active) {
    flex: 0.5;
  }

  .image-container:not(.active) img {
    opacity: 0.3;
  }

  .hover-image {
    visibility: hidden;
  }
}

@media (max-width: 576px) {
  .image-container {
    height: 25vh !important;
    max-height: 25vh !important;
    min-height: 0 !important;
  }

  .image-container.active {
    height: 80vh !important;
    max-height: 80vh !important;
    min-height: 80vh !important;
  }

  .image-buttons {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    bottom: 15px;
    top: unset;
  }

  .image-button {
    /* width: 80%; */
    padding: 8px 15px;
    font-size: 14px;
  }
}

.about-us-section {
  position: relative;
  padding: 120px 40px;
  overflow: hidden;
  background: transparent;
}

.about-us-section > .section-title {
  max-width: 1400px;
  margin: 0 auto 40px;
  box-sizing: border-box;
}

:root.light-theme .about-us-section {
  background: transparent;
}

.about-us-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.mission-statement {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
}

.elegant-text {
  font-size: 24px;
  line-height: 1.6;
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* Values Container Styles - Horizontal Layout with Icons on Top */
.values-container-new {
  max-width: 1500px;
  margin: 60px auto 80px;
  padding: 0 20px;
}

.values-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 25px;
  max-width: 100%;
}

.value-item {
  flex: 0 1 calc(20% - 20px);
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0;
  position: relative;
  transition: all 0.3s ease;
  transform: translateY(-8px);
  cursor: pointer;
}

.value-item:hover {
  transform: translateY(-18px);
}

.value-icon-circle {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1.15);
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.value-item:hover .value-icon-circle {
  transform: scale(1.25);
}

.value-svg-icon {
  width: 64px;
  height: 64px;
  stroke: #d51f89;
  filter: drop-shadow(0 0 12px rgba(213, 31, 137, 0.7));
  transform: scale(1.1);
  transition: all 0.3s ease;
}

.value-item:hover .value-svg-icon {
  stroke: #fe9600;
  filter: drop-shadow(0 0 16px rgba(254, 150, 0, 0.9));
}

.value-content {
  flex: 1;
}

.value-heading {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #d51f89, #ff9600);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
  transform: scale(1.05);
}

.value-item:hover .value-heading {
  transform: scale(1.08);
}

.value-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease;
}

.value-item:hover .value-text {
  color: rgba(255, 255, 255, 1);
}

/* Light Theme Styles */
:root.light-theme .value-svg-icon {
  stroke: rgba(213, 31, 137, 1);
}

:root.light-theme .value-item:hover .value-svg-icon {
  stroke: #fe9600;
  filter: drop-shadow(0 0 12px rgba(254, 150, 0, 0.8));
}

:root.light-theme .value-heading {
  color: #1a1a1a;
}

:root.light-theme .value-text {
  color: rgba(0, 0, 0, 0.9);
}

:root.light-theme .value-item:hover .value-text {
  color: rgba(0, 0, 0, 1);
}

/* Responsive Styles */
@media (max-width: 1400px) {
  .values-list {
    gap: 35px 25px;
  }

  .value-item {
    flex: 0 1 calc(33.333% - 20px);
  }
}

@media (max-width: 1024px) {
  .values-list {
    gap: 40px 25px;
  }

  .value-item {
    flex: 0 1 calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .values-container-new {
    margin: 40px auto 60px;
    padding: 0 15px;
  }

  .values-list {
    gap: 35px;
  }

  .value-item {
    flex: 0 1 100%;
  }

  .value-icon-circle {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .value-svg-icon {
    width: 56px;
    height: 56px;
  }

  .value-heading {
    font-size: 1.25rem;
  }

  .value-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .values-container-new {
    margin: 30px auto 40px;
  }

  .values-list {
    gap: 30px;
  }

  .value-item {
    flex: 0 1 100%;
  }

  .value-icon-circle {
    width: 65px;
    height: 65px;
    margin-bottom: 18px;
  }

  .value-svg-icon {
    width: 52px;
    height: 52px;
  }

  .value-heading {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .value-text {
    font-size: 0.9rem;
  }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.team-member-premium {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 0;
  text-align: center;
  transition: all 0.5s ease;
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}

.team-member-premium:hover {
  transform: translateY(-10px);
  border-radius: 0;
  box-shadow: 0 15px 30px rgba(87, 41, 160, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

:root.light-theme .team-member-premium {
  background: rgba(240, 240, 240, 0.7);
  border: 1px solid rgba(87, 41, 160, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

:root.light-theme .team-member-premium:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 15px 30px rgba(87, 41, 160, 0.3);
}

:root.light-theme .team-member-premium::before {
  opacity: 0.3;
}

:root.light-theme .team-member-premium:hover::before {
  opacity: 0.6;
}

@keyframes morphRect {
  0% {
    border-radius: 10px;
    transform: skew(0deg, 0deg);
  }
  25% {
    border-radius: 15px 5px 15px 5px;
    transform: skew(1deg, 1deg);
  }
  50% {
    border-radius: 5px 15px 5px 15px;
    transform: skew(-1deg, -1deg);
  }
  75% {
    border-radius: 12px 8px 12px 8px;
    transform: skew(1deg, -1deg);
  }
  100% {
    border-radius: 10px;
    transform: skew(0deg, 0deg);
  }
}

@keyframes blobHighlight {
  0%,
  33.3% {
    background: linear-gradient(
      135deg,
      rgba(87, 41, 160, 0.2),
      rgba(213, 31, 137, 0.2)
    );
    animation-timing-function: ease-in-out;
  }
  33.4%,
  99.9% {
    background: rgba(255, 255, 255, 0.03);
    animation-timing-function: step-end;
  }
  100% {
    background: rgba(255, 255, 255, 0.03);
  }
}

@keyframes blobHighlight2 {
  0%,
  33.3% {
    background: rgba(255, 255, 255, 0.03);
    animation-timing-function: step-end;
  }
  33.4%,
  66.6% {
    background: linear-gradient(
      135deg,
      rgba(87, 41, 160, 0.2),
      rgba(213, 31, 137, 0.2)
    );
    animation-timing-function: ease-in-out;
  }
  66.7%,
  100% {
    background: rgba(255, 255, 255, 0.03);
    animation-timing-function: step-end;
  }
}

@keyframes blobHighlight3 {
  0%,
  66.6% {
    background: rgba(255, 255, 255, 0.03);
    animation-timing-function: step-end;
  }
  66.7%,
  99.9% {
    background: linear-gradient(
      135deg,
      rgba(87, 41, 160, 0.2),
      rgba(213, 31, 137, 0.2)
    );
    animation-timing-function: ease-in-out;
  }
  100% {
    background: rgba(255, 255, 255, 0.03);
  }
}

.team-grid .team-member-premium:nth-child(1) {
  animation: morphRect 15s ease-in-out infinite, blobHighlight 6s infinite;
  border-radius: 0;
  border: none;
}

.team-grid .team-member-premium:nth-child(2) {
  animation: morphRect 15s ease-in-out infinite 5s, blobHighlight2 6s infinite;
  border-radius: 0;
  border: none;
}

.team-grid .team-member-premium:nth-child(3) {
  animation: morphRect 15s ease-in-out infinite 10s, blobHighlight3 6s infinite;
  border-radius: 0;
  border: none;
}

.team-grid .team-member-premium:nth-child(1):hover {
  animation-play-state: paused;
  background: linear-gradient(
    135deg,
    rgba(87, 41, 160, 0.1),
    rgba(213, 31, 137, 0.1)
  );
}

.team-grid .team-member-premium:nth-child(2):hover {
  animation-play-state: paused;
  background: linear-gradient(
    135deg,
    rgba(87, 41, 160, 0.1),
    rgba(213, 31, 137, 0.1)
  );
}

.team-grid .team-member-premium:nth-child(3):hover {
  animation-play-state: paused;
  background: linear-gradient(
    135deg,
    rgba(87, 41, 160, 0.1),
    rgba(213, 31, 137, 0.1)
  );
}

.member-image-container {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #5729a0, #d51f89);
}

.member-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.member-image-container:hover .member-image {
  transform: none;
}

.team-member-premium h2 {
  font-size: 24px;
  background: linear-gradient(135deg, #5729a0, #d51f89);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.team-member-premium .position {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  font-weight: 500;
}

.team-member-premium .description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.linkedin-link-bottom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 12px 24px;
  background: linear-gradient(
    135deg,
    rgba(87, 41, 160, 0.8),
    rgba(213, 31, 137, 0.8)
  );
  color: white;
  text-decoration: none;
  border-radius: 0;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(87, 41, 160, 0.4);
}

.linkedin-link-bottom:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(87, 41, 160, 0.6);
  background: linear-gradient(
    135deg,
    rgba(87, 41, 160, 1),
    rgba(213, 31, 137, 1)
  );
}

.linkedin-link-bottom span {
  margin-left: 8px;
}

.linkedin-icon {
  width: 22px;
  height: 22px;
  fill: white;
}

/* Enhanced Hover Effects */
.team-member-premium::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    rgba(87, 41, 160, 0.5),
    rgba(213, 31, 137, 0.5),
    rgba(254, 150, 0, 0.5)
  );
  z-index: -1;
  border-radius: 17px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-member-premium:hover::before {
  opacity: 1;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 36px;
  }

  .elegant-text {
    font-size: 20px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}

.amazon-help-text {
  font-size: 3vw;
  font-weight: bold;
  margin: 10px 0;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 2;
}

@media (max-width: 768px) {
  .amazon-help-text {
    font-size: 5vw;
    margin: 5px 0;
  }
}

/* Luxury Consultation Section */
.luxury-consultation-section {
  position: relative;
  padding: 120px 0;
  margin: 0 0;
  width: 100%;
  overflow: hidden;
  background: transparent;
}

.luxury-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: -1;
  border: none;
  border-top: 1px solid rgba(217, 184, 131, 0.2);
  border-bottom: 1px solid rgba(217, 184, 131, 0.2);
  backdrop-filter: blur(10px);
}

.luxury-content {
  padding: 0 60px;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.luxury-badge {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #d9b883 0%, #a67c3b 100%);
  color: #000;
  padding: 8px 30px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0;
  box-shadow: 0 5px 15px rgba(217, 184, 131, 0.3);
  margin-bottom: 30px;
}

.luxury-corner-decoration {
  position: absolute;
  width: 80px;
  height: 80px;
  z-index: 0;
}

.luxury-corner-decoration::before,
.luxury-corner-decoration::after {
  content: "";
  position: absolute;
  background: #d9b883;
}

.luxury-corner-decoration::before {
  width: 2px;
  height: 40px;
}

.luxury-corner-decoration::after {
  width: 40px;
  height: 2px;
}

.top-left {
  top: 30px;
  left: 30px;
}

.top-left::before {
  top: 0;
  left: 0;
}

.top-left::after {
  top: 0;
  left: 0;
}

.top-right {
  top: 30px;
  right: 30px;
}

.top-right::before {
  top: 0;
  right: 0;
}

.top-right::after {
  top: 0;
  right: 0;
}

.bottom-left {
  bottom: 30px;
  left: 30px;
}

.bottom-left::before {
  bottom: 0;
  left: 0;
}

.bottom-left::after {
  bottom: 0;
  left: 0;
}

.bottom-right {
  bottom: 30px;
  right: 30px;
}

.bottom-right::before {
  bottom: 0;
  right: 0;
}

.bottom-right::after {
  bottom: 0;
  right: 0;
}

.luxury-testimonial {
  position: relative;
  max-width: 800px;
  margin: 60px auto;
  padding: 40px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  border: 1px solid rgba(217, 184, 131, 0.1);
}

.testimonial-quote {
  position: absolute;
  top: -30px;
  left: 30px;
  font-size: 120px;
  color: rgba(217, 184, 131, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.luxury-testimonial p {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  margin-top: 20px;
  color: #d9b883;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1px;
}

.luxury-subtitle {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 2px;
}

.luxury-benefits {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0 auto 40px;
  max-width: 800px;
  align-items: center;
}

.luxury-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto;
  width: 100%;
  max-width: 300px;
  position: relative;
}

.luxury-divider::before,
.luxury-divider::after {
  content: "";
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(213, 31, 137, 0.7),
    transparent
  );
  flex-grow: 1;
}

.diamond-icon {
  font-size: 18px;
  color: rgba(213, 31, 137, 0.7);
  margin: 0 20px;
  display: inline-block;
  transform: rotate(45deg);
}

.benefit-item {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 100%;
}

.check-icon {
  color: rgba(213, 31, 137, 0.9);
  font-size: 24px;
  margin-right: 15px;
  font-weight: bold;
}

.benefit-item p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.5;
  text-align: center;
}

.services-title,
.actions-title {
  font-size: 28px;
  background: linear-gradient(135deg, #5729a0, #d51f89);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 40px 0 30px;
  font-weight: normal;
  letter-spacing: 2px;
}

.services-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 30px;
  margin: 40px auto;
  max-width: 1000px;
  justify-content: center;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.5s ease;
  background: rgba(255, 255, 255, 0.03);
  padding: 30px 20px;
  border-radius: 0;
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}

.service-item:hover {
  transform: translateY(-10px);
  border-radius: 0;
  box-shadow: 0 15px 30px rgba(87, 41, 160, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.service-item::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    rgba(87, 41, 160, 0.5),
    rgba(213, 31, 137, 0.5),
    rgba(254, 150, 0, 0.5)
  );
  z-index: -1;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-item:hover::before {
  opacity: 1;
}

.service-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: rgba(213, 31, 137, 0.9);
  border: 1px solid rgba(213, 31, 137, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
}

.service-icon svg {
  width: 30px;
  height: 30px;
}

.service-item:hover .service-icon {
  background: rgba(213, 31, 137, 0.1);
  border-color: rgba(213, 31, 137, 0.7);
  box-shadow: 0 5px 15px rgba(213, 31, 137, 0.2);
  transform: rotate(5deg);
}

.service-item p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.action-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 40px auto;
  width: 100%;
  max-width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
}

.action-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  border-radius: 0;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.5s ease;
  min-width: 200px;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
  z-index: 1;
  box-sizing: border-box;
  text-align: center;
}

.action-button::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    rgba(87, 41, 160, 0.5),
    rgba(213, 31, 137, 0.5),
    rgba(213, 31, 137, 0.5)
  );
  z-index: -1;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.action-button:hover::before {
  background: linear-gradient(
    45deg,
    rgba(87, 41, 160, 0.5),
    rgba(213, 31, 137, 0.5),
    rgba(213, 31, 137, 0.5)
  );
  opacity: 1;
}

.action-button.orange {
  background: linear-gradient(135deg, #5729a0, #d51f89);
  color: white;
  box-shadow: 0 5px 15px rgba(213, 31, 137, 0.2);
}

.action-button.dark {
  background: rgba(0, 26, 60, 0.7);
  color: white;
  border: 1px solid rgba(213, 31, 137, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.action-button:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(87, 41, 160, 0.3);
}

.button-icon {
  margin-right: 10px;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.action-button:hover .button-icon {
  transform: none;
}

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(4, minmax(150px, 1fr));
  }
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .services-container {
    padding: 0 15px;
  }

  .services-grid {
    grid-template-columns: repeat(1, minmax(150px, 1fr));
    gap: 15px;
  }

  .service-item {
    padding: 15px;
  }

  .service-title {
    font-size: 16px;
    margin: 10px 0 5px;
  }

  .service-description {
    font-size: 14px;
  }

  .luxury-title {
    font-size: 28px;
    letter-spacing: 3px;
  }

  .luxury-subtitle {
    font-size: 16px;
  }
}

/* Footer Styles */
.site-footer {
  position: relative;
  background: transparent;
  color: var(--text-color);
  padding: 70px 0 30px;
  overflow: hidden;
  z-index: 1;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: -1;
}

:root.light-theme .site-footer::before {
  background: transparent;
}

/* Footerkante leicht sichtbar machen */
.site-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(213, 31, 137, 0.3),
    transparent
  );
  z-index: 0;
}

/* Bestehenden Strahleneffekt im Footer anpassen */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: -1;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr 0.8fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

.footer-section {
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.footer-section h3 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 30px;
  position: relative;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: left;
}

.footer-section h3::after {
  display: none;
}

.footer-section p {
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-section a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-section a:hover {
  color: #d51f89;
  transform: translateX(3px);
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  justify-content: flex-start;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.social-icon:hover {
  transform: translateY(-2px);
  background: rgba(213, 31, 137, 0.1);
  border-color: rgba(213, 31, 137, 0.3);
}

.social-icon:hover svg {
  color: #d51f89;
}

/* Footer Brand Section */
.footer-brand {
  max-width: 100%;
}

.footer-logo-container {
  margin-bottom: 24px;
}

.footer-logo {
  max-width: 160px;
  height: auto;
  filter: brightness(1);
  transition: filter 0.3s ease;
}

.footer-logo:hover {
  filter: brightness(1.1);
}

/* Footer Logo Theme Switching */
.footer-logo-dark {
  display: block;
}

.footer-logo-light {
  display: none;
}

:root.light-theme .footer-logo-dark {
  display: none;
}

:root.light-theme .footer-logo-light {
  display: block;
}

.footer-tagline {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.8;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

/* Footer Contact Grid - New Structure */
.footer-contact-grid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact-link:hover {
  color: #d51f89;
  transform: translateX(3px);
}

.footer-contact-link .footer-icon {
  flex-shrink: 0;
  color: #d51f89;
  width: 16px;
  height: 16px;
}

.footer-contact-link span {
  font-size: 14px;
}

.footer-address {
  cursor: default;
}

.footer-address:hover {
  transform: none;
}

:root.light-theme .footer-contact-link {
  color: rgba(51, 51, 51, 0.75);
}

:root.light-theme .footer-contact-link:hover {
  color: #d51f89;
}

:root.light-theme .footer-contact-link .footer-icon {
  color: #5729a0;
}

/* Light Theme Footer Improvements */
:root.light-theme .footer-tagline {
  color: rgba(51, 51, 51, 0.7);
}

:root.light-theme .footer-section a {
  color: rgba(51, 51, 51, 0.85);
}

:root.light-theme .footer-section a:hover {
  color: #d51f89;
}

:root.light-theme .social-icon svg {
  color: rgba(51, 51, 51, 0.7);
}

:root.light-theme .social-icon:hover svg {
  color: #d51f89;
}

:root.light-theme .footer-section {
  border-bottom-color: rgba(51, 51, 51, 0.08);
}

:root.light-theme .footer-bottom {
  border-top-color: rgba(51, 51, 51, 0.08);
}

:root.light-theme .footer-section h3 {
  color: rgba(51, 51, 51, 0.5);
}

:root.light-theme .footer-links-list li::after {
  color: rgba(51, 51, 51, 0.25);
}

:root.light-theme .footer-links-list a:hover {
  color: #d51f89;
}

/* Light Theme Mobile Footer Styles */
@media (max-width: 992px) {
  :root.light-theme .footer-section {
    border-bottom-color: rgba(51, 51, 51, 0.08);
  }

  :root.light-theme .footer-section h3 {
    -webkit-text-fill-color: rgba(51, 51, 51, 0.45);
    color: rgba(51, 51, 51, 0.45);
  }
}

@media (max-width: 768px) {
  :root.light-theme .footer-section h3 {
    -webkit-text-fill-color: rgba(51, 51, 51, 0.45);
    color: rgba(51, 51, 51, 0.45);
    background: none;
  }

  :root.light-theme .footer-section {
    border-bottom-color: rgba(51, 51, 51, 0.08);
  }

  :root.light-theme .footer-bottom {
    border-top-color: rgba(51, 51, 51, 0.08);
  }

  :root.light-theme .footer-tagline {
    color: rgba(51, 51, 51, 0.55);
  }

  :root.light-theme .copyright {
    color: rgba(51, 51, 51, 0.4);
  }

  :root.light-theme .footer-legal-links a {
    color: rgba(51, 51, 51, 0.55);
  }

  :root.light-theme .footer-links-list a {
    color: rgba(51, 51, 51, 0.7);
  }

  :root.light-theme .footer-links-list li::after {
    color: rgba(51, 51, 51, 0.25);
  }

  :root.light-theme .social-icon svg {
    color: rgba(51, 51, 51, 0.5);
  }

  :root.light-theme .footer-contact-link {
    color: rgba(51, 51, 51, 0.7);
  }

  :root.light-theme .footer-contact-link .footer-icon {
    color: rgba(213, 31, 137, 0.6);
  }
}

/* Legacy Footer Contact Items (fallback) */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.footer-contact-item:hover {
  transform: translateX(3px);
}

.footer-icon {
  flex-shrink: 0;
  color: #d51f89;
  margin-top: 3px;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  text-align: left;
}

.contact-text strong {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: left;
}

.contact-text a,
.contact-text span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  text-align: left;
}

.contact-text a:hover {
  color: #d51f89;
  transform: none;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list li {
  margin-bottom: 0;
  position: relative;
}

.footer-links-list a {
  display: inline-block;
  position: relative;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  padding-left: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 400;
}

.footer-links-list a::before {
  display: none;
}

.footer-links-list a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-links-list a:hover::before {
  display: none;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  position: relative;
  z-index: 1;
  background: transparent;
}

:root.light-theme .footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  letter-spacing: 0.3px;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.legal-divider {
  color: rgba(255, 255, 255, 0.3);
  padding: 0 10px;
  font-size: 14px;
}

:root.light-theme .footer-legal-links a {
  color: rgba(51, 51, 51, 0.6);
}

:root.light-theme .footer-legal-links a:hover {
  color: #d51f89;
}

:root.light-theme .legal-divider {
  color: rgba(51, 51, 51, 0.3);
}

:root.light-theme .copyright {
  color: rgba(51, 51, 51, 0.6);
}

.jusatech-powered {
  margin: 0;
  text-align: right;
  position: relative;
  transition: all 0.3s ease;
}

.jusatech-powered a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.3s ease;
}

.jusatech-powered a:hover {
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.powered-label {
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.7;
}

.jusatech-logo {
  width: 80px;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.jusatech-powered a:hover .jusatech-logo {
  opacity: 1;
}

@media (max-width: 992px) {
  .footer-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 0 40px;
  }

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

  .footer-section h3 {
    text-align: left;
  }

  .footer-section h3::after {
    left: 0;
    transform: none;
  }

  .footer-brand {
    grid-column: span 2;
    text-align: center;
  }

  .footer-brand h3 {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  /* Kontakt-Infos zentrieren */
  .footer-contact-grid {
    align-items: flex-start;
  }

  .footer-contact-link {
    justify-content: flex-start;
  }
}

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

  .footer-container {
    display: flex;
    flex-direction: column;
    padding: 0 28px;
    align-items: center;
    text-align: center;
    gap: 0;
  }

  .footer-section {
    margin-bottom: 0;
    padding: 32px 0;
    width: 100%;
    max-width: 100%;
    text-align: center;
    flex: 0 0 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .footer-section:last-child {
    border-bottom: none;
  }

  .footer-section h3 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    padding-bottom: 0;
    text-align: center;
    background: none;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.4);
  }

  .footer-section h3::after {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px 32px;
    gap: 16px;
    margin-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .footer-bottom-left {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .copyright {
    margin: 0;
    text-align: center;
    width: 100%;
    font-size: 11px;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 400;
    order: 2;
  }

  .footer-legal-links {
    order: 1;
    justify-content: center;
  }

  .footer-legal-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
  }

  .legal-divider {
    padding: 0 8px;
  }

  .jusatech-powered {
    margin: 8px 0 0;
    text-align: center;
    width: 100%;
    order: 3;
  }

  .jusatech-logo {
    width: 70px;
  }

  .powered-label {
    font-size: 8px;
  }

  .social-icons {
    justify-content: center;
    gap: 24px;
    margin-top: 8px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }

  .social-icon svg {
    width: 22px;
    height: 22px;
    color: rgba(255, 255, 255, 0.5);
  }

  .footer-links-list {
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0;
  }

  .footer-links-list li {
    margin-bottom: 0;
    position: relative;
  }

  .footer-links-list li::after {
    content: "·";
    color: rgba(255, 255, 255, 0.25);
    padding: 0 12px;
    font-size: 14px;
  }

  .footer-links-list li:last-child::after {
    display: none;
  }

  .footer-links-list a {
    padding-left: 0;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2px;
    color: rgba(255, 255, 255, 0.65);
  }

  .footer-links-list a::before {
    display: none;
  }

  .footer-section a:hover,
  .footer-links-list a:hover {
    transform: none;
    color: rgba(255, 255, 255, 0.9);
  }

  .logo {
    max-width: 85%;
    margin-bottom: 20px;
  }

  .footer-brand {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 24px;
  }

  .footer-logo-container {
    text-align: center;
    margin-bottom: 16px;
  }

  .footer-logo {
    max-width: 140px;
    opacity: 0.9;
  }

  .footer-tagline {
    text-align: center;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.5);
    max-width: 280px;
    margin: 0 auto 4px;
    font-weight: 400;
  }

  /* Mobile Kontakt Grid */
  .footer-contact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
  }

  .footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-contact-link:hover {
    color: rgba(255, 255, 255, 0.9);
  }

  .footer-contact-link .footer-icon {
    width: 14px;
    height: 14px;
    color: rgba(213, 31, 137, 0.6);
    flex-shrink: 0;
  }

  .footer-contact-link span {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 40px 0 0;
  }

  .footer-container {
    padding: 0 20px;
    gap: 0;
  }

  .footer-section {
    padding: 28px 0;
  }

  .footer-section h3 {
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }

  .footer-section p,
  .footer-links-list a {
    font-size: 13px;
  }

  .social-icons {
    gap: 20px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
  }

  .social-icon svg {
    width: 20px;
    height: 20px;
  }

  .footer-bottom {
    padding: 24px 20px 28px;
  }

  .copyright {
    font-size: 11px;
    letter-spacing: 0.2px;
  }

  .footer-tagline {
    font-size: 13px;
    max-width: 260px;
  }

  .footer-logo {
    max-width: 120px;
  }

  .footer-contact-item .contact-text a,
  .footer-contact-item .contact-text span {
    font-size: 13px;
  }

  .logo {
    max-width: 90%;
    margin-bottom: 15px;
  }
}

/* Roadmap Section Styles */
.roadmap-section {
  position: relative;
  padding: 80px 20px;
  background: transparent;
  overflow: hidden;
  text-align: center;
}

:root.light-theme .roadmap-section {
  background: transparent;
}

/* Roadmap Subtitle Container - Professionelles Design */
.roadmap-subtitle-container {
  max-width: 1400px;
  margin: 0px auto 0px;
  padding: 0 40px;
}

/* Intro Section */
.roadmap-intro {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.intro-text {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 10px;
  line-height: 1.6;
  letter-spacing: 0.5px;
}

.intro-highlight {
  font-weight: 600;
  color: var(--text-color);
}

.intro-subtext {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.intro-subtext::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #5729a0, #d51f89, #fe9600);
  border-radius: 2px;
}

:root.light-theme .intro-subtext {
  color: rgba(51, 51, 51, 0.7);
}

/* Roadmap Steps Container */
.roadmap-text-content {
  max-width: 100%;
  /* width: 100%; */
  margin: 0 auto;
  text-align: center !important;
  padding: 0 20px;
  display: block;
}

.roadmap-text-content * {
  text-align: center !important;
}

.roadmap-description {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-color);
  margin: 0 auto 25px auto;
  font-weight: 300;
  text-align: center !important;
  max-width: 100%;
  width: 100%;
}

.roadmap-description:last-child {
  margin-bottom: 0;
}

/* Keep old classes for backwards compatibility if needed */
.roadmap-steps {
  display: none;
}

.roadmap-step {
  display: none;
}

.step-number {
  display: none;
}

.step-content {
  display: none;
}

.step-icon {
  display: none;
}

.step-icon svg {
  display: none;
}

.step-text {
  display: none;
}

.highlight-text {
  font-weight: 600;
  background: linear-gradient(135deg, #fe9600, #d51f89);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Keyword Links - Begriffe die im Rad vorhanden sind - Gradient Style wie "Wir bleiben am Zahn der Zeit" */
.keyword-link {
  position: relative;
  text-decoration: none;
  font-weight: 700;
  padding: 0;
  border-radius: 0;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #ff6b00, #d51f89, #5729a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
  border-bottom: none;
}

.keyword-link::before {
  display: none;
}

.keyword-link:hover {
  background: linear-gradient(135deg, #ffaa00, #ff4d9f, #7b4fc9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: none;
  border-bottom: none;
}

.keyword-link:hover::before {
  display: none;
}

.keyword-link:active {
  transform: none;
}

:root.light-theme .keyword-link {
  background: linear-gradient(135deg, #ff6b00, #d51f89, #5729a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border-bottom: none;
}

:root.light-theme .keyword-link:hover {
  background: linear-gradient(135deg, #ff8533, #ff4d9f, #7b4fc9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border-bottom: none;
}

/* Responsive Design */
@media (max-width: 992px) {
  .roadmap-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .intro-text {
    font-size: 1.2rem;
  }

  .intro-subtext {
    font-size: 1rem;
  }

  .roadmap-description {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 22px;
  }
}

@media (max-width: 768px) {
  .roadmap-subtitle-container {
    margin: 30px auto 40px;
    padding: 0 20px;
    text-align: center;
  }

  .roadmap-intro {
    margin-bottom: 25px;
    text-align: center;
  }

  .intro-text {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center !important;
  }

  .intro-text.value-heading {
    text-align: center !important;
  }

  .intro-subtext {
    font-size: 0.95rem;
    text-align: center;
  }

  .roadmap-text-content {
    text-align: center !important;
    padding: 0 15px;
  }

  .roadmap-text-content * {
    text-align: center !important;
  }

  .roadmap-description {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 20px;
    text-align: center !important;
  }
}

@media (max-width: 480px) {
  .roadmap-subtitle-container {
    text-align: center !important;
  }

  .roadmap-intro {
    text-align: center !important;
  }

  .roadmap-text-content {
    text-align: center !important;
    padding: 0 10px;
  }

  .roadmap-text-content * {
    text-align: center !important;
  }

  .intro-text {
    text-align: center !important;
  }

  .intro-text.value-heading {
    text-align: center !important;
  }

  .roadmap-description {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 18px;
    text-align: center !important;
  }
}

/* Neuer Flex-Container für Desktop-Layout */
.roadmap-content-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 60px auto 0 auto;
}

.progress-chart-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex: 1;
}

.rotatable-chart {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1;
  margin: 0 auto;
  margin-bottom: 120px;
}

.rotatable-chart::before {
  display: none;
}

.chart-segments {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
  border-radius: 50%;
  overflow: hidden;
}

/* SVG-Segmente Styling - unsichtbar aber funktional */
.slice {
  stroke: transparent;
  stroke-width: 0;
  fill-opacity: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  pointer-events: auto;
}

/* Hover-Status - visuell sichtbar machen für Debug-Zwecke, aber sonst unsichtbar */
.slice:hover {
  fill-opacity: 0;
  /* Cursor beibehalten, damit der User weiß, dass hier etwas klickbar ist */
  cursor: pointer;
}

.slice.active {
  fill-opacity: 0;
}

/* Text in Segmenten unsichtbar machen */
text {
  opacity: 0;
  transform-origin: center;
}

.chart-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgb(255 255 255 / 30%);
  transition: transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

:root.light-theme .chart-image-container {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.chart-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transform-origin: center center;
}

/* Beschriftungen */
.segment::after {
  content: attr(data-label);
  position: absolute;
  font-weight: bold;
  font-size: 14px;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  pointer-events: none;
  color: white;
}

/* Positionierung der Labels */
.segment-1::after {
  top: 20%;
  right: 30%;
}

.segment-2::after {
  top: 20%;
  left: 30%;
}

.segment-3::after {
  bottom: 40%;
  left: 15%;
}

.segment-4::after {
  bottom: 20%;
  left: 30%;
}

.segment-5::after {
  bottom: 20%;
  right: 30%;
}

.segment-6::after {
  bottom: 40%;
  right: 15%;
}

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

.roadmap-button {
  display: inline-block;
  padding: 16px 36px;
  background: linear-gradient(135deg, #ff4f5e 0%, #ff9600 100%);
  color: white;
  text-decoration: none;
  font-weight: 700;
  border-radius: 0;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  font-size: 1.2rem;
  z-index: 1;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(255, 79, 94, 0.4);
}

.roadmap-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #a229b6 0%, #6d30b4 100%);
  transition: left 0.5s;
  z-index: -1;
}

.roadmap-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 79, 94, 0.4);
}

.roadmap-button:hover:before {
  left: 0;
}

/* Styling für die Rakete in der Mitte */
.center-rocket {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  z-index: 30;
  pointer-events: none;
}

.rocket-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: rotate(-45deg);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

/* Styling für den Inhaltsbereich */
.segment-content-container {
  flex: 1;
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(87, 41, 160, 0.2);
  overflow: hidden;
  text-align: left;
}

.segment-content {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.segment-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.segment-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #5729a0, #d51f89);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.segment-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.feature-list li {
  padding-left: 30px;
  margin-bottom: 12px;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
}

.feature-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #d51f89;
  font-weight: bold;
}

.feature-list li.custom-icon {
  padding-left: 35px;
}

.feature-list li.custom-icon::before {
  content: none;
}

.feature-list .list-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.insight-box {
  background: rgba(87, 41, 160, 0.15);
  border-left: 4px solid #5729a0;
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 0;
}

.insight-box h4 {
  font-size: 18px;
  margin: 0 0 10px;
  color: #d51f89;
}

.insight-box p {
  margin-bottom: 0;
  font-style: italic;
}

.roadmap-conclusion {
  max-width: 800px;
  margin: 30px auto;
  padding: 0 20px;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive Anpassungen */
@media (max-width: 992px) {
  .roadmap-content-wrapper {
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
  }

  .progress-chart-container {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .segment-content-container {
    margin-top: -150px;
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 768px) {
  .roadmap-section {
    padding: 60px 15px;
  }

  .roadmap-title {
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .progress-chart-container {
    margin-bottom: 0;
  }

  .segment-content-container {
    margin-top: -120px;
  }

  .roadmap-button {
    font-size: 1rem;
    padding: 14px 28px;
    margin-top: 140px;
  }

  .rotatable-chart {
    max-width: 400px;
  }

  .segment-content-container {
    padding: 15px;
  }

  .segment-content h3 {
    font-size: 22px;
  }

  .segment-content p,
  .roadmap-conclusion {
    font-size: 15px;
  }

  .insight-box {
    padding: 12px 15px;
  }

  .insight-box h4 {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .kpi-section {
    padding-top: 0px !important;
  }
  .success-stories-section {
    padding-top: 0px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .colorFont {
    margin-top: 0px !important;
  }

  .faq-section {
    padding-top: 0px !important;
  }

  .about-us-section {
    padding: 60px 20px !important;
  }

  .roadmap-section {
    padding: 40px 10px;
  }

  .roadmap-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .progress-chart-container {
    margin-bottom: 0;
  }

  .roadmap-button {
    font-size: 0.9rem;
    padding: 12px 24px;
    margin-top: 100px;
  }

  .rotatable-chart {
    max-width: 300px;
  }
}

/* Navigation */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--nav-bg-gradient);
  box-shadow: 0 2px 10px var(--shadow-color);
  z-index: 1000;
  transition: all 0.3s ease;
  height: 70px;
}

.main-nav.scrolled {
  background: var(--nav-scrolled-bg-gradient);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-container {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 75px;
  width: auto;
}

.logo-link {
  display: block;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 25px;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.nav-link:hover {
  color: #d51f89;
}

.nav-link:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, #5729a0, #d51f89);
  transition: all 0.3s ease;
  opacity: 0;
}

.nav-link:hover:before {
  width: 100%;
  opacity: 1;
}

.nav-link.cta-button {
  background: linear-gradient(135deg, #5729a0, #d51f89);
  color: white;
  padding: 10px 20px;
  border-radius: 0;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-link.cta-button.orange {
  background: linear-gradient(135deg, #ff4f5e, #ff9600);
}

.nav-link.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  color: white;
}

.nav-link.cta-button:before {
  display: none;
}

.theme-switcher {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.theme-switcher:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(30deg);
}

.theme-icon {
  position: relative;
  width: 20px;
  height: 20px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.moon-icon,
.sun-icon {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease, transform 0.5s ease;
}

.light-theme .moon-icon {
  opacity: 0;
  transform: scale(0);
}

.light-theme .sun-icon {
  opacity: 1;
  transform: scale(1);
}

.sun-icon {
  opacity: 0;
  transform: scale(0);
}

.mobile-menu-logo {
  display: none;
}

.theme-switcher-container {
  display: none;
}

/* Mobile Navigation */
@media (max-width: 992px) {
  .nav-container {
    padding: 0 20px;
  }

  .nav-links {
    gap: 15px;
  }

  .nav-link {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    flex-direction: column;
    background: var(--nav-bg-gradient);
    padding: 80px 30px;
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    overflow-y: auto;
    gap: 30px;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    font-size: 18px;
  }

  .nav-link.cta-button {
    margin-top: 20px;
  }

  .theme-switcher-container {
    display: block;
    margin-top: 20px;
  }

  #theme-switcher-desktop {
    display: none;
  }

  .mobile-menu-logo {
    margin-bottom: 40px;
  }

  .mobile-menu-logo img {
    height: 109.375px;
    width: auto;
  }

  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 15px;
  }

  .nav-logo {
    height: 37.5px;
  }

  .nav-links {
    padding: 70px 0px;
    gap: 25px;
  }
}

/* Amazon Content Agentur Sektion - Overhaul */
.amazon-content-section {
  padding: 140px 0;
  background: transparent;
}

.amazon-content-header {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
}

.content-flex-container {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.content-benefits-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.content-benefit-item {
  display: flex;
  align-items: center;
  background: rgba(31, 36, 82, 0.85);
  padding: 24px 28px;
  border-left: 4px solid #ffb950;
  border-radius: 4px 8px 8px 4px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-benefit-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8);
}

.content-check-icon svg {
  width: 32px;
  height: 32px;
  fill: #ffb950;
  margin-right: 20px;
}

.content-benefit-text {
  font-size: 1.05rem;
  color: #e0e0e0;
  line-height: 1.6;
  font-weight: 500;
}

.content-features-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.content-feature-item {
  background: rgba(31, 36, 82, 0.85);
  border-radius: 0;
  padding: 36px 24px 24px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.content-feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.9);
}

.content-feature-icon-wrapper {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: rgba(255, 186, 0, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.content-feature-item:hover .content-feature-icon-wrapper {
  transform: scale(1.15);
}

.content-feature-icon {
  width: 36px;
  height: 36px;
  fill: #ffb950;
}

.content-feature-title {
  font-size: 1.15rem;
  color: #ffb950;
  font-weight: 600;
  margin-top: 12px;
}

.content-cta-container {
  margin-top: 80px;
  text-align: center;
}

.content-cta-button,
.content-cta-button.secondary {
  min-width: 240px;
  margin: 0 12px;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 960px) {
  .content-flex-container {
    grid-template-columns: 1fr;
  }
  .content-features-column {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .content-features-column {
    grid-template-columns: 1fr;
  }
  .content-check-icon svg {
    width: 28px;
    height: 28px;
  }
  .content-feature-icon-wrapper {
    width: 60px;
    height: 60px;
  }
  .content-feature-icon {
    width: 28px;
    height: 28px;
  }
}

.content-feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #ffb950;
}

.content-feature-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #ffb950;
}

/* E-Mail und Telefon im Footer im Light-Theme direkt mit Hover-Farbe */
:root.light-theme .footer-section a[href^="mailto:"],
:root.light-theme .footer-section a[href^="tel:"] {
  color: #d51f89;
  font-weight: 500;
}

/* Light Theme Footer Anpassungen für neue Elemente */
:root.light-theme .footer-tagline {
  color: rgba(51, 51, 51, 0.7);
}

:root.light-theme .contact-text strong {
  color: rgba(51, 51, 51, 0.9);
}

:root.light-theme .contact-text a,
:root.light-theme .contact-text span {
  color: rgba(51, 51, 51, 0.75);
}

:root.light-theme .contact-text a:hover {
  color: #d51f89;
}

:root.light-theme .footer-icon {
  color: #5729a0;
}

:root.light-theme .social-icon svg {
  color: rgba(51, 51, 51, 0.7);
}

:root.light-theme .social-icon:hover svg {
  color: #5729a0;
  filter: drop-shadow(0 2px 8px rgba(87, 41, 160, 0.4));
}

/* FAQ Sektion Styling */
.faq-section {
  position: relative;
  padding: 50px 20px;
  background: transparent;
  overflow: hidden;
  text-align: center;
}

:root.light-theme .faq-section {
  background: transparent;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 60px;
}

.faq-item {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(87, 41, 160, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(87, 41, 160, 0.3);
  border-color: rgba(213, 31, 137, 0.3);
}

.faq-question {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.faq-question h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  padding-right: 40px;
  background: linear-gradient(135deg, #5729a0, #d51f89);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.faq-toggle {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.faq-toggle span {
  position: absolute;
  background-color: #d51f89;
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.faq-toggle span:last-child {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item.active .faq-toggle span:last-child {
  transform: translateY(-50%) rotate(0);
}

.faq-item.active .faq-toggle {
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  background: rgba(87, 41, 160, 0.1);
  border-top: 1px solid rgba(87, 41, 160, 0.2);
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  padding: 20px 25px;
  margin: 0;
  line-height: 1.6;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.faq-cta {
  margin-top: 0;
  text-align: center;
  padding: 0 25px 20px 25px;
}

.faq-cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #5729a0, #d51f89);
  color: white;
  padding: 10px 20px;
  border-radius: 0;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.faq-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  color: white;
}

/* Light Theme Anpassungen */
:root.light-theme .faq-cta-button {
  color: white;
  background: linear-gradient(135deg, #5729a0, #d51f89);
}

:root.light-theme .faq-cta-button:hover {
  color: white;
}

/* KPI Sektion */
.kpi-section {
  position: relative;
  padding: 40px 20px;
  background: transparent;
  overflow: hidden;
  text-align: center;
  padding-bottom: 0px;
}

:root.light-theme .kpi-section {
  background: transparent;
}

.kpi-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  padding: 0 40px;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

.kpi-card {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 0;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(87, 41, 160, 0.2);
}

.kpi-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(87, 41, 160, 0.4);
  border-color: rgba(213, 31, 137, 0.4);
}

.kpi-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    rgba(87, 41, 160, 0.5),
    rgba(213, 31, 137, 0.5),
    rgba(254, 150, 0, 0.5)
  );
  z-index: -1;
  border-radius: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.kpi-card:hover::before {
  opacity: 1;
}

/* Neue Styles für die KPI-Icons */
.kpi-icon {
  margin-bottom: 20px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kpi-icon svg {
  stroke: #d51f89;
  filter: drop-shadow(0 0 8px rgba(213, 31, 137, 0.5));
  transition: transform 0.3s ease, stroke 0.3s ease, filter 0.3s ease;
}

.kpi-card:hover .kpi-icon svg {
  transform: scale(1.1);
  stroke: #fe9600;
  filter: drop-shadow(0 0 12px rgba(254, 150, 0, 0.7));
}

.kpi-value {
  font-size: 60px;
  font-weight: 700;
  color: white;
  display: inline-block;
}

.kpi-percent,
.kpi-plus {
  font-size: 40px;
  font-weight: 700;
  color: #d51f89;
  display: inline-block;
  margin-left: 5px;
}

.kpi-title {
  font-size: 20px;
  margin: 15px 0 10px;
  background: linear-gradient(135deg, #5729a0, #d51f89);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.kpi-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.kpi-testimonial {
  max-width: 800px;
  margin: 60px auto 40px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 0;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(87, 41, 160, 0.2);
  position: relative;
}

.kpi-testimonial blockquote {
  font-size: 18px;
  line-height: 1.7;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 20px;
  position: relative;
  padding: 0 30px;
}

.kpi-testimonial blockquote::before,
.kpi-testimonial blockquote::after {
  content: '"';
  position: absolute;
  font-size: 60px;
  color: rgba(213, 31, 137, 0.3);
  font-family: Georgia, serif;
  line-height: 1;
}

.kpi-testimonial blockquote::before {
  top: -20px;
  left: -10px;
}

.kpi-testimonial blockquote::after {
  bottom: -70px;
  right: -10px;
  transform: rotate(180deg);
}

.kpi-testimonial cite {
  display: block;
  text-align: right;
  color: #d9b883;
  font-size: 16px;
  font-style: normal;
  margin-top: 15px;
  margin-bottom: 15px;
}

.kpi-cta {
  margin-top: 50px;
}

/* 2x2 Layout bei weniger Platz */
@media (max-width: 1200px) {
  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    gap: 25px;
  }
}

/* Mobile - 2 Spalten Layout */
@media (max-width: 768px) {
  .kpi-container {
    padding: 0;
  }

  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 15px;
  }

  .kpi-card {
    padding: 30px 15px;
  }

  .kpi-icon {
    height: 60px;
    margin-bottom: 15px;
  }

  .kpi-value {
    font-size: 3rem;
  }

  .kpi-plus {
    font-size: 1.8rem;
  }

  .kpi-testimonial {
    padding: 25px 15px;
  }

  .kpi-testimonial blockquote {
    padding: 0 20px;
    font-size: 16px;
  }
}

:root.light-theme .faq-item,
:root.light-theme .kpi-card,
:root.light-theme .kpi-testimonial {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

:root.light-theme .faq-answer {
  background: rgba(87, 41, 160, 0.05);
}

:root.light-theme .faq-answer p,
:root.light-theme .kpi-description,
:root.light-theme .kpi-testimonial blockquote {
  color: rgba(51, 51, 51, 0.9);
}

:root.light-theme .kpi-value {
  color: #333333;
}

/* Responsive Anpassungen für FAQ und KPI */
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-question h3 {
    font-size: 18px;
  }

  .kpi-value {
    font-size: 48px;
  }

  .kpi-percent,
  .kpi-plus {
    font-size: 32px;
  }

  .kpi-title {
    font-size: 18px;
  }

  .kpi-testimonial blockquote {
    font-size: 16px;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .faq-question h3 {
    font-size: 16px;
  }

  .faq-answer p {
    font-size: 14px;
  }

  .kpi-value {
    font-size: 40px;
  }

  .kpi-percent,
  .kpi-plus {
    font-size: 28px;
  }

  .kpi-description {
    font-size: 14px;
  }
}

/* Einheitliche Title-Animation für alle Überschriften */
.title-gradient {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  background-image: linear-gradient(
    to right,
    #5729a0,
    #d51f89,
    #fe9600,
    white,
    #5729a0
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  animation: gradientShift2 8s linear infinite;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Anpassen der bestehenden Überschriften-Klassen */
.section-title,
.roadmap-title,
.luxury-title,
.colorFont {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  background-image: linear-gradient(
    to right,
    #5729a0,
    #d51f89,
    #fe9600,
    white,
    #5729a0
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  animation: gradientShift2 8s linear infinite;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  display: inline-block;
}

/* Spezielle Anpassungen für bestehende Klassen */
.colorFont {
  font-size: 2.5rem;
  margin-top: 40px;
  margin-bottom: 30px;
  z-index: 2;
}

.luxury-title {
  font-weight: 300;
  letter-spacing: 8px;
}

.roadmap-title {
  font-size: 2.5rem;
}

@media (max-width: 768px) {
  .section-title,
  .roadmap-title,
  .luxury-title {
    font-size: 36px;
  }

  .colorFont {
    font-size: 2rem;
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .roadmap-title {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }

  .intro-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .roadmap-subtitle-container {
    padding: 0 15px;
  }
}

@keyframes gradientShift2 {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}

/* Amazon Content Agentur Sektion - Overhaul */
.content-section {
  position: relative;
  padding: 120px 0 140px;
  background: transparent;
  overflow: hidden;
  text-align: center;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  padding: 0 40px;
}

.section-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 80px;
  font-weight: 400;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
}

.section-subtitle:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #5729a0, #d51f89);
  transform: translateX(-50%);
}

/* Elegantes Grid-Layout */
.content-flex-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Professionelle Benefits-Spalte */
.content-benefits-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.content-benefit-item {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  padding: 28px 32px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-left: 3px solid rgba(213, 31, 137, 0.7);
  position: relative;
  overflow: hidden;
}

.content-benefit-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(87, 41, 160, 0.05) 0%,
    rgba(213, 31, 137, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.content-benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border-left: 3px solid #d51f89;
}

.content-benefit-item:hover:before {
  opacity: 1;
}

.content-check-icon {
  min-width: 24px;
  height: 24px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.content-check-icon svg {
  width: 24px;
  height: 24px;
  fill: #d51f89;
  transition: all 0.3s ease;
}

.content-benefit-item:hover .content-check-icon svg {
  fill: #ff9600;
  transform: scale(1.1);
}

.content-benefit-text {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  text-align: left;
}

/* Professionelle Features-Spalte */
.content-features-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.content-feature-item {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  border-top: 3px solid transparent;
}

.content-feature-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #5729a0, #d51f89);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.content-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.content-feature-item:hover:before {
  opacity: 1;
}

.content-feature-icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: rgba(87, 41, 160, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
}

.content-feature-icon-wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 1px solid rgba(213, 31, 137, 0.2);
  transition: all 0.4s ease;
}

.content-feature-item:hover .content-feature-icon-wrapper {
  background: rgba(213, 31, 137, 0.1);
}

.content-feature-item:hover .content-feature-icon-wrapper:after {
  border-color: rgba(213, 31, 137, 0.4);
  transform: scale(1.1);
}

.content-feature-icon {
  width: 32px;
  height: 32px;
  fill: #d51f89;
  transition: all 0.3s ease;
}

.content-feature-item:hover .content-feature-icon {
  fill: #ff9600;
}

.content-feature-title {
  font-size: 19px;
  color: white;
  margin: 0 0 5px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.content-feature-item:hover .content-feature-title {
  color: #d51f89;
}

.content-feature-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.section-cta {
  margin-top: 80px;
  text-align: center;
}

/* Responsive Anpassungen */
@media (max-width: 1100px) {
  .content-flex-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .content-features-column {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .content-section {
    padding: 100px 0;
  }

  .section-container {
    padding: 0 30px;
  }

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

  .content-benefit-item {
    padding: 24px 28px;
  }

  .content-feature-item {
    padding: 30px 20px;
  }
}

@media (max-width: 600px) {
  .content-section {
    padding: 80px 0;
  }

  .section-container {
    padding: 0 20px;
  }

  .content-features-column {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .content-benefit-text {
    font-size: 16px;
  }

  .content-feature-title {
    font-size: 18px;
  }
}

/* Cookie Banner Styles */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: #fff;
  z-index: 9999;
  display: none;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  font-family: "Poppins", sans-serif;
  /* border-top: 2px solid linear-gradient(135deg, #5729a0, #d51f89); */
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.cookie-sections-container {
  display: flex;
  flex-direction: row;
  gap: 0;
  flex-wrap: wrap;
  align-items: stretch;
}

.cookie-main-section {
  flex: 1;
  min-width: 300px;
  padding-right: 25px;
}

.cookie-divider {
  width: 1px;
  background-color: #333;
  margin: 0 25px;
  align-self: stretch;
}

.cookie-advanced-section {
  flex: 1;
  min-width: 300px;
  padding-left: 25px;
}

.cookie-main-section h2 {
  background: linear-gradient(135deg, #5729a0, #d51f89);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 600;
}

.advanced-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin-bottom: 15px;
}

.cookie-advanced-section h3 {
  background: linear-gradient(135deg, #5729a0, #d51f89);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.3rem;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
}

.toggle-icon {
  background: linear-gradient(135deg, #5729a0, #d51f89);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.3s ease;
}

.toggle-icon.open {
  transform: rotate(180deg);
}

.cookie-main-section p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.cookie-main-section p:last-child {
  margin-bottom: 0;
}

.cookie-link {
  background: linear-gradient(135deg, #5729a0, #d51f89);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: underline;
}

.cookie-link:hover {
  background: linear-gradient(135deg, #5729a0, #d51f89);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cookie-categories {
  display: none;
  flex-direction: column;
  gap: 15px;
}

.cookie-categories.open {
  display: flex;
}

.cookie-category {
  background-color: #222;
  border-radius: 0;
  padding: 15px;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.cookie-category-header h4 {
  margin: 0 0 8px 0;
  color: #fff;
  font-size: 1rem;
}

.cookie-category-header p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.cookie-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

@media (max-width: 768px) {
  .cookie-buttons {
    grid-template-columns: 1fr;
  }

  .cookie-divider {
    width: 100%;
    height: 1px;
    margin: 20px 0;
  }

  .cookie-main-section {
    padding-right: 0;
  }

  .cookie-advanced-section {
    padding-left: 0;
  }
}

.cookie-button {
  padding: 12px 15px;
  border: none;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  transition: background-color 0.2s;
  text-transform: uppercase;
}

.cookie-button.accept {
  background: linear-gradient(135deg, #5729a0, #d51f89);
  color: white;
}

.cookie-button.accept:hover {
  background: linear-gradient(135deg, #5729a0, #d51f89);
}

.cookie-button.selection {
  background-color: #444;
  color: #fff;
}

.cookie-button.selection:hover {
  background-color: #555;
}

.cookie-button.reject {
  background-color: transparent;
  color: #fff;
  border: 1px solid #555;
}

.cookie-button.reject:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

/* Switch Styles */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
  margin-left: 15px;
  flex-shrink: 0;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #444;
  transition: 0.3s;
  border-radius: 34px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background: linear-gradient(135deg, #5729a0, #d51f89);
}

input:disabled + .cookie-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

input:checked + .cookie-slider:before {
  transform: translateX(26px);
}

/* Kunden-Logo-Slider Styles */
.client-logo-slider-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 400px;
  margin: 0;
  box-sizing: border-box;
}

.client-logo-container {
  position: absolute;
  bottom: 10%;

  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  box-sizing: border-box;
}

.logo-slider-container {
  position: relative;
  overflow: hidden;
  margin: 0;

  width: 100%;
  box-sizing: border-box;
}

.logo-slider {
  display: flex;

  animation: scroll 60s linear infinite;
  width: calc(400px * 24); /* 24 Logos total (4 Sets von je 6 Logos) */
  margin-right: -400px; /* Verhindert sichtbare Lücken am Ende */
}

/* Bei dieser Animation muss der Slider kontinuierlich weiterlaufen, 
ohne dass am Ende ein Sprung zu sehen ist */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-400px * 6)); /* Ein Set bewegen - 6 Logos */
  }
}

.logo-slide {
  flex: 0 0 auto;
  width: 400px;
  height: 240px; /* vergrößerte Höhe */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 60px; /* Mehr Platz zwischen den Logos */
  box-sizing: border-box;
}

.logo-slide a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo-slide a:hover {
  transform: scale(1.05);
}

.client-logo {
  max-width: 280px;
  max-height: 140px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.logo-slide:hover .client-logo {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

.logo-slide a:hover .client-logo {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1);
}

/* Light Theme Anpassungen für den Logo-Slider */
:root.light-theme .client-logo {
  filter: grayscale(100%) brightness(0.3);
}

:root.light-theme .logo-slide:hover .client-logo,
:root.light-theme .logo-slide a:hover .client-logo {
  filter: grayscale(0%) brightness(1);
}

/* Dark Theme Anpassungen für den Logo-Slider */
:root:not(.light-theme) .client-logo {
  filter: grayscale(100%) invert(1);
  opacity: 0.7;
}

:root:not(.light-theme) .logo-slide:hover .client-logo,
:root:not(.light-theme) .logo-slide a:hover .client-logo {
  filter: grayscale(0%) invert(1);
  opacity: 1;
}

/* Responsives Design für den Logo-Slider */
@media (max-width: 992px) {
  .logo-slide {
    width: 360px;
    height: 220px;
    padding: 0 50px;
  }

  .logo-slider {
    width: calc(360px * 24);
    animation: scrollMedium 60s linear infinite;
    margin-right: -360px;
  }

  .client-logo {
    max-width: 260px;
    max-height: 130px;
  }

  @keyframes scrollMedium {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-360px * 6));
    }
  }
}

@media (max-width: 768px) {
  .logo-slide {
    width: 320px;
    height: 200px;
    padding: 0 40px;
  }

  .logo-slider {
    width: calc(320px * 24);
    animation: scrollSmall 60s linear infinite;
    margin-right: -320px;
  }

  .client-logo {
    max-width: 240px;
    max-height: 120px;
  }

  @keyframes scrollSmall {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-320px * 6));
    }
  }
}

@media (max-width: 576px) {
  .logo-slide {
    width: 240px;
    height: 180px;
    padding: 0 30px;
  }

  .logo-slider {
    width: calc(240px * 24);
    animation: scrollXSmall 60s linear infinite;
    margin-right: -240px;
  }

  .client-logo {
    max-width: 180px;
    max-height: 100px;
  }

  @keyframes scrollXSmall {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-240px * 6));
    }
  }
}

/* Testimonials Sektion Styles */
.testimonials-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}

.testimonials-container .section-title {
  text-align: center;
  background-image: linear-gradient(to right, #ff5f5f, #ff8c39, #ffc871);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-top: 60px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  border: none;
  transition: all 0.3s ease;
  box-shadow: none;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  text-align: left;
}

.rating {
  display: flex;
  margin-bottom: 15px;
  justify-content: flex-start;
}

.star {
  color: #ffd700;
  font-size: 24px;
  margin-right: 3px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 20px;
  flex-grow: 1;
  text-align: left;
}

.testimonial-author {
  margin-top: auto;
  text-align: left;
}

.author-name {
  margin: 0 0 5px;
  font-size: 18px;
  color: #5729a0;
  font-weight: 600;
  text-align: left;
}

.author-company {
  margin: 0;
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
  text-align: left;
}

/* Responsive Anpassungen */
@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 80px 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonial-card {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonial-card {
    padding: 0;
  }

  .author-name {
    font-size: 16px;
  }

  .author-company {
    font-size: 12px;
  }
}

/* Scroll-to-Top Button Styles */
.scroll-top-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #5729a0, #d51f89);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.scroll-top-button.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, #d51f89, #ff9600);
}

.arrow-up {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 15px solid white;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none; /* Erlaubt Klicks durch den Pfeil hindurch */
}

.scroll-top-button:hover .arrow-up {
  transform: translate(-50%, -65%);
}

:root.light-theme .scroll-top-button {
  background: linear-gradient(135deg, #5729a0, #d51f89);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

:root.light-theme .scroll-top-button:hover {
  background: linear-gradient(135deg, #d51f89, #ff9600);
}

@media (max-width: 768px) {
  .scroll-top-button {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }

  .arrow-up {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 13px solid white;
  }
}

/* ============================================
   PREMIUM TEAM SECTION - Ultra Professional Design
   ============================================ */

/* Team Showcase Container */
.team-showcase {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 0 40px;
}

/* Intro Badge */
.team-intro-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 60px;
}

.badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #d51f89, #fe9600);
  border-radius: 50%;
  font-size: 16px;
  color: white;
  box-shadow: 0 4px 20px rgba(213, 31, 137, 0.4);
}

.badge-text {
  font-family: "Sora", "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.6)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

:root.light-theme .badge-text {
  background: linear-gradient(135deg, #1a1a2e, #333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Premium Team Grid - Untereinander als Rechtecke */
.team-grid-premium {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 50px;
}

/* Individual Team Card */
.team-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  contain: layout style paint;
}

/* Card Glow Effect - simplified for performance */
.card-glow {
  display: none;
}

/* Card Inner Container - Horizontales Rechteck Layout */
.card-inner {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(30, 35, 55, 0.98) 0%,
    rgba(25, 30, 50, 1) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  padding: 0;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  grid-template-areas:
    "header body footer"
    "header body footer";
  align-items: stretch;
}

.team-card:hover .card-inner {
  border-color: rgba(213, 31, 137, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(213, 31, 137, 0.2);
}

:root.light-theme .card-inner {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(248, 250, 255, 0.99) 100%
  );
  border: 1px solid rgba(87, 41, 160, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
}

:root.light-theme .team-card:hover .card-inner {
  border-color: rgba(213, 31, 137, 0.25);
  box-shadow: 0 24px 80px rgba(87, 41, 160, 0.12),
    0 0 0 1px rgba(213, 31, 137, 0.15);
}

/* Card Header - Linke Spalte mit Bild und Info */
.card-header {
  grid-area: header;
  padding: 32px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  text-align: left;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  min-width: 320px;
}

.card-header::after {
  display: none;
}

:root.light-theme .card-header {
  border-right-color: rgba(87, 41, 160, 0.1);
}

/* Member Image Wrapper */
.member-image-wrapper {
  position: relative;
  flex-shrink: 0;
}

.image-frame {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #5729a0, #d51f89, #fe9600);
  padding: 3px;
  box-shadow: 0 6px 24px rgba(213, 31, 137, 0.3),
    0 0 0 3px rgba(255, 255, 255, 0.05);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  will-change: transform;
}

.team-card:hover .image-frame {
  box-shadow: 0 8px 32px rgba(213, 31, 137, 0.5),
    0 0 0 4px rgba(213, 31, 137, 0.1);
  transform: scale(1.05);
}

.member-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.5s ease;
  will-change: transform;
}

.team-card:hover .member-photo {
  transform: scale(1.08);
}

.image-overlay {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(20, 20, 40, 0.4) 100%
  );
  pointer-events: none;
}

/* Member Identity */
.member-identity {
  text-align: left;
  flex: 1;
  min-width: 0;
}

.member-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #5729a0, #d51f89);
  color: white;
  padding: 5px 12px;
  border-radius: 0;
  margin-bottom: 8px;
}

.member-title {
  font-family: "Sora", "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

:root.light-theme .member-title {
  background: linear-gradient(135deg, #1a1a2e, #333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.member-role {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  letter-spacing: 0.2px;
  line-height: 1.4;
}

:root.light-theme .member-role {
  color: rgba(51, 51, 51, 0.75);
}

/* Card Body - Mittlere Spalte */
.card-body {
  grid-area: body;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.member-bio {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 20px 0;
  text-align: left;
}

:root.light-theme .member-bio {
  color: rgba(51, 51, 51, 0.8);
}

/* Expertise Section */
.expertise-section {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 0;
}

:root.light-theme .expertise-section {
  background: rgba(87, 41, 160, 0.03);
  border: 1px solid rgba(87, 41, 160, 0.08);
}

.expertise-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 16px 0;
}

:root.light-theme .expertise-title {
  color: #333;
}

.expertise-icon {
  width: 18px;
  height: 18px;
  color: #d51f89;
}

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

.expertise-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.expertise-list li:last-child {
  margin-bottom: 0;
}

.expertise-list li:hover {
  color: #fe9600;
  transform: translateX(4px);
}

:root.light-theme .expertise-list li {
  color: rgba(51, 51, 51, 0.85);
}

:root.light-theme .expertise-list li:hover {
  color: #d51f89;
}

.expertise-bullet {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, #d51f89, #fe9600);
  border-radius: 50%;
  margin-top: 7px;
}

/* Member Stats - Im Footer */
.member-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  border: none;
  width: 100%;
}

:root.light-theme .member-stats {
  background: transparent;
  border: none;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 8px;
}

.stat-item:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

:root.light-theme .stat-item:first-child {
  border-right-color: rgba(87, 41, 160, 0.15);
}

.stat-value {
  font-family: "Sora", "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #d51f89, #fe9600);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

:root.light-theme .stat-label {
  color: rgba(51, 51, 51, 0.6);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(213, 31, 137, 0.3),
    transparent
  );
  margin: 0 8px;
}

/* Card Footer - Rechte Spalte mit Stats und Link */
.card-footer {
  grid-area: footer;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  min-width: 200px;
  background: rgba(0, 0, 0, 0.1);
}

:root.light-theme .card-footer {
  border-left-color: rgba(87, 41, 160, 0.1);
  background: rgba(87, 41, 160, 0.03);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 20px;
  background: linear-gradient(
    135deg,
    rgba(87, 41, 160, 0.9),
    rgba(213, 31, 137, 0.9)
  );
  border: none;
  border-radius: 0;
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.social-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(254, 150, 0, 0.9),
    rgba(213, 31, 137, 1)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.social-link:hover::before {
  opacity: 1;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(213, 31, 137, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-link span,
.social-link svg {
  position: relative;
  z-index: 1;
}

.social-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.arrow-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.social-link:hover .arrow-icon {
  transform: translateX(4px);
}

/* Team Stats Bar */
.team-stats-bar {
  background: linear-gradient(
    135deg,
    rgba(30, 35, 55, 0.95),
    rgba(40, 45, 70, 0.9)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  padding: 40px;
}

:root.light-theme .team-stats-bar {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(248, 250, 255, 0.9)
  );
  border: 1px solid rgba(87, 41, 160, 0.1);
  box-shadow: 0 8px 40px rgba(87, 41, 160, 0.08);
}

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

.stat-block {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-block .stat-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(213, 31, 137, 0.15),
    rgba(87, 41, 160, 0.1)
  );
  border: 1px solid rgba(213, 31, 137, 0.2);
  border-radius: 0;
}

.stat-block .stat-icon svg {
  width: 28px;
  height: 28px;
  color: #d51f89;
}

.stat-block .stat-content {
  display: flex;
  flex-direction: column;
}

.stat-block .stat-number {
  font-family: "Sora", "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #d51f89, #fe9600);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-block .stat-desc {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

:root.light-theme .stat-block .stat-desc {
  color: rgba(51, 51, 51, 0.7);
}

/* Team CTA */
.team-cta {
  margin-top: 20px;
  padding: 0 40px;
  text-align: left;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.team-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #d51f89, #fe9600);
  border-radius: 0;
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(213, 31, 137, 0.3), 0 2px 6px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  box-sizing: border-box;
}

.team-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(213, 31, 137, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.15);
}

.button-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.team-button:hover .button-arrow {
  transform: translateX(4px);
}

/* Team Summary Card - Zusammenfassung aller Teammitglieder */
.team-summary-card {
  background: linear-gradient(
    145deg,
    rgba(87, 41, 160, 0.15),
    rgba(213, 31, 137, 0.1)
  );
}

.team-summary-card .card-inner {
  background: linear-gradient(
    135deg,
    rgba(20, 25, 45, 0.98),
    rgba(35, 20, 55, 0.95)
  );
  border: 2px solid rgba(213, 31, 137, 0.2);
}

:root.light-theme .team-summary-card .card-inner {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98),
    rgba(250, 248, 255, 0.95)
  );
  border: 2px solid rgba(87, 41, 160, 0.15);
}

.team-summary-card:hover .card-inner {
  border-color: rgba(213, 31, 137, 0.5);
  box-shadow: 0 32px 100px rgba(213, 31, 137, 0.25),
    0 16px 48px rgba(87, 41, 160, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.summary-glow {
  background: radial-gradient(
    circle at 50% 50%,
    rgba(213, 31, 137, 0.2),
    rgba(254, 150, 0, 0.15) 40%,
    transparent 70%
  ) !important;
}

.summary-avatars {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.mini-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(213, 31, 137, 0.6);
  margin: 0 -12px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.mini-avatar:nth-child(1) {
  z-index: 2;
  border-color: #fe9600;
}

.mini-avatar:nth-child(2) {
  z-index: 3;
  border-color: #d51f89;
}

.mini-avatar:nth-child(3) {
  z-index: 1;
  border-color: #5729a0;
}

.team-summary-card:hover .mini-avatar:nth-child(1) {
  transform: translateX(-8px) scale(1.05);
}

.team-summary-card:hover .mini-avatar:nth-child(3) {
  transform: translateX(8px) scale(1.05);
}

.team-summary-card:hover .mini-avatar:nth-child(2) {
  transform: scale(1.1);
  z-index: 4;
}

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

.summary-header {
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.summary-identity {
  text-align: center;
}

.summary-tag {
  background: linear-gradient(
    135deg,
    rgba(213, 31, 137, 0.3),
    rgba(254, 150, 0, 0.25)
  ) !important;
  border: 1px solid rgba(213, 31, 137, 0.4) !important;
}

.summary-bio {
  text-align: center;
  font-size: 17px;
  line-height: 1.7;
}

.summary-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: all 0.3s ease;
}

:root.light-theme .highlight-item {
  background: linear-gradient(
    135deg,
    rgba(87, 41, 160, 0.06),
    rgba(87, 41, 160, 0.03)
  );
  border-color: rgba(87, 41, 160, 0.12);
}

.highlight-item:hover {
  background: linear-gradient(
    135deg,
    rgba(213, 31, 137, 0.1),
    rgba(254, 150, 0, 0.08)
  );
  border-color: rgba(213, 31, 137, 0.2);
  transform: translateY(-2px);
}

.highlight-icon {
  font-size: 20px;
  line-height: 1;
}

.highlight-item span {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.2px;
}

:root.light-theme .highlight-item span {
  color: rgba(51, 51, 51, 0.9);
}

.summary-footer {
  justify-content: center !important;
  align-items: center !important;
  gap: 32px;
}

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

.combined-stats .stat-item {
  text-align: center;
}

.combined-stats .stat-value {
  font-size: 32px;
  background: linear-gradient(135deg, #d51f89, #fe9600);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.combined-stats .stat-label {
  color: rgba(255, 255, 255, 0.6);
}

:root.light-theme .combined-stats .stat-label {
  color: rgba(51, 51, 51, 0.6);
}

.summary-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #d51f89, #fe9600);
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(213, 31, 137, 0.35), 0 2px 8px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.summary-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #fe9600, #d51f89);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.summary-cta:hover::before {
  opacity: 1;
}

.summary-cta span,
.summary-cta svg {
  position: relative;
  z-index: 1;
}

.summary-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(213, 31, 137, 0.45),
    0 4px 16px rgba(0, 0, 0, 0.2);
}

.summary-cta svg {
  transition: transform 0.3s ease;
}

.summary-cta:hover svg {
  transform: translateX(4px);
}

/* Summary Card Responsive */
@media (max-width: 768px) {
  .summary-highlights {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mini-avatar {
    width: 60px;
    height: 60px;
    margin: 0 -8px;
  }

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

  .combined-stats {
    gap: 32px;
  }

  .summary-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .mini-avatar {
    width: 52px;
    height: 52px;
    margin: 0 -6px;
    border-width: 2px;
  }

  .combined-stats .stat-value {
    font-size: 26px;
  }

  .summary-cta {
    padding: 14px 24px;
    font-size: 14px;
  }
}

/* Responsive Design für Team Cards */
@media (max-width: 1024px) {
  .card-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "header"
      "body"
      "footer";
  }

  .card-header {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    min-width: auto;
  }

  .card-footer {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    min-width: auto;
    flex-direction: row;
    justify-content: space-between;
    padding: 24px 32px;
  }

  .member-stats {
    width: auto;
  }
}

@media (max-width: 768px) {
  .team-showcase {
    padding: 40px 0 30px;
  }

  .team-grid-premium {
    gap: 20px;
  }

  .team-intro-badge {
    margin-bottom: 30px;
  }

  .badge-text {
    font-size: 12px;
  }

  .card-header {
    padding: 20px;
    gap: 16px;
  }

  .card-body {
    padding: 20px;
  }

  .card-footer {
    flex-direction: column;
    padding: 20px;
    gap: 16px;
  }

  .image-frame {
    width: 70px;
    height: 70px;
  }

  .member-title {
    font-size: 18px;
  }

  .team-button {
    padding: 14px 28px;
    font-size: 15px;
  }

  .team-cta {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .team-showcase {
    padding: 30px 0 30px;
  }

  .team-cta {
    padding: 0 20px;
  }

  .card-header {
    padding: 16px;
    gap: 12px;
  }

  .card-body {
    padding: 16px;
  }

  .card-footer {
    padding: 16px;
  }

  .image-frame {
    width: 60px;
    height: 60px;
  }

  .member-title {
    font-size: 16px;
  }

  .member-tag {
    font-size: 9px;
    padding: 3px 8px;
    margin-bottom: 6px;
  }

  .member-role {
    font-size: 11px;
  }

  .stat-value {
    font-size: 20px;
  }

  .stat-label {
    font-size: 10px;
  }

  .member-bio {
    font-size: 14px;
  }

  .expertise-section {
    padding: 16px;
  }

  .expertise-list li {
    font-size: 13px;
  }

  .stat-value {
    font-size: 24px;
  }

  .stat-label {
    font-size: 11px;
  }

  .stat-block .stat-number {
    font-size: 26px;
  }

  .stat-block .stat-desc {
    font-size: 13px;
  }

  .social-link {
    padding: 14px 20px;
    font-size: 14px;
  }

  .team-button {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
  }
}

/* Erfolgsgeschichten Sektion - Standard Swiper Integration */
.success-stories-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: transparent;
}

:root.light-theme .success-stories-section {
  background: transparent;
}

.success-stories-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* Standard Swiper Container Styles */
.swiper-container {
  width: 100%;
  height: auto;
  margin: 60px 0 40px;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  /* Ermöglicht vertikales Scrollen über den Swiper hinweg */
  touch-action: pan-y pinch-zoom;
  /* Transparenter Hintergrund - Cards haben eigenen Hintergrund */
  background: transparent;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
  /* Nur horizontales Swipen für den Slider selbst */
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform, opacity;
  /* Slides für unendliches Scrollen optimiert */
  opacity: 0.7;
  transform: translateX(0);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Aktive und sichtbare Slides für unendliches Scrollen */
.swiper-slide-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  z-index: 2;
}

.swiper-slide-next,
.swiper-slide-prev {
  opacity: 0.8;
  transform: translateX(0) scale(0.95);
}

/* Slides die nicht sichtbar sind */
.swiper-slide-duplicate {
  opacity: 0.5;
}

/* Smooth infinite loop transitions */
.swiper-slide {
  will-change: transform, opacity;
}

/* Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(87, 41, 160, 0.8);
  border-radius: 50%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(87, 41, 160, 1);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(87, 41, 160, 0.4);
}

.swiper-button-next {
  right: 10px;
}

.swiper-button-prev {
  left: 10px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: 18px;
  font-weight: 900;
  color: white;
  text-transform: none !important;
  letter-spacing: 0;
}

.swiper-button-next:after {
  content: "→";
}

.swiper-button-prev:after {
  content: "←";
}

/* Disabled state */
.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

/* Pagination */
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  display: inline-block;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0.6;
  margin: 0 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: linear-gradient(135deg, #5729a0, #d51f89);
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(87, 41, 160, 0.5);
}

.swiper-pagination-bullet:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Success Cards im Standard Swiper */
.success-card {
  background: linear-gradient(
    135deg,
    rgba(87, 41, 160, 0.15) 0%,
    rgba(213, 31, 137, 0.1) 100%
  );
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(87, 41, 160, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  cursor: grab;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
  max-width: 400px;
}

.success-card:active {
  cursor: grabbing;
}

.success-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(87, 41, 160, 0.3);
  border-color: rgba(213, 31, 137, 0.4);
}

/* Erfolg-Bild Container */
.success-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.success-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.success-card:hover .success-image img {
  transform: scale(1.1);
}

/* Success Overlay */
.success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(87, 41, 160, 0.85) 0%,
    rgba(120, 60, 180, 0.75) 50%,
    rgba(213, 31, 137, 0.7) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0.95;
  transition: all 0.3s ease;
}

.success-card:hover .success-overlay {
  opacity: 1;
  background: linear-gradient(
    135deg,
    rgba(87, 41, 160, 0.9) 0%,
    rgba(120, 60, 180, 0.85) 50%,
    rgba(213, 31, 137, 0.8) 100%
  );
}

/* Stats im Overlay */
.success-stats {
  color: white;
  z-index: 2;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1;
}

.stat-label {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  opacity: 0.95;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: #ffd700;
  font-size: 20px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.6));
}

/* Content-Bereich */
.success-content {
  padding: 20px;
  background: linear-gradient(
    180deg,
    rgba(30, 20, 60, 0.97) 0%,
    rgba(40, 25, 75, 0.98) 100%
  ) !important;
  backdrop-filter: blur(10px);
}

.company-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 10px;
}

.company-header h3 {
  font-size: 22px;
  font-weight: 600;
  color: white;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.tacos {
  background: rgba(87, 41, 160, 0.8);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-shadow: none;
}

.category {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 0 0 15px 0;
  font-weight: 400;
}

/* Service Tags */
.services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service {
  background: rgba(87, 41, 160, 0.2);
  color: rgba(255, 255, 255, 0.9);
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(87, 41, 160, 0.3);
  transition: all 0.2s ease;
  backdrop-filter: blur(5px);
}

.service:hover {
  background: rgba(213, 31, 137, 0.35);
  border-color: rgba(213, 31, 137, 0.5);
  transform: translateY(-1px);
}

:root.light-theme .service {
  background: rgba(87, 41, 160, 0.1);
  color: rgba(51, 51, 51, 0.9);
  border-color: rgba(87, 41, 160, 0.2);
}

:root.light-theme .service:hover {
  background: rgba(213, 31, 137, 0.2);
  border-color: rgba(213, 31, 137, 0.4);
  color: #333;
}

/* Responsive Optimierungen für Standard Swiper */
@media (max-width: 768px) {
  .success-stories-section {
    padding: 60px 0;
  }

  .success-stories-container {
    padding: 0 15px;
  }

  .swiper-container {
    margin: 40px 0 30px;
    border-radius: 15px;
  }

  /* Navigation Buttons für Mobile */
  .swiper-button-next,
  .swiper-button-prev {
    width: 36px;
    height: 36px;
    margin-top: -18px;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 14px;
  }

  .swiper-button-next {
    right: 5px;
  }

  .swiper-button-prev {
    left: 5px;
  }

  /* Cards für Mobile */
  .success-card {
    max-width: none;
  }

  .success-image {
    height: 220px;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-label {
    font-size: 16px;
  }

  .success-content {
    padding: 15px;
  }

  .company-header h3 {
    font-size: 20px;
  }

  .company-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .service {
    font-size: 11px;
    padding: 5px 10px;
  }

  /* Pagination für Mobile */
  .swiper-pagination {
    bottom: -30px;
  }

  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .success-image {
    height: 200px;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-label {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .stars {
    font-size: 18px;
  }

  .success-content {
    padding: 12px;
  }

  .company-header h3 {
    font-size: 18px;
  }

  .tacos {
    font-size: 11px;
    padding: 3px 10px;
  }

  /* Extra kleine Navigation */
  .swiper-button-next,
  .swiper-button-prev {
    width: 32px;
    height: 32px;
    margin-top: -16px;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 12px;
  }
}

/* Smooth Slide Transitions für bessere UX */
@media (prefers-reduced-motion: no-preference) {
  .swiper-slide {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
}

/* Reduzierte Animation für Benutzer mit Motion-Sensitivität */
@media (prefers-reduced-motion: reduce) {
  .swiper-slide,
  .success-card,
  .success-card:hover {
    transition: none;
  }

  .swiper-button-next,
  .swiper-button-prev,
  .swiper-pagination-bullet {
    transition: none;
  }
}

/* Moderner Swiper Container */
.success-swiper {
  position: relative;
  overflow: hidden;
  margin: 60px 0 40px;
  border-radius: 20px;
}

.success-wrapper {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.success-slide {
  flex: 0 0 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

/* Desktop: 3 Slides sichtbar */
@media (min-width: 1200px) {
  .success-slide {
    flex: 0 0 33.333%;
  }
}

/* Tablet: 2 Slides sichtbar */
@media (min-width: 768px) and (max-width: 1199px) {
  .success-slide {
    flex: 0 0 50%;
  }
}

/* Mobile: 1 Slide sichtbar */
@media (max-width: 767px) {
  .success-slide {
    flex: 0 0 100%;
  }
}

/* Moderne Karten */
.success-card-modern {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  cursor: grab;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.success-card-modern:active {
  cursor: grabbing;
}

.success-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Bildcontainer mit Overlay */
.success-image-container {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.success-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.success-card-modern:hover .success-bg-image {
  transform: scale(1.05);
}

/* Modernes Overlay - Deaktiviert */
.success-stats-overlay,
.success-number-large,
.success-subtitle-overlay,
.success-rating-overlay {
  display: none;
}

.success-subtitle-overlay {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  opacity: 0.95;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.success-rating-overlay {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.success-rating-overlay .star {
  color: #ffd700;
  font-size: 20px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.6));
}

/* Kompakter Content-Bereich */
.success-content-compact {
  padding: 20px;
  background: linear-gradient(
    180deg,
    rgba(20, 38, 70, 0.95) 0%,
    rgba(25, 45, 80, 0.98) 100%
  );
  backdrop-filter: blur(10px);
}

.success-company-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 10px;
}

.company-name-modern {
  font-size: 22px;
  font-weight: 600;
  color: white;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.tacos-badge {
  background: rgba(87, 41, 160, 0.8);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-shadow: none;
}

.company-category-modern {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 0 0 15px 0;
  font-weight: 400;
}

/* Service Tags */
.success-services-compact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tag {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.2s ease;
  backdrop-filter: blur(5px);
}

.service-tag:hover {
  background: rgba(213, 31, 137, 0.3);
  border-color: rgba(213, 31, 137, 0.5);
  transform: translateY(-1px);
}

/* Touch/Swipe Interaktionen */
.success-swiper {
  touch-action: pan-x pan-y;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Responsive Mobile Optimierungen */
@media (max-width: 768px) {
  .success-stories-section {
    padding: 60px 0;
  }

  .success-stories-container {
    padding: 0 15px;
  }

  .success-image-container {
    height: 220px;
  }

  .success-number-large {
    font-size: 36px;
  }

  .success-subtitle-overlay {
    font-size: 16px;
  }

  .success-content-compact {
    padding: 15px;
  }

  .company-name-modern {
    font-size: 20px;
  }

  .success-company-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .service-tag {
    font-size: 11px;
    padding: 5px 10px;
  }
}

@media (max-width: 480px) {
  .success-image-container {
    height: 200px;
  }

  .success-number-large {
    font-size: 32px;
  }

  .success-subtitle-overlay {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .success-rating-overlay .star {
    font-size: 18px;
  }

  .success-content-compact {
    padding: 12px;
  }

  .company-name-modern {
    font-size: 18px;
  }

  .tacos-badge {
    font-size: 11px;
    padding: 3px 10px;
  }
}

/* Smooth Scrolling Indicators */
.success-swiper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  width: 20px;
  height: 60px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0%, transparent 100%);
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.success-swiper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  width: 20px;
  height: 60px;
  background: linear-gradient(-90deg, rgba(0, 0, 0, 0.1) 0%, transparent 100%);
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.success-swiper:hover::before,
.success-swiper:hover::after {
  opacity: 1;
}

/* Improved Animation Performance */
.success-wrapper,
.success-card-modern,
.success-bg-image,
.success-overlay {
  will-change: transform;
}

/* Dark theme compatibility */
:root.light-theme .success-card-modern {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 0, 0, 0.1);
}

:root.light-theme .success-content-compact {
  background: linear-gradient(
    180deg,
    rgba(225, 238, 252, 0.95) 0%,
    rgba(215, 230, 248, 0.98) 100%
  );
}

:root.light-theme .success-content {
  background: linear-gradient(
    180deg,
    rgba(225, 238, 252, 0.95) 0%,
    rgba(215, 230, 248, 0.98) 100%
  );
}

:root.light-theme .success-card {
  background: linear-gradient(
    135deg,
    rgba(87, 41, 160, 0.08) 0%,
    rgba(213, 31, 137, 0.05) 100%
  );
  border-color: rgba(87, 41, 160, 0.15);
}

:root.light-theme .company-name-modern {
  color: #333;
}

:root.light-theme .company-category-modern {
  color: rgba(0, 0, 0, 0.7);
}

:root.light-theme .service-tag {
  background: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.8);
  border-color: rgba(0, 0, 0, 0.15);
}

:root.light-theme .tacos-badge {
  background: rgba(87, 41, 160, 0.9);
  color: white;
}

/* Services Features Section */
.services-features-section {
  padding: 70px 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.services-features-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  pointer-events: none;
  z-index: 0;
}

:root.light-theme .services-features-section {
  background: transparent;
}

:root.light-theme .services-features-section::before {
  background: transparent;
}

.services-features-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

.services-features-section .section-title {
  margin-bottom: 40px;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.feature-card {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 0;
  padding: 30px 25px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(87, 41, 160, 0.2);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    rgba(87, 41, 160, 0.5),
    rgba(213, 31, 137, 0.5),
    rgba(254, 150, 0, 0.5)
  );
  z-index: -1;
  border-radius: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(87, 41, 160, 0.4);
  border-color: rgba(213, 31, 137, 0.4);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  z-index: 2;
}

.feature-icon-img {
  width: 55px;
  height: 55px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(213, 31, 137, 0.5));
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.1);
}

.feature-card:hover .feature-icon-img {
  filter: drop-shadow(0 0 12px rgba(254, 150, 0, 0.7));
}

.feature-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
  background: linear-gradient(135deg, #5729a0, #d51f89);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

.feature-card:hover .feature-title {
  background: linear-gradient(135deg, #5729a0, #d51f89);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: scale(1.02);
}

.feature-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.feature-card:hover .feature-description {
  color: rgba(255, 255, 255, 0.95);
}

/* Light Theme Styles */
:root.light-theme .feature-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(87, 41, 160, 0.15);
  box-shadow: 0 10px 40px rgba(87, 41, 160, 0.15);
}

:root.light-theme .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(87, 41, 160, 0.4);
  border-color: rgba(213, 31, 137, 0.4);
}

:root.light-theme .feature-card::before {
  background: linear-gradient(
    45deg,
    rgba(87, 41, 160, 0.5),
    rgba(213, 31, 137, 0.5),
    rgba(254, 150, 0, 0.5)
  );
}

:root.light-theme .feature-card:hover::before {
  opacity: 1;
}

:root.light-theme .feature-icon-img {
  filter: drop-shadow(0 0 8px rgba(213, 31, 137, 0.5));
}

:root.light-theme .feature-card:hover .feature-icon-img {
  filter: drop-shadow(0 0 12px rgba(254, 150, 0, 0.7));
}

:root.light-theme .feature-title {
  background: linear-gradient(135deg, #5729a0, #d51f89);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

:root.light-theme .feature-card:hover .feature-title {
  background: linear-gradient(135deg, #5729a0, #d51f89);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

:root.light-theme .feature-description {
  color: rgba(0, 0, 0, 0.7);
}

:root.light-theme .feature-card:hover .feature-description {
  color: rgba(0, 0, 0, 0.85);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .services-features-section {
    padding: 60px 0;
  }

  .services-features-container {
    padding: 0 20px;
  }

  .services-features-section .section-title {
    margin-bottom: 40px;
    font-size: 28px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .feature-card {
    padding: 30px 25px;
  }

  .feature-icon-wrapper {
    width: 85px;
    height: 85px;
  }

  .feature-icon-img {
    width: 60px;
    height: 60px;
  }

  .feature-title {
    font-size: 1.4rem;
  }

  .feature-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .services-features-section {
    padding: 40px 0;
  }

  .services-features-container {
    padding: 0 15px;
  }

  .services-features-section .section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .feature-card {
    padding: 25px 20px;
  }

  .feature-icon-wrapper {
    width: 75px;
    height: 75px;
  }

  .feature-icon-img {
    width: 55px;
    height: 55px;
  }

  .feature-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .feature-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

/* ===================================
   About Agency Section Styles
   =================================== */

/* =================================
   Flaschenpost Brief - Epic Animation Edition
   ================================= */

/* Keyframe Animationen */
@keyframes letterFloat {
  0%,
  100% {
    transform: rotate(-2.5deg) translateY(0);
  }
  50% {
    transform: rotate(-1.5deg) translateY(-8px);
  }
}

@keyframes letterUnroll {
  0% {
    opacity: 0;
    transform: rotate(-5deg) scale(0.8) translateY(50px);
    filter: blur(3px);
  }
  60% {
    opacity: 1;
    transform: rotate(-1.5deg) scale(1.02) translateY(-10px);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: rotate(-2.5deg) scale(1) translateY(0);
    filter: blur(0);
  }
}

@keyframes waxSealPop {
  0% {
    transform: translate(-50%, -50%) scale(0) rotate(-180deg);
    opacity: 0;
  }
  60% {
    transform: translate(-50%, -50%) scale(1.3) rotate(15deg);
    opacity: 1;
  }
  80% {
    transform: translate(-50%, -50%) scale(0.9) rotate(-5deg);
  }
  100% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes inkWrite {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes paperTexture {
  0%,
  100% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
}

@keyframes glowPulse {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(180, 160, 140, 0.3),
      0 5px 15px rgba(0, 0, 0, 0.15), 0 15px 35px rgba(0, 0, 0, 0.1),
      0 30px 60px rgba(0, 0, 0, 0.08), 0 0 30px rgba(255, 200, 100, 0.1),
      inset 0 0 80px rgba(180, 160, 140, 0.05);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(180, 160, 140, 0.4),
      0 8px 20px rgba(0, 0, 0, 0.2), 0 20px 45px rgba(0, 0, 0, 0.12),
      0 40px 80px rgba(0, 0, 0, 0.1), 0 0 50px rgba(255, 200, 100, 0.2),
      inset 0 0 100px rgba(180, 160, 140, 0.08);
  }
}

.about-agency-section {
  position: relative;
  overflow: visible;
  overflow-x: hidden;
  background: transparent;
  padding: 120px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Ozean/Wellen-Effekt im Hintergrund - deaktiviert für transparenten Hintergrund */
.about-agency-section::before {
  display: none;
}

:root.light-theme .about-agency-section {
  background: transparent;
}

/* Das Briefpapier selbst - Flaschenpost Style */
.about-agency-container {
  max-width: 50%;
  margin: 0 auto;
  padding: 50px 60px 45px 80px;
  text-align: left;
  position: relative;
  z-index: 1;

  /* Altes Pergament-Hintergrund */
  background: linear-gradient(
      135deg,
      rgba(255, 253, 248, 0.9) 0%,
      transparent 50%
    ),
    linear-gradient(225deg, rgba(220, 200, 170, 0.3) 0%, transparent 50%),
    linear-gradient(
      to bottom,
      #faf6f0 0%,
      #f8f2e8 20%,
      #f0e6d8 50%,
      #e8dcc8 80%,
      #e0d4c0 100%
    );

  /* Verbrannte/abgenutzte Kanten Effekt */
  border: none;
  border-image: linear-gradient(
      135deg,
      rgba(139, 90, 43, 0.4) 0%,
      rgba(180, 140, 100, 0.2) 50%,
      rgba(139, 90, 43, 0.4) 100%
    )
    1;

  /* Dramatischer Schatten + Glow */
  box-shadow: 0 0 0 1px rgba(180, 160, 140, 0.3), 0 5px 15px rgba(0, 0, 0, 0.15),
    0 15px 35px rgba(0, 0, 0, 0.1), 0 30px 60px rgba(0, 0, 0, 0.08),
    0 0 40px rgba(255, 200, 100, 0.15), inset 0 0 80px rgba(180, 160, 140, 0.08);

  /* Leichte Rotation für authentischen Look */
  transform: rotate(-2.5deg);

  /* Leicht wellige Kanten */
  border-radius: 2px 8px 4px 6px;

  /* Animationen */
  animation: letterUnroll 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
    letterFloat 6s ease-in-out 1.5s infinite,
    glowPulse 4s ease-in-out 2s infinite;

  /* Performance */
  will-change: transform, box-shadow;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover Effekt - Brief hebt sich */
.about-agency-container:hover {
  animation-play-state: paused;
  transform: rotate(0deg) translateY(-15px) scale(1.02);
  box-shadow: 0 0 0 1px rgba(180, 160, 140, 0.4), 0 15px 30px rgba(0, 0, 0, 0.2),
    0 30px 60px rgba(0, 0, 0, 0.15), 0 50px 100px rgba(0, 0, 0, 0.1),
    0 0 60px rgba(255, 200, 100, 0.25), inset 0 0 100px rgba(180, 160, 140, 0.1);
}

/* Linien auf dem Briefpapier */
.about-agency-container::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 0;
  right: 0;
  bottom: 40px;
  background-image: repeating-linear-gradient(
    transparent,
    transparent 31px,
    rgba(140, 120, 100, 0.15) 31px,
    rgba(140, 120, 100, 0.15) 32px
  );
  pointer-events: none;
  z-index: 0;
}

/* Roter Seitenrand wie echtes Briefpapier */
.about-agency-container::after {
  content: "";
  position: absolute;
  top: 35px;
  left: 65px;
  width: 2px;
  height: calc(100% - 70px);
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(180, 60, 60, 0.4) 10%,
    rgba(180, 60, 60, 0.4) 90%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* Unterschrift-Sektion mit Wachssiegel */
.signature-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 40px 0 30px 0;
  margin-left: auto;
  margin-right: 15%;
  text-align: center;
  width: fit-content;
}

/* Wachssiegel - Premium Gütezeichen mit Logo (Gradient Wax Style) */
.wax-seal {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background: radial-gradient(
    circle at 35% 35%,
    #a855f7 0%,
    #7c3aed 25%,
    #5729a0 60%,
    #3b1a6d 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(87, 41, 160, 0.6), 0 2px 8px rgba(0, 0, 0, 0.3),
    inset 0 -4px 10px rgba(0, 0, 0, 0.4),
    inset 0 4px 10px rgba(255, 200, 255, 0.25);
  animation: waxSealPop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s both;
  z-index: 10;
  border: 3px solid rgba(59, 26, 109, 0.6);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  padding: 15px;
}

.wax-seal:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(87, 41, 160, 0.7), 0 4px 12px rgba(0, 0, 0, 0.4),
    inset 0 -4px 10px rgba(0, 0, 0, 0.4),
    inset 0 4px 10px rgba(255, 200, 255, 0.3);
}

/* Unterschrift-Text unter dem Siegel */
.signature-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 0;
}

.signature-name {
  font-family: "Caveat", cursive !important;
  font-size: 1.8rem;
  font-weight: 700;
  font-style: italic;
  color: #4a3728;
  letter-spacing: 1px;
  line-height: 1;
  margin: 0;
  padding: 0;
  margin-top: -15px;
  text-align: center;
  white-space: nowrap;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.signature-person {
  font-family: "Caveat", cursive !important;
  font-size: 1.4rem;
  font-weight: 600;
  font-style: italic;
  color: #5a4738;
  letter-spacing: 0.5px;
  line-height: 1;
  margin: 0;
  padding: 0;
  margin-top: 5px;
  text-align: center;
  white-space: nowrap;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.08);
}

:root.light-theme .signature-person {
  color: #4a3728;
}

:root.light-theme .signature-name {
  color: #3a2718;
}

.seal-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.4));
}

/* Dekorative Eckelemente - werden ausgeblendet da sie den Text stören */
.letter-corner {
  display: none;
}

/* Alte Papier-Flecken/Alterung */
.about-agency-container {
  background-image: radial-gradient(
      ellipse at 10% 90%,
      rgba(180, 140, 100, 0.15) 0%,
      transparent 30%
    ),
    radial-gradient(
      ellipse at 95% 5%,
      rgba(160, 120, 80, 0.1) 0%,
      transparent 25%
    ),
    radial-gradient(
      ellipse at 60% 70%,
      rgba(170, 130, 90, 0.08) 0%,
      transparent 35%
    ),
    linear-gradient(
      to bottom,
      #faf6f0 0%,
      #f8f2e8 20%,
      #f0e6d8 50%,
      #e8dcc8 80%,
      #e0d4c0 100%
    );
}

/* Handschrift-Titel */
.about-agency-section .section-title {
  margin-bottom: 20px;
  text-align: left;
  font-size: 2rem;
  letter-spacing: 0;
  font-family: "Caveat", cursive !important;
  font-weight: 700;
  color: #1a150f;
  line-height: 1.3;
  transform: rotate(-0.5deg);
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 2;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(160, 140, 120, 0.25);

  /* Tinte-Schreib-Animation */
  animation: inkWrite 0.6s ease-out 1s both;
}

.about-agency-content {
  max-width: 100%;
  margin: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  padding: 10px 0;
  border: none;
  box-shadow: none;
  transition: none;
  position: relative;
  z-index: 2;
}

.about-agency-content:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

.agency-mission-statement {
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 0;
}

.agency-mission-statement::after {
  display: none;
}

.agency-mission-statement .elegant-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #1a150f;
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  letter-spacing: 0;
  font-family: "Caveat", cursive !important;
}

.agency-description {
  max-width: 100%;
  margin: 0;
  text-align: left;
}

.agency-description p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #1a150f;
  opacity: 1;
  margin-bottom: 18px;
  font-weight: 400;
  letter-spacing: 0;
  font-family: "Caveat", cursive !important;
  text-align: left;

  /* Gestaffelte Tinte-Animation */
  animation: inkWrite 0.5s ease-out both;
}

.agency-mission-statement p {
  animation-delay: 1.2s;
}

.agency-description p:nth-child(1) {
  animation-delay: 1.4s;
}

.agency-description p:nth-child(2) {
  animation-delay: 1.6s;
}

.agency-description p:nth-child(3) {
  animation-delay: 1.8s;
}

.agency-description p.cta-text {
  animation-delay: 2s;
}

.agency-description strong {
  font-weight: 700;
  background: linear-gradient(135deg, #c41e3a, #8b0000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline;
  font-family: "Caveat", cursive !important;
}

.agency-description p.cta-text {
  font-size: 1.3rem;
  font-weight: 600;
  text-align: left;
  margin-top: 25px;
  margin-bottom: 10px;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #2a2118;
  background-clip: unset;
  letter-spacing: 0;
  font-family: "Caveat", cursive !important;
  color: #2a2118;
}

.agency-cta {
  text-align: left;
  margin-top: 25px;
}

.agency-cta .roadmap-button {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, #c41e3a, #8b0000);
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
  font-family: "Caveat", cursive !important;
  letter-spacing: 1px;
}

.agency-cta .roadmap-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
  background: linear-gradient(135deg, #d42a46, #9e1212);
}

/* Light Theme Anpassungen - Brief-Stil ist für beide Themes gleich */

:root.light-theme .about-agency-content {
  background: transparent;
  border: none;
  box-shadow: none;
}

:root.light-theme .about-agency-content:hover {
  box-shadow: none;
  border-color: transparent;
}

:root.light-theme .agency-mission-statement .elegant-text {
  color: #2a2118;
}

:root.light-theme .agency-description p {
  color: #2a2118;
}

:root.light-theme .about-agency-section .section-title {
  color: #2a2118;
}

/* Responsive Styles - Handschrift Brief */
@media (max-width: 1024px) {
  .about-agency-section {
    padding: 80px 20px;
  }

  .about-agency-container {
    max-width: 55%;
    padding: 50px 60px 45px 75px;
  }

  .about-agency-container::after {
    left: 55px;
  }

  .about-agency-content {
    padding: 10px 0;
  }

  .about-agency-section .section-title {
    font-size: 2.4rem;
  }

  .agency-mission-statement .elegant-text {
    font-size: 1.45rem;
  }

  .agency-description p {
    font-size: 1.35rem;
  }
}

@media (max-width: 768px) {
  .about-agency-section {
    padding: 60px 15px;
    overflow-x: hidden;
  }

  .about-agency-container {
    max-width: 100%;
    padding: 40px 35px 35px 50px;
    transform: rotate(0) !important;
    animation: none !important;
  }

  .about-agency-container::after {
    left: 35px;
    top: 25px;
    height: calc(100% - 50px);
  }

  .about-agency-container::before {
    top: 35px;
    bottom: 30px;
  }

  .about-agency-content {
    padding: 10px 0;
  }

  .about-agency-section .section-title {
    font-size: 2rem;
    margin-bottom: 20px;
    transform: rotate(0);
  }

  .agency-mission-statement {
    margin-bottom: 20px;
  }

  .agency-mission-statement .elegant-text {
    font-size: 1.3rem;
    line-height: 1.9;
  }

  .agency-description p {
    font-size: 1.25rem;
    line-height: 1.9;
    margin-bottom: 25px;
  }

  .agency-description p.cta-text {
    font-size: 1.4rem;
    margin-top: 25px;
  }

  .agency-cta {
    margin-top: 30px;
  }

  .agency-cta .roadmap-button {
    padding: 12px 28px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .about-agency-section {
    padding: 40px 10px;
    overflow-x: hidden;
  }

  .about-agency-container {
    max-width: 90%;
    padding: 30px 25px 30px 40px;
    transform: rotate(0) !important;
    animation: none !important;
  }

  .about-agency-container::after {
    left: 25px;
    top: 20px;
    height: calc(100% - 40px);
  }

  .about-agency-container::before {
    top: 25px;
    bottom: 25px;
  }

  .about-agency-content {
    padding: 5px 0;
  }

  .about-agency-section .section-title {
    font-size: 1.7rem;
    margin-bottom: 18px;
    transform: rotate(0);
    padding-bottom: 12px;
  }

  .agency-mission-statement {
    margin-bottom: 18px;
  }

  .agency-mission-statement .elegant-text {
    font-size: 1.15rem;
    line-height: 1.8;
  }

  .agency-description {
    text-align: left;
  }

  .agency-description p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 24px;
  }

  .agency-description p.cta-text {
    font-size: 1.3rem;
    margin-top: 25px;
    text-align: left;
  }

  .agency-cta {
    margin-top: 30px;
    text-align: center;
  }

  .agency-cta .roadmap-button {
    padding: 14px 28px;
    font-size: 1.2rem;
    width: auto;
    max-width: none;
  }
}

/* ========================================
   KUNDENREFERENZEN SEKTION - EXKLUSIV & ECKIG
   ======================================== */

.ref-section {
  padding: 120px 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.ref-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  pointer-events: none;
}

:root.light-theme .ref-section {
  background: transparent;
}

:root.light-theme .ref-section::before {
  background: transparent;
}

.ref-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* Header */
.ref-header {
  text-align: center;
  margin-bottom: 80px;
}

.ref-badge {
  display: inline-block;
  padding: 8px 24px;
  background: linear-gradient(
    135deg,
    rgba(87, 41, 160, 0.2) 0%,
    rgba(213, 31, 137, 0.15) 100%
  );
  border: 1px solid rgba(87, 41, 160, 0.4);
  color: #d51f89;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.ref-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: 4px;
  margin: 0 0 16px 0;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.7) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

:root.light-theme .ref-title {
  background: linear-gradient(135deg, #1a1a2e 0%, #5729a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ref-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  letter-spacing: 1px;
  margin: 0;
}

:root.light-theme .ref-subtitle {
  color: rgba(51, 51, 51, 0.6);
}

/* Grid Layout */
.ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

/* Cards */
.ref-card {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(30, 50, 85, 0.9) 0%,
    rgba(25, 45, 80, 0.95) 100%
  );
  border: 1px solid rgba(87, 41, 160, 0.25);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ref-card:hover {
  border-color: rgba(213, 31, 137, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(87, 41, 160, 0.2);
}

:root.light-theme .ref-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(245, 250, 255, 0.95) 100%
  );
  border-color: rgba(87, 41, 160, 0.15);
}

:root.light-theme .ref-card:hover {
  border-color: rgba(213, 31, 137, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 40px rgba(87, 41, 160, 0.1);
}

/* Featured Card */
.ref-card-featured {
  grid-column: span 2;
}

/* Card Accent Line */
.ref-card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #5729a0 0%, #d51f89 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ref-card:hover .ref-card-accent {
  transform: scaleX(1);
}

/* Card Image */
.ref-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.ref-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: grayscale(20%);
}

.ref-card:hover .ref-card-image img {
  transform: scale(1.08);
  filter: grayscale(0%);
}

.ref-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(20, 38, 70, 0.3) 60%,
    rgba(20, 38, 70, 0.8) 100%
  );
  transition: opacity 0.4s ease;
}

.ref-card:hover .ref-card-overlay {
  opacity: 0.7;
}

/* Card Content */
.ref-card-content {
  padding: 24px;
  background: linear-gradient(
    180deg,
    rgba(20, 38, 70, 0.95) 0%,
    rgba(25, 45, 80, 0.98) 100%
  );
}

:root.light-theme .ref-card-content {
  background: linear-gradient(
    180deg,
    rgba(250, 252, 255, 0.98) 0%,
    rgba(245, 248, 255, 1) 100%
  );
}

.ref-card-header {
  margin-bottom: 16px;
}

.ref-card-label {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, #d51f89 0%, #5729a0 100%);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.ref-card-name {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin: 0 0 6px 0;
  letter-spacing: 1px;
}

:root.light-theme .ref-card-name {
  color: #1a1a2e;
}

.ref-card-category {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  letter-spacing: 0.5px;
}

:root.light-theme .ref-card-category {
  color: rgba(51, 51, 51, 0.6);
}

/* Tags */
.ref-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ref-tag {
  padding: 6px 12px;
  background: rgba(87, 41, 160, 0.15);
  border: 1px solid rgba(87, 41, 160, 0.25);
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.ref-tag:hover {
  background: rgba(213, 31, 137, 0.25);
  border-color: rgba(213, 31, 137, 0.4);
}

.ref-tag-special {
  background: linear-gradient(
    135deg,
    rgba(213, 31, 137, 0.3) 0%,
    rgba(87, 41, 160, 0.3) 100%
  );
  border-color: rgba(213, 31, 137, 0.5);
  color: #d51f89;
}

:root.light-theme .ref-tag {
  background: rgba(87, 41, 160, 0.08);
  border-color: rgba(87, 41, 160, 0.2);
  color: rgba(51, 51, 51, 0.85);
}

:root.light-theme .ref-tag:hover {
  background: rgba(213, 31, 137, 0.15);
  border-color: rgba(213, 31, 137, 0.3);
}

:root.light-theme .ref-tag-special {
  background: linear-gradient(
    135deg,
    rgba(213, 31, 137, 0.15) 0%,
    rgba(87, 41, 160, 0.15) 100%
  );
  color: #d51f89;
}

/* Quote Section */
.ref-quote {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
  padding: 60px 40px;
  background: rgba(87, 41, 160, 0.05);
  border: 1px solid rgba(87, 41, 160, 0.15);
  position: relative;
}

.ref-quote-mark {
  position: absolute;
  top: 20px;
  left: 40px;
  font-size: 120px;
  font-family: Georgia, serif;
  color: rgba(213, 31, 137, 0.15);
  line-height: 1;
  pointer-events: none;
}

.ref-quote-text {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  margin: 0 0 30px 0;
  position: relative;
  z-index: 1;
}

:root.light-theme .ref-quote-text {
  color: rgba(51, 51, 51, 0.85);
}

.ref-quote-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ref-quote-name {
  font-size: 16px;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
}

:root.light-theme .ref-quote-name {
  color: #1a1a2e;
}

.ref-quote-role {
  font-size: 13px;
  color: #d51f89;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* CTA */
.ref-cta {
  text-align: center;
}

.ref-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #5729a0 0%, #d51f89 100%);
  color: white;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.ref-cta-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #d51f89 0%, #5729a0 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ref-cta-button:hover::before {
  opacity: 1;
}

.ref-cta-button span,
.ref-cta-button svg {
  position: relative;
  z-index: 1;
}

.ref-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(87, 41, 160, 0.4);
}

.ref-cta-button svg {
  transition: transform 0.3s ease;
}

.ref-cta-button:hover svg {
  transform: translateX(4px);
}

/* Hidden Cards - Show More Functionality */
.ref-card-hidden {
  display: none;
}

.ref-grid.ref-grid-expanded .ref-card-hidden {
  display: block;
}

/* Show More Button */
.ref-show-more-wrapper {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.ref-show-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  border: 2px solid rgba(87, 41, 160, 0.5);
  color: white;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ref-show-more-btn:hover {
  background: linear-gradient(
    135deg,
    rgba(87, 41, 160, 0.2) 0%,
    rgba(213, 31, 137, 0.2) 100%
  );
  border-color: rgba(213, 31, 137, 0.6);
  transform: translateY(-2px);
}

.ref-show-more-icon {
  transition: transform 0.3s ease;
}

.ref-show-more-btn.ref-show-less .ref-show-more-icon {
  transform: rotate(180deg);
}

:root.light-theme .ref-show-more-btn {
  color: #1a1a2e;
  border-color: rgba(87, 41, 160, 0.4);
}

:root.light-theme .ref-show-more-btn:hover {
  background: linear-gradient(
    135deg,
    rgba(87, 41, 160, 0.1) 0%,
    rgba(213, 31, 137, 0.1) 100%
  );
}

/* ========================================
   RESPONSIVE - KUNDENREFERENZEN
   ======================================== */

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

  .ref-card-featured {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .ref-section {
    padding: 80px 0;
  }

  .ref-container {
    padding: 0 20px;
  }

  .ref-header {
    margin-bottom: 50px;
  }

  .ref-badge {
    font-size: 10px;
    padding: 6px 18px;
    letter-spacing: 2px;
  }

  .ref-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
  }

  .ref-card-featured {
    grid-column: span 1;
  }

  .ref-card-image {
    height: 180px;
  }

  .ref-card-content {
    padding: 20px;
  }

  .ref-card-name {
    font-size: 20px;
  }

  .ref-quote {
    padding: 40px 24px;
    margin-bottom: 40px;
  }

  .ref-quote-mark {
    font-size: 80px;
    left: 20px;
    top: 10px;
  }

  .ref-quote-text {
    font-size: 17px;
    line-height: 1.7;
  }

  .ref-cta-button {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 13px;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .ref-section {
    padding: 60px 0;
  }

  .ref-container {
    padding: 0 15px;
  }

  .ref-header {
    margin-bottom: 40px;
  }

  .ref-badge {
    font-size: 9px;
    padding: 5px 14px;
    letter-spacing: 1.5px;
  }

  .ref-title {
    letter-spacing: 2px;
  }

  .ref-subtitle {
    font-size: 15px;
  }

  .ref-grid {
    gap: 16px;
    margin-bottom: 40px;
  }

  .ref-card-image {
    height: 160px;
  }

  .ref-card-content {
    padding: 16px;
  }

  .ref-card-name {
    font-size: 18px;
  }

  .ref-card-category {
    font-size: 12px;
  }

  .ref-tag {
    padding: 5px 10px;
    font-size: 10px;
  }

  .ref-quote {
    padding: 30px 20px;
  }

  .ref-quote-mark {
    font-size: 60px;
    left: 15px;
    top: 5px;
  }

  .ref-quote-text {
    font-size: 15px;
  }

  .ref-quote-name {
    font-size: 14px;
  }

  .ref-quote-role {
    font-size: 12px;
  }

  .ref-cta-button {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 11px;
    box-sizing: border-box;
    letter-spacing: 0.5px;
  }
}
