/* ===================================
   Vocal Heirloom - Global Styles
   =================================== */

/* ===================================
   Vocal Heirloom - Global Styles
   =================================== */

/* GLOBAL ZOOM FIX (Simuliert 90% Zoom) */
/* ===================================
   Vocal Heirloom - Global Styles
   =================================== */

/* GLOBAL ZOOM SETTINGS */
html {
    font-size: 12.8px; /* Standard: 90% Zoom für alle Seiten (Dashboard, Landing) */
}

/* Spezieller 80% Zoom NUR für die Wizard-Prozesse */
html.wizard-page {
    font-size: 12.8px; /* 16px * 0.8 = 12.8px */
}

/* CSS Variables */
:root {
    /* --- Bestehende Variablen --- */
    --primary: #2c3e50;
    --primary-light: #34495e;
    --primary-dark: #1a252f;
    --accent: #d4af37;
    --accent-hover: #c9a02c;
    --accent-light: #e8d090;
    --success: #10b981;
    --success-light: #d1fae5;
    --error: #ef4444;
    --error-light: #fee2e2;
    --warning: #f59e0b;
    --warning-light: #fef3c7;
    --info: #3b82f6;
    --info-light: #dbeafe;
    --text-dark: #1a1a1a;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --bg-dark: #111827;
    --border: #e5e7eb;
    --border-dark: #d1d5db;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 25px 50px rgba(0,0,0,0.2);
    
    /* Gradients */
    --gradient: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    --gradient-accent: linear-gradient(135deg, #d4af37 0%, #c9a02c 100%);
    --transition: all 0.3s ease;

    /* --- NEU: Wizard Specific Variables (hierher verschoben) --- */
    --step-inactive: #e5e7eb;
    --step-active: var(--accent);
    --step-completed: var(--success);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Buttons */
.btn {
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-accent {
    background: var(--gradient-accent);
    color: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

/* Cards */
.card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.card-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border);
}

.card-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.card-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Verified Badge */
.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

.verified-badge-icon {
    width: 20px;
    height: 20px;
    background: white;
    color: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}
/* Neues Neutrales Badge (Grau) */
.neutral-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f3f4f6;     /* Helles Grau */
    color: #6b7280;          /* Dunkles Grau */
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.neutral-badge-icon {
    width: 20px;
    height: 20px;
    background: #9ca3af;     /* Dunkleres Grau für Icon-Hintergrund */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    }
    50% {
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
    }
}

.unverified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--warning-light);
    color: #92400e;
    border: 2px solid var(--warning);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.unverified-badge-icon {
    color: var(--warning);
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="date"],
textarea,
select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-white);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

/* Status Messages */
.status-message {
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    font-size: 0.9rem;
    display: none;
    animation: slideIn 0.3s ease;
}

.status-message.show {
    display: block;
}

.status-message.success {
    background: var(--success-light);
    color: #065f46;
    border: 1px solid var(--success);
}

.status-message.error {
    background: var(--error-light);
    color: #991b1b;
    border: 1px solid var(--error);
}

.status-message.warning {
    background: var(--warning-light);
    color: #92400e;
    border: 1px solid var(--warning);
}

.status-message.loading,
.status-message.info {
    background: var(--info-light);
    color: #1e40af;
    border: 1px solid var(--info);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loader */
.loader {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 0.5rem;
    vertical-align: middle;
}

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

/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

/* Utility Classes */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.hidden { display: none !important; }
.visible { display: block !important; }

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .grid {
        gap: 1rem;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}
/* ===================================
   PREMIUM LANDING PAGE STYLES
   Split-Screen Design with Background
   =================================== */

/* Landing Page Hero Section */
.landing-hero {
    min-height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
    background-image: url('bg_image.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Overlay Gradient for Text Readability */
.landing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right, 
        rgba(20, 20, 20, 0.92) 0%, 
        rgba(20, 20, 20, 0.75) 35%,
        rgba(20, 20, 20, 0.4) 50%,
        rgba(20, 20, 20, 0.2) 65%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Top Navigation Bar */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    background: linear-gradient(
        to bottom,
        rgba(20, 20, 20, 0.95) 0%,
        rgba(20, 20, 20, 0.85) 50%,
        transparent 100%
    );
    /* backdrop-filter: blur(10px);*/
    transition: background 0.3s ease;
}

.landing-nav-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.landing-logo:hover {
    opacity: 0.85;
}

.landing-logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none; /* farbe ausschalten */
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.landing-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.landing-nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.landing-nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.landing-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.landing-nav-link:hover {
    color: white;
}

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

.landing-nav-button {
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.6);
    color: var(--accent);
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.landing-nav-button:hover {
    background: var(--accent);
    color: var(--primary-dark);
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Split-Screen Content Container */
.landing-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
}

/* Left Side - Story & Features */
.landing-left {
    padding-top: 6rem;
    color: white;
    max-width: 600px;
}

.landing-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.landing-subheadline {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.7;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.landing-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.landing-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    line-height: 1.5;
}
.landing-feature-icon {
    width: 28px;
    height: 28px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
    color: var(--primary-dark);
    font-size: 0.85rem;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

/* Right Side - Auth Card */
.landing-right {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 4rem;
}

.landing-auth-card {
    background: linear-gradient(
        135deg,
        rgba(250, 245, 235, 0.98) 0%,
        rgba(245, 237, 220, 0.98) 100%
    );
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 1px rgba(255, 255, 255, 0.3) inset,
        0 30px 80px rgba(212, 175, 55, 0.15);
    max-width: 460px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
	max-height: 90vh;
	overflow-y: auto;
}

.landing-auth-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.3),
        transparent 30%,
        transparent 70%,
        rgba(212, 175, 55, 0.2)
    );
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.landing-auth-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 1px rgba(255, 255, 255, 0.4) inset,
        0 40px 100px rgba(212, 175, 55, 0.25);
}

