/* =====================================================
   OpenAI IPO 2026/2027 – Blueprint Master Styles
   High-Conversion Green CTAs - AI Canvas Background - News Tab
   ===================================================== */

/* ==================== CSS VARIABLES ==================== */
:root {
    --bg-primary: #0a0e1a;
    --bg-secondary: #0d1225;
    --bg-tertiary: #111833;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --border-card: rgba(255, 255, 255, 0.08);
    --border-card-hover: rgba(255, 255, 255, 0.18);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.96);
    --text-muted: rgba(255, 255, 255, 0.85);
    
    /* High-Conversion Colors from Blueprint Photo */
    --green-cta: #4CAF50;
    --green-cta-dark: #388e3c;
    --green-cta-light: #66bb6a;
    --gradient-green: linear-gradient(135deg, #66bb6a, #4CAF50, #388e3c);

    --gold: #e8c547;
    --gold-dark: #c9a84c;
    --blue: #2563eb;
    --blue-light: #3b82f6;
    --cyan: #00b4d8;
    
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-glow-green: 0 0 25px rgba(76, 175, 80, 0.4);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Outfit', 'Inter', sans-serif;
}

/* ==================== RESET & CANVAS ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

#techCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
}

a { color: var(--green-cta-light); text-decoration: none; transition: var(--transition); }
a:hover { color: #ffffff; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }

/* ==================== GREEN HIGH-CONVERSION BUTTONS ==================== */
.btn-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--gradient-green);
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-glow-green);
}

.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.6);
    color: #ffffff;
}

.btn-green:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

/* ==================== LIVE MARKET TICKER ==================== */
.ticker-wrap {
    width: 100%;
    background: rgba(10, 14, 26, 0.95);
    border-bottom: 1px solid var(--border-card);
    padding: 8px 0;
    overflow: hidden;
    position: relative;
    z-index: 101;
    font-size: 12px;
}

.ticker-track {
    display: flex;
    width: 200%;
    animation: marquee 25s linear infinite;
}

.ticker-wrap:hover .ticker-track { animation-play-state: paused; }

.ticker-content {
    display: flex;
    align-items: center;
    gap: 36px;
    padding-right: 36px;
    white-space: nowrap;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
}

.ticker-item .symbol { font-weight: 700; color: var(--text-primary); font-family: var(--font-display); }
.ticker-item .price { font-weight: 600; }
.ticker-item .price.highlight { color: var(--green-cta-light); }
.ticker-item .change.up { color: var(--green-cta-light); font-weight: 600; }

.badge-tag {
    background: rgba(37, 99, 235, 0.2);
    color: var(--blue-light);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
}

.badge-tag.live { background: rgba(76, 175, 80, 0.2); color: var(--green-cta-light); }

@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

@media (min-width: 1025px) {
    .ticker-track { animation: none; width: 100%; justify-content: center; }
    .ticker-content[aria-hidden="true"] { display: none; }
    .ticker-content { padding-right: 0; justify-content: center; gap: 28px; }
}

/* ==================== GLOBAL FIXED BACKGROUND VIDEO ==================== */
.global-video-bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -5;
    overflow: hidden;
    pointer-events: none;
}

.global-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.78 !important;
    filter: brightness(1.05) contrast(1.15) saturate(1.2) !important;
    transform: scale(1.02);
}

.global-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(10, 14, 26, 0.35) 0%, rgba(10, 14, 26, 0.65) 100%) !important;
}

/* ==================== TOP NAV & LANGUAGE SELECTOR ==================== */
.top-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(16px);
}

.top-nav-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 18px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.top-nav-left { display: flex; align-items: center; flex-shrink: 0; }

.nav-logo-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
}

.logo-icon { width: 22px; height: 22px; }
.nav-logo-divider { color: var(--text-muted); opacity: 0.5; }
.nav-brand { color: var(--gold); }

.top-nav-center {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: nowrap;
}

.nav-tab-link {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    padding: 5px 9px;
    border-radius: 16px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-tab-link:hover, .nav-tab-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.nav-tab-link.highlight-news {
    background: rgba(76, 175, 80, 0.2);
    color: #ffffff;
    border: 1px solid var(--green-cta-light);
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.25);
}

.nav-tab-link.highlight-news:hover {
    background: var(--green-cta);
    color: #ffffff;
    box-shadow: var(--shadow-glow-green);
}

.top-nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: 8px;
}

/* Premium Theme Switcher */
.theme-switcher-container {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    border-radius: 24px;
    padding: 3px;
    gap: 3px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1005;
    pointer-events: auto !important;
    cursor: pointer;
}

.theme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 11.5px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1006;
    pointer-events: auto !important;
    touch-action: manipulation;
    user-select: none;
}

.theme-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.theme-btn.active {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.4) !important;
}

#themeBtnWhite.theme-btn.active {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%) !important;
    color: #0f172a !important;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.4) !important;
}

.lang-selector select {
    background: rgba(13, 18, 37, 0.95) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    outline: none;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 20px;
}

.lang-selector select option {
    background: #0d1225 !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    padding: 8px 12px !important;
}

body.theme-white .lang-selector select,
[data-theme="white"] .lang-selector select {
    background: #ffffff !important;
    color: #0f172a !important;
    border-color: #cbd5e1 !important;
}

body.theme-white .lang-selector select option,
[data-theme="white"] .lang-selector select option {
    background: #ffffff !important;
    color: #0f172a !important;
}

.nav-cta-btn { padding: 8px 18px; font-size: 12px; }
.mobile-cta-text { display: none !important; }
.desktop-cta-text { display: inline !important; }

/* ==================== RTL SUPPORT ==================== */
[dir="rtl"] { text-align: right; }
[dir="rtl"] .top-nav-container { flex-direction: row-reverse; }

/* ==================== HERO SECTION (SPLIT GRID MATCHING BLUEPRINT) ==================== */
.hero {
    position: relative;
    padding: 40px 0 60px;
    overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.hero-bg-video { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    opacity: 0.65; 
    filter: brightness(0.7) contrast(1.15) saturate(1.2);
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(10, 14, 26, 0.65) 0%, rgba(10, 14, 26, 0.88) 75%, rgba(10, 14, 26, 0.96) 100%);
}

.hero-split-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.8fr 0.9fr;
    gap: 24px;
    align-items: center;
}

.hero-split-form {
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
}

.hero-logos {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.logo-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
}

.logo-divider { color: var(--text-muted); font-size: 20px; }

.hero-title { margin-bottom: 18px; }

.hero-title-main {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(28px, 4.5vw, 52px);
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 8px;
}

.hero-title-sub {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(15px, 2vw, 22px);
    font-weight: 700;
    color: var(--green-cta-light);
    line-height: 1.35;
}

.hero-description {
    font-size: 15px;
    color: #ffffff;
    opacity: 0.95;
    line-height: 1.6;
    margin-bottom: 20px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.hero-ai-badge-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.ai-badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-full-form-card {
    padding: 28px 24px;
    background: #ffffff !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22), 0 0 1px rgba(0, 0, 0, 0.1) !important;
    position: relative;
    z-index: 10;
    color: #0f172a !important;
}

.hero-full-form-card .hero-card-title {
    color: #0f172a !important;
    font-weight: 900;
}

.hero-full-form-card .hero-card-subtitle {
    font-size: 13px;
    color: #475569 !important;
    font-weight: 500;
    margin-top: 6px;
    line-height: 1.5;
    text-shadow: none !important;
}

.hero-full-form-card .hero-form-trust-header .bull-mini-badge {
    background: #f8fafc;
    border: 1.5px solid #d97706;
    padding: 6px 12px;
    border-radius: 20px;
}

.hero-full-form-card .hero-form-trust-header .bull-text {
    color: #b45309 !important;
}

.hero-full-form-card .hero-form-trust-header .dsgvo-mini-badge {
    color: #475569 !important;
    font-weight: 600;
}

.hero-full-form-card .reg-process-steps {
    background: #f1f5f9 !important;
    border: 1px solid #e2e8f0 !important;
}

.hero-full-form-card .reg-process-steps div:first-child {
    color: #15803d !important;
}

.hero-full-form-card .reg-process-steps div:last-child {
    color: #64748b !important;
}

.hero-full-form-card .form-group label {
    color: #0f172a !important;
    font-weight: 700 !important;
}

.hero-full-form-card .form-group input,
.hero-full-form-card .form-group select,
.hero-full-form-card .form-group textarea {
    background: #ffffff !important;
    border: 1.5px solid #cbd5e1 !important;
    color: #0f172a !important;
    -webkit-text-fill-color: #0f172a !important;
    font-weight: 600 !important;
}

.hero-full-form-card .form-group input::placeholder,
.hero-full-form-card .form-group textarea::placeholder {
    color: #64748b !important;
    -webkit-text-fill-color: #64748b !important;
}

.hero-full-form-card .form-group input:focus,
.hero-full-form-card .form-group select:focus,
.hero-full-form-card .form-group textarea:focus {
    background: #ffffff !important;
    border-color: #16a34a !important;
    color: #0f172a !important;
    -webkit-text-fill-color: #0f172a !important;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15) !important;
}

/* Fix browser autofill on light card so text is always dark and readable */
.hero-full-form-card input:-webkit-autofill,
.hero-full-form-card input:-webkit-autofill:hover,
.hero-full-form-card input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
    box-shadow: 0 0 0 1000px #ffffff inset !important;
    -webkit-text-fill-color: #0f172a !important;
    color: #0f172a !important;
}

