/* ===================================
   MOVACAM - Modern Landing Page CSS
   =================================== */

/* CSS Variables */
:root {
    /* Colors */
    --primary: #00B4D8;
    --primary-dark: #0096C7;
    --primary-light: #48CAE4;
    --primary-glow: rgba(0, 180, 216, 0.3);
    
    --accent: #00F5FF;
    --accent-glow: rgba(0, 245, 255, 0.2);
    
    --dark: #0A0A0F;
    --dark-light: #12121A;
    --dark-lighter: #1A1A25;
    --dark-card: #15151F;
    
    --light: #FFFFFF;
    --light-muted: #A0A0B0;
    --light-subtle: #6B6B7B;
    
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --gradient-dark: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    
    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-width: 1280px;
    
    /* Effects */
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(20px);
    
    /* Additional Variables */
    --bg-dark: #0A0A0F;
    --bg-darker: #050508;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0B0;
    --text-muted: #6B6B7B;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    background: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--dark);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

/* Global Headings - uppercase, cyan, weight 400 */
h1, h2, h3, h4 {
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   PRELOADER
   =================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-logo .logo-m {
    color: var(--light);
}

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

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 0;
    z-index: 99999;
    transition: var(--transition);
    /* Solid permanent background */
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 212, 255, 0.05);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--light);
}

.nav-logo-img {
    height: 43px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.nav-logo:hover .nav-logo-img {
    filter: brightness(1.2);
}

.logo-icon {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.logo-accent {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--light-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--light);
}

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

.nav-link.nav-cta {
    background: var(--gradient-primary);
    color: var(--dark);
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    font-weight: 400;
    text-transform: uppercase;
}

.nav-link.nav-cta::after {
    display: none;
}

.nav-link.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--primary-glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    cursor: pointer;
    padding: 10px;
    transition: var(--transition);
}

.nav-toggle:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--primary);
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--light);
    transition: var(--transition);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 120px 24px 80px;
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
}

.hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 100%;
    height: 150%;
    background: radial-gradient(ellipse at center, var(--primary-glow) 0%, transparent 60%);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5%, 5%) rotate(5deg); }
    50% { transform: translate(0, 10%) rotate(0deg); }
    75% { transform: translate(-5%, 5%) rotate(-5deg); }
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-content {
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--light-muted);
    margin-bottom: 24px;
    backdrop-filter: var(--glass-blur);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-line.accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--light-muted);
    max-width: 500px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: var(--light);
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px var(--primary-glow);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--light);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
}

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

.btn-large {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    display: inline;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--light-muted);
    margin-top: 4px;
}

/* Hero Image */
.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-lg);
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, var(--primary-glow) 0%, transparent 70%);
    z-index: -1;
}

/* Scroll Indicator */
.scroll-indicator {
    display: none;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ===================================
   TRUSTED SECTION
   =================================== */
.trusted {
    padding: 60px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: var(--dark-light);
}

.trusted-heading {
    text-align: center;
    color: var(--accent);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* Subtle Laser Glow Effect */
.laser-text {
    color: var(--accent);
    text-shadow:
        0 0 4px rgba(0, 212, 255, 0.4),
        0 0 8px rgba(0, 212, 255, 0.2),
        0 0 16px rgba(0, 212, 255, 0.1);
    animation: laserPulse 4s ease-in-out infinite;
}

@keyframes laserPulse {
    0%, 100% {
        text-shadow:
            0 0 4px rgba(0, 212, 255, 0.4),
            0 0 8px rgba(0, 212, 255, 0.2),
            0 0 16px rgba(0, 212, 255, 0.1);
    }
    50% {
        text-shadow:
            0 0 6px rgba(0, 212, 255, 0.5),
            0 0 12px rgba(0, 212, 255, 0.3),
            0 0 24px rgba(0, 212, 255, 0.15);
    }
}

.trusted-subtext {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 28px;
    letter-spacing: 0.05em;
}

.trusted-text {
    text-align: center;
    color: var(--light-subtle);
    font-size: 0.95rem;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--light-muted);
    font-size: 0.9rem;
}

.trust-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

/* ===================================
   SECTION HEADERS
   =================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title .accent {
    color: var(--accent);
    -webkit-text-fill-color: var(--accent);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--light-muted);
    line-height: 1.7;
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features {
    padding: var(--section-padding) 0;
    background: var(--dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-glow) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--light-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.feature-large {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

.feature-large .feature-image {
    flex: 1;
    margin-top: 24px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.feature-large .feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-highlight {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1) 0%, rgba(0, 245, 255, 0.05) 100%);
    border-color: var(--primary);
}

.feature-badge {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    position: relative;
    z-index: 1;
}

.feature-badge span {
    background: var(--glass-bg);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
}

/* ===================================
   SPORTS SECTION
   =================================== */
.sports {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.sports-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--dark-light) 0%, var(--dark) 100%);
    z-index: -1;
}

.sports-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sport-card {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.sport-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.15) 0%, rgba(0, 245, 255, 0.25) 50%, rgba(0, 150, 199, 0.1) 100%);
    box-shadow: 0 8px 32px rgba(0, 245, 255, 0.15), inset 0 1px 0 rgba(0, 245, 255, 0.1);
}

.sport-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.sport-card h3 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.sport-card p {
    color: var(--light-muted);
    font-size: 0.9rem;
}

.sport-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    display: none;
}

.sport-overlay img {
    display: none;
}

.sport-card:hover .sport-overlay {
    opacity: 0;
}

/* Cyan-Verlauf Glow-Effekt bei Hover */
.sport-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 20%, rgba(0, 245, 255, 0.12) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    border-radius: var(--border-radius);
}

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

.sport-card h3,
.sport-card p,
.sport-card .sport-icon-svg {
    position: relative;
    z-index: 1;
}

.sport-card:hover h3 {
    color: var(--accent);
}

.sport-card:hover p {
    color: var(--light);
}

/* ===================================
   SHOWCASE SECTION
   =================================== */
