/* ========================================
   Basis-Variablen & Reset
======================================== */
:root {
    --neon-green: #00ff00;
    --neon-green-light: #39ff14;
    --neon-green-dark: #00cc00;
    --gold: #d4af37;
    --bg-dark: #0a0a0a;
    --bg-secondary: #121212;
    --bg-tertiary: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Altersverifikation Modal
======================================== */
/* ========================================
   Altersverifikation Modal - Modern Design
   ======================================== */
.age-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: blur(15px);
}

.age-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-modal-content-modern {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, #0d0d0d 50%, var(--bg-tertiary) 100%);
    padding: 60px 50px;
    border-radius: 30px;
    text-align: center;
    max-width: 600px;
    width: 90%;
    border: 3px solid var(--neon-green);
    box-shadow: 
        0 0 60px rgba(0, 255, 0, 0.4),
        0 20px 80px rgba(0, 0, 0, 0.8),
        inset 0 0 80px rgba(0, 255, 0, 0.03);
    animation: modalFadeIn 0.6s ease;
    position: relative;
    overflow: hidden;
}

.age-modal-content-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 0, 0.08) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

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

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.age-logo-container {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.age-logo-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: logoPulseAge 3s ease-in-out infinite;
}

.age-logo-text-main {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--neon-green);
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(0, 255, 0, 0.8);
    line-height: 1;
}

.age-logo-text-sub {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--neon-green);
    letter-spacing: 6px;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
    margin-top: 5px;
}

@keyframes logoPulseAge {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(0, 255, 0, 0.5));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 35px rgba(0, 255, 0, 0.8));
        transform: scale(1.05);
    }
}

.age-icon-18 {
    display: inline-block;
    font-size: 48px;
    font-weight: 900;
    color: var(--neon-green);
    background: rgba(0, 255, 0, 0.1);
    border: 3px solid var(--neon-green);
    border-radius: 50%;
    width: 90px;
    height: 90px;
    line-height: 84px;
    margin: 20px auto;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
    animation: pulse18 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes pulse18 {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 50px rgba(0, 255, 0, 0.6);
        transform: scale(1.08);
    }
}

.age-modal-content-modern h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    margin: 25px 0 15px;
    color: var(--neon-green);
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.age-main-text {
    font-size: 18px;
    color: var(--text-light);
    margin: 15px 0 10px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.age-sub-text {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 35px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.age-buttons-modern {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.btn-age-confirm,
.btn-age-deny {
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-age-confirm {
    background: var(--neon-green);
    color: #000;
    box-shadow: 
        0 0 30px rgba(0, 255, 0, 0.5),
        0 5px 20px rgba(0, 0, 0, 0.3);
}

.btn-age-confirm::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-age-confirm:hover::before {
    width: 300px;
    height: 300px;
}

.btn-age-confirm:hover {
    background: var(--neon-green-light);
    box-shadow: 
        0 0 50px rgba(0, 255, 0, 0.8),
        0 8px 30px rgba(0, 0, 0, 0.4);
    transform: translateY(-3px) scale(1.02);
}

.btn-age-confirm span,
.btn-age-deny span {
    font-size: 22px;
    position: relative;
    z-index: 1;
}

.btn-age-deny {
    background: transparent;
    color: #ff4444;
    border: 2px solid #ff4444;
}

.btn-age-deny:hover {
    background: rgba(255, 68, 68, 0.1);
    color: #ff6666;
    border-color: #ff6666;
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.3);
    transform: translateY(-2px);
}

.age-footer-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* ========================================
   Legacy Button Styles (for other sections)
   ======================================== */
.btn-primary, .btn-secondary {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--neon-green);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.btn-primary:hover {
    background: var(--neon-green-light);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.8);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-gray);
    border: 2px solid var(--text-gray);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

/* Responsive für Age Modal */
@media (max-width: 768px) {
    .age-modal-content-modern {
        padding: 40px 30px;
        max-width: 90%;
    }
    
    .age-logo-text-main {
        font-size: 42px;
        letter-spacing: 3px;
    }
    
    .age-logo-text-sub {
        font-size: 15px;
        letter-spacing: 4px;
    }
    
    .age-modal-content-modern h2 {
        font-size: 28px;
    }
    
    .age-icon-18 {
        width: 70px;
        height: 70px;
        line-height: 64px;
        font-size: 36px;
    }
    
    .btn-age-confirm,
    .btn-age-deny {
        padding: 15px 40px;
        font-size: 16px;
    }
}

/* ========================================
   Navigation
======================================== */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 255, 0, 0.2);
}

#navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 20px rgba(0, 255, 0, 0.2);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: var(--transition);
}

/* Navigation Logo - Kein Pulsieren */
.logo:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--neon-green);
    letter-spacing: 2.5px;
}

.logo-subtitle {
    font-size: 14px;
    color: #ffffff;
    letter-spacing: 5px;
    margin-top: -5px;
    margin-left: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-green);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--neon-green);
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--neon-green);
    transition: var(--transition);
}

/* ========================================
   Hero Section
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://page.gensparksite.com/v1/base64_upload/0e7cd47548a8fd3eee4683301b41786b');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 20, 0, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease;
}

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

/* Hero Logo - Groß & Pulsierend */
.hero-logo-pulse {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    animation: heroLogoPulse 2.5s ease-in-out infinite;
}

@keyframes heroLogoPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(0, 255, 0, 0.6));
    }
    50% {
        transform: scale(1.08);
        filter: drop-shadow(0 0 25px rgba(0, 255, 0, 0.9));
    }
}

.hero-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 96px;
    font-weight: 700;
    color: var(--neon-green);
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(0, 255, 0, 0.6);
}

.hero-logo-subtitle {
    font-size: 18px;
    color: var(--neon-green);
    letter-spacing: 8px;
    margin-top: -8px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-gray);
    margin-bottom: 50px;
    margin-top: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Hero Buttons - 5 einheitliche Buttons mit Move-Effekt */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.btn-hero-unified {
    padding: 16px 36px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 28px;
    background: var(--neon-green);
    color: #000;
    border: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 255, 0, 0.4);
    transition: all 0.4s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Move-Effekt bei Hover */
.btn-hero-unified:hover {
    background: var(--neon-green-light);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 255, 0, 0.6);
    transform: translateX(10px) translateY(-2px);
    color: #000;
}

/* Touch-Feedback für Mobile */
.btn-hero-unified:active {
    transform: scale(0.97);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6), 0 0 15px rgba(0, 255, 0, 0.4);
}

/* Zusätzlicher Glow-Effekt */
.btn-hero-unified::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-hero-unified:hover::before {
    left: 100%;
}

/* ========================================
   Live Monitor Section - Neu gestaltet
======================================== */
.live-monitor-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-secondary) 100%);
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
}

.live-monitor-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    background: var(--bg-tertiary);
    padding: 50px;
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 0, 0.2);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.live-monitor-card:hover {
    border-color: var(--neon-green);
    box-shadow: 0 10px 60px rgba(0, 255, 0, 0.2);
}

.monitor-visual {
    position: relative;
}

.monitor-screen {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 40px;
    border-radius: 15px;
    border: 3px solid var(--neon-green);
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.4), inset 0 0 30px rgba(0, 255, 0, 0.1);
    text-align: center;
    position: relative;
}

.live-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 0, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid var(--neon-green);
}

.live-dot {
    width: 10px;
    height: 10px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--neon-green);
}

@keyframes livePulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.live-text {
    color: var(--neon-green);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.monitor-icon {
    color: var(--neon-green);
    margin: 30px 0;
    filter: drop-shadow(0 0 20px rgba(0, 255, 0, 0.6));
}

.monitor-size {
    font-size: 18px;
    font-weight: 700;
    color: var(--neon-green);
    margin-top: 20px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.monitor-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--neon-green);
    margin-bottom: 20px;
}

.monitor-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.monitor-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.monitor-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 32px;
    min-width: 50px;
    text-align: center;
}

.feature-content h4 {
    color: var(--neon-green);
    font-size: 18px;
    margin-bottom: 5px;
}

.feature-content p {
    color: var(--text-gray);
    font-size: 14px;
}

.monitor-note {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 255, 0, 0.05);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 3px solid var(--neon-green);
    margin-top: 30px;
}

.monitor-note svg {
    color: var(--neon-green);
    min-width: 20px;
}

.monitor-note span {
    font-size: 14px;
    color: var(--text-gray);
    font-style: italic;
}