.hero-full-form-card .radio-label,
.hero-full-form-card .checkbox-label {
    background: #f8fafc !important;
    border: 1.5px solid #e2e8f0 !important;
    color: #0f172a !important;
    font-weight: 600 !important;
}

.hero-full-form-card .radio-label:hover,
.hero-full-form-card .checkbox-label:hover {
    background: #f1f5f9 !important;
    border-color: #cbd5e1 !important;
}

.hero-full-form-card .form-subnote {
    color: #64748b !important;
}

.hero-cta-btn { font-size: 14px; padding: 14px 28px; }

/* AI Robot Frame */
.hero-center { text-align: center; }

.ai-robot-frame {
    position: relative;
    border-radius: 50%;
    width: 260px;
    height: 260px;
    margin: 0 auto;
    overflow: hidden;
    border: 2px solid rgba(0, 180, 216, 0.4);
    box-shadow: 0 0 40px rgba(0, 180, 216, 0.3);
}

.ai-robot-img { width: 100%; height: 100%; object-fit: cover; }

/* Floating Hero Lead Vormerken Card */
.hero-lead-card {
    padding: 28px 24px;
    background: rgba(13, 18, 37, 0.9);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(76, 175, 80, 0.15);
}

.hero-card-title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.hero-card-list { list-style: none; margin-bottom: 20px; }

.hero-card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.green-check { color: var(--green-cta-light); font-weight: 800; }

.hero-quick-form input {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 13px;
    margin-bottom: 12px;
    outline: none;
}

.hero-quick-form input:focus { border-color: var(--green-cta); }

.hero-submit-btn { width: 100%; padding: 14px; font-size: 13px; }

.hero-card-footer {
    display: block;
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 12px;
}

/* Stats Bars Container & Comparative System (White Background & Microsoft Colors Test) */
.stats-bars-wrapper {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stats-bar-container {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 24px 20px 20px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22), 0 0 1px rgba(0, 0, 0, 0.1);
    position: relative;
    color: #0f172a;
}

.stats-bar-container.openai-bar {
    border-top: 4px solid #7FBA00; /* Microsoft Green */
}

.stats-bar-container.microsoft-bar {
    border-top: 4px solid #00A4EF; /* Microsoft Blue */
}

.stats-bar-header-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.stats-bar-header-tag.openai-tag {
    color: #0f172a;
}

.stats-bar-header-tag.microsoft-tag {
    color: #0f172a;
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-top: 0;
    padding: 0;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    backdrop-filter: none;
}

.stat-item { 
    text-align: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    background: #ffffff;
}

.stat-value {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.8vw, 28px);
    font-weight: 900;
    color: #0f172a;
}

/* Microsoft Logo Palette Suffixes & Accents */
.stat-suffix { font-family: var(--font-display); font-size: 16px; font-weight: 800; color: #7FBA00; /* MS Green */ }
.stat-suffix.blue-suffix { color: #00A4EF; /* MS Blue */ }
.stat-suffix.gold-suffix { color: #FFB900; /* MS Yellow/Gold */ }
.stat-suffix.red-suffix { color: #F25022; /* MS Red */ }

.stat-label { 
    display: block; 
    font-size: 12px; 
    color: #475569; /* Crisp readable slate */ 
    margin-top: 6px; 
    line-height: 1.35; 
    font-weight: 600;
}
.stat-label small { 
    font-size: 10.5px; 
    color: #64748b; 
    font-weight: 500;
}
.stat-divider { display: none; }

/* ==================== SECTIONS ==================== */
.section { padding: 70px 0; position: relative; z-index: 1; }
.section-alt { background: var(--bg-secondary); }
.section-form { background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-tertiary) 100%); }

.section-badge { margin-bottom: 14px; }
.section-badge.center { text-align: center; }

.badge-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--gradient-green);
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 900;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.5);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 900;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.section-title.center { text-align: center; }

.section-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.section-subtitle.center { text-align: center; max-width: 700px; margin-left: auto; margin-right: auto; }

.section-note { font-size: 13px; color: var(--text-muted); margin-top: 24px; font-style: italic; }
.section-note.center { text-align: center; }

.section-grid { display: grid; gap: 40px; align-items: center; }
.section-grid.two-col { grid-template-columns: 1fr 1fr; }

.section-image-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-card);
}

.section-image { width: 100%; height: 280px; object-fit: cover; }

/* Glass Card */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(16px);
    transition: var(--transition);
}

.glass-card:hover { border-color: var(--border-card-hover); background: var(--bg-card-hover); }

/* Check List */
.check-list { list-style: none; }
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px; height: 24px; min-width: 24px;
    background: rgba(76, 175, 80, 0.25);
    color: var(--green-cta-light);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
}

.check-list.gold .check-icon { background: rgba(232, 197, 71, 0.25); color: var(--gold); box-shadow: 0 0 10px rgba(232, 197, 71, 0.3); }

/* Info Grid & Products */
.info-grid { display: grid; gap: 16px; }
.info-grid.four-col { grid-template-columns: repeat(4, 1fr); }
.info-card { padding: 24px 16px; text-align: center; }
.info-svg { color: var(--cyan); margin-bottom: 14px; display: flex; justify-content: center; transform: scale(1.3); }
.info-value { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--text-primary); }

.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.product-card { padding: 24px 16px; text-align: center; position: relative; }
.product-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient-green); opacity: 0; transition: var(--transition); }
.product-card:hover::before { opacity: 1; }
.product-svg { color: var(--green-cta-light); margin-bottom: 14px; display: flex; justify-content: center; transform: scale(1.35); filter: drop-shadow(0 0 8px rgba(76, 175, 80, 0.4)); }
.product-name { font-family: var(--font-display); font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.product-desc { font-size: 12px; color: var(--text-muted); }

/* Chart */
.chart-card { padding: 28px; position: relative; overflow: hidden; }
.chart-title { font-family: var(--font-display); font-size: 13px; font-weight: 700; text-align: center; margin-bottom: 3px; }
.chart-subtitle { font-size: 11px; color: var(--text-muted); text-align: center; margin-bottom: 28px; }
.chart-container { height: 220px; }
.chart-bars { display: flex; align-items: flex-end; justify-content: center; gap: 20px; height: 100%; padding-bottom: 28px; }
.chart-bar-group { display: flex; flex-direction: column; align-items: center; flex: 1; height: 100%; justify-content: flex-end; }
.chart-bar { width: 100%; max-width: 52px; background: linear-gradient(180deg, var(--blue-light), var(--blue)); border-radius: 5px 5px 0 0; position: relative; transition: height 1.5s ease; }
.chart-bar.highlight { background: var(--gradient-green); }
.bar-value { position: absolute; top: -24px; left: 50%; transform: translateX(-50%); font-family: var(--font-display); font-size: 13px; font-weight: 700; }
.bar-label { margin-top: 8px; font-size: 11px; color: var(--text-muted); }

/* Calculator */
.section-calc { background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%); padding: 60px 0; }
.calc-card { padding: 36px; max-width: 800px; margin: 0 auto; text-align: center; }
.calc-title { font-family: var(--font-display); font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.calc-subtitle { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }
.calc-form label { display: block; font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 12px; }
.calc-input-row { display: flex; align-items: center; gap: 20px; max-width: 500px; margin: 0 auto 16px; }

.calc-input-row input[type="range"] {
    -webkit-appearance: none; appearance: none;
    flex: 1; height: 8px;
    background: linear-gradient(90deg, #4CAF50 0%, rgba(255, 255, 255, 0.12) 0%);
    border-radius: 4px; outline: none; border: 1px solid rgba(255, 255, 255, 0.08); cursor: pointer;
}

.calc-input-row input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none;
    width: 26px; height: 26px; border-radius: 50%;
    background: var(--gradient-green); border: 3px solid #0a0e1a;
    box-shadow: 0 0 16px rgba(76, 175, 80, 0.6); cursor: pointer; transition: transform 0.2s ease;
}

.calc-input-row input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.2); }
.calc-display-amount { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--green-cta-light); min-width: 110px; text-align: right; }