.landing-auth-card:hover::before {
    opacity: 1;
}

/* Auth Card Tabs */
.landing-auth-card .auth-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    background: rgba(44, 62, 80, 0.06);
    padding: 0.5rem;
    border-radius: 12px;
}

.landing-auth-card .auth-tab {
    flex: 1;
    padding: 0.875rem;
    border: none;
    background: transparent;
    color: var(--text-medium);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.landing-auth-card .auth-tab.active {
    background: white;
    color: var(--primary);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(212, 175, 55, 0.1);
}

.landing-auth-card .auth-tab:hover:not(.active) {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.5);
}

/* Form Styling for Landing Page */
.landing-auth-card .form-group {
    margin-bottom: 1.5rem;
}

.landing-auth-card .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.landing-auth-card .form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(44, 62, 80, 0.15);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.landing-auth-card .form-group input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.landing-auth-card .btn-primary {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-accent);
    color: var(--primary-dark);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.landing-auth-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Trust Badges at Card Footer */
.landing-trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(44, 62, 80, 0.1);
}

.landing-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-medium);
    font-size: 0.8rem;
    font-weight: 600;
}

.landing-trust-icon {
    color: var(--accent);
    font-size: 1.1rem;
}

/* Divider */
.landing-divider {
    text-align: center;
    margin: 1.5rem 0;
    color: var(--text-light);
    font-size: 0.85rem;
    position: relative;
}

.landing-divider::before,
.landing-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 42%;
    height: 1px;
    background: rgba(44, 62, 80, 0.15);
}

.landing-divider::before { left: 0; }
.landing-divider::after { right: 0; }

/* ===================================
   RESPONSIVE DESIGN
   Mobile-First Approach
   =================================== */

/* Tablet Landscape (1024-1279px) */
@media (max-width: 1279px) {
    .landing-content {
        gap: 3rem;
        padding: 0 2rem;
    }
    
    .landing-nav-content {
        padding: 0 2rem;
    }
    
    .landing-headline {
        font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    }
    
    .landing-auth-card {
        padding: 2.5rem 2rem;
    }
}

