/* --- GLOBAL RESET & VARIABLEN --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}
html {
    scroll-behavior: smooth;
}

:root {
    --bg-main: #0b1120; 
    --bg-card: #1e293b; 
    --brand-orange: #ff6a00; 
    --brand-blue: #38bdf8; 
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 75px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.highlight {
    color: var(--brand-orange);
}

/* --- FIXIERTE COCKPIT-NAVIGATION --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 17, 32, 0.95); 
    border-bottom: 1px solid #1e293b;
    z-index: 1000;
    padding: 15px 0;
    backdrop-filter: blur(12px);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.nav-logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    letter-spacing: -0.5px;
}
.nav-logo span {
    color: var(--brand-orange);
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}
.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.2s ease;
}
.nav-links a:hover {
    color: var(--brand-orange);
}

/* --- CINEMATIC INTRO OVERLAY --- */
#cinematic-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #020617;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
}
.intro-text {
    text-align: center;
}
.logo-text {
    font-size: 4rem;
    font-weight: 900;
    opacity: 0;
    letter-spacing: -1px;
    animation: fadeInIntro 1s forwards 0.3s;
}
.logo-text .highlight {
    color: var(--brand-orange);
    text-shadow: 0 0 25px rgba(255,106,0,0.4);
}
.tagline {
    font-size: 1.4rem;
    color: var(--brand-blue);
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0;
    margin-top: 10px;
    animation: fadeInIntro 1s forwards 1.2s;
}
@keyframes fadeInIntro {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- BUTTONS --- */
.btn-main, .btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.2s ease;
    text-align: center;
    font-size: 0.95rem;
}
.btn-main {
    background: var(--brand-orange);
    color: #020617;
}
.btn-main:hover {
    background: #e65c00;
    box-shadow: 0 0 20px rgba(255,106,0,0.35);
    transform: translateY(-2px);
}
.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #334155;
}
.btn-secondary:hover {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
    transform: translateY(-2px);
}

/* --- WHATSAPP FLOATER --- */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    z-index: 999;
    transition: transform 0.2s ease;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}