.showcase {
    padding: var(--section-padding) 0;
    background: var(--dark);
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.showcase-text .section-tag {
    margin-bottom: 16px;
}

.showcase-text .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.showcase-text > p {
    color: var(--light-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.showcase-list {
    list-style: none;
    margin-bottom: 32px;
}

.showcase-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 1rem;
}

.showcase-list li:last-child {
    border-bottom: none;
}

.showcase-list svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

/* Shop-Style Gallery */
.shop-gallery {
    display: flex;
    gap: 12px;
    height: 520px;
}

/* Thumbnail-Spalte links */
.shop-gallery-thumbs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 80px;
    flex-shrink: 0;
}

.thumb-arrow {
    width: 44px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    cursor: pointer;
    color: var(--light-muted);
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 0;
}

.thumb-arrow:hover {
    background: rgba(0, 245, 255, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.thumb-arrow:active {
    transform: scale(0.92);
}

.thumb-strip-wrapper {
    height: 392px; /* 5 thumbs: 5*72 + 4*8 gap */
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.thumb-strip {
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.thumb-item {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
    opacity: 0.5;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumb-item:hover {
    opacity: 0.85;
    border-color: rgba(0, 245, 255, 0.4);
}

.thumb-item.active {
    border-color: var(--primary);
    opacity: 1;
    box-shadow: 0 0 12px rgba(0, 245, 255, 0.25);
}

.thumb-item.active img {
    transform: scale(1.05);
}

/* Hauptbild rechts */
.shop-gallery-main {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    background: var(--dark-light);
    transition: border-color 0.3s ease;
}

.shop-gallery-main:hover {
    border-color: var(--primary);
}

.shop-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--dark-light);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.shop-gallery-main:hover img {
    transform: scale(1.02);
}

.shop-gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shop-gallery-label span:first-child {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}

.shop-gallery-label span:last-child {
    font-size: 0.8rem;
    color: var(--light-muted);
    font-family: var(--font-mono);
}

.shop-gallery-zoom {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    color: #fff;
    opacity: 0;
    transition: all 0.3s ease;
}

.shop-gallery-main:hover .shop-gallery-zoom {
    opacity: 1;
}

.shop-gallery-zoom:hover {
    background: rgba(0, 245, 255, 0.2);
    border-color: var(--primary);
    color: var(--primary);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    border-color: var(--primary);
    color: var(--primary);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-nav:hover {
    background: rgba(0, 245, 255, 0.15);
    border-color: var(--primary);
    color: var(--primary);
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

.lightbox-content {
    max-width: 85vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.lightbox.active .lightbox-content img {
    animation: lightboxZoomIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes lightboxZoomIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 600px;
    margin-top: 16px;
    padding: 0 8px;
}

.lightbox-caption #lightbox-label {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

.lightbox-caption #lightbox-counter {
    color: var(--light-muted);
    font-size: 0.85rem;
    font-family: var(--font-mono);
}

/* ===================================
   VIDEOS SECTION
   =================================== */
.videos {
    padding: var(--section-padding) 0;
    background: var(--dark-light);
}

/* Phone Mockup Videos */
.phone-videos-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    max-width: 700px;
    margin: 0 auto;
}

.phone-mockup {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.phone-frame {
    position: relative;
    width: 280px;
    height: 580px;
    background: #1a1a2e;
    border-radius: 44px;
    padding: 12px;
    box-shadow:
        0 0 0 2px rgba(0, 245, 255, 0.15),
        0 0 0 4px rgba(0, 180, 216, 0.08),
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.phone-frame:hover {
    transform: translateY(-8px);
    box-shadow:
        0 0 0 2px rgba(0, 245, 255, 0.3),
        0 0 0 4px rgba(0, 180, 216, 0.15),
        0 0 30px rgba(0, 245, 255, 0.1),
        0 35px 70px rgba(0, 0, 0, 0.5),
        0 15px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #0d0d1a;
    border-radius: 0 0 18px 18px;
    z-index: 10;
}

.phone-notch::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #2a2a3e;
    border-radius: 50%;
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 34px;
    overflow: hidden;
    background: #000;
}

.phone-screen iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: none;
}

.phone-home-bar {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.phone-label {
    text-align: center;
    margin-top: 24px;
}

.phone-label h3 {
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 6px;
    color: var(--light);
}

.phone-label p {
    color: var(--light-muted);
    font-size: 0.85rem;
    max-width: 220px;
}

/* ===================================
   ABOUT & FOUNDER COMBINED SECTION
   =================================== */
.about-combined {
    padding: var(--section-padding) 0;
    background: var(--dark);
    position: relative;
}

/* Tab Navigation */
.about-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 6px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.about-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    background: transparent;
    color: var(--light-muted);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.about-tab:hover {
    color: var(--light);
}

.about-tab.active {
    background: var(--primary);
    color: var(--dark);
}

.about-tab svg {
    flex-shrink: 0;
}

/* Tab Content */
.about-tab-content {
    display: none;
    animation: fadeInTab 0.4s ease;
}

.about-tab-content.active {
    display: block;
}

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

/* Mission Tab Layout */
.about-mission-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Quality Seal */
.quality-seal-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quality-seal {
    width: 340px;
    height: 340px;
    position: relative;
}

.seal-svg {
    width: 100%;
    height: 100%;
}

/* Rotating text ring - slow continuous rotation */
.seal-text-ring {
    animation: sealRotate 30s linear infinite;
    transform-origin: 200px 200px;
}

/* Outer ring - counter-rotation */
.seal-ring-outer {
    animation: sealRotateReverse 45s linear infinite;
    transform-origin: 200px 200px;
}

/* Dashed ring rotation */
.seal-dash-ring {
    animation: sealRotateReverse 20s linear infinite;
    transform-origin: 200px 200px;
}

/* Checkmark draw animation */
.seal-check {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: sealCheckDraw 1.5s ease-out 0.5s forwards;
}

/* Shield subtle pulse */
.seal-shield {
    animation: sealShieldPulse 3s ease-in-out infinite;
    transform-origin: 0px 5px;
}

/* Pulse rings */
.seal-pulse-1 {
    animation: sealPulse 3s ease-out infinite;
    transform-origin: 200px 200px;
}

.seal-pulse-2 {
    animation: sealPulse 3s ease-out 1.5s infinite;
    transform-origin: 200px 200px;
}

/* Stars twinkle */
.seal-stars polygon {
    animation: sealTwinkle 2s ease-in-out infinite;
}

.seal-stars polygon:nth-child(2) { animation-delay: 0.3s; }
.seal-stars polygon:nth-child(3) { animation-delay: 0.6s; }
.seal-stars polygon:nth-child(4) { animation-delay: 0.9s; }

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

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

@keyframes sealCheckDraw {
    to { stroke-dashoffset: 0; }
}

@keyframes sealShieldPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.04); opacity: 0.9; }
}

@keyframes sealPulse {
    0% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.08); opacity: 0; }
    100% { transform: scale(1.15); opacity: 0; }
}

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

.about-mission-text .about-lead,
.about-lead {
    font-size: 1.15rem;
    color: var(--light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-mission-text > p {
    color: var(--light-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.value {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.value-icon {
    width: 48px;
    height: 48px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.value-text h4 {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 4px;
}

.value-text p {
    color: var(--light-muted);
    font-size: 0.9rem;
}

/* Founder Tab Layout */
.about-founder-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: start;
}

.about-founder-image {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.founder-portrait {
    position: relative;
    width: 320px;
    height: 420px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.founder-portrait img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
}

.founder-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.founder-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.founder-credentials .credential {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
}

.founder-name {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 4px;
    color: var(--light);
}

.founder-role {
    color: var(--primary);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.founder-story {
    margin-bottom: 32px;
}

.founder-story .founder-lead {
    font-size: 1.15rem;
    color: var(--light);
    line-height: 1.7;
    margin-bottom: 16px;
    font-weight: 500;
}

.founder-story p {
    color: var(--light-muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

.founder-story strong {
    color: var(--primary);
}

.founder-achievements {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
    padding: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 16px;
}

.achievement-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), rgba(0, 245, 255, 0.8));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.achievement-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--dark);
}

.achievement-text strong {
    display: block;
    color: var(--light);
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 0.95rem;
}

.achievement-text span {
    color: var(--light-muted);
    font-size: 0.85rem;
}

.founder-expertise {
    margin-top: 24px;
}

.founder-expertise h4 {
    color: var(--light);
    font-size: 0.95rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.expertise-tags .tag {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.expertise-tags .tag:hover {
    background: var(--primary);
    color: var(--dark);
}

/* Responsive About Combined */
@media (max-width: 1024px) {
    .about-mission-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-founder-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-founder-image {
        max-width: 350px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-tabs {
        max-width: 100%;
    }
    
    .about-tab {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .founder-portrait {
        width: 260px;
        height: 340px;
    }
    
    .founder-name {
        font-size: 1.4rem;
    }
    
    .achievement {
        flex-direction: column;
        text-align: center;
    }
    
    .quality-seal {
        width: 260px;
        height: 260px;
    }
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--dark-light);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 32px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.quote-icon {
    width: 32px;
    height: 32px;
    color: var(--primary);
    opacity: 0.5;
    margin-bottom: 16px;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--light);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-info strong {
    display: block;
    font-size: 0.95rem;
}

.author-info span {
    color: var(--light-muted);
    font-size: 0.85rem;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.cta-gradient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(ellipse at center, var(--primary-glow) 0%, transparent 50%);
}

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

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--light-muted);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
    padding: var(--section-padding) 0;
    background: var(--dark);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info .section-tag {
    margin-bottom: 16px;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--light-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.contact-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--light-muted);
    margin-bottom: 4px;
}

.contact-item a,
.contact-item span {
    color: var(--light);
    text-decoration: none;
    font-size: 1rem;
}

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

.contact-form-wrapper {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 40px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-full {
    grid-column: span 2;
}

.form-group-checkbox {
    margin-top: 4px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.6);
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    background: rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    position: relative;
    margin-top: 1px;
}

.checkbox-custom::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 11px;
    border: solid #00f5ff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    border-color: #00b4d8;
    background: rgba(0,180,216,0.15);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    transform: rotate(45deg) scale(1);
}

.checkbox-label input[type="checkbox"]:focus + .checkbox-custom {
    border-color: #00b4d8;
    box-shadow: 0 0 0 3px rgba(0,180,216,0.15);
}

.checkbox-text a {
    color: #00b4d8;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.checkbox-text a:hover {
    color: #00f5ff;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--light-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--dark-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-sm);
    padding: 14px 16px;
    font-size: 1rem;
    color: var(--light);
    font-family: var(--font-main);
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--light-subtle);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group select {
    cursor: pointer;
}

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

.contact-form .btn {
    grid-column: span 2;
    margin-top: 8px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    padding: 80px 0 40px;
    background: var(--dark-light);
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: none;
}

.footer-brand-centered {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: none;
}

.footer-brand-centered .footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
}

.footer-brand-centered .footer-logo-img {
    height: 54px;
    width: auto;
}

.footer-brand-centered .footer-slogan {
    color: var(--primary);
    font-size: 0.85rem;
    letter-spacing: 3px;
    font-weight: 300;
    margin-top: 12px;
    padding-top: 0;
    border-top: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 3fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--light);
    margin-bottom: 12px;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.footer-tagline {
    color: var(--light-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-slogan {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--light);
}

.footer-column a {
    display: block;
    color: var(--light-muted);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 6px 0;
    transition: var(--transition);
}

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

/* legacy legal column - now merged into footer-columns */
.footer-legal-column {
    display: none;
}

.footer-legal-column h4 {
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--light);
}

.footer-legal-column a {
    display: block;
    color: var(--light-muted);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 6px 0;
    transition: color 0.3s;
}

.footer-legal-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    color: var(--light-muted);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-muted);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

/* ===================================
   ANIMATIONS (AOS Alternative)
   =================================== */
/* All elements visible by default - no animation delays */
[data-aos],
[data-aos].aos-animate,
.hero-parallax [data-aos],
[data-aos="fade-down"],
[data-aos="fade-left"],
[data-aos="fade-right"],
[data-aos="fade-up"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-subtitle {
        margin: 0 auto 32px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .sports-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .showcase-text {
        text-align: center;
    }
    
    .showcase-text .section-title {
        text-align: center;
    }
    
    .showcase-list {
        max-width: 400px;
        margin: 0 auto 32px;
    }
    
    .phone-videos-row {
        gap: 40px;
    }
    
    .phone-frame {
        width: 240px;
        height: 500px;
        border-radius: 38px;
    }
    
    .phone-screen {
        border-radius: 28px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-text .section-title {
        text-align: center;
    }
    
    .about-values {
        align-items: center;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-info .section-title {
        text-align: center;
    }
    
    .contact-details {
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .footer-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        text-align: center;
    }
    
    .footer-links {
        justify-items: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--dark-light);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 24px;
        transition: var(--transition);
        border-left: 1px solid var(--glass-border);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-large {
        grid-column: span 1;
    }
    
    .sports-showcase {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group-full {
        grid-column: span 1;
    }
    
    .contact-form .btn {
        grid-column: span 1;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .hero {
        padding: 100px 16px 60px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .shop-gallery {
        flex-direction: column;
        height: auto;
    }
    
    .shop-gallery-thumbs {
        flex-direction: row;
        width: 100%;
        order: 2;
    }
    
    .thumb-strip {
        flex-direction: row;
        overflow-x: hidden;
    }
    
    .thumb-arrow {
        width: 32px;
        height: 44px;
    }
    
    .thumb-arrow-up svg,
    .thumb-arrow-down svg {
        transform: rotate(-90deg);
    }
    
    .shop-gallery-main {
        order: 1;
        aspect-ratio: 4/3;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-prev {
        left: 12px;
    }
    
    .lightbox-next {
        right: 12px;
    }
    
    .lightbox-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-content {
        max-width: 95vw;
        max-height: 90vh;
    }
    
    .lightbox-content img {
        max-height: 75vh;
    }
}


/* Old Founder Section removed - now part of About Combined */


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

.hero-parallax {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-darker);
}

/* Background Layers */
.hero-bg-layers {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Grid Pattern */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 180, 216, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 180, 216, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Gradient Orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 15s ease-in-out infinite;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #7B2CBF 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(20px, 30px) scale(1.05); }
}

/* Scan Lines */
.hero-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.1) 2px,
        rgba(0, 0, 0, 0.1) 4px
    );
    pointer-events: none;
    opacity: 0.3;
}

/* Parallax Container */
.parallax-container {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.parallax-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.parallax-device {
    position: absolute;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease, opacity 0.5s ease, filter 0.3s ease;
    opacity: 0.9;
    cursor: pointer;
    overflow: visible;
}

/* Laser-Effekt Container */
.parallax-device::before,
.parallax-device::after {
    content: '';
    position: absolute;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Horizontale Laser-Linie */
.parallax-device::before {
    top: 50%;
    left: -20px;
    right: -20px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary) 20%, 
        var(--accent) 50%, 
        var(--primary) 80%, 
        transparent 100%);
    box-shadow: 
        0 0 10px var(--primary),
        0 0 20px var(--primary),
        0 0 40px var(--accent);
    transform: scaleX(0);
}

/* Vertikale Laser-Linie */
.parallax-device::after {
    left: 50%;
    top: -20px;
    bottom: -20px;
    width: 2px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        var(--accent) 20%, 
        var(--primary) 50%, 
        var(--accent) 80%, 
        transparent 100%);
    box-shadow: 
        0 0 10px var(--accent),
        0 0 20px var(--accent),
        0 0 40px var(--primary);
    transform: scaleY(0);
}

/* Hover-Effekt für Laser-Linien */
.parallax-device:hover::before {
    opacity: 1;
    transform: scaleX(1);
    animation: laserScanH 1.5s ease-in-out infinite;
}

.parallax-device:hover::after {
    opacity: 1;
    transform: scaleY(1);
    animation: laserScanV 1.5s ease-in-out infinite 0.2s;
}

/* Laser-Scan Animationen */
@keyframes laserScanH {
    0%, 100% { 
        transform: scaleX(1) translateY(0); 
        opacity: 0.8;
    }
    50% { 
        transform: scaleX(1.1) translateY(-5px); 
        opacity: 1;
    }
}

@keyframes laserScanV {
    0%, 100% { 
        transform: scaleY(1) translateX(0); 
        opacity: 0.8;
    }
    50% { 
        transform: scaleY(1.1) translateX(5px); 
        opacity: 1;
    }
}

/* Glow-Effekt beim Hover */
.parallax-device:hover {
    filter: brightness(1.1) drop-shadow(0 0 20px var(--primary-glow));
    transform: scale(1.05);
    z-index: 100;
}

/* Ecken-Marker für Analyse-Look */
.parallax-layer {
    position: relative;
}

.parallax-layer .corner-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.parallax-device:hover ~ .corner-marker,
.parallax-layer:hover .corner-marker {
    opacity: 1;
}

/* Layer 1 - Koffer (Far Background) */
.layer-1 {
    z-index: 1;
}

.device-case {
    width: 380px;
    right: 5%;
    bottom: 10%;
    transform: rotate(-5deg);
    filter: brightness(0.7) saturate(0.8);
}

/* Layer 2 - Stativ System (Mid) */
.layer-2 {
    z-index: 2;
}

.device-tripod {
    width: 500px;
    right: 15%;
    top: 15%;
    transform: rotate(3deg);
    filter: brightness(0.85);
}

/* Layer 3 - Kamera (Foreground) */
.layer-3 {
    z-index: 3;
}

.device-camera {
    width: 280px;
    left: 8%;
    bottom: 20%;
    transform: rotate(-8deg);
    filter: brightness(0.9);
}

/* Layer 4 - Detail (Closest) */
.layer-4 {
    z-index: 4;
}

.device-detail {
    width: 200px;
    left: 5%;
    top: 20%;
    transform: rotate(5deg);
    border-radius: 12px;
    filter: brightness(0.95);
}

/* Hero Content Wrapper */
.hero-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1000;
    width: 55%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    text-align: left;
    background: linear-gradient(90deg, rgba(5, 5, 10, 0.98) 0%, rgba(5, 5, 10, 0.95) 50%, rgba(5, 5, 10, 0.8) 70%, rgba(5, 5, 10, 0.4) 85%, transparent 100%);
    pointer-events: auto;
}

.hero-parallax .hero-content {
    max-width: 700px;
    padding-top: 0;
}

/* Badge */
.hero-parallax .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.3);
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.badge-flag {
    font-size: 1.2rem;
}

/* Glitch Title */
.hero-title-glitch {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.hero-title-glitch .title-line {
    display: block;
    position: relative;
    color: var(--text-primary);
}

.hero-title-glitch .title-line.accent {
    color: var(--primary);
    text-shadow: 0 0 40px var(--primary-glow);
}

.hero-title-glitch .title-line::before,
.hero-title-glitch .title-line::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.hero-title-glitch:hover .title-line::before {
    animation: glitch-1 0.3s ease-in-out;
    color: var(--accent);
    z-index: -1;
}

.hero-title-glitch:hover .title-line::after {
    animation: glitch-2 0.3s ease-in-out;
    color: var(--primary);
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% { opacity: 0; transform: translate(0); }
    20% { opacity: 0.8; transform: translate(-3px, 3px); }
    40% { opacity: 0.8; transform: translate(3px, -3px); }
    60% { opacity: 0.8; transform: translate(-3px, -3px); }
    80% { opacity: 0.8; transform: translate(3px, 3px); }
}

@keyframes glitch-2 {
    0%, 100% { opacity: 0; transform: translate(0); }
    20% { opacity: 0.6; transform: translate(3px, -3px); }
    40% { opacity: 0.6; transform: translate(-3px, 3px); }
    60% { opacity: 0.6; transform: translate(3px, 3px); }
    80% { opacity: 0.6; transform: translate(-3px, -3px); }
}

/* Subtitle */
.hero-parallax .hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-parallax .hero-subtitle .highlight {
    color: var(--primary);
    font-weight: 600;
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 12px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.hero-feature:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.hero-feature svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
}

.hero-feature span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* CTA Buttons */
.hero-parallax .hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
    background-size: 200% 100%;
    border-radius: inherit;
    z-index: -1;
    animation: glowMove 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-glow:hover::before {
    opacity: 1;
}

@keyframes glowMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

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

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(0, 180, 216, 0.1);
}

/* Stats Bar */
.hero-stats-bar {
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 24px 32px;
    border-radius: 16px;
    backdrop-filter: blur(20px);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--bg-dark);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.hero-stats-bar .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.hero-stats-bar .stat-suffix {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
}

.hero-stats-bar .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--glass-border);
}

/* Scroll Indicator */
.hero-parallax .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 13px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(12px); }
}

.hero-parallax .scroll-indicator span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Decorative Elements */
.hero-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.deco-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    height: 1px;
    opacity: 0.3;
}

.deco-line-1 {
    width: 200px;
    top: 30%;
    left: 10%;
    animation: decoSlide 8s ease-in-out infinite;
}

.deco-line-2 {
    width: 150px;
    bottom: 25%;
    right: 15%;
    animation: decoSlide 8s ease-in-out infinite reverse;
}

@keyframes decoSlide {
    0%, 100% { transform: translateX(0); opacity: 0.3; }
    50% { transform: translateX(50px); opacity: 0.6; }
}

.deco-circle {
    position: absolute;
    border: 1px solid var(--primary);
    border-radius: 50%;
    opacity: 0.2;
}

.deco-circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 20%;
    animation: decoRotate 30s linear infinite;
}