/* Tablet Portrait & Small Laptop (768-1023px) */
@media (max-width: 1023px) {
    .landing-content {
        grid-template-columns: 55% 45%;
        gap: 2rem;
    }
    
    .landing-hero::before {
        background: linear-gradient(
            to right, 
            rgba(20, 20, 20, 0.95) 0%, 
            rgba(20, 20, 20, 0.85) 45%,
            rgba(20, 20, 20, 0.6) 70%,
            rgba(20, 20, 20, 0.3) 100%
        );
    }
    
    .landing-left {
        max-width: 100%;
    }
    
    .landing-auth-card {
        max-width: 100%;
        padding: 2rem 1.75rem;
    }
    
    .landing-headline {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    
    .landing-subheadline {
        font-size: 1rem;
    }
}

/* Tablet Portrait (600-767px) - Stack Layout Begins */
@media (max-width: 767px) {
    .landing-hero {
        background-attachment: scroll;
        background-position: center center;
    }
    
    .landing-hero::before {
        background: linear-gradient(
            to bottom,
            rgba(20, 20, 20, 0.85) 0%,
            rgba(20, 20, 20, 0.75) 50%,
            rgba(20, 20, 20, 0.9) 100%
        );
    }
    
    .landing-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
        min-height: auto;
    }
    
    .landing-nav-content {
        padding: 0 1.5rem;
    }
    
    .landing-nav-links {
        gap: 1rem;
    }
    
    .landing-nav-link {
        font-size: 0.85rem;
    }
    
    .landing-nav-button {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .landing-left {
        padding-top: 8rem;
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .landing-headline {
        font-size: clamp(2rem, 7vw, 2.75rem);
        margin-bottom: 1.25rem;
    }
    
    .landing-subheadline {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .landing-features {
        margin-top: 2rem;
        gap: 1rem;
    }
    
    .landing-feature-item {
        justify-content: center;
        font-size: 0.95rem;
    }
    
    .landing-right {
        padding-top: 0;
        padding-bottom: 3rem;
    }
    
    .landing-auth-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Mobile (< 600px) */
@media (max-width: 599px) {
    .landing-content {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .landing-nav-content {
        padding: 0 1rem;
    }
    
    .landing-logo {
        font-size: 1.25rem;
    }
    
    .landing-logo-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .landing-nav-links {
        gap: 0.75rem;
    }
    
    .landing-nav-link {
        font-size: 0.8rem;
    }
    
    .landing-nav-button {
        display: none;
    }
    
    .landing-left {
        padding-top: 7rem;
    }
    
    .landing-headline {
        font-size: clamp(1.75rem, 8vw, 2.25rem);
        margin-bottom: 1rem;
    }
    
    .landing-subheadline {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .landing-features {
        align-items: flex-start;
        text-align: left;
    }
    
    .landing-feature-item {
        justify-content: flex-start;
        font-size: 0.9rem;
    }
    
    .landing-auth-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .landing-auth-card .auth-tabs {
        flex-direction: row;
    }
    
    .landing-auth-card .auth-tab {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .landing-trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
}
/* DISCOUNT SYSTEM STYLES */
.price-display-container {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.price-original {
    font-size: 1.2rem;
    color: #9ca3af; /* Grau */
    text-decoration: line-through;
    font-weight: 400;
}

.price-final {
    font-size: 1.5rem; /* Etwas größer */
    color: #059669; /* Sattes Grün */
    font-weight: 700;
}

/* In der großen Payment Box soll es noch größer sein */
.big-price-box .price-original { font-size: 2rem; }
.big-price-box .price-final { font-size: 3.5rem; color: #059669; }

/* Coupon Input Group */
.coupon-input-group {
    display: flex;
    gap: 0.5rem;
    max-width: 400px;
    margin: 1.5rem auto 0;
}

.coupon-input-group input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    text-transform: uppercase; /* Code immer groß */
}

.coupon-input-group button {
    padding: 0 1.5rem;
    background: var(--bg-light);
    border: 2px solid var(--border);
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-medium);
    cursor: pointer;
    transition: all 0.3s ease;
}

.coupon-input-group button:hover {
    border-color: var(--accent);
    color: var(--primary);
}

.discount-badge {
    background: #d1fae5;
    color: #065f46;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
}
/* Inline Price Styling (für Listen & Text) */
.inline-price-container {
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
}

.inline-price-original {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 0.9em;
}

.inline-price-final {
    color: #059669; /* Grün */
    font-weight: 700;
}

/* Extra Small Mobile (< 380px) */
@media (max-width: 379px) {
    .landing-headline {
        font-size: 1.5rem;
    }
    
    .landing-subheadline {
        font-size: 0.875rem;
    }
    
    .landing-feature-item {
        font-size: 0.85rem;
    }
    
    .landing-auth-card {
        padding: 1.5rem 1.25rem;
    }
}
/* CRITICAL FIXES for Landing Page */

/* Fix: Reduce top padding on left side */
.landing-left {
    padding-top: 8rem !important; /* Reduced from 6rem */
}

/* Fix: Ensure auth-form display works correctly */
.landing-auth-card .auth-form {
    display: none;
}

.landing-auth-card .auth-form.active {
    display: block !important;
}

/* Fix: Ensure features are visible with better contrast */
.landing-feature-item {
    color: rgba(255, 255, 255, 1) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* Fix: Auth card should have min-height but adapt */
.landing-auth-card {
    min-height: auto;
    transition: all 0.3s ease;
}

/* Fix: Better mobile spacing */
@media (max-width: 767px) {
    .landing-left {
        padding-top: 9rem !important;
    }
}
/* ===========================================
   LAYOUT IMPROVEMENTS - A, B, C
   =========================================== */

/* OPTION A: Dynamisches 60/40 Grid-Verhältnis */
.landing-content {
    grid-template-columns: 1.5fr 1fr !important; /* 60/40 statt 50/50 */
    gap: 5rem !important; /* Mehr Luft zwischen den Spalten */
}

/* OPTION B: Auth-Card kompakter mit max-width */
.landing-auth-card {
    max-width: 420px !important; /* statt 460px - kompakter */
}

/* OPTION C: Besseres responsive Font-Scaling */
.landing-headline {
    font-size: clamp(2.5rem, 4vw, 3.8rem) !important; /* Besseres Scaling */
}

.landing-subheadline {
    font-size: clamp(1rem, 1.8vw, 1.3rem) !important; /* Proportional angepasst */
}

/* Bonus: Bessere Feature-Icon Größe */
.landing-feature-icon {
    width: 26px !important;
    height: 26px !important;
}

.landing-feature-item {
    font-size: 1rem !important;
}
/* Dignified Promo Banner */
    .auth-promo-banner {
        background-color: #f9fafb; /* Sehr helles Grau/Weiß */
        border: 1px solid #e5e7eb;
        border-left: 4px solid var(--accent); /* Nur ein kleiner goldener Akzent links */
        color: var(--text-medium);
        padding: 0.75rem 1rem;
        margin-bottom: 1.5rem;
        font-size: 0.85rem;
        display: none; /* Standardmäßig aus */
        align-items: center;
        gap: 0.75rem;
        border-radius: 4px;
        line-height: 1.4;
    }

    .auth-promo-banner.active {
        display: flex;
    }

    .promo-code-highlight {
        font-weight: 700;
        color: var(--primary);
        letter-spacing: 0.5px;
        font-family: 'Inter', sans-serif;
    }

.auth-promo-icon {
    font-size: 1.2rem;
}

/* --- Tooltip Styles --- */
        .info-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 18px;
            height: 18px;
            background-color: #e5e7eb; /* Helles Grau */
            color: #6b7280; /* Dunkelgrauer Text */
            border-radius: 50%;
            font-size: 11px;
            font-weight: bold;
            margin-left: 8px;
            cursor: help;
            position: relative; /* Wichtig für die Positionierung des Popups */
            vertical-align: middle;
            transition: background-color 0.2s;
        }

        .info-icon:hover {
            background-color: var(--accent); /* Gold beim Hover */
            color: white;
        }

        .info-tooltip {
            visibility: hidden;
            opacity: 0;
            width: 220px;
            background-color: #1f2937; /* Dunkler Hintergrund */
            color: #fff;
            text-align: center;
            border-radius: 8px;
            padding: 10px;
            
            /* Positionierung */
            position: absolute;
            z-index: 100;
            bottom: 135%; /* Über dem Icon */
            left: 50%;
            transform: translateX(-50%); /* Zentrieren */
            
            /* Text Style */
            font-size: 0.75rem;
            line-height: 1.4;
            font-weight: normal;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            transition: opacity 0.3s, transform 0.3s;
            pointer-events: none; /* Verhindert Flackern */
        }

        /* Kleiner Pfeil nach unten */
        .info-tooltip::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -6px;
            border-width: 6px;
            border-style: solid;
            border-color: #1f2937 transparent transparent transparent;
        }

        /* Anzeigen beim Hover */
        .info-icon:hover .info-tooltip {
            visibility: visible;
            opacity: 1;
            transform: translateX(-50%) translateY(-5px); /* Leichte Animation nach oben */
        }

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Tablet Anpassungen für neues Verhältnis */
@media (max-width: 1279px) {
    .landing-content {
        grid-template-columns: 1.4fr 1fr !important; /* 58/42 */
        gap: 3rem !important;
    }
}

@media (max-width: 1023px) {
    .landing-content {
        grid-template-columns: 1.3fr 1fr !important; /* 56/44 */
        gap: 2rem !important;
    }
}

/* Mobile bleibt stacked */
@media (max-width: 767px) {
    .landing-content {
        grid-template-columns: 1fr !important;
    }
}
/* =========================================
   DASHBOARD PAGE — SCOPED STYLES
   (keine Überschneidung mit anderen Seiten)
   ========================================= */

.dashboard-page {
    background: var(--bg-light);
}

/* ======================== */
/* HEADER (Dashboard Only)  */
/* ======================== */

.dashboard-page .dashboard-header {
    background: var(--gradient);
    color: white;
    padding: 1.5rem 0;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.dashboard-page .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.dashboard-page .header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.dashboard-page .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
}

.dashboard-page .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.dashboard-page .user-welcome {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dashboard-page .user-name {
    font-size: 1.25rem;
    font-weight: 600;
}

.dashboard-page .user-email {
    opacity: 0.8;
    font-size: 0.9rem;
}

.dashboard-page .header-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.dashboard-page .btn-logout {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.dashboard-page .btn-logout:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}

/* ============================== */
/* MAIN LAYOUT / GRID             */
/* ============================== */

.dashboard-page .dashboard-main {
    min-height: calc(100vh - 250px);
    padding-bottom: 4rem;
}

.dashboard-page .section {
    margin-bottom: 2rem;
}

.dashboard-page .section-title {
    font-size: 2rem;
    color: var(--primary);
}

/* ============================== */
/* PRODUCT GRID                   */
/* ============================== */

.dashboard-page .products-grid {
    display: grid;
    /* Karten etwas schmaler erlauben, damit 3 nebeneinander passen */
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    /* Container schmaler für mehr Whitespace links/rechts */
    max-width: 1150px; 
    margin: 0 auto;
}

/* ============================== */
/* PRODUCT CARDS                  */
/* ============================== */

.dashboard-page .product-card {
    background: white;
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 3px solid transparent;
    position: relative;
}

.dashboard-page .product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-light);
    z-index: 50;
}

/* ============================== */
/* PRODUCT CARD — HEADER FIX     */
/* ============================== */

.dashboard-page .product-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #34495e;
    padding: 1rem 1.75rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
	border-radius: 20px 20px 0 0;
}

/* Titel wirklich weiß */
.dashboard-page .product-header .product-title {
    color: #f9fafb !important;
    margin: 0;
    font-size: 1.35rem;
    font-weight: 600;
}

/* Badge */
.dashboard-page .product-header .product-badge {
    position: absolute;
    top: -0.75rem;
    right: 1rem;
    padding: 0.45rem 1.1rem;
    font-size: 0.8rem;
    font-weight: 700;
    background: var(--accent);
    color: var(--primary-dark);
    border-radius: 9999px;
    box-shadow: var(--shadow-sm);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.dashboard-page .product-header .featured {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.dashboard-page .section-header {
    margin-bottom: 3rem; /* Vorher war es wahrscheinlich der Standard (ca 1-2rem) */
    text-align: center;    /* Optional: Sieht bei solchen Pages oft besser aus */
}

/* Abstand unter dem Header */
.dashboard-page .product-body {
    margin-top: 3rem; /* Schiebt alles unter den absoluten Header */
    display: flex;
    flex-direction: column;
    height: 100%; /* Optional, falls du Buttons unten ausrichten willst */
}

/* ============================== */
/* PRODUCT DESCRIPTION            */
/* ============================== */

.dashboard-page .product-description {
    color: var(--text-medium);
    margin-bottom: 1.25rem;
    line-height: 1.45;
}

/* ============================== */
/* PRODUCT PRICE                  */
/* ============================== */

.dashboard-page .product-price {
    font-size: 2.5rem;       /* Deutlich größer */
    font-weight: 800;        /* Fetter */
    color: var(--primary);   /* Dunkle Farbe für Kontrast */
    text-align: center;      /* Mittig */
    margin: 0.5rem 0 1.5rem 0; /* Wenig Abstand nach oben, mehr nach unten */
    line-height: 1;
}

/* ============================== */
/* FEATURE LIST                   */
/* ============================== */

.dashboard-page .product-features {
    list-style: none;
    margin-bottom: 1.25rem;
    padding: 0;
}

.dashboard-page .primary-features li,
.dashboard-page .extra-features li {
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--text-medium);
}

.dashboard-page .product-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
    font-size: 1.1rem;
}

.dashboard-page .extra-features {
    display: none;
}

.dashboard-page .show-all .extra-features {
    display: block;
}

.dashboard-page .toggle-features {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 0.9rem;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    margin-bottom: 1rem;
}

/* Special Highlight for Cloned Voice */
.dashboard-page #product-cloned {
    transform: scale(1.02);
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

/* Responsive */
@media (max-width: 1024px) {
    .dashboard-page .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .dashboard-page .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .dashboard-page .header-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .dashboard-page .products-grid {
        grid-template-columns: 1fr;
    }
}
/* ============================================
   VOCAL HEIRLOOM — NEW LANDING SECTIONS
   (Sections 2–8)
   ============================================ */

/* Grundlayout */
.vh-section {
    padding: 6rem 2rem;
    position: relative;
}

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

/* Hintergrund-Varianten */
.vh-light {
    background: var(--bg-light);
    color: var(--text-dark);
}

.vh-dark {
    background: #1e1914; /* Warmes Sepia-Dunkel */
    color: #f5f3ef;       /* Warmes helles Beige */
}

/* Typografie */
.vh-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 2rem;
    color: inherit;
    line-height: 1.2;
}

.vh-subline {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.vh-body {
    font-size: 1.1rem;
    line-height: 1.75;
    color: inherit;
    margin-bottom: 1.25rem;
}

.vh-caption {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-top: 1.5rem;
}

/* Bilder */
.vh-image {
    margin-top: 2.5rem;
}

.vh-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* Features (Section 3) */
.vh-features {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.75rem;
}

.vh-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.05rem;
    line-height: 1.5;
}

.vh-feature-icon {
    width: 32px;
    height: 32px;
    background: var(--accent);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
    flex-shrink: 0;
}

/* Steps (Section 4) */
.vh-steps {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.vh-step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: inherit;
}

.vh-step-body {
    color: inherit;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Demo (Section 5) */
.vh-audio-placeholder {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 3rem;
    text-align: center;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* Use Cases (Section 6) */
.vh-usecase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.vh-usecase-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: inherit;
}

.vh-usecase-body {
    font-size: 1.05rem;
    color: inherit;
    line-height: 1.65;
}

/* FAQ (Section 7) */
.vh-faq-list {
    margin-top: 3rem;
    display: grid;
    gap: 1.75rem;
}

.vh-faq-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 1.75rem;
}

.vh-faq-question {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: inherit;
}

.vh-faq-answer {
    font-size: 1.05rem;
    line-height: 1.6;
    color: inherit;
}

/* Final CTA (Section 8) */
.vh-center {
    text-align: center;
}

.vh-cta-final {
    margin-top: 2rem;
    padding: 1rem 2.25rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: var(--gradient-accent);
    color: var(--primary-dark);
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.vh-cta-final:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.45);
}

.vh-subtext {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-medium);
}

/* Responsive */
@media (max-width: 768px) {
    .vh-section {
        padding: 4rem 1.25rem;
    }
}
/* Problem Section - Bild links, Text rechts auf Desktop */
#vh-problem .vh-content-wrapper {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 2rem;
}