.calc-presets { display: flex; justify-content: center; gap: 10px; }
.preset-btn { padding: 6px 14px; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border-card); border-radius: 20px; color: var(--text-secondary); font-size: 12px; cursor: pointer; transition: var(--transition); }
.preset-btn.active, .preset-btn:hover { background: var(--green-cta); color: #ffffff; border-color: var(--green-cta); }

.calc-results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.calc-result-box { padding: 20px 12px; border-radius: var(--radius-md); background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border-card); }
.calc-result-box.optimistic { border-color: rgba(76, 175, 80, 0.4); background: rgba(76, 175, 80, 0.05); }
.result-label { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; }
.result-val { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--text-primary); }
.calc-result-box.optimistic .result-val { color: var(--green-cta-light); }

/* Prognose Cards (Modern, Responsive, Luxury Layout) */
.prognose-full-wrap {
    max-width: 880px !important;
    margin: 24px auto !important;
    padding: 24px !important;
    border-radius: 18px !important;
    background: rgba(10, 14, 26, 0.95);
    border: 1.5px solid rgba(76, 175, 80, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(76, 175, 80, 0.15);
}

.prognose-cards-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.prognose-item-card {
    padding: 16px 18px;
    background: rgba(13, 18, 37, 0.9);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.25s ease;
}

.prognose-item-card:hover {
    border-color: rgba(76, 175, 80, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.prognose-item-card.prog-card-opti {
    border-color: rgba(255, 215, 0, 0.35);
    background: rgba(13, 18, 37, 0.95);
}

.prog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.prog-badge {
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
}

.prog-badge-opti {
    color: #ffd700;
}

.prog-val {
    font-size: 15px;
    font-weight: 900;
    white-space: nowrap;
}

.prog-val-green {
    color: #4CAF50;
}

.prog-val-gold {
    color: #ffd700;
}

.prog-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.4;
}

/* IPO Status & Bull */
.status-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.status-label { font-size: 13px; color: var(--text-muted); }
.status-value { font-family: var(--font-display); font-size: 14px; font-weight: 600; }
.status-value.highlight { color: var(--green-cta-light); font-weight: 800; }
.bull-card { padding: 20px; }
.bull-img-wrap { position: relative; border-radius: var(--radius-md); overflow: hidden; margin-bottom: 16px; }
.bull-img { width: 100%; height: 240px; object-fit: cover; }
.bull-badge { position: absolute; bottom: 12px; left: 12px; right: 12px; background: rgba(10, 14, 26, 0.85); padding: 10px 14px; border-radius: var(--radius-sm); border: 1px solid var(--border-card); }
.bull-badge-title { font-family: var(--font-display); font-size: 14px; font-weight: 800; color: var(--gold); }
.bull-badge-sub { font-size: 11px; color: var(--text-muted); }
.bull-desc { font-size: 12px; color: var(--text-secondary); text-align: center; }

/* ==================== DEDICATED IPO NEWS HUB (UNSTOPPABLE BROADCAST STREAM) ==================== */
.section-news { background: var(--bg-tertiary); padding: 70px 0; }

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

.badge-tag.live-red {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.4);
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 12px;
}

.news-broadcast-container {
    padding: 20px;
    max-width: 920px;
    margin: 0 auto;
    border-color: rgba(76, 175, 80, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(76, 175, 80, 0.15);
}

.broadcast-video-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #000000;
}

.continuous-news-stream {
    width: 100%;
    height: auto;
    max-height: 520px;
    display: block;
    object-fit: cover;
    pointer-events: none;
    border-radius: var(--radius-lg);
}

.broadcast-live-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}

.live-indicator {
    background: rgba(220, 38, 38, 0.9);
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 0 14px rgba(220, 38, 38, 0.6);
    letter-spacing: 1px;
}

.live-title {
    background: rgba(10, 14, 26, 0.85);
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--border-card);
}

.form-subnote {
    font-size: 12px;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    margin-top: 8px;
    opacity: 0.95;
}

/* ==================== B. WAS ERWARTET SIE NACH DER REGISTRIERUNG? ==================== */
.expect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.expect-card {
    padding: 24px;
    transition: var(--transition);
}

.expect-card:hover {
    transform: translateY(-4px);
    border-color: rgba(76, 175, 80, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.expect-icon {
    font-size: 28px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.expect-svg-icon {
    width: 32px;
    height: 32px;
    color: var(--green-cta-light);
    filter: drop-shadow(0 0 8px rgba(76, 175, 80, 0.4));
    stroke-width: 2px;
}

.expect-card-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.expect-card-desc {
    font-size: 13px;
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.5;
}

/* INFORMATIONSVORSPRUNG MODULE */
.vorsprung-box {
    padding: 32px;
    border-color: rgba(76, 175, 80, 0.3);
}

.vorsprung-header {
    text-align: center;
    margin-bottom: 24px;
}

.vorsprung-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 8px;
}

.vorsprung-sub {
    font-size: 13px;
    color: #ffffff;
    opacity: 0.95;
    max-width: 750px;
    margin: 0 auto;
}

.vorsprung-categories {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.v-cat-pill {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
}

.v-cat-pill.red { border-color: rgba(239, 68, 68, 0.3); background: rgba(239, 68, 68, 0.05); }
.v-cat-pill.green { border-color: rgba(76, 175, 80, 0.3); background: rgba(76, 175, 80, 0.05); }
.v-cat-pill.blue { border-color: rgba(59, 130, 246, 0.3); background: rgba(59, 130, 246, 0.05); }
.v-cat-pill.purple { border-color: rgba(168, 85, 247, 0.3); background: rgba(168, 85, 247, 0.05); }
.v-cat-pill.white { border-color: rgba(255, 255, 255, 0.2); background: rgba(255, 255, 255, 0.03); }

.v-cat-tag {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    min-width: 190px;
}

.v-cat-desc {
    font-size: 13px;
    color: #ffffff;
    opacity: 0.95;
}

/* ==================== C. SO FUNKTIONIERT ES (4 STEPS) ==================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.step-card {
    padding: 28px 20px;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: var(--green-cta);
}

.step-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    color: var(--green-cta-light);
    margin-bottom: 12px;
    line-height: 1;
}

.step-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==================== D. PROMINENTER COUNTDOWN ==================== */
.countdown-banner {
    padding: 36px;
    max-width: 900px;
    margin: 0 auto;
    border-color: rgba(76, 175, 80, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.countdown-banner-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 6px;
}

.countdown-banner-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.countdown-box {
    text-align: center;
}

.countdown-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(234, 179, 8, 0.12);
    border: 1px solid rgba(234, 179, 8, 0.3);
    border-radius: 20px;
    color: #facc15;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
}

.pulse-dot {
    color: #facc15;
    animation: pulse 1.5s infinite;
}

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

.countdown-clock {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.clock-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    min-width: 90px;
}

.clock-val {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: var(--green-cta-light);
}

.clock-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
}

.clock-colon {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: var(--text-muted);
}

.countdown-info-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.c-info-label {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ==================== F. TRANSPARENT & SICHER ==================== */
.transparency-grid {
    padding: 32px;
    max-width: 850px;
    margin: 0 auto;
}

.transparency-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.transparency-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: #ffffff;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.t-check {
    color: var(--green-cta-light);
    font-weight: 900;
    font-size: 16px;
}

.news-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.news-card:hover { transform: translateY(-4px); border-color: rgba(76, 175, 80, 0.3); }

.news-tag {
    display: inline-block;
    align-self: flex-start;
    padding: 4px 10px;
    background: rgba(37, 99, 235, 0.15);
    color: var(--blue-light);
    font-size: 10px;
    font-weight: 800;
    border-radius: 4px;
    margin-bottom: 12px;
}

.news-tag.highlight { background: rgba(76, 175, 80, 0.15); color: var(--green-cta-light); }

.news-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 18px;
}

.btn-news-action {
    font-size: 13px;
    font-weight: 700;
    color: var(--green-cta-light);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.btn-news-action:hover { color: #ffffff; transform: translateX(4px); }

/* PRODUCTS & SERVICES GRID (Image 1) */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 24px;
}

.product-item-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: rgba(13, 18, 37, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: var(--transition);
}

.product-item-card:hover {
    border-color: rgba(76, 175, 80, 0.4);
    transform: translateY(-2px);
    background: rgba(13, 18, 37, 0.95);
}

.prod-icon-box {
    font-size: 24px;
    line-height: 1;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    transition: var(--transition);
}
.product-item-card:hover .prod-icon-box {
    background: rgba(76, 175, 80, 0.12);
    border-color: rgba(76, 175, 80, 0.35);
}

.prod-name {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
}

.prod-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 2px;
}

/* CHANCEN & VORTEILE LIST & BAR CHART (Image 2) */
.chancen-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.chancen-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

.c-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(76, 175, 80, 0.25);
    color: #ffffff;
    border: 1px solid rgba(76, 175, 80, 0.5);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 900;
}

