/* Compiaz Design - Main Stylesheet */
:root {
  /* Farben aus dem Logo extrahiert */
  --primary-pink: #f03a70;
  --primary-gradient-start: #f03a70;
  --primary-gradient-end: #e91e63;
  --dark-bg: #121212;
  --light-text: #ffffff;
  --card-bg: rgba(255, 255, 255, 0.1);
  --card-border: rgba(255, 255, 255, 0.15);
  --glass-bg: rgba(18, 18, 18, 0.8);
  --glass-border: rgba(255, 255, 255, 0.1);
  --section-padding: 5rem 0;
  
  
  
  /* Header Variables */
  --header-height: 90px;
  --header-bg: rgba(255, 255, 255, 0.1);
  --header-scrolled-bg: rgba(255, 255, 255, 0.15);
  --dropdown-bg: rgba(255, 255, 255, 0.15);
  --dropdown-border: rgba(255, 255, 255, 0.2);
  --search-overlay-bg: rgba(255, 255, 255, 0.1);
  --logo-gradient-start: #f03a70;
  --logo-gradient-end: #e91e63;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}


body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--dark-bg);
  color: var(--light-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Mobile Bottom Navigation - Global Styles */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 1024px) {
    #header-include {
        display: none;
    }
    
    body {
        padding-bottom: 80px;
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    
    main {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .mobile-bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 10px 0;
        z-index: 1000;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    
    .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: rgba(255, 255, 255, 0.6);
        transition: all 0.3s ease;
        padding: 8px 12px;
        border-radius: 12px;
        position: relative;
        overflow: hidden;
    }
    
    .nav-item.active {
        color: white;
        background: linear-gradient(45deg, var(--logo-gradient-start), var(--logo-gradient-end));
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
    }
    
    .nav-item:hover {
        color: white;
        transform: translateY(-1px);
    }
    
    .nav-item i {
        font-size: 1.2rem;
        margin-bottom: 4px;
        transition: all 0.3s ease;
    }
    
    .nav-item span {
        font-size: 0.7rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .nav-item.active i {
        transform: scale(1.1);
    }
    
    .nav-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.5s ease;
    }
    
    .nav-item:hover::before {
        left: 100%;
    }
}

/* Sektionen Hintergrund */
.section {
  background-color: var(--dark-bg);
}

/* Portfolio-Sektion speziell */
#portfolio.section {
  background-color: #000000;
  background: #000000;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.text-gradient {
  background: linear-gradient(45deg, var(--primary-gradient-start), var(--primary-gradient-end));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Layout */




.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}



section {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

/* Section Headers */
.section-header {
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.section-header .text-gradient {
    background: linear-gradient(45deg, var(--logo-gradient-start), var(--logo-gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

/* Glass Effect Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(240, 58, 112, 0.2);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary-gradient-start), var(--primary-gradient-end));
  color: white;
  box-shadow: 0 4px 15px rgba(240, 58, 112, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(240, 58, 112, 0.6);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-pink);
  color: var(--primary-pink);
}

.btn-outline:hover {
  background: var(--primary-pink);
  color: white;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.site-header.scrolled .navbar {
    height: var(--header-height);
    padding: 0.5rem 0;
}

.site-header.scrolled .navbar-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 0.3rem 2rem;
    height: 60px;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Logo */
.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-logo {
    height: 55px;
    transition: all 0.3s ease;
}

.site-header.scrolled .navbar-logo {
    height: 40px;
}

/* Navigation Links */
.navbar-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-item {
    position: relative;
}

.nav-item a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.nav-item a:hover {
    color: var(--primary-pink);
    background: rgba(255, 255, 255, 0.05);
}

.nav-item a.active {
    color: var(--primary-pink);
    font-weight: 600;
    background: rgba(240, 58, 112, 0.1);
}

.nav-item a i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover a i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.nav-item.dropdown {
    position: relative;
}

.nav-item.dropdown .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(15px);
    position: absolute;
    top: 100%;
    left: -20px;
    margin-top: 25px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: rgba(5, 25, 35, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 166, 251, 0.15);
    border-radius: 20px;
    padding: 1.25rem;
    min-width: 280px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3),
                inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    z-index: 1001;
}

/* Dropdown-Stil beim Scrollen */
.site-header.scrolled .nav-item.dropdown .dropdown-menu {
    background: rgba(5, 25, 35, 0.95);
    border: 1px solid rgba(0, 166, 251, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3),
                inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* Fügt einen unsichtbaren Bereich hinzu, um die Lücke zwischen Menüpunkt und Dropdown zu überbrücken */
.nav-item.dropdown .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 0;
    width: 100%;
    height: 25px;
    background: transparent;
}

.dropdown-menu a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 0.25rem;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-pink);
    transform: translateX(5px);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.dropdown-item:last-child {
    margin-bottom: 0;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.dropdown-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--logo-gradient-start), var(--logo-gradient-end));
    color: white;
    font-size: 1.25rem;
}

.dropdown-item h5 {
    margin: 0 0 0.25rem 0;
    font-weight: 600;
    font-size: 0.9rem;
}

.dropdown-item p {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Search Toggle */
.search-toggle a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.search-toggle a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Dark Mode Toggle */
.dark-mode-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--light-text);
    cursor: pointer;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.dark-mode-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-pink);
}

/* Mobile Toggle Button */
.navbar-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white !important;
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
    margin-left: 1rem;
}

.toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--light-text);
    position: absolute;
    left: 8px;
    transition: all 0.3s ease;
}

.toggle-line:nth-child(1) {
    top: 14px;
}

.toggle-line:nth-child(2) {
    top: 20px;
}

.toggle-line:nth-child(3) {
    top: 26px;
}

.navbar-mobile-toggle.active .toggle-line:nth-child(1) {
    transform: rotate(45deg);
    top: 20px;
}

.navbar-mobile-toggle.active .toggle-line:nth-child(2) {
    opacity: 0;
}

.navbar-mobile-toggle.active .toggle-line:nth-child(3) {
    transform: rotate(-45deg);
    top: 20px;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--search-overlay-bg);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    width: 100%;
    max-width: 700px;
    position: relative;
}

.search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    font-size: 1.5rem;
    color: var(--light-text);
    outline: none;
}

.search-input:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(0, 166, 251, 0.2);
}

.search-close {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-close:hover {
    color: var(--primary-pink);
}


/* Responsive Styles */
@media (max-width: 992px) {
    .navbar-links {
        display: none;
    }
    
    .navbar-mobile-toggle {
        display: block;
        color: white !important;
    }
    
    .navbar-mobile-toggle i {
        color: white !important;
        font-size: 1.5rem !important;
    }
    
    .mobile-nav {
        display: block !important;
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--header-scrolled-bg);
        padding: 2rem;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 999;
        overflow-y: auto;
    }
    
    .site-header.scrolled .mobile-nav {
        top: var(--header-scrolled-height);
        height: calc(100vh - var(--header-scrolled-height));
    }
    
    .mobile-nav.active {
        transform: translateX(0);
    }
    
    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .mobile-nav-item a {
        display: block;
        padding: 1rem;
        font-size: 1.2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .mobile-dropdown-toggle {
        position: absolute;
        right: 1rem;
        top: 1rem;
        background: none;
        border: none;
        color: var(--light-text);
        font-size: 1.2rem;
    }
    
    .mobile-dropdown-menu {
        padding-left: 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    
    .mobile-dropdown-menu.active {
        max-height: 500px;
    }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  position: relative;
  overflow: visible; /* Änderung von hidden zu visible, damit der Überlauf sichtbar ist */
  background: #0a0a0a;
  z-index: 1;
  pointer-events: none;
}

.hero * {
  pointer-events: auto;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(240, 58, 112, 0.8) 0%, 
    rgba(18, 18, 18, 0.6) 50%, 
    rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

/* Zusätzlicher Verlaufseffekt für den Übergang */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 800px;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0) 0%, rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 1) 90%);
  z-index: 2;
}