#vh-problem .vh-text-content {
    flex: 1;
}

#vh-problem .vh-image {
    flex: 0 0 40%;
    max-width: 400px;
}

#vh-problem .vh-image img {
    margin-top: 0;
}

/* Mobile: Bild unter dem Text */
@media (max-width: 768px) {
    #vh-problem .vh-content-wrapper {
        flex-direction: column;
    }
    
    #vh-problem .vh-image {
        flex: 1;
        max-width: 100%;
        order: 2;
    }
    
    #vh-problem .vh-text-content {
        order: 1;
    }
}
/* Section 3: Two Paths */
.vh-paths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.vh-path-card {
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.vh-path-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.vh-path-featured {
    border-color: rgba(212, 175, 55, 0.3);
}

.vh-path-badge {
    position: absolute;
    top: -12px;
    right: 1.5rem;
    background: var(--gradient-accent);
    color: var(--primary-dark);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.vh-path-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.vh-path-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
    color: inherit;
}

.vh-path-subtitle {
    font-size: 1rem;
    color: var(--accent-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.vh-path-best-for {
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--accent);
    padding: 0.75rem 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.vh-path-best-for strong {
    color: var(--accent);
}

.vh-path-description {
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    color: inherit;
}

.vh-path-benefit {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--accent-light);
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    .vh-paths-grid {
        grid-template-columns: 1fr;
    }
}
/* Section 4: Magic Demo */
.vh-demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

/* Left: Video Demo */
.vh-demo-video {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.vh-demo-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-medium);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vh-process-video {
    width: 100%;
    border-radius: 12px;
    background: #f3f4f6;
    box-shadow: var(--shadow-sm);
}

/* Right: Audio Player */
.vh-demo-player {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--accent-light);
}

.vh-player-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.vh-player-icon {
    font-size: 2rem;
}

.vh-player-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0;
}