.chart-box-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.chart-box-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
    margin-bottom: 24px;
}

.bar-chart-visual {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 240px;
    padding-top: 40px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.bar-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 20%;
    height: 100%;
    justify-content: flex-end;
}

.bar-val {
    font-size: 12px;
    font-weight: 900;
    color: #ffffff;
}

.bar-fill {
    width: 100%;
    max-width: 42px;
    background: linear-gradient(180deg, #00A4EF 0%, rgba(0, 164, 239, 0.3) 100%);
    border-radius: 8px 8px 0 0;
    transition: height 1s ease-in-out;
}

/* HERO FORM BULL & DSGVO BADGES */
.hero-form-trust-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.bull-mini-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.2) 0%, rgba(202, 138, 4, 0.1) 100%);
    border: 1.5px solid rgba(234, 179, 8, 0.5);
    border-radius: 10px;
    color: #ffd700;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(234, 179, 8, 0.15);
}

.bull-mini-badge .bull-icon {
    font-size: 16px;
    animation: bullPulse 2s infinite ease-in-out;
}

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

.dsgvo-mini-badge {
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    opacity: 0.95;
    padding-left: 4px;
}

/* EXPLOSIVE 2035 CHART COLUMN (TOWERS DRAMATICALLY AT HIGHEST LEVEL) */
.bar-col.explosive {
    position: relative;
    justify-content: flex-end;
}

