/**
 * MP Media Website - Main Stylesheet
 * Apple Glassmorphism + Neon Design
 */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Skip Link (Accessibility) */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cyan);
    color: #000;
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

:root {
    /* Akzentfarben */
    --cyan: #00f0ff;
    --magenta: #ff00aa;
    --purple: #7b2fff;
    --gold: #ffd700;
    --success: #00ff64;

    /* Hintergründe */
    --bg-dark: #050508;
    --bg-card: #0d0d14;
    --bg-glass: rgba(20, 20, 35, 0.5);

    /* Text */
    --text: #f0f0f5;
    --text-muted: #9090a8;

    /* Glow-Effekte */
    --glow-cyan: 0 0 40px rgba(0, 240, 255, 0.4);
    --glow-magenta: 0 0 40px rgba(255, 0, 170, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Abel', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 20px;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background Effects */
.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.06) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 0;
}

#synapseCanvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.bg-orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(0, 240, 255, 0.06);
    top: -200px;
    right: -200px;
}

.bg-orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(255, 0, 170, 0.04);
    bottom: -150px;
    left: -150px;
}

.bg-orb-3 {
    width: 500px;
    height: 500px;
    background: rgba(123, 47, 255, 0.06);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 5, 8, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Weicher Blur-Übergang unter dem Header */
nav::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 40px;
    background: linear-gradient(to bottom, rgba(5, 5, 8, 0.6), transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    mask-image: linear-gradient(to bottom, black, transparent);
    -webkit-mask-image: linear-gradient(to bottom, black, transparent);
    pointer-events: none;
    transition: all 0.4s;
}

nav.transparent {
    background: transparent;
    border-bottom: none;
}


.nav-logo {
    height: 55px;
    transition: all 0.3s;
}

.nav-logo:hover {
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.5));
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--magenta));
    transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--cyan);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-separator {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 10px;
}

.nav-back {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.nav-back:hover {
    opacity: 0.7;
}

.nav-back i {
    width: 18px;
    height: 18px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    background: none;
    border: none;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--cyan);
    transition: all 0.3s;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 8, 0.98);
    backdrop-filter: blur(30px);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    color: var(--text);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.mobile-menu a:hover {
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
}

/* Page Transition */
.page-transition {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(5, 5, 8, 0.6);
    backdrop-filter: blur(0px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, backdrop-filter 0.5s;
}

.page-transition.active {
    opacity: 1;
    pointer-events: all;
    backdrop-filter: blur(20px);
}

.spinner {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(0, 240, 255, 0.1);
    border-top-color: var(--cyan);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    box-shadow: var(--glow-cyan);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 45px;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 240, 255, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--magenta);
    color: var(--magenta);
    box-shadow: var(--glow-magenta);
    transform: translateY(-4px);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    color: var(--cyan);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    color: var(--cyan);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Glass Cards */
.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateY(-10px);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(0, 240, 255, 0.1);
}

/* Footer */
footer {
    text-align: center;
    padding: 50px;
    color: var(--text-muted);
    font-size: 13px;
    position: relative;
    z-index: 1;
}

footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--cyan);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

/* Main Content */
main {
    position: relative;
    z-index: 1;
    padding: 140px 50px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--cyan);
    border-radius: 3px;
}

/* Coming Soon Box */
.coming-soon {
    text-align: center;
    padding: 100px 40px;
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(123, 47, 255, 0.1));
    border-radius: 20px;
    animation: pulse 2s ease-in-out infinite;
}

.coming-soon-icon i {
    width: 40px;
    height: 40px;
    color: var(--cyan);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.coming-soon h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.coming-soon .btn {
    margin-top: 20px;
}

/* ================================================
   HOMEPAGE - Full Screen Sections
   ================================================ */

/* Scroll Snap Container */
.home-scroll-snap {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
}

/* Full Screen Sections */
.section {
    min-height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 80px 50px;
}

/* Scroll Navigation */
.scroll-nav {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    gap: 0;
    align-items: center;
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    border: 1px solid var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 240, 255, 0.08);
    backdrop-filter: blur(10px);
    margin: 0 10px;
    padding: 0;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3), inset 0 0 15px rgba(0, 240, 255, 0.05);
}

.scroll-arrow i,
.scroll-arrow svg {
    width: 24px;
    height: 24px;
    color: var(--cyan);
    stroke: var(--cyan);
    filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.6));
    transition: all 0.3s;
}