.deco-circle-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    left: 25%;
    animation: decoRotate 25s linear infinite reverse;
}

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

/* Responsive Parallax Hero */
@media (max-width: 1200px) {
    .device-tripod {
        width: 400px;
        right: 5%;
    }
    
    .device-case {
        width: 300px;
    }
    
    .device-camera {
        width: 220px;
    }
    
    .device-detail {
        width: 160px;
    }
}

@media (max-width: 1024px) {
    .parallax-container {
        opacity: 0.3;
    }
    
    .hero-parallax .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-parallax .hero-cta {
        justify-content: center;
    }
    
    .hero-stats-bar {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-content-wrapper {
        padding: 0 24px;
    }
    
    .hero-title-glitch {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-parallax .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-parallax .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats-bar {
        padding: 20px;
        gap: 24px;
    }
    
    .stat-item {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }
}


/* ===================================
   ANDROID APP SECTION
   =================================== */
.app-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 50%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

.app-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(0, 180, 216, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 245, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.app-info {
    max-width: 560px;
}

.app-info .section-subtitle {
    margin-bottom: 40px;
}

.app-features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.app-feature-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.app-feature-item:hover {
    background: rgba(0, 180, 216, 0.1);
    border-color: var(--primary);
    transform: translateX(10px);
}

.app-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 12px;
}

.app-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--dark);
}

.app-feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--light);
}

.app-feature-text p {
    font-size: 0.9rem;
    color: var(--light-muted);
    line-height: 1.5;
}

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

.app-cta .btn svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.app-badge {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
}

/* Phone Mockup */
.app-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

.phone-mockup {
    position: relative;
}

.phone-frame {
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #1a1a25 0%, #0a0a0f 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #0a0a0f;
    border-radius: 0 0 16px 16px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--dark);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.app-screen-content {
    padding: 40px 16px 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header-mock {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: var(--dark-light);
    border-radius: 12px;
    margin-bottom: 16px;
}

.app-logo-mock {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.9rem;
}

.app-header-mock span:last-child {
    font-size: 0.85rem;
    font-weight: 600;
}

.app-video-mock {
    flex: 1;
    background: var(--dark-lighter);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    margin-bottom: 12px;
}

.video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark-lighter) 100%);
}

.video-placeholder svg {
    width: 48px;
    height: 48px;
    stroke: var(--primary);
    opacity: 0.5;
}

.analysis-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.analysis-line {
    position: absolute;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.analysis-line.line-1 {
    width: 60%;
    height: 2px;
    top: 30%;
    left: 20%;
    transform: rotate(-15deg);
    animation: linePulse 2s ease-in-out infinite;
}

.analysis-line.line-2 {
    width: 40%;
    height: 2px;
    top: 60%;
    left: 30%;
    transform: rotate(25deg);
    animation: linePulse 2s ease-in-out infinite 0.5s;
}

.analysis-angle {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    top: 45%;
    left: 35%;
    animation: anglePulse 2s ease-in-out infinite 0.3s;
}

.analysis-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
}

.analysis-point.point-1 { top: 25%; left: 25%; animation: pointPulse 1.5s ease-in-out infinite; }
.analysis-point.point-2 { top: 50%; left: 55%; animation: pointPulse 1.5s ease-in-out infinite 0.3s; }
.analysis-point.point-3 { top: 70%; left: 40%; animation: pointPulse 1.5s ease-in-out infinite 0.6s; }

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

@keyframes anglePulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

@keyframes pointPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.app-controls-mock {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 12px;
}

.control-btn {
    width: 40px;
    height: 40px;
    background: var(--dark-light);
    border-radius: 10px;
    transition: var(--transition);
}

.control-btn.active {
    background: var(--primary);
}

.app-timeline-mock {
    height: 4px;
    background: var(--dark-light);
    border-radius: 2px;
    overflow: hidden;
}

.timeline-progress {
    width: 65%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: timelineMove 3s ease-in-out infinite;
}

@keyframes timelineMove {
    0% { width: 30%; }
    50% { width: 70%; }
    100% { width: 30%; }
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    z-index: 1;
    animation: phoneGlow 4s ease-in-out infinite;
}

@keyframes phoneGlow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(10, 10, 15, 0.9);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

.floating-card svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
}

.floating-card span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--light);
}

.floating-card.card-1 {
    top: 10%;
    right: 0;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 30%;
    right: -20px;
    animation-delay: 0.5s;
}

.floating-card.card-3 {
    bottom: 10%;
    left: 0;
    animation-delay: 1s;
}

.floating-card.card-3 span {
    color: #4ade80;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .app-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .app-info {
        max-width: 100%;
        text-align: center;
    }
    
    .app-feature-item {
        text-align: left;
    }
    
    .app-cta {
        justify-content: center;
    }
    
    .app-visual {
        min-height: 500px;
    }
    
    .floating-card.card-1 { right: 10%; }
    .floating-card.card-2 { right: 5%; }
    .floating-card.card-3 { left: 10%; }
}

@media (max-width: 640px) {
    .phone-frame {
        width: 240px;
        height: 500px;
    }
    
    .floating-card {
        display: none;
    }
}


/* ===================================
   HERO VIDEO BACKGROUND
   =================================== */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

/* Fullscreen Hero Videos with Fade */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
}

.hero-video.active {
    opacity: 1;
    z-index: 1;
}

.hero-video.fade-out {
    opacity: 0;
}

.hero-video.fade-in {
    opacity: 1;
}

/* Dark Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 20, 30, 0.6) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
}

/* Gradient Fade at Bottom */
.video-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, var(--bg-primary) 0%, transparent 100%);
    z-index: 2;
}

/* ===================================
   FLOATING PRODUCTS
   =================================== */
.floating-products-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.floating-product {
    position: absolute;
    pointer-events: auto;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.floating-product img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 212, 255, 0.4))
            brightness(1.1)
            contrast(1.1);
    transition: filter 0.3s ease, transform 0.3s ease;
    /* Remove any white background artifacts */
    mix-blend-mode: normal;
}

.floating-product:hover img {
    filter: drop-shadow(0 30px 80px rgba(0, 212, 255, 0.5));
    transform: scale(1.05);
}

/* Product Glow Effect */
.product-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-product:hover .product-glow {
    opacity: 1;
}

/* Floating Case - Bottom Right - MAIN FOCUS */
.floating-case {
    right: 2%;
    bottom: 5%;
    width: clamp(280px, 40vh, 480px);
    animation: floatCase 6s ease-in-out infinite;
    z-index: 10;
}

.floating-case img {
    filter: drop-shadow(0 30px 80px rgba(0, 212, 255, 0.5))
            drop-shadow(0 0 40px rgba(0, 212, 255, 0.3))
            brightness(1.15)
            contrast(1.1);
}

/* Floating Tripod - Right Top */
.floating-tripod {
    right: 5%;
    top: 8%;
    width: 320px;
    animation: floatTripod 7s ease-in-out infinite;
    animation-delay: -2s;
    z-index: 8;
}

.floating-tripod img {
    filter: drop-shadow(0 20px 60px rgba(0, 212, 255, 0.4))
            drop-shadow(0 0 30px rgba(0, 212, 255, 0.2))
            brightness(1.1)
            contrast(1.05);
}

/* Floating Camera - Center Right - PROMINENT */
.floating-camera {
    right: 35%;
    top: 20%;
    width: clamp(120px, 18vh, 220px);
    animation: floatCamera 5s ease-in-out infinite;
    animation-delay: -1s;
    z-index: 12;
}

.floating-camera img {
    filter: drop-shadow(0 25px 70px rgba(0, 212, 255, 0.5))
            drop-shadow(0 0 50px rgba(0, 212, 255, 0.4))
            brightness(1.2)
            contrast(1.1);
}

/* Floating Detail - Left Side */
.floating-detail {
    left: 3%;
    top: 25%;
    width: 180px;
    animation: floatDetail 8s ease-in-out infinite;
    animation-delay: -3s;
    z-index: 6;
}

.floating-detail img {
    filter: drop-shadow(0 15px 50px rgba(0, 212, 255, 0.3))
            brightness(1.1);
}

/* Floating Animations with Pulse Effect */
@keyframes floatCase {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    25% {
        transform: translateY(-15px) scale(1.02);
    }
    50% {
        transform: translateY(-25px) scale(1);
    }
    75% {
        transform: translateY(-10px) scale(1.01);
    }
}