.vh-player-description {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.vh-audio-wrapper {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem;
}

.vh-audio-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.vh-audio-player {
    width: 100%;
    border-radius: 8px;
    outline: none;
}

/* Testimonial */
.vh-demo-testimonial {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.08);
    border-left: 4px solid var(--accent);
    border-radius: 12px;
}

/* Testimonial */
.vh-demo-testimonial2 {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: rgba(212, 175, 55);
    border-left: 4px solid var(--accent);
    border-radius: 12px;
}
.vh-testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.vh-testimonial-author {
    color: var(--text-medium);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .vh-demo-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vh-demo-video {
        order: 1;
    }
    
    .vh-demo-player {
        order: 2;
    }
}
/* ============================================
   SECTION 5: HOW IT WORKS & SECURITY
   ============================================ */

.vh-process-steps {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.vh-process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
}

.vh-process-step:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.vh-process-highlight {
    background: rgba(212, 175, 55, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.vh-process-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.vh-process-content {
    flex: 1;
}

.vh-process-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.vh-stripe-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    background: rgba(99, 102, 241, 0.15);
    color: #a5b4fc;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.vh-process-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: inherit;
    margin-bottom: 0;
}

.vh-security-note {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-left: 3px solid #10b981;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #a7f3d0;
}

/* Trust Row */
.vh-trust-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vh-trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: inherit;
}

.vh-trust-icon {
    font-size: 1.25rem;
}

/* ============================================
   SECTION 6: USE CASES
   ============================================ */

.vh-usecase-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.vh-usecase-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.vh-usecase-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

.vh-usecase-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
}