.hero .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  white-space: nowrap;
  text-align: center;
}

.special-title {
  display: inline-block;
  position: relative;
  overflow: hidden;
  letter-spacing: 1px;
}

.text-break {
  position: relative;
  display: inline-block;
  color: var(--primary-pink);
  font-weight: 800;
  text-shadow: 0 0 10px rgba(240, 58, 112, 0.5);
}

.break-part1, .break-part2 {
  display: inline-block;
  position: relative;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.14,.8,.4,1);
}

.break-part1 {
  animation: break-left 2s forwards, flicker 15s infinite 2s;
}

.break-part2 {
  animation: break-right 2s forwards, flicker 15s infinite 3.5s;
}



.text-glitch {
  position: relative;
  color: white;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(240, 58, 112, 0.5);
  animation: glitch-anim 3s infinite;
}

@keyframes break-left {
  0% {
    transform: translateY(0) rotate(0deg);
    text-shadow: 0 0 5px rgba(240, 58, 112, 0.3);
  }
  10% {
    transform: translateY(-1px) rotate(-1deg);
    text-shadow: 0 0 6px rgba(240, 58, 112, 0.4);
  }
  20% {
    transform: translateY(0px) rotate(1deg);
    text-shadow: 0 0 5px rgba(240, 58, 112, 0.3);
  }
  30% {
    transform: translateY(-1px) rotate(-2deg);
    text-shadow: 0 0 7px rgba(240, 58, 112, 0.5);
  }
  40% {
    transform: translateY(0px) rotate(1deg);
    text-shadow: 0 0 5px rgba(240, 58, 112, 0.3);
  }
  50% {
    transform: translateY(-1px) rotate(-2deg);
    text-shadow: 0 0 8px rgba(240, 58, 112, 0.5);
  }
  60% {
    transform: translateY(-2px) rotate(-5deg);
    text-shadow: 0 0 10px rgba(240, 58, 112, 0.7);
  }
  100% {
    transform: translateY(-3px) rotate(-8deg);
    text-shadow: 0 0 10px rgba(240, 58, 112, 0.7);
  }
}

@keyframes break-right {
  0% {
    transform: translateY(0) rotate(0deg);
    text-shadow: 0 0 5px rgba(240, 58, 112, 0.3);
  }
  10% {
    transform: translateY(1px) rotate(1deg);
    text-shadow: 0 0 6px rgba(240, 58, 112, 0.4);
  }
  20% {
    transform: translateY(0px) rotate(-1deg);
    text-shadow: 0 0 5px rgba(240, 58, 112, 0.3);
  }
  30% {
    transform: translateY(1px) rotate(2deg);
    text-shadow: 0 0 7px rgba(240, 58, 112, 0.5);
  }
  40% {
    transform: translateY(0px) rotate(-1deg);
    text-shadow: 0 0 5px rgba(240, 58, 112, 0.3);
  }
  50% {
    transform: translateY(1px) rotate(2deg);
    text-shadow: 0 0 8px rgba(240, 58, 112, 0.5);
  }
  60% {
    transform: translateY(2px) rotate(5deg);
    text-shadow: 0 0 10px rgba(240, 58, 112, 0.7);
  }
  100% {
    transform: translateY(3px) rotate(8deg);
    text-shadow: 0 0 10px rgba(240, 58, 112, 0.7);
  }
}