/* ========================================
   Services Section
======================================== */
.services {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.services-centered {
    text-align: center;
}

.services-centered .section-title,
.services-centered .section-subtitle {
    text-align: center;
}

.services-centered .services-grid {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--bg-tertiary);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 255, 0, 0.2);
}

.service-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--neon-green);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ========================================
   Cooperation Section
======================================== */
.cooperation-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-dark) 100%);
}

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

.cooperation-card {
    background: var(--bg-tertiary);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 0, 0.2);
    transition: var(--transition);
}

.cooperation-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 255, 0, 0.3);
}

.cooperation-link {
    display: block;
    padding: 40px 30px;
    text-decoration: none;
    color: inherit;
}

.cooperation-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--neon-green);
    filter: drop-shadow(0 0 10px rgba(0, 255, 0, 0.5));
}

.cooperation-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--neon-green);
    margin-bottom: 10px;
    text-align: center;
}

.cooperation-url {
    text-align: center;
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 20px;
    font-style: italic;
}

.cooperation-description {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: center;
}

.cooperation-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.coop-tag {
    background: rgba(0, 255, 0, 0.1);
    color: var(--neon-green);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    border: 1px solid var(--neon-green);
}

.cooperation-benefits {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 255, 0, 0.05);
    padding: 15px 25px;
    border-radius: 10px;
    border-left: 3px solid var(--neon-green);
}

.benefit-item svg {
    color: var(--neon-green);
    min-width: 24px;
}

.benefit-item span {
    color: var(--text-gray);
}

/* ========================================
   Ambiente Section
======================================== */
.ambiente {
    padding: 100px 0;
    background: var(--bg-dark);
}

.ambiente-intro {
    text-align: center;
    max-width: 800px;
    margin: 30px auto;
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 16px;
}

.ambiente-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.ambiente-features span {
    color: var(--neon-green);
    font-size: 14px;
    padding: 8px 20px;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 20px;
    border: 1px solid var(--neon-green);
}

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

.ambiente-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.ambiente-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 255, 0, 0.3);
}

.ambiente-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.ambiente-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.ambiente-card:hover .ambiente-image img {
    transform: scale(1.1);
}

.ambiente-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.ambiente-card:hover .ambiente-overlay {
    transform: translateY(0);
}

.ambiente-overlay h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

/* ========================================
   Ladies Section
======================================== */
.ladies {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.ladies-content {
    max-width: 700px;
    margin: 40px auto;
    text-align: center;
}

.ladies-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.ladies-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* ========================================
   Reviews Section
======================================== */
.reviews {
    padding: 100px 0;
    background: var(--bg-dark);
}

.reviews-rating {
    text-align: center;
    margin: 40px 0 60px;
}

.rating-number {
    font-size: 64px;
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: 10px;
}

.rating-stars {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 10px;
}

.rating-text {
    color: var(--text-gray);
    font-size: 14px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--bg-tertiary);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.review-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.2);
}

.review-stars {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 15px;
}

.review-text {
    color: var(--text-gray);
    line-height: 1.8;
    font-style: italic;
}

/* ========================================
   Contact Section
======================================== */
.contact {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--neon-green);
    margin-bottom: 10px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 28px;
    min-width: 40px;
}

.contact-item strong {
    color: var(--neon-green);
    display: block;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

.contact-item a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--neon-green);
}

.contact-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.contact-map {
    border-radius: 15px;
    overflow: hidden;
    height: 500px;
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
}

/* ========================================
   Footer
======================================== */
.footer {
    background: var(--bg-dark);
    padding: 60px 0 30px;
    border-top: 2px solid rgba(0, 255, 0, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo p {
    color: var(--text-gray);
    margin-top: 15px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--neon-green);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--neon-green);
}

.footer-contact p {
    color: var(--text-gray);
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-note {
    font-size: 12px;
    font-style: italic;
}

.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
}

.footer-legal a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--neon-green);
}

.footer-legal .separator {
    color: var(--text-gray);
}

.webdesign-credit {
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 15px;
}

.webdesign-credit a {
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.webdesign-credit a:hover {
    color: var(--neon-green-light);
    text-decoration: underline;
}

/* ========================================
   Legal Pages - Modern Design
======================================== */
.legal-page-modern {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-secondary) 50%, var(--bg-dark) 100%);
    min-height: 100vh;
}

.legal-hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 20px;
}

.legal-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    color: var(--neon-green);
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
    animation: fadeInUp 0.8s ease;
}