.vh-usecase-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.vh-usecase-card-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.vh-usecase-example {
    background: var(--bg-light);
    border-left: 3px solid var(--accent);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .vh-process-step {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .vh-process-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .vh-trust-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vh-usecase-cards {
        grid-template-columns: 1fr;
    }
}
/* ================================================
   WIZARD STYLES (Professional & Cloned)
   ================================================ */

.wizard-container {
    min-height: 100vh;
    background: var(--bg-light);
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
}

/* Header */
.wizard-header {
    background: white;
    border-bottom: 2px solid var(--border);
    padding: 1.5rem 0;
    margin-bottom: 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.wizard-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 10px;
    background: var(--border);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-accent);
    transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 20px;
}

/* Step Indicator */
.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3.5rem;
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-light);
    transition: all 0.4s ease;
    font-size: 1.1rem;
}

.step.active .step-number {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--primary-dark);
    box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.15);
    transform: scale(1.1);
}

.step.completed .step-number {
    border-color: var(--success);
    background: var(--success);
    color: white;
}

.step-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step.active .step-label {
    color: var(--primary);
}

/* Wizard Content Card */
.wizard-content {
    background: white;
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: var(--shadow-lg);
    max-width: 850px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: slideUp 0.5s ease forwards;
}

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

.step-title {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.step-description {
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Overview Elements (Step 1) */
.process-overview {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2.5rem;
}

.overview-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem;
    background: white;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.overview-item:hover {
    transform: translateX(10px);
}

.overview-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}

.overview-text h4 {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
    color: var(--primary);
}

.overview-text p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin: 0;
}

/* Style Selection Cards (Radio Buttons) */
.style-option-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.style-option {
    position: relative;
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fafafa;
}

.style-option:hover {
    border-color: var(--accent-light);
    background: white;
}

.style-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.style-option.selected {
    border-color: var(--accent);
    background: white;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.15);
}

.style-option.selected::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--accent);
    font-weight: bold;
}

.style-title {
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 0.25rem;
}