/* --- HERO SECTION --- */
.hero {
    padding: 60px 0 100px 0;
    background: linear-gradient(135deg, #0b1120 0%, #0f172a 100%);
}
.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.hero-content {
    flex: 1.2;
}
.hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
}
.hero-content .subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 35px;
}
.check-list {
    list-style: none;
    margin-bottom: 40px;
}
.check-list li {
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}
.check-list i {
    color: var(--brand-orange);
    margin-right: 12px;
    font-size: 1.2rem;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.hero-image {
    flex: 0.8;
    text-align: right;
}
.hero-logo {
    max-width: 100%;
    width: 380px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

/* --- INDUSTRIAL TRUST BANNER --- */
.trust-banner {
    background: #020617;
    padding: 25px 20px;
    text-align: center;
    border-top: 1px solid #1e293b;
    border-bottom: 1px solid #1e293b;
}
.trust-banner p {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 15px;
}
.trust-logos {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    color: #cbd5e1;
    font-weight: 700;
    font-size: 1.15rem;
}
.trust-logos span {
    display: flex;
    align-items: center;
    gap: 12px;
}
.trust-logos i {
    color: var(--brand-orange);
}

/* --- PERFORMANCE STATS BAR --- */
.trust-bar {
    background: var(--bg-card);
    border-bottom: 1px solid #334155;
}
.stat {
    text-align: center;
    padding: 30px 10px;
}
.stat h3 {
    font-size: 2.8rem;
    color: var(--brand-orange);
    font-weight: 800;
    margin-bottom: 5px;
}
.stat p {
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 500;
}

/* --- GRIDS & CARDS ARCHITEKTUR --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.bg-level {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid #334155;
}
.card:hover {
    border-color: var(--brand-blue);
    transform: translateY(-8px);
}
.popular-border {
    border: 1px solid var(--brand-orange) !important;
    box-shadow: 0 10px 25px rgba(255,106,0,0.1);
}
.card i {
    font-size: 2.5rem;
    color: var(--brand-blue);
    margin-bottom: 20px;
}
.card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}
.card p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}
.level-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #334155;
    color: var(--brand-blue);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}
.premium-badge {
    background: rgba(255,106,0,0.1);
    color: var(--brand-orange);
}
.card-link {
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
}

/* --- PROFILE / STORY AREA --- */
.story-flex {
    display: flex;
    gap: 60px;
    align-items: center;
    background: var(--bg-card);
    padding: 50px;
    border-radius: 16px;
    border-left: 6px solid var(--brand-orange);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}
.profile-img {
    width: 100%;
    max-width: 340px;
    border-radius: 12px;
    border-bottom: 5px solid var(--brand-orange);
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
}
.story-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.story-content p {
    color: #cbd5e1;
    font-size: 1.05rem;
    margin-bottom: 15px;
}

/* --- 3D SHOWCASE / DRONE BOX CONTAINER --- */
.drone-box {
    background: #020617;
    border-radius: 16px;
    border: 1px solid var(--brand-blue);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}
#three-container canvas {
    display: block;
    border-radius: 16px;
    outline: none;
}

/* --- MATRIX COMPARISON AREA --- */
.vs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}
.vs-box {
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.vs-box h3 {
    margin-bottom: 25px;
    font-size: 1.6rem;
    font-weight: 800;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 12px;
}
.vs-box.bad {
    background: rgba(63, 26, 26, 0.4);
    border: 1px solid #ef4444;
}
.vs-box.bad h3 { color: #ef4444; }
.vs-box.bad i { color: #ef4444; margin-right: 12px; }

.vs-box.good {
    background: rgba(6, 78, 59, 0.4);
    border: 1px solid #10b981;
}
.vs-box.good h3 { color: #10b981; }
.vs-box.good i { color: #10b981; margin-right: 12px; }

.vs-box ul { list-style: none; }
.vs-box li {
    margin-bottom: 18px;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
}

/* --- CINEMATIC VIDEO INTERFACE --- */
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    padding-bottom: 56.25%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 25px 55px rgba(0,0,0,0.7);
    border: 1px solid #1e293b;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- PACKETS / PRICING ENGINE --- */
.pricing-grid {
    margin-bottom: 40px;
}
.price-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #334155;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease;
}
.price-card:hover {
    transform: scale(1.02);
}
.price-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
}
.price {
    font-size: 3.2rem;
    font-weight: 800;
    margin: 20px 0;
    color: white;
    letter-spacing: -1px;
}
.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}
.price-card ul {
    list-style: none;
    margin-bottom: 35px;
    flex-grow: 1;
}
.price-card li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    color: #cbd5e1;
}
.price-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-orange);
    font-weight: 900;
}
.price-card.popular {
    border-color: var(--brand-orange);
    background: #f8fafc;
    color: #0f172a;
}
.price-card.popular h3, .price-card.popular .price {
    color: #0f172a;
}
.price-card.popular li {
    color: #334155;
}
.price-card.popular li::before {
    color: var(--brand-orange);
}
.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-orange);
    color: #020617;
    padding: 6px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    white-space: nowrap;
}
.price-card.premium {
    border-color: var(--brand-blue);
}

/* ENTERPRISE LOGISTICS BANNER */
.enterprise-banner {
    margin-top: 40px;
    padding: 40px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 12px;
    border: 1px solid var(--brand-orange);
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}
.enterprise-banner h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}
.enterprise-banner p {
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
}

/* --- KONTAKT SCHALTZENTRALE --- */
.contact-box {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 60px 40px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--brand-blue);
}
.contact-box h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}
.contact-box p {
    color: var(--text-muted);
    margin-bottom: 30px;
}
.contact-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* --- FOOTER LAYOUT --- */
footer {
    background: #020617;
    padding: 40px 0;
    border-top: 1px solid #1e293b;
}
.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}
footer h4 {
    margin-bottom: 15px;
    color: white;
    font-size: 1.1rem;
}
footer p {
    color: var(--text-muted);
    font-size: 0.95rem;
}
footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}
footer a:hover {
    color: white;
}

