/* --- 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; }
}