.scroll-arrow:hover {
    border-color: var(--cyan);
    background: rgba(0, 240, 255, 0.2);
    transform: scale(1.2);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.5), inset 0 0 20px rgba(0, 240, 255, 0.1);
}

.scroll-arrow.hidden {
    opacity: 0;
    pointer-events: none;
    width: 0;
    margin: 0;
    transform: scale(0);
}

/* Section Dots */
.section-dots {
    position: fixed;
    top: 50%;
    right: 50px;
    left: auto;
    bottom: auto;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
    background: transparent;
    border: none;
    padding: 0;
    backdrop-filter: none;
    justify-content: center;
    width: auto;
}

.dot {
    width: 10px;
    height: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    background: transparent;
    padding: 0;
}

.dot::before {
    content: attr(data-label);
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    font-size: 11px;
    color: var(--text-muted);
    opacity: 0;
    transition: all 0.3s;
    pointer-events: none;
}

.dot:hover::before {
    opacity: 1;
    right: 20px;
}

.dot:hover {
    border-color: var(--cyan);
    transform: scale(1.3);
}

.dot.active {
    background: var(--cyan);
    border-color: var(--cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

/* ================================================
   HERO SECTION
   ================================================ */

#hero {
    text-align: center;
    padding: 0;
	margin: -80px;
}

.hero-content {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 80px;
    width: 100%;
    max-width: 1200px;
}

.hero-text {
    text-align: left;
    min-width: 420px;
}

.hero-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    opacity: 0;
    animation: fadeInRight 1s 0.8s forwards;
    position: relative;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper img {
    width: 400px;
    height: auto;
    filter: drop-shadow(0 0 60px rgba(0, 240, 255, 0.3)) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--cyan), var(--magenta), transparent);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.hero-logo {
    width: 220px;
    margin-bottom: 0;
    opacity: 0;
    animation: fadeInLeft 1s 0.8s forwards, heroFloat 8s 1.8s ease-in-out infinite;
    filter: drop-shadow(0 0 60px rgba(0, 240, 255, 0.3));
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-25px) scale(1.02); }
}

.terminal-container {
    /* Container behält Höhe durch unsichtbaren Content */
}

.boot-sequence {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    margin-bottom: 15px;
    line-height: 1.8;
}

.boot-line {
    color: var(--text-muted);
    visibility: hidden;
}

.boot-line.visible {
    visibility: visible;
    animation: bootFadeIn 0.3s ease-out;
}

.boot-line .ok-status {
    color: inherit; /* Gleiche Farbe wie Text */
}

@keyframes bootFadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.terminal-prompt {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    margin-bottom: 15px;
    visibility: hidden;
}

.terminal-prompt.visible {
    visibility: visible;
}

.terminal-prompt .prompt {
    color: var(--success);
}

.terminal-prompt .command {
    color: var(--text);
}

.hero-title .line {
    display: block;
    position: relative;
}

.hero-title .line .placeholder {
    visibility: hidden;
}

.hero-title .line .typed {
    position: absolute;
    left: 0;
    top: 0;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: 3px;
}

.hero-title .line {
    display: block;
}

.hero-title .line:nth-child(1) { color: var(--cyan); }
.hero-title .line:nth-child(2) { color: var(--text); }
.hero-title .line:nth-child(3) { color: var(--magenta); }

@keyframes slideIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.cursor {
    color: var(--cyan);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0;
    animation: fadeIn 1s 1.2s forwards;
}

.inline-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: middle;
    margin: 0 2px;
    stroke: currentColor;
    fill: currentColor;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.hero-buttons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 1s 1.5s forwards;
}

/* ================================================
   ABOUT SECTION (Über uns)
   ================================================ */

#about {
    text-align: center;
}

.about-content {
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.about-text {
    text-align: center;
}

.about-intro {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text);
    margin: 30px 0 25px;
    line-height: 1.8;
}

.about-intro strong {
    color: var(--cyan);
}