.explosion-badge {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: linear-gradient(90deg, #ff4500, #ff8c00);
    color: #ffffff;
    font-size: 9px;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 12px;
    box-shadow: 0 0 16px rgba(255, 69, 0, 0.8);
    animation: flashBadge 1.5s infinite;
    z-index: 10;
}

@keyframes flashBadge { 0%, 100% { transform: translateX(-50%) scale(1); } 50% { transform: translateX(-50%) scale(1.08); } }

.gold-val {
    color: #ffd700 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.8);
    margin-bottom: 2px;
}

.bar-fill.explosion-bar {
    background: linear-gradient(180deg, #ffd700 0%, #ff8c00 100%) !important;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 50px rgba(255, 69, 0, 0.6) !important;
    border-radius: 8px 8px 0 0 !important;
}

.gold-year {
    color: #ffd700 !important;
    font-weight: 900 !important;
}

/* ==================== 5 FINANCIAL PRESS LOGOS TRUST STRIP ==================== */
.press-trust-bar {
    margin: 24px auto;
    padding: 20px 24px;
    background: rgba(13, 18, 37, 0.92);
    border: 1.5px solid rgba(255, 215, 0, 0.4);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.press-trust-heading {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #ffd700 !important;
    margin-bottom: 6px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* CONTAINER: Exakt auf Breite der linken Spalte begrenzt (max 480px auf PC, niemals nach rechts überstehend) */
.hero-press-slider-box {
    width: 100% !important;
    max-width: 480px !important;
    overflow: hidden !important;
    position: relative !important;
    box-sizing: border-box !important;
    padding: 0 !important;
    margin: 8px 0 14px !important;
    contain: layout paint;
}

.press-slider-box {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    position: relative !important;
    box-sizing: border-box !important;
    padding: 0 !important;
    margin: 0 !important;
    contain: layout paint;
}

/* TRACK: Exakt 200% Breite für Set A + Set B */
.hero-press-slider-track, .press-slider-track {
    display: flex !important;
    align-items: center !important;
    width: 200% !important;
    animation: seamlessInfiniteScroll 18s linear infinite !important;
    will-change: transform;
}

/* LOGO GROUP: 50% der Track-Breite (= exakt 100% der linken Spalte) */
.press-logo-group {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 50% !important;
    flex-shrink: 0 !important;
    gap: 12px !important;
    padding-right: 12px !important;
}

/* KEYFRAMES */
@keyframes seamlessInfiniteScroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* INTERAKTIONEN DEAKTIVIERT */
.hero-press-slider-box,
.hero-press-slider-track,
.hero-press-logo-img {
    pointer-events: none !important;
    user-select: none !important;
    -webkit-user-drag: none !important;
}

.hero-press-logo-img {
    height: 48px !important;
    width: auto !important;
    max-width: 65px !important;
    object-fit: contain !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    opacity: 0.85 !important;
    filter: brightness(0.95) !important;
    flex-shrink: 0 !important;
}

.press-logo-slider-img {
    height: 38px !important;
    width: auto !important;
    object-fit: contain !important;
}

@media (max-width: 768px) {
    .press-trust-heading {
        font-size: 11px !important;
        margin-bottom: 6px !important;
    }
    .hero-press-slider-box {
        max-width: 100% !important;
        margin: 6px 0 10px !important;
    }
    .press-logo-group {
        gap: 10px !important;
        padding-right: 10px !important;
    }
    .hero-press-logo-img {
        height: 38px !important;
        max-width: 50px !important;
    }
}

/* ISOLIERTER FIX FÜR DEN PRESS-TRUST-BAR SLIDER */
.press-trust-bar .press-slider-box {
    position: relative !important;
    width: 100% !important;
    overflow: hidden !important;
    margin: 0 auto !important;
    padding: 10px 0 !important;
}

.press-trust-bar .press-slider-track {
    display: flex !important;
    width: max-content !important;
    align-items: center !important;
    animation: scrollLogos 25s linear infinite !important;
}

.press-trust-bar .press-logo-group {
    display: flex !important;
    align-items: center !important;
    justify-content: space-around !important;
    gap: 32px !important;
    padding-right: 32px !important;
    flex-shrink: 0 !important;
}

.press-trust-bar .press-logo-slider-img {
    position: static !important;
    height: 36px !important;
    width: auto !important;
    max-width: none !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    padding: 0 4px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
    overflow: visible !important;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .press-trust-bar .press-logo-group {
        gap: 20px !important;
        padding-right: 20px !important;
    }

    .press-trust-bar .press-logo-slider-img {
        height: 28px !important;
    }
}

/* FOOTER LOGOS REVERTIEREN & DEZENT ANPASSEN */
.ms-footer-bottom .press-logos-row {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 16px !important;
    flex-wrap: wrap !important;
    margin: 12px 0 !important;
}

.ms-footer-bottom .press-logos-row img,
.ms-footer-bottom .footer-press-logo {
    height: 28px !important; /* Fast wie vorher, nur minimal deutlicher */
    max-height: 28px !important;
    width: auto !important;
    object-fit: contain !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

@media (max-width: 768px) {
    .ms-footer-bottom .press-logos-row img,
    .ms-footer-bottom .footer-press-logo {
        height: 22px !important; /* Kompakte mobile Höhe */
        max-height: 22px !important;
    }
}

.press-logos-row img {
    height: 60px !important;
    transition: transform 0.2s ease;
}

.press-logos-row img:hover {
    transform: scale(1.06);
}

.focus-money-seal-box {
    transition: transform 0.2s ease;
}

.focus-money-seal-box:hover {
    transform: scale(1.06);
}

.press-logo-badge {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.5px;
    transition: var(--transition);
    white-space: nowrap;
}

.press-logo-badge:hover {
    background: rgba(76, 175, 80, 0.15);
    border-color: rgba(76, 175, 80, 0.5);
    transform: translateY(-1px);
}

.press-logo-badge.hb { font-family: 'Times New Roman', serif; font-style: italic; border-left: 3px solid #ff4500; }
.press-logo-badge.bo { font-family: 'Outfit', sans-serif; font-weight: 900; color: #00A4EF; border-left: 3px solid #00A4EF; }
.press-logo-badge.da { font-family: 'Inter', sans-serif; font-weight: 900; color: #ffd700; border-left: 3px solid #ffd700; }
.press-logo-badge.ww { font-family: 'Outfit', sans-serif; font-weight: 800; border-left: 3px solid #e63946; }
.press-logo-badge.fm { font-family: 'Inter', sans-serif; font-weight: 900; color: #ffb703; border-left: 3px solid #ffb703; }

/* HIGH-CONTRAST CLICK/HOVER PROTECTION (NO DARKENING EVER!) */
.glass-card, .product-item-card, .expect-card, .step-card, .news-card, .prognose-table, .calc-card, .vorsprung-box {
    color: #ffffff !important;
}

.glass-card:hover, .product-item-card:hover, .expect-card:hover, .step-card:hover, .news-card:hover {
    color: #ffffff !important;
}

.prognose-table tr:hover, .prognose-table td:hover {
    background: rgba(13, 18, 37, 0.95) !important;
    color: #ffffff !important;
}

.chart-box-title, .chart-box-sub, .section-title, .section-subtitle, .prod-name, .prod-desc, .expect-card-title, .expect-card-desc, .step-title, .step-desc {
    color: #ffffff !important;
    opacity: 1 !important;
}

/* PROGNOSE TABLE (Image 3) */
.prognose-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
}

.prognose-table th {
    font-size: 12px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    text-align: left;
    padding: 0 12px 8px;
}

.prognose-table td {
    padding: 14px 16px;
    font-size: 13px;
    background: rgba(13, 18, 37, 0.7);
    color: #ffffff;
}

.prognose-table tr td:first-child {
    border-radius: 8px 0 0 8px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.prognose-table tr td:last-child {
    border-radius: 0 8px 8px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.prognose-table td.value-cell {
    font-weight: 900;
    color: var(--green-cta-light);
}

.video-news-card {
    padding: 32px;
    max-width: 900px;
    margin: 0 auto;
    border-color: rgba(76, 175, 80, 0.3);
}

.video-news-header {
    text-align: center;
    margin-bottom: 20px;
}

.video-news-footer {
    text-align: center;
    margin-top: 24px;
}

.single-news-card {
    padding: 36px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.single-news-card .news-tag {
    margin-bottom: 16px;
}

.single-news-card .news-title {
    font-size: 22px;
    margin-bottom: 16px;
}

.single-news-card .news-desc {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* ==================== SECTION 10: VIDEO SHOWCASE ==================== */
.section-video { background: var(--bg-secondary); padding: 60px 0; }
.video-showcase-container {
    padding: 24px;
    max-width: 920px;
    margin: 0 auto;
    border-color: rgba(76, 175, 80, 0.3);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(76, 175, 80, 0.15);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #000000;
}

.main-video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-lg);
    outline: none;
}

.video-showcase-actions {
    text-align: center;
    margin-top: 24px;
}

/* ==================== FORM (MAIN LEAD GENERATION) ==================== */
.form-layout { align-items: start; }
.form-info { position: sticky; top: 30px; }
.benefits-list { list-style: none; margin-bottom: 20px; }
.benefits-list li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 14px; color: var(--text-secondary); }
.benefit-icon { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; background: rgba(76, 175, 80, 0.2); color: var(--green-cta-light); border-radius: 50%; font-size: 11px; font-weight: 800; }
.trust-badge-small { display: flex; align-items: center; gap: 8px; padding: 12px 14px; background: rgba(76, 175, 80, 0.06); border: 1px solid rgba(76, 175, 80, 0.15); border-radius: var(--radius-sm); font-size: 12px; color: var(--text-muted); }

.form-container { padding: 32px; border-color: rgba(76, 175, 80, 0.25); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--text-secondary); margin-bottom: 6px; }

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select {
    width: 100%; padding: 12px 14px; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border-card); border-radius: var(--radius-sm); color: var(--text-primary); font-size: 14px; outline: none; transition: var(--transition);
}

.form-group input:focus, .form-group select:focus { border-color: var(--green-cta); box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15); }
.form-group select option { background: var(--bg-secondary); color: var(--text-primary); }
.form-error { display: none; font-size: 11px; color: var(--red); margin-top: 4px; }
.form-group.error input, .form-group.error select { border-color: var(--red); }
.form-group.error .form-error { display: block; }

.radio-group { display: flex; flex-direction: column; gap: 12px; }

.radio-label, .checkbox-label {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    user-select: none;
    position: relative;
}

.radio-label:hover, .checkbox-label:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(76, 175, 80, 0.4);
}

.radio-label:has(input:checked), .checkbox-label:has(input:checked) {
    background: rgba(76, 175, 80, 0.06);
    border-color: var(--green-cta);
    color: var(--text-primary);
}

.radio-label input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    outline: none;
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.radio-label input[type="radio"]:checked {
    border-color: var(--green-cta);
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
    background: radial-gradient(circle, var(--green-cta) 45%, transparent 50%);
}

.checkbox-label input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    outline: none;
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.checkbox-label input[type="checkbox"]:checked {
    border-color: var(--green-cta);
    background: var(--green-cta);
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '✓';
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
}

.main-submit-btn { width: 100%; padding: 16px; font-size: 14px; margin-top: 6px; }

/* Success */
.form-success { text-align: center; padding: 36px 16px; }
.success-icon { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; background: rgba(76, 175, 80, 0.2); color: var(--green-cta-light); border-radius: 50%; font-size: 28px; font-weight: 700; margin-bottom: 16px; }

/* FAQ */
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 14px 0; background: none; border: none; color: var(--text-primary); font-size: 14px; font-weight: 500; cursor: pointer; text-align: left; }
.faq-question:hover { color: var(--green-cta-light); }
.faq-arrow { transition: transform 0.3s ease; }
.faq-item.active .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer p { padding: 0 0 14px; font-size: 13px; color: var(--text-muted); }

.trust-card { padding: 28px; }
.trust-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; margin-bottom: 20px; }
.trust-list li { display: flex; align-items: center; gap: 10px; padding: 10px 0; font-size: 13px; color: var(--text-secondary); border-bottom: 1px solid rgba(255, 255, 255, 0.04); }
.trust-check { color: var(--green-cta-light); font-weight: 800; }

/* AUTHENTIC MICROSOFT FOOTER */
.ms-footer { background: #080b15; border-top: 1px solid var(--border-card); padding: 50px 0 30px; font-size: 12px; color: var(--text-muted); position: relative; z-index: 1; }
.ms-footer-links-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; margin-bottom: 40px; }
.ms-footer-col h4 { font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 14px; }
.ms-footer-col ul { list-style: none; }
.ms-footer-col ul li { margin-bottom: 10px; }
.ms-footer-col ul li a { color: var(--text-muted); font-size: 12px; }
.ms-footer-col ul li a:hover { color: var(--text-primary); text-decoration: underline; }

.ms-footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.06); padding-top: 24px; }
.footer-trust-strip { text-align: center; margin-bottom: 20px; }
.footer-label { font-size: 11px; font-weight: 600; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; display: block; margin-bottom: 12px; }
.footer-logos { display: flex; align-items: center; justify-content: center; gap: 32px; margin-bottom: 14px; }
.footer-logo-text { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--text-muted); opacity: 0.6; }
.footer-rating-badge { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 12px; }
.stars { color: var(--gold); }
.rating-val { font-weight: 700; color: var(--text-primary); }
.rating-count { color: var(--text-muted); }
.footer-disclaimer { max-width: 850px; margin: 0 auto; padding: 16px; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.04); border-radius: var(--radius-sm); }
.footer-disclaimer p { font-size: 11px; color: var(--text-muted); text-align: center; }

/* MODAL BACKDROP OVERLAY & POPUP STYLES */
.modal-backdrop {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 99999 !important;
    background: rgba(8, 11, 21, 0.88) !important;
    backdrop-filter: blur(12px) !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 16px !important;
    box-sizing: border-box !important;
}

.modal-backdrop.active {
    display: flex !important;
}

.modal-card {
    position: relative !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
}