@keyframes floatTripod {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
    }
    33% {
        transform: translateY(-20px) translateX(10px) scale(1.02);
    }
    66% {
        transform: translateY(-30px) translateX(-5px) scale(1);
    }
}

@keyframes floatCamera {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-20px) rotate(2deg) scale(1.03);
    }
    50% {
        transform: translateY(-35px) rotate(0deg) scale(1.05);
    }
    75% {
        transform: translateY(-15px) rotate(-2deg) scale(1.02);
    }
}

@keyframes floatDetail {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
    }
    20% {
        transform: translateY(-15px) translateX(5px) rotate(1deg) scale(1.02);
    }
    40% {
        transform: translateY(-25px) translateX(-3px) rotate(-1deg) scale(1.03);
    }
    60% {
        transform: translateY(-20px) translateX(8px) rotate(2deg) scale(1.01);
    }
    80% {
        transform: translateY(-10px) translateX(-5px) rotate(-1deg) scale(1.02);
    }
}

/* Pulse Glow Animation */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.3),
                    0 0 60px rgba(0, 212, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 50px rgba(0, 212, 255, 0.5),
                    0 0 100px rgba(0, 212, 255, 0.2);
    }
}

.floating-product::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

.floating-case::before {
    animation-delay: 0s;
}

.floating-tripod::before {
    animation-delay: -1s;
}

.floating-camera::before {
    animation-delay: -2s;
}

/* Laser Scan Effect on Hover */
.floating-product::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-product:hover::after {
    opacity: 1;
    animation: laserScan 1.5s linear infinite;
}

@keyframes laserScan {
    0% {
        top: 0;
        left: -100%;
    }
    50% {
        top: 100%;
        left: 100%;
    }
    50.01% {
        top: 0;
        left: -100%;
    }
    100% {
        top: 100%;
        left: 100%;
    }
}

/* Responsive Floating Products */
@media (max-width: 1200px) {
    .floating-case {
        width: 350px;
        right: 0;
        bottom: 10%;
    }
    .floating-tripod {
        width: 250px;
        right: 0;
        top: 5%;
    }
    .floating-camera {
        width: 180px;
        right: 30%;
        top: 15%;
    }
    .floating-detail {
        width: 140px;
        left: 2%;
    }
}

@media (max-width: 768px) {
    .floating-products-container {
        display: none;
    }
    
    .video-split-container {
        flex-direction: column;
    }
    
    .video-half {
        height: 50%;
    }
}


/* ===================================
   ZIELGRUPPEN SECTION
   =================================== */
.zielgruppen {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 50%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

.zielgruppen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 245, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.zielgruppe-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    position: relative;
    text-decoration: none;
    color: inherit;
    display: block;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.zielgruppe-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.zielgruppe-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 212, 255, 0.1);
}

.zielgruppe-card:hover::before {
    transform: scaleX(1);
}

.zielgruppe-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 245, 255, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    transition: var(--transition);
}

.zielgruppe-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.zielgruppe-card:hover .zielgruppe-icon::after {
    opacity: 0.3;
}

.zielgruppe-icon svg {
    width: 44px;
    height: 44px;
    stroke: var(--accent);
    transition: var(--transition);
}

.zielgruppe-card:hover .zielgruppe-icon svg {
    stroke: var(--light);
    transform: scale(1.1);
}

.zielgruppe-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--light);
    margin-bottom: 12px;
}

.zielgruppe-desc {
    font-size: 1rem;
    color: var(--light-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.zielgruppe-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.zielgruppe-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--light-muted);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.zielgruppe-features li:last-child {
    border-bottom: none;
}

.check-icon {
    color: var(--accent);
    font-weight: 700;
    font-size: 1rem;
}

.zielgruppe-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}

.zielgruppe-cta span {
    transition: transform 0.3s ease;
}

.zielgruppe-cta:hover {
    color: var(--light);
}

.zielgruppe-cta:hover span {
    transform: translateX(5px);
}

.zielgruppen-cta-container {
    text-align: center;
    margin-top: 60px;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-large svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-large:hover svg {
    transform: translateX(5px);
}

/* Responsive Zielgruppen */
@media (max-width: 768px) {
    .zielgruppen-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .zielgruppe-card {
        padding: 30px 24px;
    }
    
    .zielgruppe-icon {
        width: 70px;
        height: 70px;
    }
    
    .zielgruppe-icon svg {
        width: 36px;
        height: 36px;
    }
}


/* ===================================
   NEW HERO SECTION - COMPLETE REDESIGN
   =================================== */
.hero-new {
    position: relative;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
    background: var(--dark);
    padding-top: 80px;
    padding-bottom: 0;
}

/* Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Fallback-Bild: wird sofort angezeigt bis Videos geladen sind */
.hero-fallback-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: opacity 1s ease-out;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hero-bg-video.active {
    opacity: 1;
}

.hero-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(0, 180, 216, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 245, 255, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 60% 80%, rgba(0, 180, 216, 0.05) 0%, transparent 45%),
        linear-gradient(135deg, #0a0a0f 0%, #0d1117 50%, #0a0a12 100%);
    animation: heroGlow 12s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        background: 
            radial-gradient(ellipse at 20% 50%, rgba(0, 180, 216, 0.08) 0%, transparent 50%),
            radial-gradient(ellipse at 80% 20%, rgba(0, 245, 255, 0.06) 0%, transparent 40%),
            radial-gradient(ellipse at 60% 80%, rgba(0, 180, 216, 0.05) 0%, transparent 45%),
            linear-gradient(135deg, #0a0a0f 0%, #0d1117 50%, #0a0a12 100%);
    }
    50% {
        background: 
            radial-gradient(ellipse at 40% 30%, rgba(0, 180, 216, 0.1) 0%, transparent 50%),
            radial-gradient(ellipse at 70% 60%, rgba(0, 245, 255, 0.07) 0%, transparent 45%),
            radial-gradient(ellipse at 30% 70%, rgba(0, 180, 216, 0.06) 0%, transparent 40%),
            linear-gradient(135deg, #0a0a0f 0%, #0d1117 50%, #0a0a12 100%);
    }
    100% {
        background: 
            radial-gradient(ellipse at 60% 40%, rgba(0, 180, 216, 0.09) 0%, transparent 50%),
            radial-gradient(ellipse at 30% 70%, rgba(0, 245, 255, 0.05) 0%, transparent 40%),
            radial-gradient(ellipse at 80% 50%, rgba(0, 180, 216, 0.07) 0%, transparent 45%),
            linear-gradient(135deg, #0a0a0f 0%, #0d1117 50%, #0a0a12 100%);
    }
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 15, 0.92) 0%,
        rgba(10, 10, 15, 0.85) 40%,
        rgba(10, 10, 15, 0.75) 100%
    );
    z-index: 2;
}

/* Main Hero Content */
.hero-main {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: calc(100vh - 80px);
    height: calc(100dvh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 4vh, 60px);
    align-items: center;
    width: 100%;
    /* Überschreibe die gridMove Animation vom alten Hero */
    position: static !important;
    animation: none !important;
    transform: none !important;
    background: none !important;
}

/* Left Side - Text Content */
.hero-text-side {
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1.5vh, 16px);
    justify-content: center;
    height: auto;
}

/* ALLE Animationen und Transitions im linken Bereich deaktivieren */
.hero-text-side,
.hero-text-side *,
.hero-text-side *::before,
.hero-text-side *::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
}

.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    padding: clamp(5px, 0.8vh, 8px) clamp(14px, 2vh, 20px);
    font-size: clamp(0.75rem, 1.2vh, 0.9rem);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
    position: relative;
}

.badge-pulse {
    position: absolute;
    left: 12px;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    /* Animation entfernt - statisch */
}

.badge-icon {
    font-size: 1.1rem;
    margin-left: 12px;
}

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

.hero-headline {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1;
}

.headline-word {
    font-size: clamp(1.53rem, 3.825vh, 3.4rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--light);
    text-transform: uppercase;
    line-height: 1.05;
}

.headline-word.highlight {
    color: var(--accent);
    -webkit-text-fill-color: var(--accent);
}

.hero-description {
    font-size: clamp(0.85rem, 1.5vh, 1.05rem);
    color: var(--light-muted);
    line-height: 1.5;
    max-width: 480px;
}

.hero-description strong {
    color: var(--light);
}

/* USP List */
.hero-usp-list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: clamp(8px, 1.2vh, 12px);
    align-items: center;
    justify-content: flex-start;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: clamp(4px, 0.6vh, 8px);
    padding: clamp(5px, 0.8vh, 8px) clamp(8px, 1vh, 12px);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    width: auto;
    flex-shrink: 0;
    white-space: nowrap;
    /* Komplett statisch - keine Transitions */
}

.usp-icon {
    width: clamp(22px, 2.8vh, 28px);
    height: clamp(22px, 2.8vh, 28px);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 212, 255, 0.05) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.usp-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--accent);
}

.usp-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.usp-text strong {
    font-size: clamp(0.65rem, 1vh, 0.8rem);
    color: var(--light);
}

.usp-text span {
    display: none;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: clamp(10px, 1.5vh, 16px);
    margin-top: clamp(12px, 2vh, 20px);
    padding-top: 0;
    margin-bottom: 0;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: clamp(10px, 1.5vh, 14px) clamp(20px, 3vh, 28px);
    background: var(--gradient-primary);
    color: var(--dark);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: clamp(0.85rem, 1.3vh, 1rem);
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
    /* Komplett statisch - keine Transitions */
}

.hero-btn-primary svg {
    width: 20px;
    height: 20px;
    /* Komplett statisch */
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: clamp(10px, 1.5vh, 14px) clamp(18px, 2.5vh, 24px);
    background: transparent;
    color: var(--light);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: clamp(0.85rem, 1.3vh, 1rem);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    text-decoration: none;
    /* Komplett statisch - keine Transitions */
}

.hero-btn-secondary svg {
    width: 20px;
    height: 20px;
}

/* Right Side - Product Showcase */
.hero-product-side {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-showcase {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1;
}

/* Main Product */
.showcase-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    z-index: 5;
}
.main-product-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    position: relative;
    z-index: 5;
    filter: drop-shadow(0 30px 60px rgba(0, 212, 255, 0.3));
    animation: floatMain 18s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: -5s;
}

@keyframes floatMain {
    0% { transform: translateY(0) scale(1); }
    10% { transform: translateY(-8px) scale(1.005); }
    20% { transform: translateY(-15px) scale(1.01); }
    30% { transform: translateY(-20px) scale(1.015); }
    40% { transform: translateY(-12px) scale(1.01); }
    50% { transform: translateY(-18px) scale(1.012); }
    60% { transform: translateY(-22px) scale(1.008); }
    70% { transform: translateY(-14px) scale(1.01); }
    80% { transform: translateY(-10px) scale(1.006); }
    90% { transform: translateY(-5px) scale(1.003); }
    100% { transform: translateY(0) scale(1); }
}

/* Product Rings */
.product-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    animation: ringPulse 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.product-ring.ring-2 {
    width: 130%;
    height: 130%;
    border-color: rgba(0, 212, 255, 0.1);
    animation-delay: -6s;
}

@keyframes ringPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    20% { transform: translate(-50%, -50%) scale(1.02); opacity: 0.6; }
    40% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.8; }
    60% { transform: translate(-50%, -50%) scale(1.03); opacity: 1; }
    80% { transform: translate(-50%, -50%) scale(1.04); opacity: 0.7; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
}

/* Floating Elements */
.showcase-float {
    position: absolute;
    z-index: 10;
}

.showcase-float img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 212, 255, 0.4));
}

.float-camera {
    top: 5%;
    right: 5%;
    width: 140px;
    animation: floatCamera2 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: -3s;
}

.float-tripod {
    bottom: 10%;
    left: 0;
    width: 180px;
    animation: floatTripod2 15s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: -7s;
}