.about-text-block {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-badges {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.about-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 30px 40px;
    background: rgba(25, 25, 40, 0.5);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    min-width: 250px;
}

.about-badge:hover {
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.about-badge-logo-wrapper {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.about-badge-logo {
    max-height: 100px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.3));
}

/* Altes MP Media Logo etwas kleiner */
.about-badge:first-child .about-badge-logo {
    max-height: 70px;
}

.about-badge-year {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-badge-label {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* ================================================
   STATS SECTION
   ================================================ */


.stats-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s;
}

.stat.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 15px;
}

.stats-trust {
    margin-top: 50px;
    padding: 15px 30px;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 50px;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.target-groups {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.target-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 30px;
    background: rgba(25, 25, 40, 0.5);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    cursor: default;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.target-card:hover {
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.target-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.4s;
}

.target-card:hover .target-icon {
    border-color: var(--cyan);
    box-shadow: var(--glow-cyan);
}

.target-icon i {
    width: 28px;
    height: 28px;
    color: var(--text-muted);
    transition: all 0.3s;
}

.target-card:hover .target-icon i {
    color: var(--cyan);
}

.target-name {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
}

/* ================================================
   SERVICES SECTION
   ================================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    width: 100%;
}

.service-card {
    background: rgba(25, 25, 40, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 50px rgba(0, 240, 255, 0.1);
}

.service-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(123, 47, 255, 0.1));
    border-radius: 16px;
    transition: all 0.4s;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

.service-icon i {
    width: 30px;
    height: 30px;
    color: var(--cyan);
}

.service-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* ================================================
   TECH STACK SECTION
   ================================================ */

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 700px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px 15px;
    border-radius: 16px;
    transition: all 0.4s;
    opacity: 0;
    transform: scale(0.8);
    text-align: center;
}

.tech-item.visible {
    opacity: 1;
    transform: scale(1);
}

.tech-item {
    cursor: pointer;
}

.tech-item:hover {
    background: rgba(0, 240, 255, 0.05);
    transform: translateY(-10px) scale(1.05);
}

/* ================================================
   TECH MODAL
   ================================================ */

.tech-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 8, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.tech-modal {
    background: var(--bg-glass);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 24px;
    padding: 50px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: translateY(50px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 60px rgba(0, 240, 255, 0.15);
}

.tech-modal-overlay.active .tech-modal {
    transform: translateY(0) scale(1);
}

.tech-modal-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.15), rgba(123, 47, 255, 0.15));
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 24px;
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.2);
}

.tech-modal-icon i,
.tech-modal-icon svg {
    width: 50px;
    height: 50px;
    color: var(--cyan);
    stroke: var(--cyan);
}

.tech-modal-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-modal-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.tech-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.tech-modal-close i,
.tech-modal-close svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    stroke: var(--text-muted);
}

.tech-modal-close:hover {
    border-color: var(--cyan);
    background: rgba(0, 240, 255, 0.1);
}

.tech-modal-close:hover i,
.tech-modal-close:hover svg {
    color: var(--cyan);
    stroke: var(--cyan);
}

.tech-modal {
    position: relative;
}

.tech-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    transition: all 0.4s;
}

.tech-item:hover .tech-icon {
    border-color: var(--cyan);
    box-shadow: var(--glow-cyan);
}

.tech-icon i {
    width: 32px;
    height: 32px;
    color: var(--text-muted);
    transition: all 0.3s;
}

.tech-item:hover .tech-icon i {
    color: var(--cyan);
}

.tech-name {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.3;
}

/* ================================================
   CONTACT SECTION (Homepage)
   ================================================ */

#contact {
    text-align: center;
}

.contact-box {
    max-width: 600px;
    padding: 50px;
    background: rgba(25, 25, 40, 0.5);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    position: relative;
}

.contact-box::before,
.contact-box::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(0, 240, 255, 0.15);
    pointer-events: none;
    transition: all 0.4s;
}

.contact-box::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
    border-radius: 30px 0 0 0;
}

.contact-box::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 30px 0;
}

.contact-box:hover::before,
.contact-box:hover::after {
    border-color: var(--cyan);
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.6));
}

.contact-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-phone,
.contact-email {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    color: var(--cyan);
    text-decoration: none;
    padding: 15px 25px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s;
    min-width: 280px;
}

.contact-phone i,
.contact-email i {
    width: 18px;
    height: 18px;
}

.contact-phone:hover,
.contact-email:hover {
    border-color: var(--cyan);
    background: rgba(0, 240, 255, 0.1);
    box-shadow: var(--glow-cyan);
}

.contact-btn {
    margin-top: 25px;
    min-width: 280px;
}

/* Footer in Contact Section */
.footer-info {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-info p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-info .footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 0;
}

.footer-info .footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}

.footer-info .footer-links a::before {
    content: '→';
    font-size: 12px;
    transition: transform 0.3s;
}

.footer-info .footer-links a:hover {
    color: var(--cyan);
}