.modal-close-btn {
    position: absolute !important;
    top: 14px !important;
    right: 14px !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: 900 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 9999 !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 4px 14px rgba(0,0,0,0.5) !important;
}

.modal-close-btn:hover, .modal-close-btn:active {
    background: #e63946 !important;
    border-color: #ff5252 !important;
    color: #ffffff !important;
    transform: scale(1.1) !important;
}

/* Scroll Animations – safe: always visible, smooth fade-in when .visible is added */
.animate-in {
    opacity: 1; /* Default: visible — JS will set opacity:0 via .will-animate before observing */
    transform: none;
    transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}
.animate-in.will-animate {
    opacity: 0;
    transform: translateY(28px);
}
.animate-in.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
/* Sections are layout wrappers – always visible */
.section { opacity: 1 !important; transform: none !important; visibility: visible !important; }

.audio-toggle-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(10, 14, 26, 0.88);
    border: 2px solid var(--green-cta);
    border-radius: 30px;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.4);
    transition: var(--transition);
}

.audio-toggle-badge:hover, .audio-toggle-badge.active {
    background: var(--green-cta);
    box-shadow: var(--shadow-glow-green);
    transform: scale(1.05);
}

/* ==================== 100/10 MOBILE OPTIMIZATION ==================== */
@media (max-width: 1024px) {
    .hero-split-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-center { display: none; }
    .news-grid { grid-template-columns: 1fr; }
    .ms-footer-links-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .section-grid.two-col { grid-template-columns: 1fr; }
    .info-grid.four-col { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-bar { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .calc-results-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

/* HAMBURGER BUTTON & MOBILE NAV OVERLAY */
.mobile-hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-card);
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
}

.mobile-hamburger-btn span {
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: var(--transition);
}

/* STRICT MOBILE ZERO HORIZONTAL SWIPING / OVERFLOW PROTECTION */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    position: relative;
}

.top-nav, header, main, section, footer, .ticker-wrap {
    box-sizing: border-box !important;
}

@media (min-width: 901px) {
    .top-nav-container {
        max-width: 1240px !important;
        margin: 0 auto !important;
        padding: 0 24px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
    }

    .container {
        max-width: 1100px !important;
        margin: 0 auto !important;
        padding: 0 20px !important;
    }
}

@media (max-width: 1024px) {
    .top-nav-center {
        display: none !important;
    }
}

@media (max-width: 900px) {
    .container, .top-nav-container {
        max-width: 100vw !important;
        padding: 0 12px !important;
    }

    .top-nav-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 8px !important;
        flex-wrap: nowrap !important;
        position: relative !important;
    }

    .top-nav-left {
        display: flex !important;
        align-items: center !important;
        flex-shrink: 1 !important;
        min-width: 0 !important;
        overflow: hidden !important;
    }

    .nav-logo-badge {
        font-size: 12px !important;
        gap: 4px !important;
        white-space: nowrap !important;
    }

    .nav-logo-divider, .nav-brand {
        display: none !important;
    }

    .top-nav-right {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        flex-shrink: 0 !important;
        margin-left: auto !important;
    }

    .lang-selector select {
        padding: 4px 6px !important;
        font-size: 11px !important;
        max-width: 78px !important;
        border-radius: 12px !important;
        background: rgba(13, 18, 37, 0.95) !important;
        color: #ffffff !important;
    }
}

/* VORSPRUNG CATEGORIES MODULE (Image 2 - 10/10 Ultra Design) */
.vorsprung-box {
    background: linear-gradient(135deg, rgba(13, 18, 37, 0.95) 0%, rgba(10, 14, 26, 0.98) 100%) !important;
    border: 1.5px solid rgba(76, 175, 80, 0.4) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(76, 175, 80, 0.2) !important;
    border-radius: 20px !important;
    padding: 32px 24px !important;
}

.vorsprung-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 900;
    color: #ffd700 !important;
    letter-spacing: 0.5px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    margin-bottom: 8px;
}

.vorsprung-sub {
    font-size: 13px;
    color: #ffffff !important;
    opacity: 0.95;
    line-height: 1.6;
    margin-bottom: 24px;
}

.vorsprung-categories {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.v-cat-pill {
    padding: 16px 20px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: var(--transition);
}

.v-cat-pill:hover {
    transform: translateY(-2px);
}

.v-cat-pill.red {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.22) 0%, rgba(185, 28, 28, 0.1) 100%) !important;
    border: 1.5px solid rgba(239, 68, 68, 0.6) !important;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.25) !important;
}

.v-cat-pill.green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.22) 0%, rgba(21, 128, 61, 0.1) 100%) !important;
    border: 1.5px solid rgba(34, 197, 94, 0.6) !important;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.25) !important;
}

.v-cat-pill.blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.22) 0%, rgba(29, 78, 216, 0.1) 100%) !important;
    border: 1.5px solid rgba(59, 130, 246, 0.6) !important;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.25) !important;
}

.v-cat-pill.purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.22) 0%, rgba(126, 34, 206, 0.1) 100%) !important;
    border: 1.5px solid rgba(168, 85, 247, 0.6) !important;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.25) !important;
}

.v-cat-pill.white {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15) !important;
}

.v-cat-tag {
    font-size: 13px;
    font-weight: 900;
    color: #ffffff !important;
    letter-spacing: 0.5px;
}