@keyframes glitch-anim {
  0% {
    text-shadow: 0 0 10px rgba(240, 58, 112, 0.5);
    transform: translateX(0);
  }
  5% {
    text-shadow: -3px 0 0 rgba(0, 255, 255, 0.75), 3px 0 0 rgba(255, 0, 255, 0.75);
    transform: translateX(1px);
  }
  10% {
    text-shadow: -3px 0 0 rgba(0, 255, 255, 0.75), 3px 0 0 rgba(255, 0, 255, 0.75);
    transform: translateX(-1px);
  }
  15% {
    text-shadow: 0 0 10px rgba(240, 58, 112, 0.5);
    transform: translateX(0);
  }
  100% {
    text-shadow: 0 0 10px rgba(240, 58, 112, 0.5);
    transform: translateX(0);
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Feature Bubbles */
.feature-bubbles {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.feature-bubble {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  color: white;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.outline-bubble {
  background: transparent;
  border: 2px solid;
  box-shadow: 0 0 8px rgba(240, 58, 112, 0.2);
  color: white;
}

.feature-bubble::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
  transform: scale(0);
  border-radius: 50%;
  transition: all 0.5s ease;
}

.feature-bubble:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(240, 58, 112, 0.2);
}

.feature-bubble:hover::before {
  transform: scale(2.5);
  opacity: 0;
}

.bubble-1 {
  border-color: #ff5e8a;
  box-shadow: 0 0 8px rgba(255, 94, 138, 0.4), inset 0 0 5px rgba(255, 94, 138, 0.1);
  text-shadow: 0 0 3px rgba(255, 94, 138, 0.5);
}

.bubble-2 {
  border-color: #f03a70;
  box-shadow: 0 0 8px rgba(240, 58, 112, 0.4), inset 0 0 5px rgba(240, 58, 112, 0.1);
  text-shadow: 0 0 3px rgba(240, 58, 112, 0.5);
}

.bubble-3 {
  border-color: #d6246e;
  box-shadow: 0 0 8px rgba(214, 36, 110, 0.4), inset 0 0 5px rgba(214, 36, 110, 0.1);
  text-shadow: 0 0 3px rgba(214, 36, 110, 0.5);
}

.bubble-4 {
  border-color: #b01e5c;
  box-shadow: 0 0 8px rgba(176, 30, 92, 0.4), inset 0 0 5px rgba(176, 30, 92, 0.1);
  text-shadow: 0 0 3px rgba(176, 30, 92, 0.5);
}

/* Services Section */
.services {
  background: #0a0a0a;
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.services .container {
  width: 100%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

/* Service-Karten verwenden ausschließlich die glass-card Klasse */

/* Alle Service-Karten-Hover-Effekte wurden entfernt, damit sie exakt wie das Kontaktformular aussehen */

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, var(--primary-gradient-start), var(--primary-gradient-end));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Portfolio Section */
.portfolio {
  background: linear-gradient(to bottom, #1a1a1a, #222222);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.portfolio .container {
  width: 100%;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
  transition: all 0.3s ease;
}

.portfolio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(240, 58, 112, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.3s ease;
}

/* Portfolio-Items verwenden den Standard-Hover-Effekt der glass-card-Klasse */

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item:hover .portfolio-image {
  transform: scale(1.1);
}

.portfolio-title {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.portfolio-category {
  color: rgba(255, 255, 255, 0.8);
}

/* About Section */
.about {
  background: linear-gradient(to bottom, #222222, #1a1a1a);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-text h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-features {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.feature-icon {
  margin-right: 1rem;
  color: var(--primary-pink);
}

/* Contact Section */
.contact {
  background: #000000;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 5rem 0;
  z-index: 1;
}


.contact .container {
  width: 100%;
}

/* Contact Form Floating Label Fixes - wie auf apps.css */
.contact-form .modern-select {
    position: relative;
    margin-bottom: 2rem;
    margin-top: 2rem;
    overflow: visible;
}

.contact-form .modern-select .floating-label {
    top: -1rem;
    left: 0.75rem;
    font-size: 0.9rem;
    color: #ff4081;
    background: rgba(0, 0, 0, 1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    z-index: 1001;
    transform: translateY(0);
    font-weight: 600;
    border: 1px solid rgba(255, 64, 129, 0.3);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.contact-img:hover {
  transform: scale(1.02);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-icon {
  font-size: 2rem;
  color: var(--primary-pink);
  background: linear-gradient(45deg, var(--primary-pink), var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form button[type="submit"] {
  margin-top: 1rem;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  margin-top: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.form-check:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(240, 58, 112, 0.3);
}

.form-check-input {
  margin-top: 0.125rem;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  appearance: none;
  -webkit-appearance: none;
}

.form-check-input:checked {
  background: linear-gradient(45deg, var(--primary-pink), var(--primary-blue));
  border-color: var(--primary-pink);
  box-shadow: 0 0 10px rgba(240, 58, 112, 0.3);
}

.form-check-input:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.form-check-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.5;
  cursor: pointer;
  flex: 1;
}

.form-check-label a {
  color: var(--primary-pink);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
}

.form-check-label a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-pink), var(--primary-blue));
  transition: width 0.3s ease;
}

.form-check-label a:hover {
  color: var(--primary-blue);
}

.form-check-label a:hover::after {
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Modern Floating Labels */
.modern-input,
.modern-textarea,
.modern-select {
  position: relative;
  margin-bottom: 2rem;
  overflow: hidden;
}

.floating-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  transition: all 0.3s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  z-index: 1;
  white-space: nowrap;
}

.floating-label i {
  color: var(--primary-pink);
  font-size: 0.9rem;
}

.modern-input .form-control:focus + .floating-label,
.modern-input .form-control:not(:placeholder-shown) + .floating-label,
.modern-textarea .form-control:focus + .floating-label,
.modern-textarea .form-control:not(:placeholder-shown) + .floating-label {
  top: -1.2rem;
  left: 0.75rem;
  font-size: 0.8rem;
  color: var(--primary-pink);
  background: rgba(0, 0, 0, 0.95);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  z-index: 100;
  transform: translateY(0);
}

.modern-select .floating-label {
  top: -1.2rem;
  left: 0.75rem;
  font-size: 0.8rem;
  color: var(--primary-pink);
  background: rgba(0, 0, 0, 0.95);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  z-index: 100;
  transform: translateY(0);
}

.modern-input .form-control,
.modern-textarea .form-control,
.modern-select .form-control {
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.modern-input .form-control:focus,
.modern-textarea .form-control:focus,
.modern-select .form-control:focus {
  border-color: var(--primary-pink);
  box-shadow: 0 0 0 3px rgba(240, 58, 112, 0.1);
}

.modern-select .form-control {
  padding-top: 1.5rem;
}

.form-control {
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--light-text);
  font-family: inherit;
}

.form-control select,
select.form-control {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23f03a70' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

.form-control option {
  background: var(--dark-bg);
  color: var(--light-text);
  padding: 0.5rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-pink);
}

/* Section Divider */
.section-divider {
    padding: 1.5rem 0;
    background: #000000;
}

.section-divider::before {
    content: '';
    display: block;
    width: 100%;
    max-width: 1200px;
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #e91e63 50%, 
        transparent 100%);
    opacity: 1;
}

/* Footer */
.footer {
  position: relative;
  background: #000000 !important;
  overflow: hidden;
  margin-top: 0;
  padding: 3rem 0 1.5rem;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

/* Footer Background with Particles */
.footer-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  background: #000000 !important;
}

/* Footer Content */
.footer-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-logo-section,
  .footer-nav,
  .footer-contact {
    margin-right: 0;
    min-width: 100%;
  }
}

/* Footer Logo Section */
.footer-logo-section {
  flex: 1;
  min-width: 200px;
  margin-right: 2rem;
  max-width: 280px;
}

.footer-logo {
  display: block;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  line-height: 1.5;
}

.brand-text {
  color: var(--primary-pink);
  font-weight: 600;
}

/* Footer Navigation */
.footer-nav {
  flex: 1;
  min-width: 150px;
  margin-right: 2rem;
}

.footer-nav h4,
.footer-contact h4 {
  color: var(--light-text);
  font-size: 1.1rem;
  font-weight: 600;
  position: relative;
  display: inline-block;
  margin-bottom: 1.25rem;
}

.footer-nav h4:after,
.footer-contact h4:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-pink));
}

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

.footer-links-list li {
  margin-bottom: 0.5rem;
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 0.9rem;
}

.footer-links-list a:hover {
  color: var(--primary-blue);
  transform: translateX(3px);
}

.newsletter-form .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-form .form-control {
  border: none;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--light-text);
  border-radius: 50px 0 0 50px;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn-gradient {
  border-radius: 0 50px 50px 0;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(45deg, var(--primary-blue), var(--primary-pink));
  border: none;
  color: white;
  transition: all 0.3s ease;
}

.newsletter-form .btn-gradient:hover {
  transform: translateX(3px);
  box-shadow: 0 0 15px rgba(var(--primary-blue-rgb), 0.5);
}

/* Footer Main Content */
.footer-main {
  margin-bottom: 3rem;
}

.footer-widget {
  margin-bottom: 2rem;
}

.footer-heading {
  position: relative;
  color: var(--light-text);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(45deg, var(--primary-blue), var(--primary-pink));
  border-radius: 3px;
}

.footer-widget p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Footer Features */
.footer-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

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

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 0.5rem;
  color: var(--primary-blue);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-feature:hover .feature-icon {
  background: linear-gradient(45deg, var(--primary-blue), var(--primary-pink));
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.footer-feature span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Footer Services */
.footer-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

/* Service-Karten verwenden ausschließlich die glass-card Klasse für Hover-Effekte */

/* Footer Contact */
.footer-contact,
.footer-social-modern {
  flex: 1;
  min-width: 200px;
}

.contact-item h4 {
  color: var(--light-text);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin: 0;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-item a:hover {
  color: var(--primary-pink);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--light-text);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none !important;
  outline: none !important;
  text-decoration: none !important;
}

.social-icons a:hover {
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icons a:nth-child(1):hover {
  background: #1877f2; /* Facebook */
}

.social-icons a:nth-child(2):hover {
  background: #1da1f2; /* Twitter */
}

.social-icons a:nth-child(3):hover {
  background: #e4405f; /* Instagram */
}

.social-icons a:nth-child(4):hover {
  background: #0077b5; /* LinkedIn */
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 1.5rem;
  border-top: none !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links .separator {
  color: rgba(255, 255, 255, 0.3);
}

/* Entfernt alle zusätzlichen Trennlinien nach Links */
.footer-links a::after,
.footer-links a::before,
.footer-links::after,
.footer-links::before,
.footer-bottom .footer-links a::after,
.footer-bottom .footer-links a::before {
  display: none !important;
  content: none !important;
}

/* Verhindert zusätzliche Trennlinien durch border */
.footer-links a {
  border-right: none !important;
  border-left: none !important;
}

/* Stellt sicher, dass nur der explizite Separator angezeigt wird */
.footer-links .separator {
  display: inline !important;
}

.footer-links a:hover {
  color: var(--primary-blue);
}

/* Modern Social Media Icons in Footer */
.footer-social-modern {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.social-heading {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
  position: relative;
  padding-bottom: 0.5rem;
}

.social-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-pink));
  border-radius: 3px;
}

.social-icons-large {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-icon-large {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.social-icon-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.social-icon-large:hover::before {
  left: 100%;
}

.social-icon-large:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.icon-wrapper {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.5rem;
  color: white;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.social-icon-large.instagram .icon-wrapper {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon-large.instagram:hover {
  background: rgba(240, 148, 51, 0.1);
  border-color: #e6683c;
}

.social-icon-large.instagram:hover .icon-wrapper {
  transform: rotate(15deg) scale(1.1);
  box-shadow: 0 0 30px rgba(240, 148, 51, 0.5);
}

.social-icon-large.linkedin .icon-wrapper {
  background: linear-gradient(135deg, #0077b5, #005582);
}

.social-icon-large.linkedin:hover {
  background: rgba(0, 119, 181, 0.1);
  border-color: #0077b5;
}

.social-icon-large.linkedin:hover .icon-wrapper {
  transform: rotate(-15deg) scale(1.1);
  box-shadow: 0 0 30px rgba(0, 119, 181, 0.5);
}

.social-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.5px;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* Footer Particles */
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 105, 180, 0.02);
  box-shadow: 0 0 25px rgba(255, 105, 180, 0.15);
  animation: float 30s infinite ease-in-out;
  filter: blur(3px);
  z-index: 0;
}

.particle-1 {
  width: 60px;
  height: 60px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.particle-2 {
  width: 40px;
  height: 40px;
  top: 20%;
  right: 15%;
  animation-delay: 2s;
}

.particle-3 {
  width: 30px;
  height: 30px;
  bottom: 20%;
  left: 25%;
  animation-delay: 4s;
}

.particle-4 {
  width: 50px;
  height: 50px;
  bottom: 10%;
  right: 10%;
  animation-delay: 6s;
}

.particle-5 {
  width: 35px;
  height: 35px;
  top: 50%;
  left: 50%;
  animation-delay: 8s;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-10px) rotate(2deg);
    opacity: 0.7;
  }
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.4;
  }
}

@keyframes break-right {
  0% {
    transform: translateX(0) rotate(0deg);
  }
  10% {
    transform: translateX(0) rotate(0deg);
  }
  15% {
    transform: translateX(1px) rotate(1deg);
  }
  20% {
    transform: translateX(-1px) rotate(-1deg);
  }
  25% {
    transform: translateX(1px) rotate(1deg);
  }
  30% {
    transform: translateX(-1px) rotate(-1deg);
  }
  35% {
    transform: translateX(0) rotate(0deg);
  }
  50% {
    transform: translateX(0) rotate(0deg);
  }
  100% {
    transform: translateX(15px) rotate(5deg);
  }
}

@keyframes flicker {
  0% {
    opacity: 1;
    text-shadow: 0 0 10px rgba(240, 58, 112, 0.5);
  }
  1% {
    opacity: 0.97;
    text-shadow: 0 0 10px rgba(240, 58, 112, 0.5);
  }
  2% {
    opacity: 0.4;
    text-shadow: 0 0 2px rgba(240, 58, 112, 0.2);
  }
  2.1% {
    opacity: 1;
    text-shadow: 0 0 15px rgba(240, 58, 112, 0.7), 0 0 25px rgba(240, 58, 112, 0.5);
  }
  2.2% {
    opacity: 0.4;
    text-shadow: 0 0 2px rgba(240, 58, 112, 0.2);
  }
  2.3% {
    opacity: 1;
    text-shadow: 0 0 10px rgba(240, 58, 112, 0.5);
  }
  5% {
    opacity: 1;
    text-shadow: 0 0 10px rgba(240, 58, 112, 0.5);
  }
  25% {
    opacity: 0.9;
    text-shadow: 0 0 8px rgba(240, 58, 112, 0.4);
  }
  25.1% {
    opacity: 0.3;
    text-shadow: 0 0 2px rgba(240, 58, 112, 0.2);
  }
  25.2% {
    opacity: 0.9;
    text-shadow: 0 0 8px rgba(240, 58, 112, 0.4);
  }
  26% {
    opacity: 1;
    text-shadow: 0 0 10px rgba(240, 58, 112, 0.5);
  }
  55% {
    opacity: 1;
    text-shadow: 0 0 10px rgba(240, 58, 112, 0.5);
  }
  56% {
    opacity: 0.15;
    text-shadow: 0 0 2px rgba(240, 58, 112, 0.2);
  }
  56.1% {
    opacity: 1;
    text-shadow: 0 0 15px rgba(240, 58, 112, 0.7), 0 0 25px rgba(240, 58, 112, 0.5);
  }
  56.2% {
    opacity: 0.15;
    text-shadow: 0 0 2px rgba(240, 58, 112, 0.2);
  }
  56.3% {
    opacity: 1;
    text-shadow: 0 0 10px rgba(240, 58, 112, 0.5);
  }
  56.4% {
    opacity: 0.15;
    text-shadow: 0 0 2px rgba(240, 58, 112, 0.2);
  }
  56.5% {
    opacity: 1;
    text-shadow: 0 0 10px rgba(240, 58, 112, 0.5);
  }
  89% {
    opacity: 1;
    text-shadow: 0 0 10px rgba(240, 58, 112, 0.5);
  }
  90% {
    opacity: 0.8;
    text-shadow: 0 0 5px rgba(240, 58, 112, 0.3);
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 10px rgba(240, 58, 112, 0.5);
  }
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(3deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .section-header h2 {
    font-size: 2.8rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .about-content,
  .contact-container,
  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }
  
  .navbar-mobile-toggle {
    display: block;
  }
  
  .navbar-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    padding: 5rem 2rem;
    transition: all 0.5s ease;
    z-index: 999;
  }
  
  .navbar-mobile.active {
    right: 0;
  }
  
  .navbar-mobile a {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
  }
  
  .services-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  /* Hero Mobile Fixes */
  .hero {
    padding: 2rem 0;
    min-height: 90vh;
  }
  
  .hero .container {
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: 2.5rem !important;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
}

/* App-like Mobile Styles */
@media (max-width: 576px) {
  body {
    padding-bottom: 70px; /* Space for bottom navigation */
  }
  
  .mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid var(--glass-border);
    z-index: 1000;
  }
  
  .mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--light-text);
    text-decoration: none;
    font-size: 0.6rem;
    flex: 1;
    padding: 0.25rem 0.05rem;
    min-width: 0;
  }
  
  .mobile-nav-icon {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
  }
  
  .mobile-nav-item.active {
    color: var(--primary-pink);
  }
  
  .app-header {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .app-title {
    font-size: 1.2rem;
    font-weight: 600;
  }
  
  .app-action {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* WhatsApp Button entfernt */
/* Compiaz Design - Mobile App-Like Styles */

/* App-like Styles für Mobile */
@media (max-width: 576px) {
  /* Base App Layout */
  html, body {
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
  }
  
  body {
    padding-bottom: 70px; /* Platz für die Bottom-Navigation */
  }
  
  /* App Header */
  .app-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .app-title {
    font-size: 1.2rem;
    font-weight: 600;
  }
  
  .app-action {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
  }
  
  /* Bottom Navigation */
  .mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
  }
  
  .mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.6rem;
    transition: all 0.3s ease;
    flex: 1;
    padding: 0.25rem 0.05rem;
    min-width: 0;
  }
  
  .mobile-nav-icon {
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
  }
  
  .mobile-nav-item.active {
    color: var(--primary-pink);
  }
  
  /* Card Styles */
  .app-card {
    margin: 1rem;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .app-card-header {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .app-card-content {
    padding: 1rem;
  }
  
  /* List Items */
  .app-list-item {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .app-list-item:last-child {
    border-bottom: none;
  }
  
  .app-list-item-content {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .app-list-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(45deg, var(--primary-gradient-start), var(--primary-gradient-end));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
  }
  
  /* Swipe Actions */
  .swipe-container {
    position: relative;
    overflow: hidden;
  }
  
  .swipe-actions {
    position: absolute;
    top: 0;
    right: -100px;
    height: 100%;
    display: flex;
    transition: all 0.3s ease;
  }
  
  .swipe-action {
    width: 80px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
  }
  
  .swipe-action.delete {
    background: #ff3b30;
  }
  
  .swipe-action.share {
    background: #007aff;
  }
  
  /* Tabs */
  .app-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .app-tabs::-webkit-scrollbar {
    display: none;
  }
  
  .app-tab {
    padding: 1rem 1.5rem;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
  }
  
  .app-tab.active {
    color: var(--primary-pink);
    border-bottom: 2px solid var(--primary-pink);
  }
  
  
  /* Floating Action Button - ENTFERNT */
  .fab {
    display: none !important;
    box-shadow: 0 4px 15px rgba(240, 58, 112, 0.4);
    z-index: 100;
    transition: all 0.3s ease;
  }
  
  .fab:active {
    transform: scale(0.95);
  }
  
  /* Toast Notifications */
  .toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    z-index: 2000;
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .toast.show {
    opacity: 1;
  }
  
  /* Animations */
  @keyframes slide-in-right {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(0);
    }
  }
  
  @keyframes slide-in-up {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }
  
  .slide-in-right {
    animation: slide-in-right 0.3s forwards;
  }
  
  .slide-in-up {
    animation: slide-in-up 0.3s forwards;
  }
  
  /* Gestures */
  .gesture-area {
    touch-action: pan-y;
    user-select: none;
  }

  /* Prevent iOS auto-zoom on input focus */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="url"],
  input[type="password"],
  input[type="number"],
  input[type="search"],
  input[type="date"],
  input[type="time"],
  input[type="datetime-local"],
  textarea,
  select,
  .form-control,
  .form-select {
    font-size: 16px !important;
  }
}
/* EINFACHES MOBILE OVERLAY DESIGN */

/* Mobile Overlay - Glasmorphismus Design */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: 
        radial-gradient(circle at 20% 30%, rgba(240, 58, 112, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 166, 251, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(18, 18, 18, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(240, 58, 112, 0.03) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(0, 166, 251, 0.03) 50%, transparent 70%);
    animation: shimmer 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; transform: translateX(-10px); }
    50% { opacity: 1; transform: translateX(10px); }
}

.mobile-overlay.active {
    display: flex;
    opacity: 1;
}

.mobile-menu-content {
    text-align: center;
    width: 90%;
    max-width: 320px;
    position: relative;
    z-index: 10;
    padding: 1rem;
}

.mobile-close-btn {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    z-index: 1000000;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    backdrop-filter: blur(20px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-close-btn:hover {
    background: rgba(240, 58, 112, 0.2);
    border-color: rgba(240, 58, 112, 0.4);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 8px 32px rgba(240, 58, 112, 0.3);
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1rem 0;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent);
    transition: left 0.6s ease;
}

.mobile-nav-link:hover::before {
    left: 100%;
}

.mobile-nav-link:hover {
    background: linear-gradient(135deg, 
        rgba(240, 58, 112, 0.25) 0%, 
        rgba(0, 166, 251, 0.25) 100%);
    border-color: rgba(240, 58, 112, 0.4);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(240, 58, 112, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.mobile-dropdown {
    margin: 0.5rem 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 0.3rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.mobile-nav-sublink {
    display: block;
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    margin: 0.2rem 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.mobile-nav-sublink::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 166, 251, 0.1), 
        transparent);
    transition: left 0.5s ease;
}

.mobile-nav-sublink:hover::before {
    left: 100%;
}

.mobile-nav-sublink:hover {
    background: rgba(0, 166, 251, 0.15);
    border-color: rgba(0, 166, 251, 0.3);
    color: #ffffff;
    transform: translateX(5px);
    box-shadow: 
        0 5px 20px rgba(0, 166, 251, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Responsive Anpassungen für sehr kleine Bildschirme */
@media (max-width: 480px) {
    .mobile-menu-content {
        width: 95%;
        max-width: 280px;
        padding: 0.5rem;
    }
    
    .mobile-close-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        top: -40px;
    }
    
    .mobile-nav-menu {
        gap: 0.6rem;
        padding: 0.5rem 0;
    }
    
    .mobile-nav-link {
        padding: 0.8rem 1.2rem;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    .mobile-dropdown {
        margin: 0.3rem 0;
        padding: 0.2rem;
    }
    
    .mobile-nav-sublink {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        margin: 0.15rem 0;
    }
}

@media (max-width: 360px) {
    .mobile-menu-content {
        width: 98%;
        max-width: 250px;
    }
    
    .mobile-nav-link {
        padding: 0.7rem 1rem;
        font-size: 0.95rem;
    }
    
    .mobile-nav-sublink {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* MODERNES MOBILE HEADER DESIGN */

/* Mobile Header Styles */

/* Footer Fix - Entfernt zusätzliche Trennlinien auf Mobile */
.footer-links a::after,
.footer-links a::before,
.footer-links::after,
.footer-links::before,
.footer-bottom .footer-links a::after,
.footer-bottom .footer-links a::before {
  display: none !important;
  content: none !important;
}

.footer-links a {
  border-right: none !important;
  border-left: none !important;
}

/* Mobile Header - Komplett eigenes Design */
@media (max-width: 1024px) {
    /* Desktop Navigation verstecken */
    .navbar-links {
        display: none !important;
    }
    
    /* Mobile Toggle anzeigen */
    .navbar-mobile-toggle {
        display: block !important;
    }
    
    /* Header Container */
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        padding: 0;
        margin: 0;
        width: 100%;
        height: 70px;
    }
    
    /* Navbar */
    .navbar {
        padding: 0;
        height: 70px;
        display: flex;
        align-items: center;
    }
    
    /* Container */
    .navbar-container {
        width: 100%;
        max-width: none;
        padding: 0 20px;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 70px;
    }
    
    /* Logo - Links positioniert */
    .navbar-brand {
        position: static;
        margin: 0;
        transform: none;
        left: auto;
        display: flex;
        align-items: center;
    }
    
    .navbar-logo {
        height: 35px;
        width: auto;
    }
    
    /* Mobile Toggle - Rechts positioniert */
    .navbar-mobile-toggle {
        position: static;
        right: auto;
        margin: 0;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        padding: 10px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .navbar-mobile-toggle:hover {
        background: rgba(240, 58, 112, 0.1);
        color: #f03a70;
    }
    
    .navbar-mobile-toggle i {
        color: inherit;
    }
    
    /* Mobile Navigation Menu - Fullscreen Modern Design */
    .mobile-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: linear-gradient(135deg, 
            rgba(0, 0, 0, 0.95) 0%,
            rgba(10, 10, 20, 0.95) 30%,
            rgba(20, 10, 30, 0.95) 70%,
            rgba(0, 0, 0, 0.95) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        transform: scale(0.8);
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 99999;
        overflow-y: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        padding: 2rem;
    }
    
    .mobile-nav.active {
        transform: scale(1);
        opacity: 1;
        visibility: visible;
    }
    
    /* Animated Background Effects */
    .mobile-nav::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(circle at 30% 40%, rgba(240, 58, 112, 0.15) 0%, transparent 60%),
            radial-gradient(circle at 70% 60%, rgba(0, 166, 251, 0.15) 0%, transparent 60%),
            radial-gradient(circle at 50% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
        animation: floatingBg 15s ease-in-out infinite;
        z-index: 0;
    }
    
    .mobile-nav::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1;
    }
    
    @keyframes floatingBg {
        0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
        50% { transform: translateY(-15px) rotate(2deg); opacity: 1; }
    }
    
    /* Mobile Nav Links Container */
    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
        padding: 0;
        text-align: center;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        position: relative;
        z-index: 10;
    }
    
    .mobile-nav-item {
        border: none;
        margin: 0;
        transform: translateY(30px);
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .mobile-nav.active .mobile-nav-item {
        transform: translateY(0);
        opacity: 1;
    }
    
    .mobile-nav.active .mobile-nav-item:nth-child(1) { transition-delay: 0.1s; }
    .mobile-nav.active .mobile-nav-item:nth-child(2) { transition-delay: 0.15s; }
    .mobile-nav.active .mobile-nav-item:nth-child(3) { transition-delay: 0.2s; }
    .mobile-nav.active .mobile-nav-item:nth-child(4) { transition-delay: 0.25s; }
    .mobile-nav.active .mobile-nav-item:nth-child(5) { transition-delay: 0.3s; }
    .mobile-nav.active .mobile-nav-item:nth-child(6) { transition-delay: 0.35s; }
    
    .mobile-nav-item a {
        display: block;
        padding: 1rem 1.2rem;
        font-size: 1.2rem;
        font-weight: 600;
        color: #ffffff;
        text-decoration: none;
        transition: all 0.3s ease;
        border-radius: 12px;
        margin: 0;
        position: relative;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        letter-spacing: 0.02em;
        text-transform: uppercase;
        font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    .mobile-nav-item a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            transparent, 
            rgba(240, 58, 112, 0.1), 
            transparent);
        transition: left 0.6s ease;
    }
    
    .mobile-nav-item a:hover::before {
        left: 100%;
    }
    
    .mobile-nav-item a:hover,
    .mobile-nav-item a.active {
        color: #ffffff;
        background: linear-gradient(135deg, rgba(240, 58, 112, 0.3), rgba(0, 166, 251, 0.3));
        border-color: rgba(240, 58, 112, 0.5);
        box-shadow: 
            0 8px 32px rgba(240, 58, 112, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        transform: translateY(-3px) scale(1.05);
    }
    
    /* Dropdown für Mobile - Einfaches Design */
    .mobile-dropdown-menu {
        padding: 0.5rem 0;
        background: rgba(0, 0, 0, 0.3);
        margin-top: 0.5rem;
        border-radius: 10px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-dropdown-menu a {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.8);
        background: none;
        border: none;
        margin: 0;
        text-transform: none;
        border-radius: 0;
    }
    
    .mobile-dropdown-menu a:hover {
        color: #f03a70;
        background: rgba(240, 58, 112, 0.1);
        transform: none;
    }
    
    /* Body Padding für Fixed Header */
    body {
        padding-top: 70px;
    }
    
    /* Hero Section Anpassung */
    .hero {
        padding-top: 2rem;
    }
}

/* Sehr kleine Bildschirme */
@media (max-width: 480px) {
    .navbar-container {
        padding: 0 15px;
    }
    
    .navbar-logo {
        height: 30px;
    }
    
    .mobile-nav-links {
        padding: 0 15px;
    }
}

/* Desktop Navigation verstecken auf Mobile/Tablet */
@media (max-width: 1024px) {
    .navbar-mobile-toggle {
        display: block !important;
    }
}

/* Desktop: Mobile Toggle verstecken */
@media (min-width: 1025px) {
    .navbar-mobile-toggle {
        display: none !important;
    }
    
    .mobile-nav {
        display: none !important;
    }
}
/* Mobile Bottom Navigation - nur auf Mobile sichtbar */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    z-index: 1000;
    display: none;
}

/* Verstecke auf Desktop komplett */
@media (min-width: 1025px) {
    .mobile-bottom-nav {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .mobile-bottom-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    
    body {
        padding-bottom: 80px;
    }
}

/* Portfolio Submenu - nur auf Mobile/Tablet */
@media (min-width: 1025px) {
    .portfolio-submenu {
        display: none !important;
    }
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 12px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    border-radius: 12px;
    cursor: pointer;
    min-width: 60px;
}

.mobile-bottom-nav .nav-item:hover,
.mobile-bottom-nav .nav-item.active {
    color: #f03a70;
    background: rgba(240, 58, 112, 0.1);
    transform: translateY(-2px);
}

.mobile-bottom-nav .nav-item i {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.mobile-bottom-nav .nav-item span {
    font-size: 0.75rem;
    font-weight: 500;
}

/* Portfolio Submenu */
.portfolio-submenu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.portfolio-submenu.active {
    opacity: 1;
    visibility: visible;
}

.submenu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.submenu-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.95), rgba(0, 0, 0, 0.95));
    backdrop-filter: blur(20px);
    border-radius: 20px 20px 0 0;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-submenu.active .submenu-content {
    transform: translateY(0);
}

.submenu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.submenu-header h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    background: linear-gradient(45deg, #f03a70, #00a6fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.close-btn:hover {
    background: rgba(240, 58, 112, 0.2);
    transform: rotate(90deg);
}

.submenu-items {
    display: grid;
    gap: 15px;
}

.submenu-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.submenu-item:hover {
    background: rgba(240, 58, 112, 0.1);
    border-color: rgba(240, 58, 112, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 58, 112, 0.2);
    color: white;
}

.submenu-item i {
    font-size: 1.5rem;
    margin-right: 15px;
    color: #f03a70;
    width: 30px;
    text-align: center;
}

.submenu-item div {
    flex: 1;
}

.item-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.item-desc {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Animation für das Aufgleiten */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.portfolio-submenu.active .submenu-content {
    animation: slideUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* 
 * BORDER REMOVER - Höchste Priorität
 * Diese Datei entfernt alle Rahmen und Schatten von Thumbnails
 */

/* Allgemeine Regel für alle Thumbnails */
.showcase-thumbnail {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Spezifische Regeln für alle Zustände und Klassen */
.showcase-thumbnail.active,
.showcase-thumbnail:hover,
.showcase-thumbnail.active:hover,
.showcase-thumbnail::before,
.showcase-thumbnail::after {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Alle spezifischen Thumbnails einzeln auflisten */
.showcase-thumbnail.gosteli,
.showcase-thumbnail.ibex,
.showcase-thumbnail.scheidegger,
.showcase-thumbnail.golf,
.showcase-thumbnail.landhaus,
.showcase-thumbnail.egelektro,
.showcase-thumbnail.boedeli,
.showcase-thumbnail.adelboden,
.showcase-thumbnail.brunne,
.showcase-thumbnail.actionsport,
.showcase-thumbnail.aarejungfrau,
.showcase-thumbnail.arabservice,
.showcase-thumbnail.ticketshop,
.showcase-thumbnail.autoga,
.showcase-thumbnail.kosmetikbeo,
.showcase-thumbnail.compiaz {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Auch für alle aktiven und hover Zustände der spezifischen Thumbnails */
.showcase-thumbnail.gosteli.active, .showcase-thumbnail.gosteli:hover,
.showcase-thumbnail.ibex.active, .showcase-thumbnail.ibex:hover,
.showcase-thumbnail.scheidegger.active, .showcase-thumbnail.scheidegger:hover,
.showcase-thumbnail.golf.active, .showcase-thumbnail.golf:hover,
.showcase-thumbnail.landhaus.active, .showcase-thumbnail.landhaus:hover,
.showcase-thumbnail.egelektro.active, .showcase-thumbnail.egelektro:hover,
.showcase-thumbnail.boedeli.active, .showcase-thumbnail.boedeli:hover,
.showcase-thumbnail.adelboden.active, .showcase-thumbnail.adelboden:hover,
.showcase-thumbnail.brunne.active, .showcase-thumbnail.brunne:hover,
.showcase-thumbnail.actionsport.active, .showcase-thumbnail.actionsport:hover,
.showcase-thumbnail.aarejungfrau.active, .showcase-thumbnail.aarejungfrau:hover,
.showcase-thumbnail.arabservice.active, .showcase-thumbnail.arabservice:hover,
.showcase-thumbnail.ticketshop.active, .showcase-thumbnail.ticketshop:hover,
.showcase-thumbnail.autoga.active, .showcase-thumbnail.autoga:hover,
.showcase-thumbnail.kosmetikbeo.active, .showcase-thumbnail.kosmetikbeo:hover,
.showcase-thumbnail.compiaz.active, .showcase-thumbnail.compiaz:hover {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Überschreibe alle inline Styles */
[style*="border"] .showcase-thumbnail {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Überschreibe alle anderen möglichen Selektoren */
body .portfolio-showcase .showcase-thumbnail,
html body .portfolio-showcase .showcase-thumbnail,
#content .portfolio-showcase .showcase-thumbnail,
.portfolio-showcase .showcase-thumbnail {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Überschreibe alle Animation-Keyframes */
@keyframes none {
    0% { border-color: transparent !important; box-shadow: none !important; }
    100% { border-color: transparent !important; box-shadow: none !important; }
}
/* Hero Glow Buttons Container */
.hero-glow-buttons {
  display: flex !important;
  gap: 1.5rem;
  margin-top: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative !important;
  z-index: 99999999 !important;
}

/* Glow Button */
.glow-button {
  position: relative !important;
  cursor: pointer !important;
  padding: 1rem 2rem;
  text-align: center;
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  text-transform: uppercase;
  color: white !important;
  text-decoration: none !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0.5rem;
  transition: transform 0.3s ease-in-out !important;
  overflow: hidden;
  outline-offset: 4px;
  z-index: 99999999 !important;
  pointer-events: auto !important;
}

.glow-button:focus {
  outline: 2px solid white;
  outline-offset: 4px;
}

/* Relative z-20 for text */
.relative {
  position: relative;
}

.z-20 {
  z-index: 20;
}

/* Shine effect */
.glow-shine {
  position: absolute !important;
  left: -75% !important;
  top: 0 !important;
  height: 100% !important;
  width: 50% !important;
  background: rgba(255, 255, 255, 0.2) !important;
  transform: rotate(12deg) !important;
  z-index: 10 !important;
  filter: blur(20px) !important;
  transition: all 1s ease-in-out !important;
  pointer-events: none !important;
}

.glow-button:hover .glow-shine {
  left: 125% !important;
}

/* Border spans */
.glow-border {
  position: absolute !important;
  width: 50% !important;
  transition: all 0.3s !important;
  display: block !important;
  border-color: #c44257 !important;
  filter: drop-shadow(0 0 10px rgba(196, 66, 87, 0.5)) !important;
  pointer-events: none !important;
}

/* Top Left */
.glow-tl {
  height: 20% !important;
  border-left: 2px solid !important;
  border-top: 2px solid !important;
  border-top-left-radius: 0.5rem !important;
  top: 0 !important;
  left: 0 !important;
}

/* Top Right */
.glow-tr {
  height: 60% !important;
  border-right: 2px solid !important;
  border-top: 2px solid !important;
  border-top-right-radius: 0.5rem !important;
  top: 0 !important;
  right: 0 !important;
}

.glow-button:hover .glow-tr {
  height: 90% !important;
}

/* Bottom Left */
.glow-bl {
  height: 60% !important;
  border-left: 2px solid !important;
  border-bottom: 2px solid !important;
  border-bottom-left-radius: 0.5rem !important;
  left: 0 !important;
  bottom: 0 !important;
}

.glow-button:hover .glow-bl {
  height: 90% !important;
}

/* Bottom Right */
.glow-br {
  height: 20% !important;
  border-right: 2px solid !important;
  border-bottom: 2px solid !important;
  border-bottom-right-radius: 0.5rem !important;
  right: 0 !important;
  bottom: 0 !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-glow-buttons {
    gap: 1rem;
  }
  
  .glow-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-glow-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .glow-button {
    width: 100%;
  }
}
#liquid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
}
/* Portfolio Page Styles - Flip Card Mosaik Design */

/* Hero Section */
.portfolio-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    overflow: hidden;
    padding: 120px 0 60px;
}

.portfolio-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.portfolio-hero .gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
}

.portfolio-hero .container {
    position: relative;
    z-index: 2;
}

.portfolio-hero .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.portfolio-hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.portfolio-hero .hero-subtitle {
    font-size: 1.25rem;
    color: #d1d1d1;
    max-width: 600px;
    margin: 0 auto;
}

/* Portfolio Grid Section */
.portfolio-grid-section {
    background: #000000;
    padding: 4rem 0 6rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

/* === FLIP CARD === */
.flip-card {
    overflow: visible;
    width: 100%;
    aspect-ratio: 3 / 4;
    perspective: 1000px;
}

.flip-card .flip-content {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    position: relative;
}

.flip-card .flip-front,
.flip-card .flip-back {
    background-color: #111111;
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
}

/* === BACK (default visible side — Logo + glow) === */
.flip-card .flip-back {
    width: 100%;
    height: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.flip-card .flip-back::before {
    position: absolute;
    content: '';
    display: block;
    width: 160px;
    height: 160%;
    background: linear-gradient(90deg, transparent, #f03a70, #f03a70, #f03a70, #f03a70, transparent);
    animation: borderGlow 7500ms infinite linear;
}

.flip-card .back-content {
    position: absolute;
    width: 99%;
    height: 99%;
    background-color: #111111;
    border-radius: 12px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.flip-card .back-content img.client-logo {
    width: 85%;
    max-width: 200px;
    max-height: 65%;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.flip-card .back-content img.client-logo.no-filter {
    filter: none;
}

/* === FRONT (shown on hover — project info) === */
.flip-card .flip-front {
    transform: rotateY(180deg);
    color: white;
}

.flip-card .flip-front .front-content {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.flip-card .flip-front .badge {
    background-color: rgba(240, 58, 112, 0.3);
    border: 1px solid rgba(240, 58, 112, 0.5);
    padding: 4px 12px;
    border-radius: 10px;
    backdrop-filter: blur(2px);
    width: fit-content;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.flip-card .flip-front .description {
    box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.5);
    width: 100%;
    padding: 12px;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 8px;
}

.flip-card .flip-front .title {
    font-size: 0.8rem;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.flip-card .flip-front .title p {
    margin: 0;
    width: 80%;
    font-size: 0.8rem;
    line-height: 1.3;
}

.flip-card .flip-front .card-footer {
    color: rgba(255, 255, 255, 0.5);
    margin-top: 6px;
    font-size: 0.7rem;
}

.flip-card .flip-front .card-footer a {
    color: #f03a70;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.flip-card .flip-front .card-footer a:hover {
    color: #ff6b9d;
}

.flip-card .flip-front .img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    top: 0;
    left: 0;
}

/* Animated background circles */
.flip-card .circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #f03a70;
    position: relative;
    filter: blur(15px);
    animation: floating 2600ms infinite linear;
}

.flip-card .circle#bottom {
    background-color: #ff6b9d;
    left: 50px;
    top: 0;
    width: 150px;
    height: 150px;
    animation-delay: -800ms;
}

.flip-card .circle#right {
    background-color: #e91e63;
    left: 160px;
    top: -80px;
    width: 30px;
    height: 30px;
    animation-delay: -1800ms;
}

/* Hover flip */
.flip-card:hover .flip-content {
    transform: rotateY(180deg);
}

/* Animations */
@keyframes borderGlow {
    0% {
        transform: rotateZ(0deg);
    }
    100% {
        transform: rotateZ(360deg);
    }
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Visit button on front */
.flip-card .visit-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 6px 14px;
    background: linear-gradient(45deg, #f03a70, #e91e63);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: fit-content;
}

.flip-card .visit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(240, 58, 112, 0.4);
    color: white;
}

.flip-card .visit-btn i {
    font-size: 0.65rem;
}

/* CTA Section */
.portfolio-cta {
    background: #000000;
    padding: 6rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: #d1d1d1;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #f03a70, #e91e63);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(240, 58, 112, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(240, 58, 112, 0.6);
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .portfolio-hero {
        min-height: 40vh;
        padding: 100px 0 40px;
    }
    
    .portfolio-hero h1 {
        font-size: 2.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 1rem;
    }
    
    .portfolio-cta {
        padding: 4rem 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .flip-card .back-content img.client-logo {
        max-width: 120px;
    }
}

/* Frontpage Flip-Card Grid (4+4) */
.portfolio-flipcard-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
    gap: 1.5rem !important;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (max-width: 480px) {
    .portfolio-flipcard-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 0 1rem !important;
    }
}
/* ============================================
   COMPIAZ PULSE - Blog/News Page Styles
   ============================================ */

/* Hero Section */
.pulse-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
    padding-top: 120px;
}

.pulse-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.pulse-hero .animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pulse-hero .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.pulse-hero .shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #f03a70, #ff6b9d);
    top: -100px;
    right: -100px;
    animation: pulse-float-1 8s ease-in-out infinite;
}

.pulse-hero .shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #00a6fb, #0077b5);
    bottom: -100px;
    left: -100px;
    animation: pulse-float-2 10s ease-in-out infinite;
}

.pulse-hero .shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-float-3 12s ease-in-out infinite;
}

@keyframes pulse-float-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 20px) scale(1.1); }
}

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

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

.pulse-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.pulse-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.pulse-hero .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Pulse Icon Animation */
.pulse-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(240, 58, 112, 0.2), rgba(0, 166, 251, 0.2));
    margin-bottom: 2rem;
    position: relative;
}

.pulse-icon i {
    font-size: 2rem;
    background: linear-gradient(45deg, #f03a70, #00a6fb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pulse-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(240, 58, 112, 0.3);
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================
   Articles Grid
   ============================================ */
.pulse-articles {
    padding: 5rem 0;
    background: #0a0a0a;
    min-height: 50vh;
}

.pulse-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

/* Solo Card – einzige sichtbare Karte nach Filterung */
.pulse-card.pulse-solo {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    border-radius: 24px;
    overflow: hidden;
}

.pulse-card.pulse-solo .pulse-card-image {
    height: 100%;
    min-height: 420px;
}

.pulse-card.pulse-solo .pulse-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pulse-card.pulse-solo .pulse-card-body {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pulse-card.pulse-solo .pulse-card-title {
    font-size: 2rem;
    line-height: 1.2;
}

.pulse-card.pulse-solo .pulse-card-excerpt {
    font-size: 1.05rem;
    line-height: 1.8;
    -webkit-line-clamp: 5;
    line-clamp: 5;
}

/* NEU Badge */
.pulse-new-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #f03a70, #e91e63);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    z-index: 3;
    box-shadow: 0 2px 12px rgba(240, 58, 112, 0.45);
}

/* Standard Article Card */
a.pulse-card,
a.pulse-card:hover,
a.pulse-card:visited,
a.pulse-card:active {
    text-decoration: none !important;
    color: inherit !important;
}

.pulse-card {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.pulse-card:hover {
    border-color: rgba(240, 58, 112, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.pulse-card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.pulse-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pulse-card:hover .pulse-card-image img {
    transform: scale(1.05);
}

.pulse-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.pulse-card-category.cat-tech {
    background: rgba(0, 166, 251, 0.2);
    color: #00a6fb;
    border: 1px solid rgba(0, 166, 251, 0.3);
}

.pulse-card-category.cat-design {
    background: rgba(240, 58, 112, 0.2);
    color: #f03a70;
    border: 1px solid rgba(240, 58, 112, 0.3);
}

.pulse-card-category.cat-news {
    background: rgba(124, 58, 237, 0.2);
    color: #a78bfa;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.pulse-card-category.cat-business {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.pulse-card-category.cat-mobile-app {
    background: rgba(251, 146, 60, 0.2);
    color: #fb923c;
    border: 1px solid rgba(251, 146, 60, 0.3);
}

.pulse-card-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pulse-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.pulse-card-meta i {
    margin-right: 0.3rem;
}

.pulse-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.pulse-card:hover .pulse-card-title {
    color: #f03a70;
}

.pulse-card-excerpt {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pulse-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pulse-card-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pulse-card-author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(240, 58, 112, 0.3);
}

.pulse-card-author-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.pulse-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #f03a70;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pulse-read-more:hover {
    color: #ff6b9d;
    gap: 0.75rem;
}

.pulse-read-more i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.pulse-read-more:hover i {
    transform: translateX(3px);
}

/* ============================================
   Empty State / Coming Soon
   ============================================ */
.pulse-empty {
    text-align: center;
    padding: 5rem 2rem;
}

.pulse-empty-icon {
    font-size: 4rem;
    background: linear-gradient(45deg, #f03a70, #00a6fb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.pulse-empty h3 {
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.pulse-empty p {
    color: rgba(255, 255, 255, 0.5);
    max-width: 400px;
    margin: 0 auto;
}

/* ============================================
   Newsletter CTA
   ============================================ */
.pulse-cta {
    padding: 5rem 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.pulse-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(240, 58, 112, 0.5), rgba(0, 166, 251, 0.5), transparent);
}

.pulse-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.pulse-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pulse-cta-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.pulse-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #f03a70, #ff6b9d);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
}

.pulse-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(240, 58, 112, 0.4);
    color: white;
}

/* ============================================
   Filter Tags
   ============================================ */
.pulse-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.pulse-filter-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.pulse-filter-btn:hover,
.pulse-filter-btn.active {
    background: linear-gradient(135deg, rgba(240, 58, 112, 0.15), rgba(0, 166, 251, 0.15));
    border-color: rgba(240, 58, 112, 0.4);
    color: white;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 992px) {
    .pulse-hero h1 {
        font-size: 3rem;
    }

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

    .pulse-card.pulse-solo {
        grid-template-columns: 1fr;
    }

    .pulse-card.pulse-solo .pulse-card-image {
        min-height: 280px;
    }

    .pulse-card.pulse-solo .pulse-card-body {
        padding: 2rem;
    }

    .pulse-card.pulse-solo .pulse-card-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .pulse-hero {
        min-height: 50vh;
        padding-top: 100px;
    }

    .pulse-hero h1 {
        font-size: 2.2rem;
    }

    .pulse-hero .hero-subtitle {
        font-size: 1rem;
    }

    .pulse-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pulse-articles {
        padding: 3rem 0;
    }

    .pulse-cta-content h2 {
        font-size: 1.8rem;
    }

    .pulse-icon {
        width: 60px;
        height: 60px;
    }

    .pulse-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .pulse-card-body {
        padding: 1.25rem;
    }

    .pulse-card-title {
        font-size: 1.1rem;
    }

    .pulse-card-image {
        height: 180px;
    }
}