.footer-info .footer-links a:hover::before {
    transform: translateX(4px);
}

/* ================================================
   COOKIE BANNER (Anti-Cookie)
   ================================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 20px;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
}

.cookie-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
}

.cookie-text strong {
    color: var(--cyan);
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    display: block;
    margin-bottom: 5px;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-family: inherit;
}

.cookie-btn-primary {
    background: var(--cyan);
    color: #000;
}

.cookie-btn-primary:hover {
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.cookie-btn-secondary {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-secondary:hover {
    border-color: var(--text);
    color: var(--text);
}

/* ================================================
   HOMEPAGE SCROLL SNAP
   ================================================ */

body.homepage {
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-padding-top: 80px;
}

/* ================================================
   LEGAL PAGES (Impressum, Datenschutz)
   ================================================ */

.legal-page main {
    max-width: 800px;
    line-height: 1.8;
}

.legal-page h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-page h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cyan);
    margin: 40px 0 20px;
    letter-spacing: 1px;
}

.legal-page p,
.legal-page address {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-style: normal;
}

.legal-page ul {
    color: var(--text-muted);
    margin: 15px 0 15px 25px;
}

.legal-page li {
    margin-bottom: 8px;
}

.legal-page a {
    color: var(--cyan);
    text-decoration: none;
    transition: color 0.3s;
}

.legal-page a:hover {
    color: var(--magenta);
}

/* Legal Page Contact Box (Impressum) */
.legal-contact-box {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
}

.legal-contact-box p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.legal-contact-box i {
    width: 20px;
    height: 20px;
    color: var(--cyan);
}

/* Datenschutz Specific */
.legal-page .intro {
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.legal-page .intro strong {
    color: var(--cyan);
}

.legal-page .no-tracking {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 255, 100, 0.05);
    border: 1px solid rgba(0, 255, 100, 0.2);
    border-radius: 12px;
    padding: 20px 25px;
    margin: 20px 0;
}

.legal-page .no-tracking i {
    width: 24px;
    height: 24px;
    color: var(--success);
    flex-shrink: 0;
}

.legal-page .no-tracking span {
    color: var(--text);
}

.legal-page .highlight-box {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 16px;
    padding: 25px 30px;
    margin: 25px 0;
}

/* ================================================
   CONTACT PAGE (Kontaktformular)
   ================================================ */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
}

.contact-info h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    transition: all 0.3s;
}

.contact-method:hover {
    background: rgba(0, 240, 255, 0.05);
}

.contact-method i {
    width: 24px;
    height: 24px;
    color: var(--cyan);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-method-content h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text);
}

.contact-method-content a {
    color: var(--text-muted);
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    transition: color 0.3s;
}

.contact-method-content a:hover {
    color: var(--cyan);
}

.contact-method-content p {
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 5px;
}

.contact-note {
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 12px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.contact-note strong {
    color: var(--cyan);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
}

.contact-form-wrapper h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text);
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.5;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236a6a8a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--text);
}

.contact-form-wrapper .btn {
    width: 100%;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact-form-wrapper .btn i {
    width: 18px;
    height: 18px;
}

.form-privacy {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 20px;
    line-height: 1.6;
}

.form-privacy a {
    color: var(--cyan);
    text-decoration: none;
}

.form-privacy a:hover {
    text-decoration: underline;
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 40px;
}

.form-success i {
    width: 60px;
    height: 60px;
    color: var(--success);
    margin-bottom: 20px;
}

.form-success h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.form-success p {
    color: var(--text-muted);
}

/* Form Error */
.form-error {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 50, 50, 0.1);
    border: 1px solid rgba(255, 50, 50, 0.3);
    border-radius: 12px;
    margin-bottom: 25px;
}

.form-error i {
    width: 24px;
    height: 24px;
    color: #ff5050;
    flex-shrink: 0;
}

.form-error p {
    color: var(--text);
    font-size: 14px;
    margin: 0;
}

/* ================================================
   ERROR PAGE (404)
   ================================================ */

.error-page {
    min-height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 20px;
}

.error-code {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(6rem, 20vw, 12rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}

.error-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.error-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 400px;
    margin-bottom: 30px;
}

/* ================================================
   RESPONSIVE - Mobile Styles ausgelagert
   ================================================ */

/* Mobile Styles sind jetzt in mobile.css
   Bei Problemen: In head.php mobile.css durch mobile-old.css ersetzen */
