﻿/* =========================================================================
   ORJICLOUD LANDING PAGE FEATURES
   Hero, Services, Contact Wizard, App Promo, Mockups, Testimonials & Lumi
   ========================================================================= */

/* --- hero.css --- */
/* ============================================================
   Hero Section â€“ Modern IT-Company Look
   ============================================================ */

.hero-section {
    position: relative;
    z-index: 1;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #020617;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    /* Tiefer Inset-Schatten am unteren Rand für räumliche Tiefenwirkung */
    box-shadow: inset 0 -30px 40px -15px rgba(0, 0, 0, 0.85);
}

/* â”€â”€ Animierter Canvas-Hintergrund â”€â”€ */
.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* â”€â”€ Nebel-Overlays â”€â”€ */
.hero-nebula {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    filter: blur(80px);
    opacity: 0;
    animation: heroNebulaPulse 8s ease-in-out infinite;
}

.hero-nebula--blue {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.28) 0%, transparent 70%);
    top: -150px;
    left: -100px;
    animation-delay: 0s;
    animation-duration: 10s;
}

.hero-nebula--purple {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.22) 0%, transparent 70%);
    bottom: -100px;
    right: -80px;
    animation-delay: 3s;
    animation-duration: 12s;
}

.hero-nebula--cyan {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.18) 0%, transparent 70%);
    top: 40%;
    left: 60%;
    animation-delay: 6s;
    animation-duration: 9s;
}

@keyframes heroNebulaPulse {
    0% {
        opacity: 0;
        transform: scale(0.92) translate(0px, 0px);
    }

    25% {
        opacity: 1;
        transform: scale(1.05) translate(10px, -8px);
    }

    50% {
        opacity: 0.7;
        transform: scale(0.98) translate(-6px, 12px);
    }

    75% {
        opacity: 1;
        transform: scale(1.08) translate(5px, -5px);
    }

    100% {
        opacity: 0;
        transform: scale(0.92) translate(0px, 0px);
    }
}

/* â”€â”€ Grid-Overlay (subtiles Raster) â”€â”€ */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
    animation: heroGridDrift 20s linear infinite;
}

@keyframes heroGridDrift {
    0% {
        background-position: 0 0, 0 0;
    }

    100% {
        background-position: 60px 60px, 60px 60px;
    }
}

/* ============================================================
   Light Mode â€“ data-theme="light"
   ============================================================ */
[data-theme="light"] .hero-section {
    background: #f8fafc;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    /* Subtiler Inset-Schatten im Light-Mode */
    box-shadow: inset 0 -25px 35px -15px rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .hero-nebula--blue {
    background: radial-gradient(circle, rgba(37, 99, 235, 0.10) 0%, transparent 70%);
}

[data-theme="light"] .hero-nebula--purple {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
}

[data-theme="light"] .hero-nebula--cyan {
    background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
}

[data-theme="light"] .hero-grid-overlay {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
}

[data-theme="light"] .hero-title {
    color: #0f172a;
}

[data-theme="light"] .hero-subtitle {
    color: #475569;
}

[data-theme="light"] .hero-logo {
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.25));
}

[data-theme="light"] .hero-btn-secondary {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #0f172a;
}

[data-theme="light"] .hero-btn-secondary:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.15);
    color: #0f172a;
}

[data-theme="light"] .hero-terminal-window {
    background: rgba(248, 250, 252, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .hero-terminal-header {
    background: rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .hero-terminal-body {
    color: #1e293b;
}

[data-theme="light"] .hero-terminal-line .kw {
    color: #2563eb;
}

[data-theme="light"] .hero-terminal-line .tp {
    color: #059669;
}

[data-theme="light"] .hero-terminal-line .str {
    color: #b45309;
}

[data-theme="light"] .hero-terminal-line .cm {
    color: #6b7280;
}

[data-theme="light"] .hero-terminal-line .num {
    color: #7c3aed;
}

[data-theme="light"] .hero-terminal-line .mt {
    color: #d97706;
}

[data-theme="light"] .hero-terminal-line .op {
    color: #1e293b;
}

[data-theme="light"] .hero-terminal-line .out {
    color: #059669;
}

[data-theme="light"] .hero-terminal-cursor {
    background: #2563eb;
}

/* â”€â”€ Reduced-Motion: Animationen deaktivieren â”€â”€ */
@media (prefers-reduced-motion: reduce) {

    .hero-nebula,
    .hero-grid-overlay {
        animation: none;
        opacity: 0.5;
    }
}

/* â”€â”€ Hero Content â”€â”€ */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-8, 2rem);
    max-width: 900px;
}

.hero-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6, 1.5rem);
    display: block;
    animation: heroFadeInUp 0.6s ease both;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.15));
}

.hero-title {
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: var(--tracking-tight, -0.025em);
    color: #f8fafc;
    margin-bottom: var(--space-6, 1.5rem);
    animation: heroFadeInUp 0.6s ease 0.1s both;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #94a3b8;
    max-width: 640px;
    margin: 0 auto var(--space-8, 2rem);
    line-height: var(--leading-relaxed, 1.625);
    animation: heroFadeInUp 0.6s ease 0.2s both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4, 1rem);
    justify-content: center;
    animation: heroFadeInUp 0.6s ease 0.3s both;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2, 0.5rem);
    padding: var(--space-3, 0.75rem) var(--space-6, 1.5rem);
    border-radius: var(--radius-lg, 0.75rem);
    background: var(--color-accent, #3b82f6);
    color: #fff;
    font-weight: var(--font-semibold, 600);
    font-size: var(--text-base, 1rem);
    text-decoration: none;
    transition: all var(--transition-base, 250ms ease);
    border: none;
    cursor: pointer;
}

.hero-btn-primary:hover {
    background: var(--color-accent-hover, #2563eb);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow, 0 0 20px rgba(59, 130, 246, 0.15));
    color: #fff;
    text-decoration: none;
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2, 0.5rem);
    padding: var(--space-3, 0.75rem) var(--space-6, 1.5rem);
    border-radius: var(--radius-lg, 0.75rem);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #f8fafc;
    font-weight: var(--font-medium, 500);
    font-size: var(--text-base, 1rem);
    text-decoration: none;
    transition: all var(--transition-base, 250ms ease);
    cursor: pointer;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    color: #f8fafc;
    text-decoration: none;
}

/* â”€â”€ Typewriter Code Terminal â”€â”€ */
.hero-terminal {
    position: relative;
    z-index: 2;
    margin-top: var(--space-8, 2rem);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    animation: heroFadeInUp 0.6s ease 0.4s both;
}