.legal-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.intro-card {
    max-width: 900px;
    margin: 0 auto 50px;
    background: rgba(0, 255, 0, 0.05);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--neon-green);
}

.intro-card p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

/* Card Grid */
.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.legal-card {
    background: var(--bg-tertiary);
    padding: 35px;
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.legal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.05), transparent);
    transition: left 0.5s ease;
}

.legal-card:hover::before {
    left: 100%;
}

.legal-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 255, 0, 0.2);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
}

.legal-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--neon-green);
    margin-bottom: 10px;
    text-align: center;
}

.card-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 20px;
    font-style: italic;
}

.info-block {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 15px;
}

.info-block strong {
    color: var(--text-light);
}

.info-block a {
    color: var(--neon-green);
    text-decoration: none;
    transition: var(--transition);
}

.info-block a:hover {
    color: var(--neon-green-light);
    text-decoration: underline;
}

.info-block p {
    margin: 15px 0;
}

.highlight-card {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1) 0%, rgba(0, 255, 0, 0.05) 100%);
    border: 2px solid var(--neon-green);
}

.design-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 20px;
    color: var(--neon-green);
    text-decoration: none;
    transition: var(--transition);
}

.design-link:hover {
    color: var(--neon-green-light);
    transform: translateX(5px);
}

/* Single Card */
.legal-card-single {
    max-width: 900px;
    margin: 0 auto 50px;
    background: var(--bg-tertiary);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 0, 0.2);
}

.legal-card-single h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--neon-green);
    margin-bottom: 20px;
}

/* Sections */
.legal-sections {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-section {
    background: var(--bg-tertiary);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.legal-section:hover {
    border-color: rgba(0, 255, 0, 0.3);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.legal-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--neon-green);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 255, 0, 0.2);
}

.legal-section h3 {
    font-size: 20px;
    color: var(--neon-green-light);
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-section h4 {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.legal-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 15px;
}

.legal-section ul {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    margin-left: 30px;
}

.legal-section li {
    margin-bottom: 10px;
}

.legal-section a {
    color: var(--neon-green);
    text-decoration: none;
    transition: var(--transition);
}

.legal-section a:hover {
    color: var(--neon-green-light);
    text-decoration: underline;
}

.legal-section strong {
    color: var(--text-light);
}

.note {
    background: rgba(0, 255, 0, 0.05);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 3px solid var(--neon-green);
    margin-top: 15px;
    font-style: italic;
}

.highlight-section {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.08) 0%, rgba(0, 255, 0, 0.03) 100%);
    border: 2px solid rgba(0, 255, 0, 0.3);
}

/* DSGVO Rights Grid */
.dsgvo-section {
    background: var(--bg-secondary);
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.right-item {
    background: var(--bg-tertiary);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 0, 0.2);
    transition: all 0.3s ease;
}

.right-item:hover {
    border-color: var(--neon-green);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 255, 0, 0.2);
}

.right-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.right-item h4 {
    color: var(--neon-green);
    font-size: 16px;
    margin-bottom: 10px;
}

.right-item p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Authority Card */
.authority-card {
    background: var(--bg-secondary);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--neon-green);
    margin-top: 20px;
}

.authority-card h4 {
    color: var(--neon-green);
    margin-bottom: 15px;
}

.authority-card p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Footer Info */
.legal-footer-info {
    max-width: 900px;
    margin: 60px auto 0;
    text-align: center;
}

.stand-info {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 600;
    margin-bottom: 20px;
}

.back-link {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 255, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .legal-hero h1 {
        font-size: 36px;
    }

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

    .legal-card,
    .legal-section,
    .legal-card-single {
        padding: 25px;
    }

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

/* ========================================
   Scroll to Top Button
======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--neon-green);
    color: var(--bg-dark);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    z-index: 999;
}

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

.scroll-to-top:hover {
    background: var(--neon-green-light);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.8);
    transform: translateY(-5px);
}

/* ========================================
   Lightbox
======================================== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border: 3px solid var(--neon-green);
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 255, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 50px;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--neon-green);
    transform: rotate(90deg);
}

/* ========================================
   Animations & Utilities
======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 40px;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-unified {
        width: 85%;
        max-width: 280px;
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .hero-logo-text {
        font-size: 52px;
        letter-spacing: 2px;
    }
    
    .hero-logo-subtitle {
        font-size: 13px;
        letter-spacing: 4px;
    }

    .live-monitor-card {
        grid-template-columns: 1fr;
        padding: 30px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

/* ========================================
   Real Monitor Image - Echtes Foto
======================================== */
.real-monitor-image {
    position: relative;
    max-width: 380px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 3px solid var(--neon-green);
    animation: float 6s ease-in-out infinite;
}

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

.monitor-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    border-radius: 25px;
    border: 2px solid var(--neon-green);
    backdrop-filter: blur(10px);
}