.v-cat-desc {
    font-size: 12px;
    color: #ffffff !important;
    opacity: 0.95;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: 1fr !important;
        padding: 14px !important;
        gap: 12px !important;
    }
    .product-item-card {
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .top-nav {
        position: sticky;
        top: 0;
        z-index: 1000;
        padding: 6px 0;
        background: rgba(10, 14, 26, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
    .top-nav-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 6px !important;
        width: 100%;
        gap: 4px !important;
    }
    .top-nav-left { display: flex; align-items: center; flex-shrink: 1; min-width: 0; }
    .nav-logo-badge { display: flex; align-items: center; gap: 4px; }
    .nav-logo-badge span { font-size: 11px !important; font-weight: 800; white-space: nowrap; }
    .nav-logo-divider { margin: 0 3px !important; opacity: 0.5; }
    .top-nav-center { display: none !important; }
    .mobile-hamburger-btn { display: none !important; }
    .top-nav-right { display: flex; align-items: center; gap: 4px !important; flex-shrink: 0; }
    
    .theme-switcher-container {
        padding: 2px !important;
        gap: 2px !important;
    }
    .theme-btn {
        padding: 4px 6px !important;
        font-size: 10.5px !important;
    }
    .theme-btn .theme-text {
        font-size: 10px !important;
    }

    .lang-selector select {
        padding: 4px 6px !important;
        font-size: 10.5px !important;
        border-radius: 8px !important;
        background: rgba(13, 18, 37, 0.95) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        color: #ffffff !important;
        max-width: 65px !important;
    }
    
    .nav-cta-btn {
        padding: 6px 10px !important;
        font-size: 10.5px !important;
        font-weight: 800 !important;
        border-radius: 14px !important;
        white-space: nowrap !important;
        letter-spacing: 0.2px;
        flex-shrink: 0;
    }
    
    .desktop-cta-text { display: none !important; }
    .mobile-cta-text { display: inline-block !important; }

    .container { padding: 0 14px; }
    .ms-footer-links-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .hero { padding: 14px 0 20px; }
    .hero-title-main { font-size: 23px; line-height: 1.25; font-weight: 900; letter-spacing: -0.5px; }
    .hero-title-sub { font-size: 13px; line-height: 1.4; margin-top: 6px; }
    .hero-description { font-size: 13px; line-height: 1.5; margin-bottom: 14px; color: #ffffff; opacity: 0.95; }
    
    /* Input Zoom Prevention & Premium Form Fields on Mobile */
    input[type="text"], input[type="email"], input[type="tel"], select, textarea {
        font-size: 16px !important;
        padding: 13px 14px;
        border-radius: 10px;
    }

    .hero-full-form-card {
        padding: 22px 16px;
        background: #ffffff !important;
        border: 1.5px solid #e2e8f0 !important;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22), 0 0 25px rgba(0, 0, 0, 0.08) !important;
        border-radius: 16px;
    }

    .hero-full-form-card input[type="text"],
    .hero-full-form-card input[type="email"],
    .hero-full-form-card input[type="tel"],
    .hero-full-form-card select,
    .hero-full-form-card textarea {
        background: #ffffff !important;
        color: #0f172a !important;
        -webkit-text-fill-color: #0f172a !important;
        border: 1.5px solid #cbd5e1 !important;
        font-weight: 600 !important;
    }

    .hero-full-form-card input:focus,
    .hero-full-form-card select:focus,
    .hero-full-form-card textarea:focus {
        background: #ffffff !important;
        color: #0f172a !important;
        -webkit-text-fill-color: #0f172a !important;
        border-color: #16a34a !important;
        box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15) !important;
    }

    .modal-card input,
    .form-container input {
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
        background: rgba(13, 18, 37, 0.95) !important;
        border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
    }
    
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 0;
        padding: 0;
        gap: 8px;
        background: transparent !important;
        border: none !important;
    }
    .stat-value { font-size: 20px; font-weight: 900; color: #0f172a !important; }
    .stat-suffix { font-size: 14px; }
    .stat-label { font-size: 11px; color: #475569 !important; font-weight: 600; }
    .stat-label small { color: #64748b !important; }
    
    .section { padding: 32px 0; }
    .section-title { font-size: 19px; font-weight: 900; line-height: 1.3; }
    .section-subtitle { font-size: 13px; margin-bottom: 16px; color: #ffffff; opacity: 0.95; }

    /* Steps Grid 1-Col Mobile */
    .steps-grid { grid-template-columns: 1fr; gap: 12px; }
    .step-card { padding: 18px 16px; border: 1px solid rgba(255, 255, 255, 0.12); background: rgba(10, 14, 26, 0.8); }

    /* Expect Grid 1-Col Mobile */
    .expect-grid { grid-template-columns: 1fr; gap: 12px; }
    .expect-card { padding: 18px 14px; border: 1px solid rgba(255, 255, 255, 0.12); background: rgba(10, 14, 26, 0.8); }

    /* Informationsvorsprung Mobile */
    .vorsprung-box { padding: 18px 14px; border: 1px solid rgba(76, 175, 80, 0.35); background: rgba(10, 14, 26, 0.85); }
    .v-cat-pill { flex-direction: column; align-items: flex-start; gap: 4px; padding: 10px 14px; }
    .v-cat-tag { min-width: 0; font-size: 11px; font-weight: 800; }

    /* Countdown Mobile Clock */
    .countdown-banner { padding: 20px 14px; background: rgba(10, 14, 26, 0.88); border: 1.5px solid rgba(76, 175, 80, 0.4); }
    .countdown-clock { gap: 6px; }
    .clock-unit { padding: 10px 8px; min-width: 62px; background: rgba(255, 255, 255, 0.06); }
    .clock-val { font-size: 22px; font-weight: 900; }
    .clock-label { font-size: 9px; color: #ffffff; opacity: 0.9; }
    .clock-colon { font-size: 18px; }

    .transparency-grid { padding: 18px 14px; background: rgba(10, 14, 26, 0.85); }
    .transparency-list li { font-size: 13px; gap: 10px; color: #ffffff; }

    .prognose-full-wrap { padding: 18px 14px !important; }
    .prognose-item-card { padding: 14px 16px; }
    .prog-badge { font-size: 13.5px; }
    .prog-val { font-size: 14.5px; }
    .prog-desc { font-size: 12px; }
    .form-container { padding: 18px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .radio-label, .checkbox-label { font-size: 12px; padding: 10px 12px; color: #ffffff; }
}

@media (max-width: 480px) {
    .ms-footer-links-grid { grid-template-columns: 1fr; }
    .hero-title-main { font-size: 21px; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .info-grid.four-col { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
}

/* ==================== INSTANT THEME SWITCHING (CLASS & ATTRIBUTE BASED) ==================== */
body.theme-white .hero-full-form-card,
[data-theme="white"] .hero-full-form-card {
    background: #ffffff !important;
    border: 1.5px solid #e2e8f0 !important;
    color: #0f172a !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
}
body.theme-white .hero-full-form-card .hero-card-title,
[data-theme="white"] .hero-full-form-card .hero-card-title { color: #0f172a !important; }
body.theme-white .hero-full-form-card .hero-card-subtitle,
[data-theme="white"] .hero-full-form-card .hero-card-subtitle { color: #475569 !important; text-shadow: none !important; }
body.theme-white .hero-full-form-card .bull-mini-badge,
[data-theme="white"] .hero-full-form-card .bull-mini-badge {
    background: #f8fafc !important;
    border: 1.5px solid #d97706 !important;
}
body.theme-white .hero-full-form-card .bull-text,
[data-theme="white"] .hero-full-form-card .bull-text { color: #b45309 !important; }
body.theme-white .hero-full-form-card .dsgvo-mini-badge,
[data-theme="white"] .hero-full-form-card .dsgvo-mini-badge { color: #475569 !important; }
body.theme-white .hero-full-form-card .reg-process-steps,
[data-theme="white"] .hero-full-form-card .reg-process-steps { background: #f1f5f9 !important; border: 1px solid #e2e8f0 !important; }
body.theme-white .hero-full-form-card .form-group label,
[data-theme="white"] .hero-full-form-card .form-group label { color: #0f172a !important; }
body.theme-white .hero-full-form-card .form-group input,
body.theme-white .hero-full-form-card .form-group select,
[data-theme="white"] .hero-full-form-card .form-group input,
[data-theme="white"] .hero-full-form-card .form-group select {
    background: #f8fafc !important;
    border: 1.5px solid #cbd5e1 !important;
    color: #0f172a !important;
}
body.theme-white .hero-full-form-card .form-group input::placeholder,
[data-theme="white"] .hero-full-form-card .form-group input::placeholder { color: #94a3b8 !important; }
body.theme-white .hero-full-form-card .radio-label,
body.theme-white .hero-full-form-card .checkbox-label,
[data-theme="white"] .hero-full-form-card .radio-label,
[data-theme="white"] .hero-full-form-card .checkbox-label {
    background: #f8fafc !important;
    border: 1.5px solid #e2e8f0 !important;
    color: #0f172a !important;
}
body.theme-white .hero-full-form-card .radio-label:hover,
body.theme-white .hero-full-form-card .checkbox-label:hover,
[data-theme="white"] .hero-full-form-card .radio-label:hover,
[data-theme="white"] .hero-full-form-card .checkbox-label:hover {
    background: #f1f5f9 !important;
}
body.theme-white .hero-full-form-card .form-subnote,
[data-theme="white"] .hero-full-form-card .form-subnote { color: #64748b !important; }

/* 2. Dual Stats-Bars */
body.theme-white .stats-bar-container,
[data-theme="white"] .stats-bar-container {
    background: #ffffff !important;
    border: 1.5px solid #e2e8f0 !important;
    color: #0f172a !important;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1) !important;
}
body.theme-white .stats-bar-container.openai-bar,
[data-theme="white"] .stats-bar-container.openai-bar { border-top: 4px solid #7FBA00 !important; }
body.theme-white .stats-bar-container.microsoft-bar,
[data-theme="white"] .stats-bar-container.microsoft-bar { border-top: 4px solid #00A4EF !important; }
body.theme-white .stats-bar-header-tag,
[data-theme="white"] .stats-bar-header-tag { color: #0f172a !important; }
body.theme-white .stats-bar .stat-item,
[data-theme="white"] .stats-bar .stat-item {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
}
body.theme-white .stats-bar .stat-item:hover,
[data-theme="white"] .stats-bar .stat-item:hover {
    background: #ffffff !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06) !important;
}
body.theme-white .stat-value,
[data-theme="white"] .stat-value { color: #0f172a !important; }
body.theme-white .stat-label,
[data-theme="white"] .stat-label { color: #475569 !important; }
body.theme-white .stat-label small,
[data-theme="white"] .stat-label small { color: #64748b !important; }

/* 3. Press Trust Bar */
body.theme-white .press-trust-bar,
[data-theme="white"] .press-trust-bar {
    background: #ffffff !important;
    border: 1.5px solid #e2e8f0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}
body.theme-white .press-trust-bar .press-trust-heading,
[data-theme="white"] .press-trust-bar .press-trust-heading { color: #0f172a !important; }

/* 4. Produkte & Services Grid & Cards */
body.theme-white #produkte .products-grid,
[data-theme="white"] #produkte .products-grid {
    background: #ffffff !important;
    border: 1.5px solid #e2e8f0 !important;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08) !important;
}
body.theme-white #produkte .product-item-card,
[data-theme="white"] #produkte .product-item-card {
    background: #f8fafc !important;
    border: 1.5px solid #e2e8f0 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
}
body.theme-white #produkte .product-item-card:hover,
[data-theme="white"] #produkte .product-item-card:hover {
    background: #ffffff !important;
    border-color: #00A4EF !important;
    box-shadow: 0 8px 24px rgba(0, 164, 239, 0.15) !important;
}
body.theme-white #produkte .prod-name,
[data-theme="white"] #produkte .prod-name { color: #0f172a !important; font-weight: 800 !important; }
body.theme-white #produkte .prod-desc,
[data-theme="white"] #produkte .prod-desc { color: #475569 !important; }

/* 5. Kontaktformular */
body.theme-white #kontakt .glass-card,
body.theme-white #kontakt .contact-form-card,
[data-theme="white"] #kontakt .glass-card,
[data-theme="white"] #kontakt .contact-form-card {
    background: #ffffff !important;
    border: 1.5px solid #e2e8f0 !important;
    color: #0f172a !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1) !important;
}
body.theme-white #kontakt label,
[data-theme="white"] #kontakt label { color: #0f172a !important; font-weight: 700 !important; }
body.theme-white #kontakt input,
body.theme-white #kontakt textarea,
[data-theme="white"] #kontakt input,
[data-theme="white"] #kontakt textarea {
    background: #f8fafc !important;
    border: 1.5px solid #cbd5e1 !important;
    color: #0f172a !important;
}
body.theme-white #kontakt input::placeholder,
body.theme-white #kontakt textarea::placeholder,
[data-theme="white"] #kontakt input::placeholder,
[data-theme="white"] #kontakt textarea::placeholder { color: #94a3b8 !important; }
body.theme-white #kontakt .radio-label,
[data-theme="white"] #kontakt .radio-label {
    background: #f8fafc !important;
    border: 1.5px solid #e2e8f0 !important;
    color: #0f172a !important;
}

/* 6. Warum OpenAI / Chancen & Vergleich Cards */
body.theme-white #chancen .chancen-left,
[data-theme="white"] #chancen .chancen-left {
    background: #ffffff !important;
    border: 1.5px solid #e2e8f0 !important;
    color: #0f172a !important;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08) !important;
}
body.theme-white #chancen .chancen-list li,
[data-theme="white"] #chancen .chancen-list li {
    color: #0f172a !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
}
body.theme-white #chancen .chancen-chart-card,
[data-theme="white"] #chancen .chancen-chart-card {
    background: #ffffff !important;
    border: 1.5px solid #e2e8f0 !important;
    color: #0f172a !important;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08) !important;
}
body.theme-white #chancen .chart-box-title,
[data-theme="white"] #chancen .chart-box-title { color: #0f172a !important; }
body.theme-white #chancen .chart-box-sub,
[data-theme="white"] #chancen .chart-box-sub { color: #475569 !important; }
body.theme-white #chancen .bar-val,
[data-theme="white"] #chancen .bar-val { color: #0f172a !important; }
body.theme-white #chancen .bar-year,
[data-theme="white"] #chancen .bar-year { color: #475569 !important; }
body.theme-white #chancen .glass-card,
[data-theme="white"] #chancen .glass-card {
    background: #ffffff !important;
    border: 1.5px solid #e2e8f0 !important;
    color: #0f172a !important;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08) !important;
}
body.theme-white #chancen .fact-card-ms,
[data-theme="white"] #chancen .fact-card-ms { border-top: 4px solid #00A4EF !important; }
body.theme-white #chancen .fact-card-oa,
[data-theme="white"] #chancen .fact-card-oa { border-top: 4px solid #7FBA00 !important; }
body.theme-white #chancen .fact-title,
[data-theme="white"] #chancen .fact-title { color: #0f172a !important; }
body.theme-white #chancen .fact-list,
[data-theme="white"] #chancen .fact-list { color: #334155 !important; }
body.theme-white #chancen .fact-list li,
[data-theme="white"] #chancen .fact-list li { color: #334155 !important; }

/* 7. Szenario-Rechner */
body.theme-white #rechner .calc-card,
[data-theme="white"] #rechner .calc-card {
    background: #ffffff !important;
    border: 1.5px solid #e2e8f0 !important;
    color: #0f172a !important;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1) !important;
}
body.theme-white #rechner .calc-title,
[data-theme="white"] #rechner .calc-title { color: #0f172a !important; }
body.theme-white #rechner .calc-subtitle,
[data-theme="white"] #rechner .calc-subtitle { color: #475569 !important; }
body.theme-white #rechner .calc-form label,
[data-theme="white"] #rechner .calc-form label { color: #0f172a !important; }
body.theme-white #rechner .calc-display-amount,
[data-theme="white"] #rechner .calc-display-amount {
    background: #f1f5f9 !important;
    border: 1.5px solid #cbd5e1 !important;
    color: #0f172a !important;
}
body.theme-white #rechner .preset-btn,
[data-theme="white"] #rechner .preset-btn {
    background: #f8fafc !important;
    border: 1.5px solid #cbd5e1 !important;
    color: #0f172a !important;
}
body.theme-white #rechner .preset-btn:hover,
[data-theme="white"] #rechner .preset-btn:hover { background: #e2e8f0 !important; }
body.theme-white #rechner .preset-btn.active,
[data-theme="white"] #rechner .preset-btn.active {
    background: #00A4EF !important;
    border-color: #00A4EF !important;
    color: #ffffff !important;
}
body.theme-white #rechner .calc-result-box,
[data-theme="white"] #rechner .calc-result-box {
    background: #f8fafc !important;
    border: 1.5px solid #e2e8f0 !important;
    color: #0f172a !important;
}
body.theme-white #rechner .result-label,
[data-theme="white"] #rechner .result-label { color: #475569 !important; }
body.theme-white #rechner .result-val,
[data-theme="white"] #rechner .result-val { color: #0f172a !important; }
body.theme-white #rechner .calc-disclaimer,
[data-theme="white"] #rechner .calc-disclaimer { color: #64748b !important; }

/* 8. Zukunfts-Prognose */
body.theme-white #prognose .prognose-full-wrap,
[data-theme="white"] #prognose .prognose-full-wrap {
    background: #ffffff !important;
    border: 1.5px solid #e2e8f0 !important;
    color: #0f172a !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08) !important;
}
body.theme-white #prognose .prognose-item-card,
[data-theme="white"] #prognose .prognose-item-card {
    background: #ffffff !important;
    border: 1.5px solid #e2e8f0 !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04) !important;
}
body.theme-white #prognose .prognose-item-card:hover,
[data-theme="white"] #prognose .prognose-item-card:hover {
    border-color: #00A4EF !important;
    box-shadow: 0 8px 24px rgba(0, 164, 239, 0.12) !important;
}
body.theme-white #prognose .prog-badge,
[data-theme="white"] #prognose .prog-badge {
    color: #0f172a !important;
}
body.theme-white #prognose .prog-badge-opti,
[data-theme="white"] #prognose .prog-badge-opti {
    color: #b45309 !important;
}
body.theme-white #prognose .prog-desc,
[data-theme="white"] #prognose .prog-desc {
    color: #475569 !important;
}
body.theme-white #prognose .prog-val-green,
[data-theme="white"] #prognose .prog-val-green {
    color: #16a34a !important;
}
body.theme-white #prognose .prog-val-gold,
[data-theme="white"] #prognose .prog-val-gold {
    color: #b45309 !important;
}
body.theme-white #prognose .brain-card,
[data-theme="white"] #prognose .brain-card {
    background: #f8fafc !important;
    border: 1.5px solid #e2e8f0 !important;
}

/* 9. Ablauf / 4 Schritte */
body.theme-white #ablauf .step-card,
[data-theme="white"] #ablauf .step-card {
    background: #ffffff !important;
    border: 1.5px solid #e2e8f0 !important;
    color: #0f172a !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06) !important;
}
body.theme-white #ablauf .step-card:hover,
[data-theme="white"] #ablauf .step-card:hover {
    border-color: #00A4EF !important;
    box-shadow: 0 14px 35px rgba(0, 164, 239, 0.12) !important;
}
body.theme-white #ablauf .step-number,
[data-theme="white"] #ablauf .step-number { color: #00A4EF !important; }
body.theme-white #ablauf .step-title,
[data-theme="white"] #ablauf .step-title { color: #0f172a !important; }
body.theme-white #ablauf .step-desc,
[data-theme="white"] #ablauf .step-desc { color: #475569 !important; }