.hero-terminal-window {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    text-align: left;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.hero-terminal-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.5rem 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.hero-terminal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.hero-terminal-dot:nth-child(1) {
    background: #ef4444;
}

.hero-terminal-dot:nth-child(2) {
    background: #f59e0b;
}

.hero-terminal-dot:nth-child(3) {
    background: #10b981;
}

.hero-terminal-body {
    padding: 0.75rem 1rem;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 0.8rem;
    line-height: 1.6;
    color: #d4d4d4;
    min-height: 100px;
}

.hero-terminal-line {
    white-space: pre;
    min-height: 1.3em;
}

.hero-terminal-line .kw {
    color: #569cd6;
}

.hero-terminal-line .tp {
    color: #4ec9b0;
}

.hero-terminal-line .str {
    color: #ce9178;
}

.hero-terminal-line .cm {
    color: #6a9955;
}

.hero-terminal-line .num {
    color: #b5cea8;
}

.hero-terminal-line .mt {
    color: #dcdcaa;
}

.hero-terminal-line .op {
    color: #d4d4d4;
}

.hero-terminal-line .out {
    color: #4ec9b0;
}

.hero-terminal-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: #569cd6;
    margin-left: 2px;
    animation: heroBlink 0.8s step-end infinite;
    vertical-align: text-bottom;
}

@keyframes heroBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
    }

    .hero-logo {
        width: 60px;
        height: 60px;
    }

    /* Auf Smartphones: Reduziere teure GPU-Blur-Filter und Dauer-Keyframe-Loops */
    .hero-nebula {
        filter: blur(40px);
        animation-duration: 16s;
    }

    .hero-nebula--cyan {
        display: none; /* 2 Nebel reichen auf mobilen Bildschirmen völlig aus */
    }

    .hero-grid-overlay {
        animation: none; /* Statisches Raster spart CPU/GPU Zyklen */
    }

    .hero-terminal {
        max-width: 100%;
    }

    .hero-terminal-body {
        font-size: 0.7rem;
        padding: 0.6rem 0.75rem;
    }
}

/* --- services.css --- */
/* ============================================================
   Services Section â€“ Modern Service Cards
   ============================================================ */

.services-section {
    position: relative;
    z-index: 2;
    background: var(--color-bg, #0f172a);
    overflow: hidden;
    /* Schatten nach oben, sodass die Leistungs-Section visuell über der Hero-Section liegt */
    box-shadow: 0 -15px 35px rgba(0, 0, 0, 0.45);
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border, rgba(255, 255, 255, 0.08)), transparent);
}

.services-header {
    text-align: center;
    margin-bottom: var(--space-12, 3rem);
}

.services-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2, 0.5rem);
    padding: var(--space-1, 0.25rem) var(--space-3, 0.75rem);
    border-radius: var(--radius-full, 9999px);
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--color-blue-300, #93c5fd);
    font-size: var(--text-sm, 0.875rem);
    font-weight: var(--font-medium, 500);
    margin-bottom: var(--space-4, 1rem);
}

.services-title {
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--color-text, #f8fafc);
    margin-bottom: var(--space-4, 1rem);
    letter-spacing: var(--tracking-tight, -0.025em);
}

.services-subtitle {
    color: var(--color-text-secondary, #94a3b8);
    font-size: var(--text-lg, 1.125rem);
    max-width: 600px;
    margin: 0 auto;
}

/* â”€â”€ Service Cards Grid â”€â”€ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6, 1.5rem);
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* â”€â”€ Individual Service Card â”€â”€ */
.service-card {
    position: relative;
    background: var(--color-bg-card, rgba(255, 255, 255, 0.03));
    border: 1px solid var(--color-border, rgba(255, 255, 255, 0.08));
    border-radius: var(--radius-2xl, 1.25rem);
    padding: var(--space-8, 2rem);
    transition: all var(--transition-base, 250ms ease);
    overflow: hidden;
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent, #3b82f6), transparent);
    opacity: 0;
    transition: opacity var(--transition-base, 250ms ease);
}

.service-card:hover {
    border-color: var(--color-border-hover, rgba(255, 255, 255, 0.15));
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

/* â”€â”€ Card Icon â”€â”€ */
.service-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-xl, 1rem);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--space-5, 1.25rem);
    transition: all var(--transition-base, 250ms ease);
}

.service-card:nth-child(1) .service-card-icon {
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-blue-400, #60a5fa);
}

.service-card:nth-child(2) .service-card-icon {
    background: rgba(139, 92, 246, 0.1);
    color: #a78bfa;
}

.service-card:nth-child(3) .service-card-icon {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-emerald-400, #34d399);
}

.service-card:hover .service-card-icon {
    transform: scale(1.05);
}

/* â”€â”€ Card Content â”€â”€ */
.service-card-title {
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: var(--text-xl, 1.25rem);
    font-weight: var(--font-semibold, 600);
    color: var(--color-text, #f8fafc);
    margin-bottom: var(--space-3, 0.75rem);
}

.service-card-text {
    color: var(--color-text-secondary, #94a3b8);
    font-size: var(--text-base, 1rem);
    line-height: var(--leading-relaxed, 1.625);
    margin-bottom: var(--space-6, 1.5rem);
}

/* â”€â”€ Tech Stack Badges â”€â”€ */
.service-card-tech {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2, 0.5rem);
    margin-bottom: var(--space-6, 1.5rem);
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: var(--space-1, 0.25rem) var(--space-3, 0.75rem);
    border-radius: var(--radius-full, 9999px);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--color-text-secondary, #94a3b8);
    font-size: var(--text-xs, 0.75rem);
    font-weight: var(--font-medium, 500);
    transition: all var(--transition-fast, 150ms ease);
}

.tech-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-text, #f8fafc);
}

/* â”€â”€ Card Link â”€â”€ */
.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2, 0.5rem);
    color: var(--color-accent, #3b82f6);
    font-size: var(--text-sm, 0.875rem);
    font-weight: var(--font-medium, 500);
    text-decoration: none;
    transition: all var(--transition-fast, 150ms ease);
}

.service-card-link:hover {
    gap: var(--space-3, 0.75rem);
    color: var(--color-blue-300, #93c5fd);
    text-decoration: none;
}

/* â”€â”€ Card Shine Effect (from original design) â”€â”€ */
.service-card .shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(from 205deg at 50% 50%, rgba(0, 123, 255, 0) 0deg, #007bff 25deg, rgba(0, 123, 255, 0.18) 295deg, rgba(0, 123, 255, 0) 360deg);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover .shine {
    opacity: 0.08;
}

/* ============================================================
   Light Mode â€“ data-theme="light"
   ============================================================ */
[data-theme="light"] .services-section {
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.07);
}