.live-pulse-dot {
    width: 12px;
    height: 12px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
    box-shadow: 0 0 15px var(--neon-green);
}

.live-text-overlay {
    color: var(--neon-green);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
}

/* ========================================
   Section Badge - Modern
======================================== */
.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid var(--neon-green);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    color: var(--neon-green);
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* ========================================
   Live Monitor Section - Modern
======================================== */
.live-monitor-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.monitor-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
}

.monitor-frame {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.monitor-bezel {
    background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 20px;
    border-radius: 20px;
    border: 3px solid var(--neon-green);
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.4), inset 0 0 30px rgba(0, 255, 0, 0.1);
    position: relative;
    width: 400px;
    height: 280px;
}

.live-pulse-indicator {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
    box-shadow: 0 0 20px var(--neon-green);
}

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(0, 255, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 0, 0); }
}

.monitor-content {
    background: #050505;
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.monitor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    flex-grow: 1;
}

.grid-item {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1) 0%, rgba(0, 255, 0, 0.05) 100%);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 8px;
    animation: grid-pulse 3s ease-in-out infinite;
}

.grid-item:nth-child(1) { animation-delay: 0s; }
.grid-item:nth-child(2) { animation-delay: 0.5s; }
.grid-item:nth-child(3) { animation-delay: 1s; }
.grid-item:nth-child(4) { animation-delay: 1.5s; }

@keyframes grid-pulse {
    0%, 100% { opacity: 0.5; border-color: rgba(0, 255, 0, 0.3); }
    50% { opacity: 1; border-color: rgba(0, 255, 0, 0.8); }
}

.monitor-info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(0, 255, 0, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(0, 255, 0, 0.2);
}

.info-text {
    font-size: 11px;
    color: var(--neon-green);
    font-weight: 600;
    letter-spacing: 1px;
}

.live-badge {
    font-size: 11px;
    color: var(--neon-green);
    font-weight: 700;
    animation: blink 2s ease-in-out infinite;
}

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

.monitor-stand {
    width: 80px;
    height: 15px;
    background: linear-gradient(to bottom, #2a2a2a 0%, #1a1a1a 100%);
    margin: 10px auto 0;
    border-radius: 0 0 10px 10px;
    position: relative;
}

.monitor-stand::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 8px;
    background: #1a1a1a;
    border-radius: 50%;
}

.monitor-info-modern {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: var(--bg-tertiary);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-card:hover {
    border-color: var(--neon-green);
    transform: translateX(10px);
    box-shadow: 0 5px 30px rgba(0, 255, 0, 0.2);
}

.info-icon {
    color: var(--neon-green);
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card h4 {
    color: var(--neon-green);
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

.privacy-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
    padding: 20px;
    background: rgba(0, 255, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 0, 0.2);
}

.privacy-note svg {
    color: var(--neon-green);
    min-width: 24px;
}

.privacy-note p {
    color: var(--text-gray);
    font-size: 14px;
    font-style: italic;
}

/* ========================================
   Cooperation Section - Modern
======================================== */
.cooperation-section-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cooperation-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 255, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.partners-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.partner-card-modern {
    background: var(--bg-tertiary);
    border-radius: 20px;
    padding: 35px;
    border: 2px solid rgba(0, 255, 0, 0.2);
    transition: all 0.4s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

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

.partner-card-modern:hover::before {
    left: 100%;
}

.partner-card-modern:hover {
    border-color: var(--neon-green);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 255, 0, 0.3);
}

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

.partner-logo-area {
    position: relative;
}

.logo-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.2) 0%, rgba(0, 255, 0, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    transition: all 0.3s ease;
}

.partner-card-modern:hover .logo-circle {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
}

.partner-title-area h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--neon-green);
    margin-bottom: 5px;
}