/* --- INDUSTRIAL POPUPS (MODALS) --- */
.modal {
    display: none !important; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.85);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}
.modal.active {
    display: flex !important;
}
.modal-content {
    background: #f8fafc;
    color: #0f172a;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 650px;
    max-height: 85vh;
    overflow-y: auto;
    border: 1px solid #e2e8f0;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}
.modal-content h3 {
    color: #020617;
    border-bottom: 3px solid var(--brand-orange);
    padding-bottom: 12px;
    margin-bottom: 20px;
    font-size: 1.7rem;
    font-weight: 800;
}
.modal-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #334155;
}
.modal-list {
    list-style: none;
    margin: 20px 0;
}
.modal-list li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #0f172a;
    font-weight: 500;
}
.modal-list i {
    color: var(--brand-orange);
    margin-right: 10px;
}
.modal-footnote {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 15px;
}
.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.modal-actions a {
    flex: 1;
    min-width: 160px;
}
.btn-close {
    background: #94a3b8;
    color: #020617;
    font-weight: 700;
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
}
.btn-close:hover {
    background: #64748b;
    color: white;
}

/* --- RECHTLICHES COOKIE BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: -120px;
    left: 0;
    width: 100%;
    background: #0f172a;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    border-top: 2px solid var(--brand-orange);
    z-index: 9998;
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner.show {
    bottom: 0;
}
.cookie-banner a {
    color: var(--brand-orange);
    text-decoration: underline;
}

/* --- FLEXIBLE RESPONSIVE QUERIES --- */
@media (max-width: 992px) {
    .hero-flex { flex-direction: column; text-align: center; gap: 40px; }
    .hero-image { text-align: center; }
    .hero-content h1 { font-size: 2.8rem; }
    .vs-grid { grid-template-columns: 1fr; }
    .price-card.popular { transform: none; }
    .price-card.popular:hover { transform: scale(1.02); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .story-flex { flex-direction: column; text-align: center; padding: 30px; }
    .trust-logos { gap: 20px; flex-direction: column; align-items: center; }
    .footer-grid { flex-direction: column; text-align: center; gap: 30px; }
    .cookie-banner { flex-direction: column; text-align: center; gap: 15px; }
}

/* ==========================================
   SABO CLOUD – Shared Design System
   ========================================== */
:root {
    --success-green: #10b981;
    --border: #334155;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes scan {
    0% { top: 0%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

@keyframes hero-grid-drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

@keyframes ai-scan-sweep {
    0% { top: -10%; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { top: 110%; opacity: 0; }
}

/* Cloud Sync Badge (Navbar + Hero) */
.cloud-sync-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 30px;
    font-family: 'Consolas', monospace;
    font-size: clamp(0.65rem, 1.8vw, 0.75rem);
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}
.cloud-sync-badge.badge-online {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.4);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}
.cloud-sync-badge.badge-simulated {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.4);
}

.nav-cloud-badge { margin-left: auto; margin-right: 20px; }
@media (max-width: 992px) {
    .nav-cloud-badge { display: none; }
}

/* Hero Enhancements */
.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(56, 189, 248, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 189, 248, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: hero-grid-drift 20s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.hero-system-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

/* Matrix / Telemetry (compact) */
.matrix-wrapper { display: flex; gap: 30px; align-items: stretch; flex-wrap: wrap; }
.matrix-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; margin: 0; width: 100%; flex: 1.5; }
.matrix-box {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid #1e293b;
    border-radius: 16px;
    padding: 30px 15px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
}
.matrix-box:hover { transform: translateY(-5px); border-color: #38bdf8; }
.ticker-num {
    font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem);
    font-weight: 900;
    color: white;
    font-family: 'Consolas', monospace;
    line-height: 1;
    margin-bottom: 10px;
}
.ticker-num.orange { color: #ff6a00; }
.ticker-num.blue { color: #38bdf8; }
.ticker-label { color: #94a3b8; font-size: clamp(0.7rem, 2vw, 0.85rem); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }

.terminal-container { flex: 1; width: 100%; min-width: 280px; }
.terminal-feed {
    font-family: 'Consolas', monospace;
    background: #020617;
    border: 1px solid #334155;
    border-radius: 16px;
    padding: 25px 20px;
    color: #10b981;
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.8), 0 15px 30px rgba(0,0,0,0.4);
}
.terminal-header {
    border-bottom: 1px dashed #334155;
    padding-bottom: 12px;
    margin-bottom: 15px;
    color: #38bdf8;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 0.9rem;
}
.terminal-feed p { margin: 6px 0; line-height: 1.4; }
.cursor {
    display: inline-block;
    width: 10px;
    height: 1.2em;
    background-color: #10b981;
    vertical-align: middle;
    animation: blink 1s step-end infinite;
}

.cloud-section-box {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(2, 6, 23, 0.9) 100%);
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    backdrop-filter: blur(12px);
}

/* 3D Digital Twin Showcase */
.digital-twin-section { padding-top: 0; }
.model-select-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}
.model-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid #1e293b;
    border-radius: 14px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    color: inherit;
    font-family: inherit;
}
.model-card:hover, .model-card.active {
    border-color: #38bdf8;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
    transform: translateY(-3px);
}
.model-card.active { border-color: #ff6a00; box-shadow: 0 0 20px rgba(255, 106, 0, 0.2); }
.model-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}
.model-card-placeholder {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
    border-radius: 8px;
    margin-bottom: 10px;
    color: #38bdf8;
    font-size: 2rem;
}
.model-card-name { display: block; color: white; font-weight: 700; font-size: 0.9rem; }
.model-card-date { display: block; color: #64748b; font-size: 0.75rem; margin-top: 4px; font-family: 'Consolas', monospace; }

.real-3d-wrapper {
    background: #000;
    border-radius: 20px;
    border: 1px solid #334155;
    box-shadow: 0 30px 60px rgba(0,0,0,0.7);
    height: clamp(400px, 50vh, 600px);
    width: 100%;
    overflow: hidden;
    position: relative;
    transition: background 0.3s ease;
}
.scan-line {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: rgba(56, 189, 248, 0.6);
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.9);
    animation: scan 3s linear infinite;
    z-index: 10;
    pointer-events: none;
}
.viewer-status-badge {
    position: absolute;
    top: 20px; left: 20px;
    font-family: 'Consolas', monospace;
    font-size: clamp(0.7rem, 2vw, 0.85rem);
    font-weight: bold;
    background: rgba(56, 189, 248, 0.15);
    border: 1px solid rgba(56, 189, 248, 0.5);
    color: #38bdf8;
    padding: 8px 12px;
    border-radius: 6px;
    backdrop-filter: blur(8px);
    z-index: 5;
    transition: all 0.3s ease;
}