[data-theme="light"] .services-label {
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: var(--color-blue-700, #1d4ed8);
}

[data-theme="light"] .service-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .service-card:hover {
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .service-card:nth-child(1) .service-card-icon {
    background: rgba(37, 99, 235, 0.08);
    color: var(--color-blue-600, #2563eb);
}

[data-theme="light"] .service-card:nth-child(2) .service-card-icon {
    background: rgba(124, 58, 237, 0.08);
    color: #7c3aed;
}

[data-theme="light"] .service-card:nth-child(3) .service-card-icon {
    background: rgba(5, 150, 105, 0.08);
    color: var(--color-emerald-600, #059669);
}

[data-theme="light"] .tech-badge {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--color-text-secondary, #475569);
}

[data-theme="light"] .tech-badge:hover {
    background: rgba(0, 0, 0, 0.06);
    color: var(--color-text, #0f172a);
}

[data-theme="light"] .service-card-link:hover {
    color: var(--color-blue-700, #1d4ed8);
}

[data-theme="light"] .service-card .shine {
    background: conic-gradient(from 205deg at 50% 50%, rgba(0, 123, 255, 0) 0deg, #007bff 25deg, rgba(0, 123, 255, 0.10) 295deg, rgba(0, 123, 255, 0) 360deg);
}

[data-theme="light"] .service-card:hover .shine {
    opacity: 0.12;
}

/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 768px) {
    .service-card {
        padding: var(--space-6, 1.5rem);
    }

    .service-card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
}

/* --- contact-wizard.css --- */
/* ============================================================
   Contact Wizard â€“ Modern Step-by-Step Form
   ============================================================ */

.contact-section {
    position: relative;
    background: var(--color-bg, #0f172a);
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border, rgba(255, 255, 255, 0.08)), transparent);
}

.contact-header {
    text-align: center;
    margin-bottom: var(--space-12, 3rem);
}

.contact-header .services-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2, 0.5rem);
    padding: var(--space-1, 0.25rem) var(--space-3, 0.75rem);
    border-radius: var(--radius-full, 9999px);
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--color-blue-300, #93c5fd);
    font-size: var(--text-sm, 0.875rem);
    font-weight: var(--font-medium, 500);
    margin-bottom: var(--space-4, 1rem);
}

.contact-header h2 {
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--color-text, #f8fafc);
    margin-bottom: var(--space-4, 1rem);
    letter-spacing: var(--tracking-tight, -0.025em);
}

.contact-header p {
    color: var(--color-text-secondary, #94a3b8);
    font-size: var(--text-lg, 1.125rem);
    max-width: 600px;
    margin: 0 auto;
}

/* â”€â”€ Wizard Progress â”€â”€ */
.wizard-progress {
    position: relative;
    margin-bottom: var(--space-10, 2.5rem);
}

.wizard-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2, 0.5rem);
    opacity: 0.4;
    transition: opacity var(--transition-base, 250ms ease);
}

.wizard-step.active,
.wizard-step.done {
    opacity: 1;
}

.wizard-step span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-bg-card, rgba(255, 255, 255, 0.03));
    border: 2px solid var(--color-border, rgba(255, 255, 255, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-semibold, 600);
    font-size: var(--text-base, 1rem);
    color: var(--color-text-secondary, #94a3b8);
    transition: all var(--transition-base, 250ms ease);
    font-family: var(--font-sans, 'Inter', sans-serif);
}

.wizard-step.active span {
    background: var(--color-accent, #3b82f6);
    border-color: var(--color-accent, #3b82f6);
    color: #fff;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.wizard-step.done span {
    background: var(--color-success, #10b981);
    border-color: var(--color-success, #10b981);
    color: #fff;
}

.wizard-step small {
    font-size: var(--text-xs, 0.75rem);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-muted, #64748b);
    font-family: var(--font-sans, 'Inter', sans-serif);
}

.wizard-progress-bar {
    height: 2px;
    background: var(--color-border, rgba(255, 255, 255, 0.08));
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    z-index: 0;
}

.wizard-progress-fill {
    height: 100%;
    background: var(--color-accent, #3b82f6);
    transition: width var(--transition-slow, 400ms) ease;
    border-radius: 1px;
}

/* â”€â”€ Wizard Panels â”€â”€ */
.wizard-panel {
    display: none;
    animation: wizardFadeIn 0.35s ease;
}

.wizard-panel.active {
    display: block;
}

@keyframes wizardFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wizard-question {
    font-size: var(--text-2xl, 1.5rem);
    font-weight: var(--font-bold, 700);
    margin-bottom: var(--space-2, 0.5rem);
    color: var(--color-text, #f8fafc);
    font-family: var(--font-sans, 'Inter', sans-serif);
}

.wizard-sub {
    color: var(--color-text-secondary, #94a3b8);
    margin-bottom: var(--space-6, 1.5rem);
    font-size: var(--text-base, 1rem);
}

/* â”€â”€ Wizard Options (Service-Card-Stil) â”€â”€ */
.wizard-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3, 0.75rem);
    margin-bottom: var(--space-4, 1rem);
}

@media (max-width: 500px) {
    .wizard-options {
        grid-template-columns: 1fr;
    }
}

.wizard-option {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-1, 0.25rem);
    padding: var(--space-5, 1.25rem);
    background: var(--color-bg-card, rgba(255, 255, 255, 0.03));
    border: 1px solid var(--color-border, rgba(255, 255, 255, 0.08));
    border-radius: var(--radius-2xl, 1.25rem);
    color: var(--color-text, #f8fafc);
    cursor: pointer;
    transition: all var(--transition-base, 250ms ease);
    text-align: left;
    font-family: var(--font-sans, 'Inter', sans-serif);
    overflow: hidden;
}

/* Shine-Effekt wie bei Service-Cards */
.wizard-option .shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(from 205deg at 50% 50%, rgba(0, 123, 255, 0) 0deg, #007bff 25deg, rgba(0, 123, 255, 0.18) 295deg, rgba(0, 123, 255, 0) 360deg);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.wizard-option:hover .shine {
    opacity: 0.08;
}

.wizard-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent, #3b82f6), transparent);
    opacity: 0;
    transition: opacity var(--transition-base, 250ms ease);
}

.wizard-option:hover {
    border-color: var(--color-border-hover, rgba(255, 255, 255, 0.15));
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.wizard-option:hover::before {
    opacity: 1;
}

.wizard-option.selected {
    background: rgba(59, 130, 246, 0.12);
    border-color: var(--color-accent, #3b82f6);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

.wizard-option.selected::before {
    opacity: 1;
    background: linear-gradient(90deg, transparent, var(--color-accent, #3b82f6), transparent);
}

.wizard-emoji {
    font-size: var(--text-2xl, 1.5rem);
    color: var(--color-accent, #3b82f6);
    margin-bottom: var(--space-1, 0.25rem);
    transition: all var(--transition-base, 250ms ease);
}

.wizard-option:hover .wizard-emoji {
    transform: scale(1.05);
}

.wizard-option strong {
    font-size: var(--text-base, 1rem);
    color: var(--color-text, #f8fafc);
    font-weight: var(--font-semibold, 600);
}

.wizard-option small {
    font-size: var(--text-sm, 0.875rem);
    color: var(--color-text-secondary, #94a3b8);
    font-weight: var(--font-normal, 400);
}

/* â”€â”€ Back / Skip Buttons â”€â”€ */
.wizard-back,
.wizard-skip {
    background: none;
    border: none;
    color: var(--color-text-secondary, #94a3b8);
    font-size: var(--text-sm, 0.875rem);
    cursor: pointer;
    padding: var(--space-2, 0.5rem) 0;
    margin-top: var(--space-3, 0.75rem);
    transition: color var(--transition-fast, 150ms ease);
    display: inline-block;
    font-family: var(--font-sans, 'Inter', sans-serif);
}

.wizard-back:hover,
.wizard-skip:hover {
    color: var(--color-text, #f8fafc);
}

.wizard-skip {
    float: right;
}

/* â”€â”€ Summary â”€â”€ */
.wizard-summary {
    background: var(--color-bg-card, rgba(255, 255, 255, 0.03));
    border: 1px solid var(--color-border, rgba(255, 255, 255, 0.08));
    border-radius: var(--radius-xl, 1rem);
    padding: var(--space-5, 1.25rem);
    font-size: var(--text-base, 1rem);
    color: var(--color-text-secondary, #94a3b8);
}

.wizard-summary strong {
    color: var(--color-text, #f8fafc);
}

/* â”€â”€ Form Fields â”€â”€ */
.wizard-form-group {
    margin-bottom: var(--space-4, 1rem);
}

.wizard-form-group label {
    display: block;
    font-size: var(--text-sm, 0.875rem);
    color: var(--color-text-secondary, #94a3b8);
    margin-bottom: var(--space-2, 0.5rem);
    font-weight: var(--font-medium, 500);
    font-family: var(--font-sans, 'Inter', sans-serif);
}

.wizard-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--color-border, rgba(255, 255, 255, 0.08));
    border-radius: var(--radius-lg, 0.75rem);
    padding: var(--space-3, 0.75rem) var(--space-4, 1rem);
    color: var(--color-text, #f8fafc);
    font-size: var(--text-base, 1rem);
    transition: border var(--transition-fast, 150ms ease);
    font-family: var(--font-sans, 'Inter', sans-serif);
}

.wizard-input:focus {
    outline: none;
    border-color: var(--color-accent, #3b82f6);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.wizard-input::placeholder {
    color: var(--color-text-muted, #64748b);
}

.wizard-textarea {
    resize: vertical;
    min-height: 80px;
}

/* â”€â”€ Actions & Navigation Buttons â”€â”€ */
.wizard-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-3, 0.75rem);
    margin-top: var(--space-6, 1.5rem);
    padding-top: var(--space-4, 1rem);
    border-top: 1px solid var(--color-border, rgba(255, 255, 255, 0.08));
}

.wizard-btn-prev {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2, 0.5rem);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-xl, 0.75rem);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border, rgba(255, 255, 255, 0.12));
    color: var(--color-text-secondary, #94a3b8);
    font-size: var(--text-sm, 0.875rem);
    font-weight: var(--font-medium, 500);
    cursor: pointer;
    transition: all var(--transition-base, 250ms ease);
    font-family: var(--font-sans, 'Inter', sans-serif);
}

.wizard-btn-prev:hover {
    color: var(--color-text, #f8fafc);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.wizard-btn-next,
.wizard-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2, 0.5rem);
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-xl, 0.75rem);
    background: var(--color-accent, #3b82f6);
    border: none;
    color: #fff;
    font-size: var(--text-sm, 0.875rem);
    font-weight: var(--font-semibold, 600);
    cursor: pointer;
    transition: all var(--transition-base, 250ms ease);
    font-family: var(--font-sans, 'Inter', sans-serif);
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

.wizard-btn-next:hover,
.wizard-btn-primary:hover {
    background: var(--color-accent-hover, #2563eb);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.wizard-btn-next:disabled,
.wizard-btn-primary:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* â”€â”€ Success Animation â”€â”€ */
.wizard-success {
    text-align: center;
    padding: var(--space-12, 3rem) var(--space-6, 1.5rem);
    max-width: 550px;
    margin: var(--space-8, 2rem) auto;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.wizard-success.show {
    opacity: 1;
    transform: translateY(0);
}

.wizard-success-icon {
    font-size: 4rem;
    margin-bottom: var(--space-6, 1.5rem);
    color: var(--color-success, #10b981);
    animation: successPop 0.6s cubic-bezier(0.18, 0.89, 0.32, 1.28) both;
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    60% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.wizard-success h3 {
    font-size: var(--text-3xl, 1.875rem);
    font-weight: var(--font-bold, 700);
    color: var(--color-text, #f8fafc);
    margin: 0 0 var(--space-2, 0.5rem);
    font-family: var(--font-sans, 'Inter', sans-serif);
}

.wizard-success p {
    color: var(--color-text-secondary, #94a3b8);
    font-size: var(--text-base, 1rem);
    line-height: var(--leading-relaxed, 1.625);
    margin: 0 0 var(--space-5, 1.25rem);
}

.wizard-success-email {
    display: inline-block;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-lg, 0.75rem);
    padding: var(--space-2, 0.5rem) var(--space-5, 1.25rem);
    color: var(--color-text-secondary, #94a3b8);
    font-size: var(--text-sm, 0.875rem);
    margin-top: var(--space-2, 0.5rem);
}

.wizard-success-email strong {
    color: var(--color-blue-300, #93c5fd);
}

/* â”€â”€ Error Alert â”€â”€ */
.wizard-alert {
    padding: var(--space-3, 0.75rem) var(--space-4, 1rem);
    border-radius: var(--radius-lg, 0.75rem);
    font-size: var(--text-sm, 0.875rem);
    margin-top: var(--space-2, 0.5rem);
    display: flex;
    align-items: center;
    gap: var(--space-2, 0.5rem);
}

.wizard-alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: var(--color-red-300, #fca5a5);
}

.wizard-alert-error i {
    color: var(--color-error, #ef4444);
}

/* ============================================================
   Light Mode â€“ data-theme="light"
   ============================================================ */
[data-theme="light"] .contact-header .services-label {
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: var(--color-blue-700, #1d4ed8);
}

[data-theme="light"] .wizard-input {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: var(--color-text, #0f172a);
}

[data-theme="light"] .wizard-input:focus {
    border-color: var(--color-accent, #2563eb);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

[data-theme="light"] .wizard-input::placeholder {
    color: var(--color-text-muted, #94a3b8);
}

[data-theme="light"] .wizard-option {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--color-text, #0f172a);
}

[data-theme="light"] .wizard-option:hover {
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .wizard-option.selected {
    background: rgba(37, 99, 235, 0.06);
    border-color: var(--color-accent, #2563eb);
}

[data-theme="light"] .wizard-option strong {
    color: var(--color-text, #0f172a);
}

[data-theme="light"] .wizard-option small {
    color: var(--color-text-secondary, #475569);
}

[data-theme="light"] .wizard-option .shine {
    background: conic-gradient(from 205deg at 50% 50%, rgba(0, 123, 255, 0) 0deg, #007bff 25deg, rgba(0, 123, 255, 0.10) 295deg, rgba(0, 123, 255, 0) 360deg);
}

[data-theme="light"] .wizard-option:hover .shine {
    opacity: 0.12;
}

[data-theme="light"] .wizard-summary {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--color-text-secondary, #475569);
}

[data-theme="light"] .wizard-summary strong {
    color: var(--color-text, #0f172a);
}

[data-theme="light"] .wizard-back:hover,
[data-theme="light"] .wizard-skip:hover {
    color: var(--color-text, #0f172a);
}

[data-theme="light"] .wizard-alert-error {
    background: rgba(220, 38, 38, 0.06);
    border: 1px solid rgba(220, 38, 38, 0.2);
    color: #b91c1c;
}

[data-theme="light"] .wizard-success-email {
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: var(--color-text-secondary, #475569);
}

[data-theme="light"] .wizard-success-email strong {
    color: var(--color-blue-600, #2563eb);
}

/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 768px) {
    .wizard-question {
        font-size: var(--text-xl, 1.25rem);
    }

    .wizard-option {
        padding: var(--space-4, 1rem);
    }
}

/* --- app-promo.css --- */
/* ============================================================
   App Promotion â€“ Feature Tabs Section
   ============================================================ */

.app-promo-section {
    position: relative;
    background: var(--color-bg-alt, #1e293b);
    overflow: hidden;
}

.app-promo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border, rgba(255, 255, 255, 0.08)), transparent);
}

/* ── Tabs Navigation ── */
.promo-tabs {
    display: flex;
    gap: var(--space-2, 0.5rem);
    margin-bottom: var(--space-6, 1.5rem);
    flex-wrap: wrap;
    justify-content: center;
}

.promo-tab {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2, 0.5rem);
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius-full, 9999px);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-secondary, #94a3b8);
    font-size: var(--text-sm, 0.875rem);
    font-weight: var(--font-medium, 500);
    cursor: pointer;
    transition: all var(--transition-base, 250ms ease);
    font-family: var(--font-sans, 'Inter', sans-serif);
}

.promo-tab:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--color-text, #f8fafc);
    transform: translateY(-1px);
}

.promo-tab.active {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(139, 92, 246, 0.25) 100%);
    border-color: rgba(96, 165, 250, 0.5);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.2);
}

.promo-tab-icon {
    font-size: 1rem;
}

/* ── Tab Card Container ── */
.promo-feature-card {
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    padding: 2.25rem 2.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.promo-feature-card:hover {
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* ── Tab Content ── */
.promo-panel {
    display: none;
    animation: promoFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-panel.active {
    display: block;
}

@keyframes promoFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.promo-panel-header {
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 1rem;
}

.promo-panel-title {
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-text, #f8fafc);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.promo-panel-text {
    color: var(--color-text-secondary, #94a3b8);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.promo-panel-features {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem 1.5rem;
}

.promo-panel-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text-secondary, #cbd5e1);
    font-size: 0.95rem;
    line-height: 1.4;
    background: rgba(255, 255, 255, 0.02);
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.promo-panel-features li i {
    flex-shrink: 0;
    font-size: 1.1rem;
}

.promo-panel-features li .feat-text strong {
    color: #ffffff;
}

/* ── Pricing Cards ── */
.promo-pricing {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3, 0.75rem);
    margin-top: 1.75rem;
    justify-content: center;
}

.promo-pricing-card {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full, 9999px);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-secondary, #94a3b8);
    font-size: 0.85rem;
    transition: all var(--transition-fast, 150ms ease);
}

.promo-pricing-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.promo-pricing-card .price-icon {
    font-size: 0.9rem;
}

.promo-pricing-card .price-value {
    font-weight: 600;
    color: #ffffff;
}

/* ============================================================
   Light Mode – data-theme="light"
   ============================================================ */
[data-theme="light"] .promo-feature-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.07);
}

[data-theme="light"] .promo-tab {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--color-text-secondary, #475569);
}

[data-theme="light"] .promo-tab:hover {
    background: rgba(0, 0, 0, 0.07);
    border-color: rgba(0, 0, 0, 0.15);
    color: var(--color-text, #0f172a);
}

[data-theme="light"] .promo-tab.active {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(139, 92, 246, 0.12) 100%);
    border-color: rgba(37, 99, 235, 0.4);
    color: var(--color-blue-700, #1d4ed8);
}

[data-theme="light"] .promo-panel-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .promo-panel-title {
    color: #0f172a;
}

[data-theme="light"] .promo-panel-features li {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: #475569;
}

[data-theme="light"] .promo-panel-features li .feat-text strong {
    color: #0f172a;
}

[data-theme="light"] .promo-pricing-card {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--color-text-secondary, #475569);
}

[data-theme="light"] .promo-pricing-card:hover {
    border-color: rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .promo-pricing-card .price-value {
    color: var(--color-text, #0f172a);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .promo-feature-card {
        padding: 1.5rem 1.25rem;
    }

    .promo-tabs {
        gap: 0.4rem;
    }

    .promo-tab {
        padding: 0.45rem 0.85rem;
        font-size: 0.78rem;
    }

    .promo-panel-title {
        font-size: 1.25rem;
    }

    .promo-panel-features {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
}

/* --- app-mockup.css --- */
/* ============================================================
   App-Mockup Styles â€“ Professionelle Desktop-App Darstellung
   ============================================================ */

.app-mockup-wrapper {
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.desktop-mockup {
    background: #0f172a;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    width: 100%;
    max-width: 540px;
    overflow: hidden;
}

/* â”€â”€ Title Bar â”€â”€ */
.mockup-header {
    background: #1a1a2e;
    padding: 0.5rem 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    user-select: none;
}

.mockup-app-title {
    font-size: 0.7rem;
    color: #8892b0;
    display: flex;
    align-items: center;
    font-weight: 500;
    letter-spacing: 0.2px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.mockup-app-title img {
    width: 14px;
    height: 14px;
    object-fit: contain;
    margin-right: 6px;
    opacity: 0.7;
}

.mockup-win-controls {
    display: flex;
    align-items: center;
    gap: 2px;
}

.win-control {
    color: #4a5568;
    font-size: 0.6rem;
    width: 28px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.15s ease;
}

.win-control:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #8892b0;
}

.win-control.close-btn:hover {
    background: #e53e3e;
    color: white;
}

/* â”€â”€ Body Layout â”€â”€ */
.mockup-body {
    display: grid;
    grid-template-columns: 180px 1fr;
    height: 340px;
}

@media (max-width: 500px) {
    .mockup-body {
        grid-template-columns: 130px 1fr;
        height: 340px;
    }

    .mockup-sidebar {
        padding: 0.5rem;
    }

    .mockup-sidebar-header {
        padding-bottom: 0.5rem;
        gap: 6px;
    }

    .mockup-avatar {
        width: 22px;
        height: 22px;
        font-size: 0.65rem;
    }

    .mockup-name {
        font-size: 0.65rem;
    }

    .mockup-menu-item {
        font-size: 0.65rem;
        padding: 0.3rem 0.4rem;
        gap: 6px;
    }

    .mockup-content {
        padding: 0.5rem;
    }
}

/* â”€â”€ Sidebar â”€â”€ */
.mockup-sidebar {
    background: #161b2d;
    border-right: 1px solid rgba(255, 255, 255, 0.03);
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mockup-sidebar-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    margin-bottom: 0.25rem;
}

.mockup-avatar {
    width: 26px;
    height: 26px;
    background: #3b82f6;
    color: white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mockup-name {
    font-weight: 500;
    font-size: 0.7rem;
    color: #ccd6f6;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.mockup-status {
    font-size: 0.55rem;
    color: #64ffda;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mockup-menu {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mockup-menu-item {
    color: #4a5568;
    font-size: 0.7rem;
    padding: 0.4rem 0.5rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.mockup-menu-item i {
    width: 14px;
    text-align: center;
    font-size: 0.65rem;
}

.mockup-menu-item:hover {
    color: #8892b0;
    background: rgba(255, 255, 255, 0.03);
}

.mockup-menu-item.active {
    background: rgba(59, 130, 246, 0.08);
    color: #60a5fa;
    font-weight: 500;
}

/* â”€â”€ Content Area â”€â”€ */
.mockup-content {
    padding: 1rem;
    background: #0f172a;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 0;
}

.mockup-title-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mockup-title-bar h4 {
    margin: 0;
    font-size: 0.8rem;
    color: #ccd6f6;
    font-weight: 600;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.mockup-badge {
    background: rgba(16, 185, 129, 0.08);
    color: #34d399;
    font-size: 0.55rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* â”€â”€ Data Table â”€â”€ */
.mockup-table {
    width: 100%;
    border-collapse: collapse;
}

.mockup-table th {
    text-align: left;
    font-size: 0.55rem;
    color: #4a5568;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.4rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.mockup-table td {
    padding: 0.5rem;
    font-size: 0.65rem;
    color: #8892b0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.mockup-table tr:last-child td {
    border-bottom: none;
}

.mockup-table .entry-name {
    color: #ccd6f6;
    font-weight: 500;
}

.mockup-table .entry-email {
    color: #4a5568;
    font-size: 0.6rem;
}

.mockup-table .entry-icon {
    color: #60a5fa;
    font-size: 0.7rem;
    width: 20px;
}

/* â”€â”€ Mockup Views (interaktiv) â”€â”€ */
.mockup-view {
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.mockup-view.active {
    display: flex;
}

/* â”€â”€ Empty State â”€â”€ */
.mockup-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 0.5rem;
    color: #4a5568;
    min-height: 100px;
}

.mockup-empty i {
    font-size: 1.5rem;
    opacity: 0.3;
}

.mockup-empty span {
    font-size: 0.65rem;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

/* ============================================================
   Light Mode â€“ data-theme="light"
   ============================================================ */
[data-theme="light"] .desktop-mockup {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .mockup-header {
    background: #f1f5f9;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .mockup-app-title {
    color: #475569;
}

[data-theme="light"] .mockup-app-title img {
    opacity: 0.5;
}

[data-theme="light"] .win-control {
    color: #94a3b8;
}

[data-theme="light"] .win-control:hover {
    background: rgba(0, 0, 0, 0.06);
    color: #475569;
}

[data-theme="light"] .mockup-sidebar {
    background: #f8fafc;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .mockup-sidebar-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .mockup-name {
    color: #0f172a;
}

[data-theme="light"] .mockup-menu-item {
    color: #64748b;
}

[data-theme="light"] .mockup-menu-item:hover {
    color: #0f172a;
    background: rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .mockup-menu-item.active {
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
}

[data-theme="light"] .mockup-content {
    background: #ffffff;
}

[data-theme="light"] .mockup-title-bar h4 {
    color: #0f172a;
}

[data-theme="light"] .mockup-table th {
    color: #64748b;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .mockup-table td {
    color: #475569;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .mockup-table .entry-name {
    color: #0f172a;
}

[data-theme="light"] .mockup-table .entry-email {
    color: #64748b;
}

[data-theme="light"] .mockup-empty {
    color: #94a3b8;
}

/* --- references.css --- */
/* ============================================================
   References / Referenzen Styles â€“ Freischwebende Logos (Aufkleber-Effekt)
   ============================================================ */

.references-section {
    background-color: #e2e8f0; /* Helles Grau für den Kontrast */
    box-shadow: inset 0 8px 16px -6px rgba(0, 0, 0, 0.12), inset 0 -8px 16px -6px rgba(0, 0, 0, 0.12);
    transition: background-color 0.3s ease;
}

.references-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f172a; /* Dunkler Text auf hellem Grund */
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.references-subtitle {
    font-size: 1.1rem;
    color: #475569; /* Slate-600 */
    font-weight: 400;
}

.references-wall {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 2.5rem;
    justify-items: center;
    align-items: center;
}

.ref-wall-item {
    background: transparent;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ref-wall-item:hover {
    transform: translateY(-8px) scale(1.06);
}

.ref-logo-img {
    max-height: 80px;
    max-width: 180px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.35s ease;
}

/* Spezialklasse für helle/weiße Logos im normalen Zustand */
.ref-logo-dark {
    filter: brightness(0.25) opacity(0.8);
}

.ref-wall-item:hover .ref-logo-img {
    filter: grayscale(0%) opacity(1) drop-shadow(0 12px 16px rgba(0, 0, 0, 0.25));
}

.ref-wall-item:hover .ref-logo-img.ref-logo-dark {
    filter: brightness(1) opacity(1) drop-shadow(0 12px 16px rgba(0, 0, 0, 0.25));
}

@media (max-width: 768px) {
    .references-title {
        font-size: 1.8rem;
    }
    .references-wall {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 24px;
    }
    .ref-logo-img {
        max-height: 65px;
        max-width: 140px;
    }
}

@media (max-width: 480px) {
    .references-title {
        font-size: 1.5rem;
    }
}

/* Schriftzug-Logo WAGENEFFEKT */
.ref-logo-text-link {
    text-decoration: none !important;
    display: inline-block;
    padding: 10px;
}

.ref-logo-text {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    transition: all 0.35s ease;
}

.ref-logo-text .part-wagen,
.ref-logo-text .part-effekt {
    color: #94a3b8; /* grauer Ausgangszustand analog zu Bildern */
    transition: color 0.35s ease;
}

.ref-wall-item:hover .ref-logo-text .part-wagen {
    color: #000000; /* WAGEN wird schwarz im Hover */
}

.ref-wall-item:hover .ref-logo-text .part-effekt {
    color: #dc2626; /* EFFEKT wird rot im Hover */
}

.ref-wall-item:hover .ref-logo-text {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.15));
}

/* --- lumi-logo.css --- */
/* ==========================================================================
   orjicloud Lumi - Universelles, skalierbares 3D-Licht- & Waber-Logo
   Verwendbar in Blazor-Komponenten sowie auf externen Partner-Websites.
   Steuerung der Größe über die CSS-Variable: --lumi-size (Standard: 360px)
   ========================================================================== */

:root {
    --lumi-size: 360px;
    --lumi-color-primary: #31AA64;
    --lumi-color-glow: rgba(74, 255, 170, 0.9);
    --lumi-color-glow-soft: rgba(49, 170, 100, 0.7);
}

/* Vordefinierte Größen-Klassen */
.lumi-size-xs { --lumi-size: 48px; }
.lumi-size-sm { --lumi-size: 96px; }
.lumi-size-md { --lumi-size: 180px; }
.lumi-size-lg { --lumi-size: 260px; }
.lumi-size-xl { --lumi-size: 360px; }

/* â”€â”€ Basis-Container â”€â”€ */
.lumi-logo-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--lumi-size, 360px);
    height: var(--lumi-size, 360px);
    perspective: 1000px;
    user-select: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

.lumi-logo-container.non-interactive {
    cursor: default;
}

/* 1. Weich diffundierende äußere Lichtwolke */
.lumi-fluid-aura {
    position: absolute;
    width: calc(var(--lumi-size, 360px) * 0.92);
    height: calc(var(--lumi-size, 360px) * 0.92);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.3) 0%, rgba(49, 170, 100, 0.15) 50%, transparent 75%);
    filter: blur(calc(var(--lumi-size, 360px) * 0.1));
    pointer-events: none;
    animation: lumiAuraBreathe 8s ease-in-out infinite alternate;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s ease, filter 0.7s ease;
}

@keyframes lumiAuraBreathe {
    0% { transform: scale(0.92); opacity: 0.55; }
    100% { transform: scale(1.15); opacity: 0.95; }
}

/* 2. Organisch morphende, wabernde Plasma-Lichtschichten */
.lumi-fluid-blob {
    position: absolute;
    pointer-events: none;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease, filter 0.6s ease;
}

.lumi-fluid-blob.blob-1 {
    width: calc(var(--lumi-size, 360px) * 0.7);
    height: calc(var(--lumi-size, 360px) * 0.7);
    background: radial-gradient(circle at 45% 45%, rgba(74, 255, 170, 0.5) 0%, rgba(49, 170, 100, 0.28) 50%, transparent 75%);
    filter: blur(calc(var(--lumi-size, 360px) * 0.045));
    animation: lumiBlobMorph1 10s ease-in-out infinite alternate;
}

.lumi-fluid-blob.blob-2 {
    width: calc(var(--lumi-size, 360px) * 0.76);
    height: calc(var(--lumi-size, 360px) * 0.76);
    background: radial-gradient(circle at 55% 55%, rgba(52, 211, 153, 0.42) 0%, rgba(16, 185, 129, 0.22) 55%, transparent 80%);
    filter: blur(calc(var(--lumi-size, 360px) * 0.065));
    animation: lumiBlobMorph2 13s ease-in-out infinite alternate;
}

.lumi-fluid-blob.blob-3 {
    width: calc(var(--lumi-size, 360px) * 0.61);
    height: calc(var(--lumi-size, 360px) * 0.61);
    background: radial-gradient(circle at 50% 35%, rgba(167, 243, 208, 0.55) 0%, rgba(49, 170, 100, 0.3) 45%, transparent 70%);
    filter: blur(calc(var(--lumi-size, 360px) * 0.035));
    animation: lumiBlobMorph3 8s ease-in-out infinite alternate;
}

@keyframes lumiBlobMorph1 {
    0% {
        border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
        transform: rotate(0deg) scale(0.95);
        opacity: 0.7;
    }
    33% {
        border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%;
        transform: rotate(120deg) scale(1.08);
        opacity: 0.95;
    }
    66% {
        border-radius: 30% 70% 70% 30% / 50% 30% 70% 50%;
        transform: rotate(240deg) scale(0.98);
        opacity: 0.8;
    }
    100% {
        border-radius: 58% 42% 38% 62% / 42% 65% 35% 58%;
        transform: rotate(360deg) scale(1.05);
        opacity: 0.85;
    }
}

@keyframes lumiBlobMorph2 {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: rotate(360deg) scale(1.04);
        opacity: 0.6;
    }
    50% {
        border-radius: 35% 65% 60% 40% / 40% 55% 45% 60%;
        transform: rotate(180deg) scale(0.92);
        opacity: 0.88;
    }
    100% {
        border-radius: 50% 50% 40% 60% / 50% 40% 60% 50%;
        transform: rotate(0deg) scale(1.06);
        opacity: 0.65;
    }
}

@keyframes lumiBlobMorph3 {
    0% {
        border-radius: 50% 50% 65% 35% / 35% 65% 35% 65%;
        transform: rotate(0deg) scale(0.9);
        opacity: 0.75;
    }
    50% {
        border-radius: 65% 35% 40% 60% / 60% 40% 60% 40%;
        transform: rotate(-180deg) scale(1.12);
        opacity: 1;
    }
    100% {
        border-radius: 40% 60% 50% 50% / 50% 50% 40% 60%;
        transform: rotate(-360deg) scale(0.94);
        opacity: 0.8;
    }
}

/* 3. Sanft expandierende, flüssige Lichtwellen */
.lumi-fluid-wave {
    position: absolute;
    width: calc(var(--lumi-size, 360px) * 0.53);
    height: calc(var(--lumi-size, 360px) * 0.53);
    border: 2px solid rgba(74, 255, 170, 0.45);
    border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
    filter: blur(calc(var(--lumi-size, 360px) * 0.01));
    pointer-events: none;
    animation: lumiWaveMorph 6.5s cubic-bezier(0.2, 0.8, 0.3, 1) infinite;
    transition: border-color 0.5s ease, filter 0.5s ease, opacity 0.5s ease;
}

.lumi-fluid-wave.wave-2 {
    animation-delay: 3.25s;
}

@keyframes lumiWaveMorph {
    0% {
        transform: scale(0.85) rotate(0deg);
        opacity: 0.75;
        border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
    }
    50% {
        opacity: 0.35;
        border-radius: 55% 45% 40% 60% / 45% 55% 50% 50%;
    }
    100% {
        transform: scale(1.9) rotate(180deg);
        opacity: 0;
        border-radius: 60% 40% 55% 45% / 50% 50% 45% 55%;
    }
}

/* 4. Sanft fließender Lichtschimmer um den Ring */
.lumi-fluid-sweep {
    position: absolute;
    width: calc(var(--lumi-size, 360px) * 0.83);
    height: calc(var(--lumi-size, 360px) * 0.83);
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(74, 255, 170, 0.22) 50deg,
        transparent 100deg,
        rgba(49, 170, 100, 0.15) 190deg,
        transparent 250deg,
        rgba(74, 255, 170, 0.25) 310deg,
        transparent 360deg
    );
    filter: blur(calc(var(--lumi-size, 360px) * 0.055));
    pointer-events: none;
    animation: lumiSweepSpin 14s linear infinite;
    transition: transform 0.6s ease, opacity 0.6s ease, filter 0.6s ease;
}

@keyframes lumiSweepSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 5. Zentrales Logo-Element */
.lumi-logo-wrap {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Das eigentliche grüne Lumi-Ring-Logo */
.lumi-hero-logo {
    position: relative;
    width: calc(var(--lumi-size, 360px) * 0.485);
    height: calc(var(--lumi-size, 360px) * 0.485);
    object-fit: contain;
    filter: 
        drop-shadow(0 0 calc(var(--lumi-size, 360px) * 0.055) rgba(74, 255, 170, 0.9)) 
        drop-shadow(0 0 calc(var(--lumi-size, 360px) * 0.125) rgba(49, 170, 100, 0.7)) 
        drop-shadow(0 calc(var(--lumi-size, 360px) * 0.033) calc(var(--lumi-size, 360px) * 0.066) rgba(0, 0, 0, 0.5));
    animation: lumiRingFloat 5s ease-in-out infinite alternate;
    transition: filter 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes lumiRingFloat {
    0% {
        transform: translateY(0px) scale(0.98);
        filter: 
            drop-shadow(0 0 calc(var(--lumi-size, 360px) * 0.044) rgba(74, 255, 170, 0.8)) 
            drop-shadow(0 0 calc(var(--lumi-size, 360px) * 0.105) rgba(49, 170, 100, 0.6)) 
            drop-shadow(0 calc(var(--lumi-size, 360px) * 0.028) calc(var(--lumi-size, 360px) * 0.055) rgba(0, 0, 0, 0.45));
    }
    100% {
        transform: translateY(calc(var(--lumi-size, 360px) * -0.022)) scale(1.03);
        filter: 
            drop-shadow(0 0 calc(var(--lumi-size, 360px) * 0.077) rgba(74, 255, 170, 1)) 
            drop-shadow(0 0 calc(var(--lumi-size, 360px) * 0.166) rgba(49, 170, 100, 0.85)) 
            drop-shadow(0 calc(var(--lumi-size, 360px) * 0.044) calc(var(--lumi-size, 360px) * 0.083) rgba(0, 0, 0, 0.6));
    }
}

/* â”€â”€ Hover- & Interaktions-Effekte â”€â”€ */
.lumi-logo-container:not(.non-interactive):hover {
    transform: translateY(calc(var(--lumi-size, 360px) * -0.01));
}

.lumi-logo-container:not(.non-interactive):hover .lumi-hero-logo {
    transform: translateY(calc(var(--lumi-size, 360px) * -0.038)) scale(1.1) rotate(3deg);
    filter: 
        drop-shadow(0 0 calc(var(--lumi-size, 360px) * 0.083) rgba(74, 255, 170, 1)) 
        drop-shadow(0 0 calc(var(--lumi-size, 360px) * 0.18) rgba(49, 170, 100, 0.95)) 
        drop-shadow(0 0 calc(var(--lumi-size, 360px) * 0.3) rgba(74, 255, 170, 0.6)) 
        drop-shadow(0 calc(var(--lumi-size, 360px) * 0.061) calc(var(--lumi-size, 360px) * 0.116) rgba(0, 0, 0, 0.75));
}

.lumi-logo-container:not(.non-interactive):hover .lumi-fluid-aura {
    transform: scale(1.35);
    opacity: 1;
    filter: blur(calc(var(--lumi-size, 360px) * 0.08));
}

.lumi-logo-container:not(.non-interactive):hover .blob-1 {
    transform: scale(1.22) rotate(45deg);
    opacity: 1;
    filter: blur(calc(var(--lumi-size, 360px) * 0.033));
}

.lumi-logo-container:not(.non-interactive):hover .blob-2 {
    transform: scale(1.26) rotate(-60deg);
    opacity: 0.95;
    filter: blur(calc(var(--lumi-size, 360px) * 0.05));
}

.lumi-logo-container:not(.non-interactive):hover .blob-3 {
    transform: scale(1.3) rotate(90deg);
    opacity: 1;
    filter: blur(calc(var(--lumi-size, 360px) * 0.028));
}

.lumi-logo-container:not(.non-interactive):hover .lumi-fluid-wave {
    border-color: rgba(110, 255, 180, 0.85);
    box-shadow: 0 0 calc(var(--lumi-size, 360px) * 0.07) rgba(74, 255, 170, 0.7);
    filter: blur(calc(var(--lumi-size, 360px) * 0.006));
}

.lumi-logo-container:not(.non-interactive):hover .lumi-fluid-sweep {
    transform: scale(1.18);
    opacity: 0.95;
    filter: blur(calc(var(--lumi-size, 360px) * 0.04));
}

/* Klick-Impuls beim Drücken */
.lumi-logo-container:not(.non-interactive):active .lumi-hero-logo {
    transform: translateY(calc(var(--lumi-size, 360px) * -0.011)) scale(0.96);
    transition: transform 0.15s ease;
}

.lumi-logo-container:not(.non-interactive):active .lumi-fluid-aura {
    transform: scale(1.15);
    transition: transform 0.15s ease;
}

/* ==========================================================================
   LIGHT MODE ANPASSUNGEN (data-theme="light")
   ========================================================================== */
html[data-theme="light"] .lumi-fluid-aura {
    background: radial-gradient(circle, rgba(74, 222, 128, 0.25) 0%, rgba(49, 170, 100, 0.12) 50%, transparent 75%);
}

html[data-theme="light"] .lumi-fluid-blob.blob-1 {
    background: radial-gradient(circle at 45% 45%, rgba(74, 222, 128, 0.35) 0%, rgba(49, 170, 100, 0.18) 50%, transparent 75%);
}

html[data-theme="light"] .lumi-fluid-blob.blob-2 {
    background: radial-gradient(circle at 55% 55%, rgba(52, 211, 153, 0.3) 0%, rgba(16, 185, 129, 0.15) 55%, transparent 80%);
}

html[data-theme="light"] .lumi-fluid-blob.blob-3 {
    background: radial-gradient(circle at 50% 35%, rgba(167, 243, 208, 0.4) 0%, rgba(49, 170, 100, 0.2) 45%, transparent 70%);
}

html[data-theme="light"] .lumi-hero-logo {
    filter: 
        drop-shadow(0 0 calc(var(--lumi-size, 360px) * 0.042) rgba(74, 222, 128, 0.65)) 
        drop-shadow(0 0 calc(var(--lumi-size, 360px) * 0.083) rgba(49, 170, 100, 0.4)) 
        drop-shadow(0 calc(var(--lumi-size, 360px) * 0.022) calc(var(--lumi-size, 360px) * 0.05) rgba(0, 0, 0, 0.12));
}

html[data-theme="light"] .lumi-logo-container:not(.non-interactive):hover .lumi-hero-logo {
    filter: 
        drop-shadow(0 0 calc(var(--lumi-size, 360px) * 0.07) rgba(74, 222, 128, 0.85)) 
        drop-shadow(0 0 calc(var(--lumi-size, 360px) * 0.14) rgba(49, 170, 100, 0.6)) 
        drop-shadow(0 calc(var(--lumi-size, 360px) * 0.038) calc(var(--lumi-size, 360px) * 0.077) rgba(0, 0, 0, 0.18));
}