.partner-link-badge {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.partner-card-modern:hover .partner-link-badge {
    color: var(--neon-green);
}

.partner-description {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 15px;
}

.partner-features-modern {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-pill {
    padding: 8px 16px;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.partner-card-modern:hover .feature-pill {
    background: rgba(0, 255, 0, 0.2);
    border-color: var(--neon-green);
}

.partner-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--neon-green);
    font-weight: 600;
    font-size: 14px;
    margin-top: auto;
    transition: gap 0.3s ease;
}

.partner-card-modern:hover .partner-cta {
    gap: 20px;
}

.partner-cta svg {
    transition: transform 0.3s ease;
}

.partner-card-modern:hover .partner-cta svg {
    transform: translateX(5px);
}

.partnership-values {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: rgba(0, 255, 0, 0.05);
    border-radius: 30px;
    border: 1px solid rgba(0, 255, 0, 0.2);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(0, 255, 0, 0.1);
    border-color: var(--neon-green);
    transform: translateY(-3px);
}

.value-icon {
    width: 26px;
    height: 26px;
    background: var(--neon-green);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* ========================================
   Location Highlight Section - 2 Häuser
   ======================================== */
.location-highlight {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-secondary) 50%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.location-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(0, 255, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(0, 255, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.location-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
    position: relative;
}

.stat-card {
    background: var(--bg-tertiary);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(0, 255, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 0, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.stat-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 255, 0, 0.3);
}

.stat-icon {
    font-size: 50px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 0, 0.5));
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--neon-green);
    line-height: 1;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.stat-label {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 14px;
    color: var(--text-gray);
}

.houses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 60px 0;
    position: relative;
}

.house-card {
    background: var(--bg-tertiary);
    padding: 45px 35px;
    border-radius: 25px;
    border: 2px solid rgba(0, 255, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.house-card:hover::before {
    left: 100%;
}

.house-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 255, 0, 0.4);
}

.house-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 80px;
    font-weight: 900;
    color: rgba(0, 255, 0, 0.08);
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.house-icon {
    font-size: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(0, 255, 0, 0.5));
}

.house-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--neon-green);
    margin-bottom: 30px;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

.house-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    background: rgba(0, 255, 0, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--neon-green);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(0, 255, 0, 0.1);
    transform: translateX(8px);
}

.feature-icon {
    font-size: 18px;
    color: var(--neon-green);
    font-weight: 700;
}

.feature-item span:last-child {
    color: var(--text-light);
    font-size: 15px;
    font-weight: 500;
}

.location-highlight-banner {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1) 0%, rgba(0, 255, 0, 0.05) 100%);
    padding: 30px 40px;
    border-radius: 20px;
    border: 2px solid var(--neon-green);
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.location-highlight-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 0, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

.banner-icon {
    font-size: 40px;
    margin-bottom: 15px;
    animation: pulse 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.location-highlight-banner p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

.location-highlight-banner strong {
    color: var(--neon-green);
    font-weight: 700;
}

/* Responsive für Location Highlight */
@media (max-width: 768px) {
    .location-stats {
        grid-template-columns: 1fr;
    }
    
    .houses-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .house-number {
        font-size: 60px;
    }
    
    .location-highlight-banner {
        padding: 25px 20px;
    }
    
    .location-highlight-banner p {
        font-size: 16px;
    }
    font-size: 14px;
}

.value-item span {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

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

    .hero-logo-text {
        font-size: 48px;
        letter-spacing: 2px;
    }

    .hero-logo-subtitle {
        font-size: 14px;
        letter-spacing: 4px;
    }

    .hero-title {
        font-size: 32px;
    }

    .services-grid,
    .ambiente-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .live-monitor-modern {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .real-monitor-image {
        max-width: 100%;
        margin: 0 auto;
    }

    .monitor-overlay {
        top: 15px;
        right: 15px;
        padding: 8px 15px;
    }

    .live-text-overlay {
        font-size: 12px;
    }

    .monitor-bezel {
        width: 90%;
        max-width: 400px;
        height: auto;
        aspect-ratio: 16/10;
        margin: 0 auto;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
    }

    .partners-modern-grid {
        grid-template-columns: 1fr;
    }

    .partner-header {
        flex-direction: column;
        text-align: center;
    }

    .partnership-values {
        flex-direction: column;
        align-items: stretch;
    }
}