@keyframes floatCamera2 {
    0% { transform: translateY(0) rotate(0deg) scale(1); }
    15% { transform: translateY(-8px) rotate(1.5deg) scale(1.01); }
    30% { transform: translateY(-15px) rotate(3deg) scale(1.02); }
    45% { transform: translateY(-10px) rotate(1deg) scale(1.015); }
    60% { transform: translateY(-18px) rotate(-1deg) scale(1.01); }
    75% { transform: translateY(-12px) rotate(2deg) scale(1.02); }
    90% { transform: translateY(-5px) rotate(0.5deg) scale(1.005); }
    100% { transform: translateY(0) rotate(0deg) scale(1); }
}

@keyframes floatTripod2 {
    0% { transform: translateY(0) translateX(0) scale(1); }
    12% { transform: translateY(-10px) translateX(5px) scale(1.01); }
    25% { transform: translateY(-20px) translateX(10px) scale(1.02); }
    37% { transform: translateY(-15px) translateX(3px) scale(1.015); }
    50% { transform: translateY(-22px) translateX(8px) scale(1.01); }
    62% { transform: translateY(-12px) translateX(12px) scale(1.02); }
    75% { transform: translateY(-18px) translateX(5px) scale(1.01); }
    87% { transform: translateY(-8px) translateX(2px) scale(1.005); }
    100% { transform: translateY(0) translateX(0) scale(1); }
}

/* Showcase Badges */
.showcase-badge {
    position: absolute;
    background: rgba(10, 10, 15, 0.9);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(10px);
    z-index: 20;
    animation: badgeFloat 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.badge-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}

.badge-icon-small {
    font-size: 1.3rem;
}

.badge-label {
    font-size: 0.75rem;
    color: var(--light-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-cameras {
    top: 15%;
    left: 10%;
    animation-delay: -2s;
}

.badge-fps {
    top: 40%;
    right: 0;
    animation-delay: -5s;
}

.badge-eu {
    bottom: 20%;
    right: 15%;
    animation-delay: -8s;
}

@keyframes badgeFloat {
    0% { transform: translateY(0) scale(1); }
    15% { transform: translateY(-5px) scale(1.02); }
    30% { transform: translateY(-10px) scale(1.01); }
    45% { transform: translateY(-6px) scale(1.015); }
    60% { transform: translateY(-12px) scale(1.02); }
    75% { transform: translateY(-8px) scale(1.01); }
    90% { transform: translateY(-3px) scale(1.005); }
    100% { transform: translateY(0) scale(1); }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    display: none;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

.hero-scroll-indicator span {
    font-size: 0.75rem;
    color: var(--light-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Responsive Hero */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text-side {
        text-align: center;
        align-items: center;
    }
    
    .hero-description {
        max-width: 600px;
    }
    
    .hero-usp-list {
        width: 100%;
        max-width: 400px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-product-side {
        order: -1;
    }
    
    .product-showcase {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .hero-main {
        padding: 100px 20px 40px;
    }
    
    .headline-word {
        font-size: clamp(2.125rem, 8.5vw, 2.975rem);
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        justify-content: center;
        width: 100%;
    }
    
    .product-showcase {
        max-width: 300px;
    }
    
    .showcase-badge {
        display: none;
    }
    
    .float-camera,
    .float-tripod {
        display: none;
    }
}


/* ===================================
   PRICING SECTION
   =================================== */
.pricing {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-lighter) 50%, var(--dark) 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 6px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.toggle-btn {
    padding: 14px 32px;
    border: none;
    background: transparent;
    color: var(--light-muted);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    transition: var(--transition);
}

.toggle-btn.active {
    background: var(--gradient-primary);
    color: var(--dark);
}

.toggle-btn:hover:not(.active) {
    color: var(--light);
}

/* Pricing Plans Grid */
.pricing-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.pricing-plans.hidden {
    display: none;
}

/* Pricing Card */
.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 212, 255, 0.02) 100%);
    border-color: var(--accent);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

/* Pricing Badge */
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 16px;
    border-radius: 20px;
}

.pricing-card.featured .pricing-badge {
    background: linear-gradient(135deg, #00d4ff 0%, #00ff88 100%);
}

/* Pricing Icon */
.pricing-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 212, 255, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.pricing-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent);
}

/* Pricing Name & Description */
.pricing-name {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--light);
    margin-bottom: 8px;
}

.pricing-desc {
    font-size: 0.95rem;
    color: var(--light-muted);
    line-height: 1.5;
    margin-bottom: 24px;
}

/* Pricing Price */
.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--light);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--light-muted);
    margin-left: 4px;
}

.price-vat {
    display: block;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.35);
    font-weight: 400;
    margin-top: 2px;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

/* Software Price */
.pricing-software {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 16px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 24px;
}

.software-label {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
}

.software-price {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--light-muted);
}

.software-vat {
    font-size: 0.75rem;
    color: var(--light-muted);
    opacity: 0.7;
}

/* Pricing Breakdown (Hardware/Software getrennt) */
.pricing-breakdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 16px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 10px;
    margin-bottom: 12px;
}

.breakdown-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breakdown-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: var(--accent);
    opacity: 0.7;
}

.breakdown-icon svg {
    width: 14px;
    height: 14px;
}

.breakdown-label {
    font-size: 0.85rem;
    color: var(--light-muted);
    flex: 1;
}

.breakdown-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--light);
}

/* Pricing Features */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--light-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
    flex-shrink: 0;
}

/* Pricing Setup */
.pricing-setup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    margin-top: 16px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px dashed rgba(0, 212, 255, 0.2);
    border-radius: 8px;
}

.setup-label {
    font-size: 0.75rem;
    color: var(--light-subtle);
    text-align: center;
}

.setup-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
}

/* Pricing Shipping */
.pricing-shipping {
    margin-top: 12px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-shipping p {
    font-size: 0.72rem;
    color: var(--light-subtle);
    line-height: 1.6;
    margin: 0;
}

.pricing-shipping p + p {
    margin-top: 4px;
}

.pricing-shipping strong {
    color: var(--light-muted);
    font-weight: 600;
}

.shipping-link {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px dashed rgba(0, 245, 255, 0.4);
    transition: var(--transition);
}

.shipping-link:hover {
    color: var(--primary-light);
    border-bottom-color: var(--primary-light);
}

/* Pricing CTA */
.pricing-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--gradient-primary);
    color: var(--dark);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.pricing-cta svg {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.pricing-cta:hover svg {
    transform: translateX(5px);
}

/* Components Link */
.pricing-components-link {
    text-align: center;
    margin: 24px auto 40px;
    max-width: 1200px;
}

.components-link {
    display: inline-block;
    color: #00E5FF;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.components-link:hover {
    color: #fff;
    transform: translateX(4px);
}

/* Comparison Table */
.pricing-comparison {
    max-width: 1000px;
    margin: 0 auto 80px;
}

.comparison-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 32px;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table th,
.comparison-table td {
    padding: 16px 24px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table th {
    background: rgba(0, 212, 255, 0.1);
    color: var(--light);
    font-weight: 600;
    font-size: 0.95rem;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td:first-child {
    text-align: left;
    color: var(--light);
    font-weight: 500;
}

.comparison-table td {
    color: var(--light-muted);
}

.comparison-table svg.check {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
}

.comparison-table svg.cross {
    width: 20px;
    height: 20px;
    stroke: rgba(255, 255, 255, 0.3);
}

.comparison-table tbody tr:hover {
    background: rgba(0, 212, 255, 0.05);
}

/* Enterprise CTA */
.pricing-enterprise {
    max-width: 900px;
    margin: 0 auto;
}

.enterprise-content {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 212, 255, 0.02) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
}

.enterprise-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.enterprise-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--dark);
}

.enterprise-text {
    flex-grow: 1;
}

.enterprise-text h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--light);
    margin-bottom: 8px;
}

.enterprise-text p {
    font-size: 1rem;
    color: var(--light-muted);
    line-height: 1.6;
}