.style-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Voice Selection Grid */
.voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.voice-card {
    background: var(--bg-light);
    border: 3px solid transparent;
    border-radius: 16px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.voice-card:hover {
    border-color: var(--accent-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.voice-card.selected {
    border-color: var(--accent);
    background: white;
    box-shadow: var(--shadow-lg);
}

.voice-card .voice-avatar {
    position: relative;
    width: 70px;
    height: 70px;
    background: var(--gradient); /* Default gradient background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.25rem;
}

.voice-preview-btn {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    touch-action: manipulation;
    background: var(--accent);
    color: var(--primary-dark);
    border-radius: 50%;
    border: 2px solid white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 10;
    transition: transform 0.2s ease;
    padding-left: 2px;
}

.voice-preview-btn:hover { transform: scale(1.1); background: #fff; }

.voice-description { 
    font-size: 0.85rem; color: var(--text-medium); line-height: 1.5; margin: 0.75rem 0; min-height: 40px; 
}

/* Music Toggle Switch */
.music-toggle-container {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid var(--border);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 26px; width: 26px;
    left: 4px; bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .slider { background-color: var(--accent); }
input:checked + .slider:before { transform: translateX(26px); }

/* File Upload Box */
.file-upload-box {
    border: 3px dashed var(--border);
    padding: 4rem;
    text-align: center;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.file-upload-box:hover {
    border-color: var(--accent);
    background: white;
}

.file-upload-box.has-file {
    border-color: var(--success);
    border-style: solid;
    background: var(--success-light);
}

/* Script Editor */
.script-editor {
    width: 100%;
    min-height: 400px;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background-color: #fdfbf7;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
    resize: vertical;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.script-editor:focus {
    border-color: var(--accent);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

/* GOLDEN VINYL RECORD STYLE */
.vinyl-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: #000;
}

.vinyl-record {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
        #d4af37 0%, 
        #f9d77e 25%, 
        #b48a18 50%, 
        #f9d77e 75%, 
        #d4af37 100%
    );
    background-image: radial-gradient(
        transparent 30%, 
        rgba(0,0,0,0.4) 31%, transparent 32%,
        rgba(0,0,0,0.4) 34%, transparent 35%,
        rgba(0,0,0,0.4) 38%, transparent 39%,
        rgba(0,0,0,0.4) 42%, transparent 43%,
        rgba(0,0,0,0.4) 47%, transparent 48%
    );
    position: relative;
    animation: spinRecord 10s linear infinite;
    border: 4px solid #fff;
}

.vinyl-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
}

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

/* Custom Audio Player */
.custom-audio-player {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 30px;
}

/* Wizard Navigation Buttons */
.wizard-nav { 
    display: flex; 
    gap: 1.5rem; 
    margin-top: 4rem; 
    padding-top: 2.5rem; 
    border-top: 2px solid var(--border); 
}

/* Responsive */
@media (max-width: 768px) { 
    .wizard-content { padding: 2rem 1.5rem; } 
    .step-indicator { margin-bottom: 2rem; }
    .step-label { font-size: 0.65rem; }
    .wizard-nav { flex-direction: column-reverse; }
}
/* --- MAGIC ANIMATIONS --- */
.magic-halo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    text-align: center;
}

.halo-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, #d4af37 0%, rgba(212, 175, 55, 0.2) 60%, transparent 100%);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    position: relative;
    margin-bottom: 2rem;
    animation: pulse-gold 2s infinite ease-in-out;
}

.halo-ring::after {
    content: '🎙️';
    font-size: 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes pulse-gold {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 20px rgba(212, 175, 55, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.magic-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
    transition: opacity 0.5s ease;
}

.magic-subtext {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 300;
}

/* --- COMPARISON PLAYER --- */
.comparison-box {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.ab-player-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.player-card {
    background: #f8fafc;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.player-card.active {
    background: #fffcf5;
    border-color: #d4af37;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.15);
}

.player-card h5 {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    color: #64748b;
}

.play-circle {
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid #cbd5e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #475569;
}

.player-card.active .play-circle {
    background: #d4af37;
    border-color: #d4af37;
    color: white;
}

.decision-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 1.5rem;
}
/* --- RESTORATION SECTION LAYOUT --- */

.vh-restore-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 40px;
}

.vh-restore-left {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.vh-restore-item {
    display: flex;
    flex-direction: column;
}

.vh-restore-icon {
    font-size: 22px;
    margin-bottom: 6px;
}

.vh-restore-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 6px;
}

.vh-restore-text {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.vh-restore-right {
    text-align: center;
}

.vh-restore-preview-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.vh-restore-image {
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
}

/* --- RESPONSIVE --- */
@media (max-width: 820px) {
    .vh-restore-wrapper {
        grid-template-columns: 1fr;
    }

    .vh-restore-right {
        margin-top: 20px;
    }

    .vh-restore-image {
        max-width: 100%;
    }
}
/* MODAL STYLES */
.modal-backdrop {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.6); backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
}
.modal-backdrop.show { opacity: 1; }

.modal-content {
    background: white; width: 90%; max-width: 600px;
    border-radius: 16px; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden; transform: translateY(20px); transition: transform 0.3s ease;
}
.modal-backdrop.show .modal-content { transform: translateY(0); }

.modal-header {
    padding: 1.5rem 2rem; border-bottom: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
    background: #f8fafc;
}
.modal-header h3 { margin: 0; color: #1e293b; font-size: 1.25rem; }
.close-modal { font-size: 1.5rem; cursor: pointer; color: #94a3b8; }
.close-modal:hover { color: #ef4444; }

.modal-body { padding: 2rem; }
.intro-text { color: #475569; margin-bottom: 1.5rem; font-size: 0.95rem; }

.terms-scroll-box {
    background: #f1f5f9; border: 1px solid var(--border); border-radius: 8px;
    height: 200px; overflow-y: auto; padding: 1rem;
    font-size: 0.85rem; color: #334155; margin-bottom: 1.5rem;
}
.terms-scroll-box h4 { margin: 1rem 0 0.5rem; color: #0f172a; }
.terms-scroll-box h4:first-child { margin-top: 0; }

.terms-checkbox {
    display: flex; align-items: center; gap: 0.75rem; cursor: pointer;
    font-weight: 500; color: #1e293b; user-select: none;
}
.terms-checkbox input { width: 18px; height: 18px; accent-color: var(--primary); }

.modal-footer {
    padding: 1.5rem 2rem; border-top: 1px solid var(--border);
    background: #f8fafc; display: flex; justify-content: flex-end; gap: 1rem;
}

.btn-cancel {
    background: white; border: 1px solid var(--border); color: #64748b;
    padding: 0.75rem 1.5rem; border-radius: 8px; cursor: pointer; font-weight: 500;
}
.btn-confirm {
    background: var(--primary); color: white; border: none;
    padding: 0.75rem 1.5rem; border-radius: 8px; cursor: pointer; font-weight: 600;
    transition: opacity 0.2s;
}
.btn-confirm:disabled { opacity: 0.5; cursor: not-allowed; background: #94a3b8; }
/* Empfehlungs-Badge und Styling */
.recommended-card {
    border: 2px solid #10b981 !important; /* Grüner Rahmen */
    background-color: #ecfdf5 !important; /* Hellgrüner Hintergrund */
    position: relative;
}

.recommendation-badge {
    display: none; /* Standardmäßig ausblenden */
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #10b981;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    white-space: nowrap;
}

/* Wenn die Karte empfohlen wird, Badge anzeigen */
.recommended-card .recommendation-badge {
    display: block;
}
/* =========================================
   TESTIMONIAL SLIDER STYLING
   ========================================= */
.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 2rem 1rem 3rem;
}

.testimonial-track {
    position: relative;
    width: 100%;
    min-height: 200px;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s ease-in-out;
    padding: 0 1rem;
}

.testimonial-item.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.testimonial-item.prev {
    opacity: 0;
    transform: translateX(-100%);
}

.testimonial-quote {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 400;
}

.testimonial-author {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-medium);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(212, 175, 55, 0.6);
    transform: scale(1.1);
}

.dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-quote {
        font-size: 1.1rem;
    }
}
/* =========================================
   HOW IT WORKS - 3 STEPS (NEW DESIGN)
   ========================================= */
.vh-process-steps-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 3rem auto 0;
    padding: 0 1rem;
}

.vh-process-step-new {
    text-align: center;
    position: relative;
}

.vh-step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: all 0.3s ease;
}

.vh-process-step-new:hover .vh-step-icon {
    transform: scale(1.1);
    background: rgba(212, 175, 55, 0.25);
}

.vh-step-number {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.vh-step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.vh-step-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .vh-process-steps-new {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .vh-step-title {
        font-size: 1.3rem;
    }
}
/* =========================================
   ETHICS & SAFETY - LIGHT VERSION
   ========================================= */
.vh-process-number {
    width: 64px;
    height: 64px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--accent);
    transition: all 0.3s ease;
}

.vh-process-step:hover .vh-process-number {
    background: rgba(212, 175, 55, 0.25);
    transform: scale(1.05);
}

.vh-process-number svg {
    width: 32px;
    height: 32px;
}

.vh-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 1rem;
}

.vh-process-step {
    text-align: center;
}

.vh-process-content {
    text-align: center;
}

.vh-process-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary);  /* Dunkle Farbe für hellen Hintergrund */
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.vh-process-text {
    color: var(--text-medium);  /* Dunkle Farbe für hellen Hintergrund */
    line-height: 1.6;
    font-size: 0.95rem;
}
/* =========================================
   USE CASES - DARK VERSION (DEDICATED)
   ========================================= */

/* Grid Layout */
.vh-usecase-cards-dark {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Card Styling - Glassmorphism für Dark Mode */
.vh-usecase-card-dark {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.vh-usecase-card-dark:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Subtle Glow Effect on Hover */
.vh-usecase-card-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.vh-usecase-card-dark:hover::before {
    opacity: 1;
}

/* Icon Styling */
.vh-usecase-icon-dark {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Title Styling */
.vh-usecase-card-title-dark {
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.3;
}

/* Body Text */
.vh-usecase-card-text-dark {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* Example Quote Box */
.vh-usecase-example-dark {
    background: rgba(212, 175, 55, 0.12);
    border-left: 3px solid var(--accent);
    padding: 1.25rem;
    border-radius: 10px;
    font-style: italic;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .vh-usecase-cards-dark {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .vh-usecase-card-dark {
        padding: 2rem;
    }
    
    .vh-usecase-card-title-dark {
        font-size: 1.4rem;
    }
    
    .vh-usecase-card-text-dark {
        font-size: 1rem;
    }
}
/* =========================================
   DEMO TESTIMONIAL - LIGHT VERSION
   ========================================= */
.vh-demo-testimonial-light {
    margin-top: 3rem;
    text-align: center;
    padding: 2.5rem;
    background: rgba(212, 175, 55, 0.08);
    border-left: 4px solid var(--accent);
    border-radius: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.vh-testimonial-text-light {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-weight: 400;
}

.vh-testimonial-author-light {
    color: var(--text-medium);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
/* =========================================
   RESTORATION SECTION - DARK VERSION
   ========================================= */

/* Wrapper Layout */
.vh-restore-wrapper-dark {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: center;
}

/* Left Side - Feature List */
.vh-restore-left-dark {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.vh-restore-item-dark {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.vh-restore-item-dark:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(8px);
}

.vh-restore-icon-dark {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.vh-restore-title-dark {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.vh-restore-text-dark {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Right Side - Preview Image */
.vh-restore-right-dark {
    position: relative;
}

.vh-restore-preview-dark {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.vh-restore-preview-dark:hover {
    transform: scale(1.02);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.vh-restore-preview-title-dark {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.vh-restore-image-dark {
    width: 100%;
    border-radius: 12px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 968px) {
    .vh-restore-wrapper-dark {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .vh-restore-right-dark {
        order: -1; /* Image comes first on mobile */
    }
    
    .vh-restore-item-dark:hover {
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .vh-restore-item-dark {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .vh-restore-icon-dark {
        font-size: 2rem;
    }
    
    .vh-restore-title-dark {
        font-size: 1.2rem;
    }
    
    .vh-restore-text-dark {
        font-size: 0.95rem;
    }
}
/* ==========================================
   DRAG & DROP VISUAL FEEDBACK
   ========================================== */

.upload-area {
    transition: all 0.3s ease;
}

.upload-area-dragover {
    background: rgba(212, 175, 55, 0.15) !important;
    border-color: var(--accent) !important;
    border-style: solid !important;
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Optional: Pulsing animation während drag */
@keyframes pulse-drag {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.upload-area-dragover {
    animation: pulse-drag 1.5s ease-in-out infinite;
}
/* =========================================
   SUBTLE BORDERS - NON-HOVER STATE
   ========================================= */

/* HOW IT WORKS - Dark Cards  */
.vh-process-step-new {
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.vh-process-step-new:hover {
	border: 0px;
    border-color: none;
}

/* YOUR PRIVACY IS OUR VAULT - Light Cards  */
.vh-process-step {
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.vh-process-step:hover {
    border-color: rgba(212, 175, 55, 0.5);
}
/* COMPARISON TABLE STYLES */
.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-family: 'Inter', sans-serif;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary) 0%, #2a1f15 100%);
}

.comparison-table thead th {
    color: white;
    padding: 1.5rem 1.25rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 3px solid var(--accent);
}

.comparison-table thead th.vocal-col,
.comparison-table thead th.generic-col {
    text-align: center;
}

.comparison-table tbody td {
    padding: 1.25rem 1.25rem;
    border-bottom: 1px solid #e5e7eb;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table .row-alt {
    background: #fafbfc;
}

.comparison-table .feature-col {
    font-weight: 500;
    color: var(--primary);
    width: 35%;
}

.comparison-table .vocal-col,
.comparison-table .generic-col {
    text-align: center;
    width: 32.5%;
}

.comparison-table .check-yes {
    color: #059669;
    font-weight: 500;
}

.comparison-table .check-no {
    color: #dc2626;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 1rem 0.75rem;
    }
    
    .comparison-table .feature-col {
        width: 40%;
    }
    
    .comparison-table .vocal-col,
    .comparison-table .generic-col {
        width: 30%;
    }
}
/* USP GRID LAYOUT */
.vh-usps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.vh-usp-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.vh-usp-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.vh-usp-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.vh-usp-content {
    flex: 1;
}

.vh-usp-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.vh-usp-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .vh-usps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .vh-usp-card {
        padding: 1.5rem;
    }
    
    .vh-usp-icon {
        width: 64px;
        height: 64px;
    }
    
    .vh-usp-title {
        font-size: 1.25rem;
    }
    
    .vh-usp-text {
        font-size: 0.95rem;
    }
}
/* MINIMALE TEXT-VERBESSERUNGEN */
.text-content {
    margin-top: 2rem;
}

.text-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.text-content h3:first-child {
    margin-top: 0;
}

.text-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    text-align: justify;
}

.text-content strong {
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .text-content h3 {
        font-size: 1.3rem;
    }
    .text-content p {
        font-size: 1rem;
        text-align: left;
    }
}