/* SABO-KI Demo */
.ai-demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}
.ai-demo-terminal {
    background: #020617;
    border: 1px solid #334155;
    border-radius: 20px;
    padding: 30px;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.8);
}
.ai-demo-preview-box {
    position: relative;
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 16px;
    overflow: hidden;
    min-height: 280px;
    margin: 20px 0;
}
.ai-demo-preview-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}
.ai-demo-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.ai-demo-overlay.scanning::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 3px;
    background: rgba(255, 106, 0, 0.8);
    box-shadow: 0 0 20px rgba(255, 106, 0, 0.9);
    animation: ai-scan-sweep 2s linear infinite;
}
.ai-defect-marker {
    position: absolute;
    width: 40px; height: 40px;
    border: 2px solid #ef4444;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.2);
    animation: pulse-dot 1.5s infinite;
}
.ai-defect-marker span {
    position: absolute;
    bottom: -20px; left: 50%;
    transform: translateX(-50%);
    font-family: 'Consolas', monospace;
    font-size: 0.65rem;
    color: #ef4444;
    font-weight: 800;
    white-space: nowrap;
}

.pdf-teaser-console {
    background: #020617;
    border: 1px solid #334155;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 20px;
}
.pdf-teaser-header {
    background: #0f172a;
    border-bottom: 1px solid #1e293b;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Consolas', monospace;
    font-size: 0.8rem;
    color: #cbd5e1;
}
.pdf-teaser-frame { width: 100%; height: 350px; border: none; display: block; background: #0f172a; }
.report-select {
    margin-left: auto;
    background: #1e293b;
    color: white;
    border: 1px solid #334155;
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 0.75rem;
    font-family: 'Consolas', monospace;
}

.dsgvo-hint {
    font-size: 0.8rem;
    color: #64748b;
    font-family: 'Consolas', monospace;
    margin-top: 15px;
    padding: 10px 14px;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 8px;
    border-left: 3px solid #10b981;
}

/* Scroll Reveal */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .matrix-wrapper { flex-direction: column; }
    .ai-demo-grid { grid-template-columns: 1fr; }
    .model-select-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .model-select-grid { grid-template-columns: 1fr; }
    .real-3d-wrapper { min-height: 400px; }
}