.enterprise-cta {
    padding: 16px 32px;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.enterprise-cta:hover {
    background: var(--accent);
    color: var(--dark);
}

/* Responsive Pricing */
@media (max-width: 1024px) {
    .pricing-plans {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .enterprise-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 80px 0;
    }
    
    .pricing-toggle {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .toggle-btn {
        width: 100%;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    
    .enterprise-content {
        padding: 24px;
    }
}


/* ===================================
   COMPREHENSIVE RESPONSIVE STYLES
   =================================== */

/* ===================================
   LARGE DESKTOP (1400px+)
   =================================== */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-headline .headline-word {
        font-size: 3.825rem;
    }
}

/* ===================================
   DESKTOP (1200px - 1399px)
   =================================== */
@media (max-width: 1399px) {
    .hero-headline .headline-word {
        font-size: 3.23rem;
    }
    
    .floating-case {
        width: 380px;
    }
    
    .floating-camera {
        width: 100px;
    }
}

/* ===================================
   SMALL DESKTOP / LARGE TABLET (992px - 1199px)
   =================================== */
@media (max-width: 1199px) {
    .nav-menu {
        gap: 16px;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
    
    .hero-headline .headline-word {
        font-size: 2.72rem;
    }
    
    .hero-grid {
        gap: 40px;
    }
    
    .floating-case {
        width: 320px;
    }
    
    .info-badge {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .pricing-plans {
        gap: 20px;
    }
    
    .pricing-card {
        padding: 30px 24px;
    }
    
    .zielgruppen-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   TABLET (768px - 991px)
   =================================== */
@media (max-width: 991px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        height: 100dvh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 20px 40px;
        gap: 20px;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(0, 212, 255, 0.2);
        z-index: 99998;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 99999;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }
    
    .nav-cta {
        margin-top: 20px;
        text-align: center;
        padding: 16px 24px;
    }
    
    /* Hero */
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text-side {
        align-items: center;
    }
    
    .hero-headline .headline-word {
        font-size: 2.38rem;
    }
    
    .hero-description {
        max-width: 600px;
    }
    
    .hero-usp-list {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-product-side {
        display: none;
    }
    
    .floating-products-container {
        display: none;
    }
    
    /* Sections */
    .section-header h2 {
        font-size: 2rem;
    }
    
    /* Zielgruppen */
    .zielgruppen-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Pricing */
    .pricing-plans {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-large {
        grid-column: span 2;
    }
    
    /* App Section */
    .app-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .app-text {
        order: 1;
    }
    
    .app-visual {
        order: 2;
    }
    
    /* Sports */
    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* System */
    .system-content {
        grid-template-columns: 1fr;
    }
    
    /* Videos */
    .phone-videos-row {
        gap: 40px;
    }
    
    .phone-frame {
        width: 240px;
        height: 500px;
        border-radius: 38px;
    }
    
    .phone-screen {
        border-radius: 28px;
    }
    
    /* About */
    .about-features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Founder */
    .founder-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .founder-image {
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   MOBILE LANDSCAPE / SMALL TABLET (576px - 767px)
   =================================== */
@media (max-width: 767px) {
    /* General */
    section {
        padding: 60px 0;
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 20px;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Navigation */
    .navbar {
        padding: 12px 0;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    /* Hero */
    .hero-new {
        padding-top: 70px;
        min-height: auto;
    }
    
    .hero-main {
        padding: 80px 16px 40px;
    }
    
    .hero-headline .headline-word {
        font-size: 1.87rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-usp-list {
        flex-direction: column;
        gap: 12px;
    }
    
    .usp-item {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* Trusted */
    .trusted-logos {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .trusted-item {
        font-size: 0.8rem;
    }
    
    /* Zielgruppen */
    .zielgruppen-grid {
        grid-template-columns: 1fr;
    }
    
    .zielgruppe-card {
        padding: 24px;
    }
    
    /* Pricing */
    .pricing-toggle {
        flex-direction: column;
        gap: 8px;
    }
    
    .toggle-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .pricing-card {
        padding: 24px 20px;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .comparison-table {
        font-size: 0.85rem;
        overflow-x: auto;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-large {
        grid-column: span 1;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    /* App */
    .phone-frame {
        width: 220px;
        height: 450px;
    }
    
    .app-features {
        grid-template-columns: 1fr;
    }
    
    /* Sports */
    .sports-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .sport-card {
        padding: 20px;
    }
    
    /* Showcase Section - Mobile Fix */
    .showcase {
        overflow-x: hidden;
    }
    
    .showcase-content {
        gap: 32px;
        overflow: hidden;
    }
    
    .showcase-text {
        max-width: 100%;
        overflow-wrap: break-word;
        word-break: break-word;
    }
    
    .showcase-text .section-title {
        font-size: clamp(1.4rem, 5vw, 2rem);
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .showcase-text > p {
        font-size: 0.95rem;
    }
    
    .showcase-list {
        max-width: 100%;
        margin: 0 0 24px;
    }
    
    .showcase-list li {
        font-size: 0.9rem;
    }
    
    /* System Gallery */
    .shop-gallery {
        flex-direction: column;
        height: auto;
        max-width: 100%;
    }
    
    .shop-gallery-main {
        aspect-ratio: 4/3;
        max-width: 100%;
    }
    
    .shop-gallery-thumbs {
        flex-direction: row;
        width: 100%;
        order: 2;
        overflow: hidden;
    }
    
    .thumb-strip-wrapper {
        height: auto;
        max-height: 80px;
        overflow: hidden;
    }
    
    .thumb-strip {
        flex-direction: row;
        overflow-x: hidden;
    }
    
    .thumb-item {
        width: 56px;
        height: 56px;
        flex-shrink: 0;
    }
    
    .thumb-arrow {
        width: 32px;
        height: 44px;
    }
    
    .thumb-arrow-up svg,
    .thumb-arrow-down svg {
        transform: rotate(-90deg);
    }
    
    /* Videos - Phone Mockups */
    .phone-videos-row {
        flex-direction: column;
        align-items: center;
        gap: 48px;
    }
    
    .phone-frame {
        width: 260px;
        height: 540px;
        border-radius: 40px;
    }
    
    /* About */
    .about-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Founder */
    .founder-badges {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .founder-bio {
        font-size: 0.95rem;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 24px;
    }
    
    /* CTA */
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    /* Contact */
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group-full {
        grid-column: span 1;
    }
    
    /* Footer */
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ===================================
   MOBILE PORTRAIT (max-width: 575px)
   =================================== */
@media (max-width: 575px) {
    /* Typography */
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    /* Hero */
    .hero-headline .headline-word {
        font-size: 1.53rem;
    }
    
    .hero-badge-new {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .usp-item {
        padding: 10px 12px;
    }
    
    .usp-icon {
        width: 32px;
        height: 32px;
    }
    
    .usp-text strong {
        font-size: 0.85rem;
    }
    
    .usp-text span {
        font-size: 0.75rem;
    }
    
    /* Section Headers */
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    /* Zielgruppen */
    .zielgruppe-card h3 {
        font-size: 1.1rem;
    }
    
    .zielgruppe-icon {
        width: 50px;
        height: 50px;
    }
    
    /* Pricing */
    .price-amount {
        font-size: 2rem;
    }
    
    .plan-name {
        font-size: 1.2rem;
    }
    
    /* Features */
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    /* Sports */
    .sport-card h3 {
        font-size: 1rem;
    }
    
    .sport-icon svg {
        width: 40px;
        height: 40px;
    }
    
    /* Showcase - smaller screens */
    .showcase-text .section-title {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
    }
    
    .shop-gallery-main {
        aspect-ratio: 1/1;
    }
    
    .thumb-item {
        width: 48px;
        height: 48px;
    }
    
    /* App */
    .phone-frame {
        width: 180px;
        height: 380px;
    }
    
    .floating-stat {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    /* Videos */
    .phone-label h3 {
        font-size: 1rem;
    }
    
    .phone-frame {
        width: 220px;
        height: 460px;
        border-radius: 34px;
    }
    
    .phone-screen {
        border-radius: 24px;
    }
    
    /* Founder */
    .founder-name {
        font-size: 1.5rem;
    }
    
    /* Testimonials */
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    /* CTA */
    .cta-section {
        padding: 60px 20px;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    /* Contact */
    .contact-info h3 {
        font-size: 1.3rem;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
}

/* ===================================
   EXTRA SMALL MOBILE (max-width: 375px)
   =================================== */
@media (max-width: 375px) {
    .hero-headline .headline-word {
        font-size: 1.275rem;
    }
    
    .hero-main {
        padding: 70px 12px 30px;
    }
    
    .nav-menu {
        width: 100%;
        max-width: none;
        padding: 90px 16px 30px;
    }
    
    .pricing-card {
        padding: 20px 16px;
    }
    
    .price-amount {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 20px 16px;
    }
    
    .zielgruppe-card {
        padding: 20px 16px;
    }
    
    .phone-frame {
        width: 160px;
        height: 340px;
    }
}

/* ===================================
   LANDSCAPE ORIENTATION FIXES
   =================================== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-new {
        min-height: auto;
        padding: 80px 0 40px;
    }
    
    .hero-headline .headline-word {
        font-size: 1.53rem;
    }
    
    .hero-usp-list {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .nav-menu {
        padding-top: 70px;
    }
}

/* ===================================
   TOUCH DEVICE OPTIMIZATIONS
   =================================== */
@media (hover: none) and (pointer: coarse) {
    .nav-link:hover,
    .btn:hover,
    .feature-card:hover,
    .sport-card:hover,
    .zielgruppe-card:hover,
    .pricing-card:hover {
        transform: none;
    }
    
    .floating-camera:hover,
    .floating-case:hover,
    .floating-tripod:hover {
        transform: none;
    }
}

/* ===================================
   HIGH DPI / RETINA DISPLAYS
   =================================== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .navbar {
        border-bottom-width: 0.5px;
    }
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
    .navbar,
    .hero-video-container,
    .floating-products-container,
    .scroll-indicator,
    .nav-toggle {
        display: none !important;
    }
    
    .hero-new {
        min-height: auto;
        padding: 20px;
    }
    
    section {
        page-break-inside: avoid;
    }
}

/* ===================================
   ACCESSIBILITY - REDUCED MOTION
   =================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-bg-video {
        display: block;
    }
    
    .floating-camera,
    .floating-case,
    .floating-tripod,
    .badge-pulse {
        animation: none;
    }
}


/* ========================================
   SYSTEM FEATURES SECTION - Bento Grid
   ======================================== */

.system-features {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0a1520 100%);
    position: relative;
    overflow: hidden;
}

.system-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0, 212, 212, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(0, 212, 212, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* Bento Grid Layout */
.system-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 24px;
    margin-top: 60px;
}

/* System Item Base Styles */
.system-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    gap: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.system-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(0, 212, 212, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.system-item:hover {
    border-color: rgba(0, 212, 212, 0.3);
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 212, 212, 0.1);
}

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

/* Grid Positioning */
.system-main {
    grid-column: span 8;
    flex-direction: row;
    align-items: center;
    min-height: 400px;
}

.system-camera {
    grid-column: span 4;
    flex-direction: column;
    min-height: 400px;
}

.system-tablet {
    grid-column: span 6;
    flex-direction: row;
    align-items: center;
}

.system-tripod {
    grid-column: span 6;
    flex-direction: row;
    align-items: center;
}

.system-software {
    grid-column: span 5;
}

.system-security {
    grid-column: span 7;
}

/* Content Styles */
.system-item-content {
    flex: 1;
    z-index: 2;
}

.system-item-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 212, 212, 0.15);
    border: 1px solid rgba(0, 212, 212, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.system-item h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.3;
}

.system-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

/* System Specs List */
.system-specs {
    list-style: none;
    padding: 0;
    margin: 0;
}

.system-specs li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 6px 0;
}

.system-specs li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Image Containers */
.system-item-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.system-item-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.system-item:hover .system-item-image img {
    transform: scale(1.05) translateY(-10px);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 30px rgba(0, 212, 212, 0.15));
}

/* Image Sizes */
.system-image-large img {
    max-height: 320px;
}

.system-image-medium img {
    max-height: 240px;
}

.system-image-small img {
    max-height: 180px;
}

/* Highlight Number */
.system-highlight {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 16px;
}

.highlight-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.highlight-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Software Features Grid */
.software-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.software-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.software-feature:hover {
    background: rgba(0, 212, 212, 0.1);
    border-color: rgba(0, 212, 212, 0.3);
}

.software-feature svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.software-feature span {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Security Badges */
.security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
}

.security-badge:hover {
    background: rgba(0, 212, 212, 0.15);
    border-color: rgba(0, 212, 212, 0.3);
}

/* Camera Item Special Layout */
.system-camera .system-item-image {
    flex: 1;
    min-height: 200px;
}

.system-camera .system-item-content {
    flex: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .system-main {
        grid-column: span 12;
    }
    
    .system-camera {
        grid-column: span 6;
    }
    
    .system-tablet,
    .system-tripod {
        grid-column: span 6;
    }
    
    .system-software {
        grid-column: span 6;
    }
    
    .system-security {
        grid-column: span 6;
    }
}

@media (max-width: 900px) {
    .system-bento-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .system-main,
    .system-camera,
    .system-tablet,
    .system-tripod,
    .system-software,
    .system-security {
        grid-column: span 1;
    }
    
    .system-main {
        flex-direction: column;
        min-height: auto;
    }
    
    .system-tablet,
    .system-tripod {
        flex-direction: column;
    }
    
    .system-item {
        padding: 24px;
    }
    
    .system-image-large img,
    .system-image-medium img,
    .system-image-small img {
        max-height: 200px;
    }
}

@media (max-width: 600px) {
    .system-features {
        padding: 80px 0;
    }
    
    .system-item h3 {
        font-size: 1.25rem;
    }
    
    .highlight-number {
        font-size: 2.5rem;
    }
    
    .software-features {
        grid-template-columns: 1fr;
    }
    
    .security-badges {
        flex-direction: column;
    }
}


/* ==========================================
   SYSTEM SHOWCASE SECTION - Komplett Neu
   ========================================== */

.system-showcase {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
}

/* Hero Flatlay - Elegant Design mit sanften Übergängen */
.system-hero-fullwidth {
    position: relative;
    width: 100%;
    margin: 40px 0 80px 0;
    display: flex;
    justify-content: center;
}

.system-hero-bg {
    position: relative;
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
}

/* Sanfte Verlaufs-Übergänge an allen Rändern */
.system-hero-depth-layer {
    position: absolute;
    top: -60px;
    left: -80px;
    right: -80px;
    bottom: -60px;
    background: radial-gradient(
        ellipse 100% 100% at 50% 50%,
        transparent 40%,
        var(--bg-dark) 70%
    );
    pointer-events: none;
    z-index: 2;
}

.system-hero-image-container {
    position: relative;
    z-index: 1;
    border-radius: 16px;
    overflow: hidden;
    /* Sanfter Schatten für Tiefeneffekt */
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(0, 255, 255, 0.05);
}

.system-hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.system-hero-fullwidth:hover .system-hero-image-container img {
    transform: scale(1.02);
}

/* Verlaufs-Overlays für nahtlose Integration */
.system-hero-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, 
        var(--bg-dark) 0%, 
        rgba(10, 15, 20, 0.8) 30%,
        transparent 100%);
    z-index: 3;
    pointer-events: none;
}

.system-hero-image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, 
        var(--bg-dark) 0%, 
        rgba(10, 15, 20, 0.8) 30%,
        transparent 100%);
    z-index: 3;
    pointer-events: none;
}

/* Seitliche Verlaufs-Overlays */
.system-hero-bg::before,
.system-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 4;
    pointer-events: none;
}

.system-hero-bg::before {
    left: -1px;
    background: linear-gradient(to right, 
        var(--bg-dark) 0%, 
        rgba(10, 15, 20, 0.9) 40%,
        transparent 100%);
}

.system-hero-bg::after {
    right: -1px;
    background: linear-gradient(to left, 
        var(--bg-dark) 0%, 
        rgba(10, 15, 20, 0.9) 40%,
        transparent 100%);
}

/* Stats Overlay */
.system-hero-stats-overlay {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    z-index: 10;
}

.stat-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: var(--bg-dark);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 50px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-pill:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(0, 255, 255, 0.2);
}

.stat-pill .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-pill .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .system-hero-stats-overlay {
        flex-direction: column;
        bottom: -80px;
        gap: 12px;
    }
    
    .stat-pill {
        padding: 12px 20px;
    }
    
    .system-hero-bg {
        padding: 40px 0;
    }
    
    .system-hero-image-container {
        padding: 0 20px;
    }
}

.system-hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px 30px;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Components Section */
.components-section {
    margin-bottom: 80px;
}

.components-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.icon-cyan {
    width: 28px;
    height: 28px;
    stroke: var(--accent);
}

/* Carousel */
.components-scroller-wrapper {
    position: relative;
}

.components-scroller {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
    cursor: grab;
}

.components-scroller:active {
    cursor: grabbing;
}

.components-scroller::-webkit-scrollbar {
    display: none;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.carousel-nav button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: var(--accent);
    font-size: 1.4rem;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
}

.carousel-nav button:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-dark);
}

/* Component Card */
.component-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: linear-gradient(145deg, rgba(20, 25, 30, 0.9), rgba(10, 15, 20, 0.95));
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.component-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.15);
}

.component-image {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(180deg, rgba(0, 255, 255, 0.03) 0%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.component-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.component-card:hover .component-image img {
    transform: scale(1.1) translateY(-10px);
}

.component-image-icon {
    background: linear-gradient(180deg, rgba(0, 255, 255, 0.08) 0%, rgba(0, 255, 255, 0.02) 100%);
}

.icon-large {
    width: 100px;
    height: 100px;
    stroke: var(--accent);
    stroke-width: 1.5;
    transition: all 0.4s ease;
}

.component-card:hover .icon-large {
    transform: scale(1.15);
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5));
}

.component-info {
    padding: 24px;
}

.component-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 255, 255, 0.15);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.component-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.component-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Extensions Section */
.extensions-section {
    margin-bottom: 80px;
}

.extensions-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.extensions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.extension-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(145deg, rgba(20, 25, 30, 0.9), rgba(10, 15, 20, 0.95));
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.extension-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.12);
}

.extension-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, transparent 100%);
}

.extension-image img {
    width: 100%;
    max-height: 280px;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.extension-card:hover .extension-image img {
    transform: scale(1.08);
}

.extension-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.extension-badge {
    display: inline-block;
    width: fit-content;
    padding: 4px 14px;
    background: rgba(0, 255, 255, 0.15);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.extension-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.extension-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.extension-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.extension-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.extension-features li svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
    flex-shrink: 0;
}

/* Quality Section */
.quality-section {
    padding-top: 40px;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.quality-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.quality-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.quality-badge:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.quality-badge svg {
    width: 24px;
    height: 24px;
}

.quality-badge span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .extensions-grid {
        grid-template-columns: 1fr;
    }
    
    .extension-card {
        flex-direction: column;
    }
    
    .extension-image {
        flex: none;
        height: 200px;
    }
    
    .system-hero-stats {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .system-showcase {
        padding: 80px 0;
    }
    
    .system-hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .stat-item {
        width: 100%;
        max-width: 300px;
    }
    
    .component-card {
        flex: 0 0 280px;
    }
    
    
    .quality-badges {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .quality-badge {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}


/* ========================================
   INTERAKTIVE IMAGE MAP - HERO SEKTION
   ======================================== */

.system-hero-interactive {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 60px;
    padding: 0 20px;
}

.system-hero-container {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: visible;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 100%);
}

.system-hero-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(0, 255, 255, 0.05);
}

/* Hotspot Basis-Styling */
.hotspot {
    position: absolute;
    width: 44px;
    height: 44px;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 100;
    pointer-events: auto !important;
}

/* Pulsierender Ring */
.hotspot-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(0, 255, 255, 0.3);
    animation: hotspotPulse 2s ease-out infinite;
}

@keyframes hotspotPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* Icon im Zentrum */
.hotspot-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--bg-dark);
    box-shadow: 
        0 4px 15px rgba(0, 255, 255, 0.4),
        0 0 20px rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: 2;
}

.hotspot:hover .hotspot-icon {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 
        0 6px 25px rgba(0, 255, 255, 0.6),
        0 0 30px rgba(0, 255, 255, 0.4);
}

/* Label Container */
.hotspot-label {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    pointer-events: none;
}

.hotspot.active,
.hotspot:hover {
    z-index: 200 !important;
}

.hotspot.active .hotspot-label,
.hotspot:hover .hotspot-label {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 200;
}

/* Verbindungslinie */
.hotspot-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, rgba(0, 255, 255, 0.3) 100%);
    transform-origin: left center;
    animation: lineGrow 0.3s ease forwards;
}

@keyframes lineGrow {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

/* Label Inhalt */
.hotspot-content {
    background: rgba(10, 15, 20, 0.95);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    white-space: nowrap;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(0, 255, 255, 0.1);
    animation: contentFade 0.3s ease 0.2s forwards;
    opacity: 0;
}

.hotspot.active .hotspot-content,
.hotspot:hover .hotspot-content {
    opacity: 1;
}

.hotspot-content strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.hotspot-content span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Label Positionen */
.hotspot-label-right {
    left: 100%;
    right: auto;
}

.hotspot-label-right .hotspot-line {
    background: linear-gradient(90deg, var(--accent) 0%, rgba(0, 255, 255, 0.3) 100%);
}

.hotspot-label-top {
    left: 50%;
    top: auto;
    bottom: 100%;
    transform: translateX(-50%);
    flex-direction: column-reverse;
    align-items: center;
}

.hotspot-label-top .hotspot-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, rgba(0, 255, 255, 0.3) 0%, var(--accent) 100%);
}

.hotspot-label-bottom {
    left: 50%;
    top: 100%;
    bottom: auto;
    transform: translateX(-50%);
    flex-direction: column;
    align-items: center;
}

.hotspot-label-bottom .hotspot-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--accent) 0%, rgba(0, 255, 255, 0.3) 100%);
}

/* Stats Pills unter dem Bild */
.system-hero-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Hint Text */
.hotspot-hint {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hotspot-hint .accent {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hotspot {
        width: 24px;
        height: 24px;
    }
    
    .hotspot-icon {
        width: 22px;
        height: 22px;
        font-size: 14px;
    }
    
    .hotspot-content {
        padding: 8px 12px;
    }
    
    .hotspot-content strong {
        font-size: 0.85rem;
    }
    
    .hotspot-content span {
        font-size: 0.75rem;
    }
    
    .hotspot-line {
        width: 25px;
    }
    
    .system-hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

/* ==========================================
   NEUE ANDROID APP SEKTION
   ========================================== */

.app-content-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-info-new .section-tag {
    display: inline-block;
    background: rgba(0, 232, 212, 0.1);
    border: 1px solid rgba(0, 232, 212, 0.3);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.app-info-new .section-title {
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
}

.app-info-new .section-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
}

.app-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.app-feat {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 24px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.app-feat:hover {
    border-color: rgba(0, 232, 212, 0.3);
    background: rgba(0, 232, 212, 0.05);
}

.app-feat-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 232, 212, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.app-feat h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.app-feat p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.55);
    margin: 0;
}

.app-cta-new {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.app-badge-new {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    font-style: italic;
    padding-left: 4px;
}

.app-visual-new {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tablet-mockup-wrapper {
    position: relative;
    width: 100%;
    max-width: 580px;
}

.tablet-mockup-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 60px rgba(0, 232, 212, 0.15));
    transition: transform 0.5s ease;
}

.tablet-mockup-wrapper:hover .tablet-mockup-img {
    transform: scale(1.02) translateY(-5px);
}

.symbol-caption {
    text-align: right;
    font-size: 0.75rem;
    color: var(--light-muted);
    opacity: 0.6;
    margin-top: 8px;
    font-style: italic;
}

.tablet-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(0, 232, 212, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.app-float-stat {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(10, 15, 30, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 232, 212, 0.2);
    border-radius: 12px;
    padding: 10px 18px;
    font-size: 0.85rem;
    color: #fff;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: floatStat 6s ease-in-out infinite;
}

.app-float-stat.stat-1 {
    top: 5%;
    right: -10px;
    animation-delay: 0s;
}

.app-float-stat.stat-2 {
    bottom: 20%;
    left: -20px;
    animation-delay: -2s;
}

.app-float-stat.stat-3 {
    bottom: 5%;
    right: 0;
    animation-delay: -4s;
}

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

@media (max-width: 968px) {
    .app-content-new {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .app-info-new .section-title {
        font-size: 2.2rem;
    }
    .app-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .app-visual-new {
        max-width: 500px;
        margin: 0 auto;
    }
    .app-float-stat.stat-1 { right: 0; }
    .app-float-stat.stat-2 { left: 0; }
}

@media (max-width: 600px) {
    .app-features-grid {
        grid-template-columns: 1fr;
    }
    .app-info-new .section-title {
        font-size: 1.8rem;
    }
    .app-cta-new {
        flex-direction: column;
        align-items: flex-start;
    }
    .app-float-stat {
        display: none;
    }
}

/* ==========================================
   FAQ Section
   ========================================== */

.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0e14 0%, #0d1117 50%, #0a0e14 100%);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 212, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
}

.faq-item.active {
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-main);
    text-align: left;
    cursor: pointer;
    gap: 16px;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #00d4ff;
}

.faq-question span {
    flex: 1;
}

.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: #00d4ff;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

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

.faq-answer div {
    padding: 0 24px 20px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    .faq-question {
        padding: 16px 18px;
        font-size: 0.9rem;
    }
    .faq-answer div {
        padding: 0 18px 16px;
    }
    .faq-answer p {
        font-size: 0.88rem;
    }
}


/* ========================================
   MEGA MENU
   ======================================== */

.nav-dropdown {
    position: static;
    display: flex;
    align-items: center;
}

.nav-link-dropdown {
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    z-index: 100002;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.mega-open .dropdown-arrow {
    transform: rotate(180deg);
}

.mega-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    background: rgba(15, 15, 25, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.15);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 100001;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 212, 255, 0.05);
}

.nav-dropdown.mega-open .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Hide mobile-only elements on desktop */
.mega-menu-back,
.mega-menu-panel-title {
    display: none;
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 32px 60px;
    max-width: 1280px;
    margin: 0 auto;
}

.mega-menu-column {
    padding: 0 12px;
}

.mega-menu-column:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.mega-menu-heading {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-top: 10px;
    margin-bottom: 20px;
    padding-left: 8px;
}

.mega-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 8px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 4px;
}

.mega-menu-item:hover {
    background: rgba(0, 212, 255, 0.08);
}

.mega-menu-icon {
    font-size: 1.4rem;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.08);
    border-radius: 10px;
    flex-shrink: 0;
    color: var(--accent);
}

.mega-menu-icon svg {
    stroke: var(--accent);
}

.mega-menu-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mega-menu-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mega-menu-desc {
    font-size: 0.75rem;
    color: var(--light-muted);
    font-weight: 400;
    text-transform: none;
}

.mega-menu-item:hover .mega-menu-title {
    color: var(--accent);
}

.mega-menu-item:hover .mega-menu-icon svg {
    stroke: var(--light);
}

.mega-menu-cta {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 12px 0;
    margin-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mega-menu-cta-text {
    font-size: 0.85rem;
    color: var(--light-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mega-menu-cta-btn {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--dark);
    background: var(--gradient-primary);
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.mega-menu-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

/* Mega Menu Responsive */
/* Old @media (max-width: 1024px) mega-menu rules removed - now handled by unified accordion rules below */
@media (max-width: 1024px) {
    .nav-dropdown {
        position: relative;
    }
}

/* Mega-Menu Click Support */
.nav-dropdown.mega-open .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-dropdown.mega-open .dropdown-arrow {
    transform: rotate(180deg);
}

/* Mobile Sticky Footer Bar */
.mobile-footer-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: 8px 0;
    padding-bottom: max(8px, env(safe-area-inset-bottom));
}

.mobile-footer-bar-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}

.mobile-footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    color: var(--light-muted);
    font-size: 0.65rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    padding: 4px 12px;
}