/* ==========================================
   PREMIUM 3D SHOWCASE (Homepage only)
   ========================================== */
.showcase-section { padding-top: 0; }

.showcase-premium {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 0;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.85) 0%, rgba(2, 6, 23, 0.95) 100%);
    border: 1px solid rgba(51, 65, 85, 0.6);
    border-radius: 28px;
    overflow: hidden;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 106, 0, 0.06) inset,
        0 0 60px rgba(56, 189, 248, 0.04);
    backdrop-filter: blur(16px);
}

.showcase-copy {
    padding: clamp(40px, 5vw, 64px) clamp(32px, 4vw, 56px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(51, 65, 85, 0.4);
    position: relative;
}

.showcase-copy::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, #ff6a00, transparent 70%);
}

.showcase-eyebrow {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ff6a00;
    margin-bottom: 16px;
}

.showcase-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900;
    color: white;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.showcase-subtitle {
    color: #94a3b8;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 420px;
}

.showcase-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.showcase-features li {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.showcase-features i {
    color: #38bdf8;
    width: 18px;
    text-align: center;
}

.showcase-model-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.showcase-tab {
    background: rgba(2, 6, 23, 0.6);
    border: 1px solid #334155;
    color: #94a3b8;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.showcase-tab:hover {
    border-color: #38bdf8;
    color: white;
}

.showcase-tab.active {
    border-color: #ff6a00;
    color: #ff6a00;
    background: rgba(255, 106, 0, 0.08);
}

.showcase-cta {
    align-self: flex-start;
    max-width: 320px;
}

.showcase-viewer-col {
    background: #000;
    min-height: 480px;
    position: relative;
}

.showcase-viewer-frame {
    width: 100%;
    height: 100%;
    min-height: 480px;
    position: relative;
}

.showcase-viewer-frame model-viewer {
    width: 100%;
    height: 100%;
    min-height: 480px;
    background: #000;
    --poster-color: transparent;
}

.showcase-viewer-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(248, 250, 252, 0.7);
    background: rgba(2, 6, 23, 0.75);
    padding: 8px 14px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    z-index: 2;
    pointer-events: none;
}

@media (max-width: 992px) {
    .showcase-premium {
        grid-template-columns: 1fr;
    }
    .showcase-copy {
        border-right: none;
        border-bottom: 1px solid rgba(51, 65, 85, 0.4);
        text-align: center;
        align-items: center;
    }
    .showcase-copy::before {
        width: 100%; height: 4px;
        background: linear-gradient(90deg, #ff6a00, transparent 70%);
    }
    .showcase-subtitle { max-width: 100%; }
    .showcase-cta { align-self: center; width: 100%; max-width: 400px; }
    .showcase-viewer-col,
    .showcase-viewer-frame,
    .showcase-viewer-frame model-viewer {
        min-height: 400px;
    }
}