.mobile-footer-item:hover,
.mobile-footer-item.active {
    color: var(--primary);
}

.mobile-footer-item svg {
    width: 22px;
    height: 22px;
}

@media (max-width: 768px) {
    .mobile-footer-bar {
        display: block;
    }
    
    body {
        padding-bottom: 70px;
    }
    
    .footer {
        padding-bottom: 80px;
    }
    
    /* Mega-Menu mobile fix - now handled by unified accordion rules in Improved Mobile Mega-Menu section */
}

/* Zielgruppen mega-open - now handled by unified accordion rules above */

/* SEO Internal Links - subtle styling */
a.seo-internal-link {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(0, 212, 255, 0.4);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.3s ease;
}
a.seo-internal-link:hover {
    text-decoration-color: rgba(0, 212, 255, 0.9);
    color: #00d4ff;
}

/* ============================================
   WCAG 2.2 Accessibility Enhancements
   ============================================ */

/* Focus Visible Styles - WCAG 2.4.7 */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Skip to Content Link - WCAG 2.4.1 */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 100000;
    padding: 12px 24px;
    background: var(--primary);
    color: var(--dark);
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 8px 8px;
    transition: top 0.2s;
}

.skip-to-content:focus {
    top: 0;
}

/* Reduced Motion - WCAG 2.3.3 */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Ensure minimum touch target size - WCAG 2.5.8 */
@media (pointer: coarse) {
    a, button {
        min-height: 44px;
        min-width: 44px;
    }
}

/* ============================================
   Sidepanel - Logo & Social Links
   ============================================ */

/* Sidepanel Logo - only visible on mobile */
.sidepanel-logo {
    display: none;
}

.sidepanel-logo-img {
    height: 36px;
    width: auto;
    opacity: 0.9;
}

/* Sidepanel Social Links - only visible on mobile */
.sidepanel-social {
    display: none;
}

@media (max-width: 768px) {
    .sidepanel-logo {
        display: block;
        padding: 0 0 20px 0;
        margin-bottom: 16px;
        border-bottom: 1px solid rgba(0, 212, 255, 0.15);
    }
    
    .sidepanel-logo-img {
        height: 32px;
        width: auto;
    }
    
    .sidepanel-social {
        display: flex;
        gap: 16px;
        margin-top: auto;
        padding-top: 24px;
        border-top: 1px solid rgba(0, 212, 255, 0.15);
    }
    
    .sidepanel-social-link {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--light-muted);
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 400;
        transition: color 0.3s ease;
        padding: 8px 0;
    }
    
    .sidepanel-social-link:hover {
        color: var(--primary);
    }
    
    .sidepanel-social-link svg {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
    }
    
    /* Improved mobile nav-menu layout */
    .nav-menu {
        display: flex;
        flex-direction: column;
    }
    
    .nav-menu .nav-link.nav-cta {
        margin-top: 16px;
    }
}

/* ============================================
   Mobile Mega-Menu: Full-Width Overlay with Back Arrow
   Pattern: Slide-over submenu panel
   ============================================ */

@media (max-width: 1024px) {
    /* Dropdown arrow indicator on parent link */
    .nav-dropdown .nav-link-dropdown {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    
    .nav-dropdown .dropdown-arrow {
        transition: transform 0.3s ease;
    }
    
    .nav-dropdown.mega-open .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    /* === MEGA MENU AS FULL-WIDTH OVERLAY === */
    .mega-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        max-width: none !important;
        background: rgba(10, 10, 15, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        z-index: 100000 !important;
        transform: translateX(100%) !important;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch;
        display: flex !important;
        flex-direction: column !important;
    }
    
    /* When mega-menu is visible (moved to body, class added via JS) */
    .mega-menu.mega-menu-visible {
        transform: translateX(0) !important;
    }
    
    /* Also support when still inside dropdown (desktop fallback) */
    .nav-dropdown.mega-open .mega-menu {
        transform: translateX(0) !important;
    }
    
    /* Prevent hover from opening on touch devices */
    .nav-dropdown:hover .mega-menu {
        transform: translateX(100%) !important;
    }
    .nav-dropdown.mega-open:hover .mega-menu {
        transform: translateX(0) !important;
    }
    .mega-menu.mega-menu-visible {
        transform: translateX(0) !important;
    }
    
    /* === BACK BUTTON (injected via JS) === */
    .mega-menu-back {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 20px 24px 16px;
        margin-top: 40px;
        color: var(--primary);
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 0.02em;
        cursor: pointer;
        border: none;
        background: none;
        border-bottom: 1px solid rgba(0, 212, 255, 0.12);
        width: 100%;
        text-align: left;
        -webkit-tap-highlight-color: transparent;
    }
    
    .mega-menu-back:active {
        opacity: 0.7;
    }
    
    .mega-menu-back svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }
    
    /* === SUBMENU TITLE (injected via JS) === */
    .mega-menu-panel-title {
        font-size: 1.4rem;
        font-weight: 700;
        color: #fff;
        padding: 20px 24px 12px;
        letter-spacing: -0.01em;
    }
    
    /* === 2-Column Grid for items === */
    .mega-menu-inner {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 6px 12px !important;
        padding: 8px 20px 100px !important;
        overflow-y: auto;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch;
        flex: 1;
    }
    
    /* Column headings span full width */
    .mega-menu-column {
        display: contents;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .mega-menu-heading {
        grid-column: 1 / -1;
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--primary);
        margin: 14px 0 6px 4px;
        padding: 6px 0;
        border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    }
    
    .mega-menu-column:first-child .mega-menu-heading {
        margin-top: 4px;
    }
    
    /* Menu items */
    .mega-menu-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 12px;
        border-radius: 12px;
        min-height: 48px;
        transition: background 0.2s ease;
    }
    
    .mega-menu-item:active {
        background: rgba(0, 212, 255, 0.12);
    }
    
    /* Icons */
    .mega-menu-icon {
        display: flex;
        width: 36px;
        height: 36px;
        min-width: 36px;
        border-radius: 10px;
        background: rgba(0, 212, 255, 0.08);
        align-items: center;
        justify-content: center;
    }
    
    .mega-menu-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .mega-menu-text {
        min-width: 0;
    }
    
    .mega-menu-title {
        font-size: 0.92rem;
        font-weight: 500;
        color: #fff;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .mega-menu-desc {
        display: block;
        font-size: 0.72rem;
        color: var(--light-muted);
        opacity: 0.7;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* CTA bar at bottom */
    .mega-menu-cta {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 12px;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid rgba(0, 212, 255, 0.1);
    }
    
    .mega-menu-cta-text {
        font-size: 0.82rem;
    }
    
    .mega-menu-cta-btn {
        font-size: 0.82rem;
        padding: 8px 20px;
    }
}

/* === PHONE-SPECIFIC ADJUSTMENTS === */
@media (max-width: 480px) {
    .mega-menu-back {
        padding: 16px 16px 14px;
        font-size: 0.92rem;
    }
    
    .mega-menu-panel-title {
        font-size: 1.2rem;
        padding: 16px 16px 10px;
    }
    
    .mega-menu-inner {
        padding: 6px 12px 100px !important;
        gap: 4px 8px !important;
    }
    
    /* Hide icons on small phones for more text space */
    .mega-menu-icon {
        display: none !important;
    }
    
    /* Hide descriptions on phone */
    .mega-menu-desc {
        display: none !important;
    }
    
    .mega-menu-item {
        padding: 10px 10px;
        min-height: 44px;
        border-radius: 10px;
    }
    
    .mega-menu-title {
        font-size: 0.85rem;
    }
    
    .mega-menu-heading {
        font-size: 0.62rem;
        margin: 10px 0 4px 2px;
    }
    
    .mega-menu-cta {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .mega-menu-cta-text {
        font-size: 0.75rem;
    }
    
    .mega-menu-cta-btn {
        font-size: 0.78rem;
        padding: 8px 20px;
    }
}

/* === VERY SMALL PHONES === */
@media (max-width: 320px) {
    .mega-menu-inner {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================
   Mobile Footer Bar - 4 Items Update
   ============================================ */

@media (max-width: 768px) {
    .mobile-footer-bar-inner {
        max-width: 100%;
        padding: 0 8px;
    }
    
    .mobile-footer-item {
        flex: 1;
        padding: 4px 4px;
        font-size: 0.6rem;
    }
    
    .mobile-footer-item svg {
        width: 20px;
        height: 20px;
    }
}

/* ============================================ */
/* VIDEO SHOWCASE (INDEX PAGE)                  */
/* ============================================ */
.video-showcase-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: #0a0a0f;
}
.video-showcase-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.video-showcase {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.video-showcase-inner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(0, 229, 255, 0.02);
}
.video-showcase-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.6), rgba(0, 229, 255, 0.1) 40%, rgba(0, 229, 255, 0.05) 60%, rgba(0, 229, 255, 0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}
.video-showcase-inner::after {
    content: '';
    position: absolute;
    inset: -40px;
    border-radius: 30px;
    background: radial-gradient(ellipse at center, rgba(0, 229, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.video-showcase-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.video-showcase-label span {
    font-size: 0.75rem;
    color: #00e5ff;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}
.video-showcase-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, #00e5ff, transparent);
}
.video-showcase-title {
    font-size: 1.3rem;
    color: #fff;
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 1.4;
}
.video-showcase-title strong {
    color: #00e5ff;
    font-weight: 600;
}
.video-embed-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 18px;
    z-index: 1;
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.1), 0 20px 60px rgba(0, 0, 0, 0.4);
}
.video-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 18px;
}
.video-showcase-caption {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 18px;
    background: rgba(0, 229, 255, 0.04);
    border: 1px solid rgba(0, 229, 255, 0.1);
    border-radius: 12px;
}
.video-showcase-caption svg {
    width: 16px;
    height: 16px;
    color: #00e5ff;
    flex-shrink: 0;
}
.video-showcase-caption p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}
@keyframes laserScan {
    0% { top: -2px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: calc(100% + 2px); opacity: 0; }
}
.video-showcase-inner .laser-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00e5ff 20%, #00e5ff 50%, #00e5ff 80%, transparent);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.6), 0 0 30px rgba(0, 229, 255, 0.3);
    z-index: 3;
    animation: laserScan 4s ease-in-out infinite;
    pointer-events: none;
    border-radius: 1px;
}
.video-showcase-inner .corner-bracket {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 3;
    pointer-events: none;
}
.video-showcase-inner .corner-bracket::before,
.video-showcase-inner .corner-bracket::after {
    content: '';
    position: absolute;
    background: #00e5ff;
}
.video-showcase-inner .corner-bracket::before {
    width: 20px;
    height: 2px;
}
.video-showcase-inner .corner-bracket::after {
    width: 2px;
    height: 20px;
}
.corner-bracket.top-left { top: 8px; left: 8px; }
.corner-bracket.top-left::before { top: 0; left: 0; }
.corner-bracket.top-left::after { top: 0; left: 0; }
.corner-bracket.top-right { top: 8px; right: 8px; }
.corner-bracket.top-right::before { top: 0; right: 0; }
.corner-bracket.top-right::after { top: 0; right: 0; }
.corner-bracket.bottom-left { bottom: 8px; left: 8px; }
.corner-bracket.bottom-left::before { bottom: 0; left: 0; }
.corner-bracket.bottom-left::after { bottom: 0; left: 0; }
.corner-bracket.bottom-right { bottom: 8px; right: 8px; }
.corner-bracket.bottom-right::before { bottom: 0; right: 0; }
.corner-bracket.bottom-right::after { bottom: 0; right: 0; }
.video-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
@media (max-width: 768px) {
    .video-showcase-section {
        padding: 60px 0;
    }
    .video-showcase-title {
        font-size: 1.1rem;
    }
    .video-showcase-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}
