/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a2e;
    background: #f7f7f8;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== UTILITIES ===== */
.container { max-width: 1140px; width: 100%; margin: 0 auto; padding: 0 24px; box-sizing: border-box; }
.section { padding: 100px 0; }
.section-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #6B1D2A;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #1a1a2e;
}
.section-subtitle {
    font-size: 17px;
    color: #555;
    max-width: 620px;
    line-height: 1.7;
    overflow-wrap: break-word;
}
.terrafox-intro > *,
.mbfd-intro > *,
.antenne-intro > *,
.about-content > * { min-width: 0; }
.slider-slide { overflow-wrap: break-word; }
.section-center { text-align: center; }
.section-center .section-subtitle { margin: 0 auto; }

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(247, 247, 248, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo {
    display: flex;
    align-items: center;
}
.nav-logo img {
    height: 32px;
    width: auto;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    transition: color 0.2s;
}
.nav-links a:hover { color: #6B1D2A; }
.nav-cta {
    background: #6B1D2A;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: #5e1523; transform: translateY(-1px); }
.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}
.nav-burger span {
    width: 24px;
    height: 2px;
    background: #1a1a2e;
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
    padding-top: 140px;
    padding-bottom: 100px;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(122,27,46,0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-text h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}
.hero-text h1 span { color: #6B1D2A; }
.hero-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
    background: #6B1D2A;
    color: #fff;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-primary:hover { background: #5e1523; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(122,27,46,0.25); }
.btn-secondary {
    background: #fff;
    color: #1a1a2e;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-secondary:hover { border-color: #6B1D2A; color: #6B1D2A; }
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero-visual > .video-wrapper { position: relative; z-index: 2; }
.kino-link {
    margin-top: 16px;
    font-size: 13px;
    font-weight: 600;
    color: #6B1D2A;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
    position: relative;
    transition: gap 0.2s;
}
.kino-link:hover { gap: 10px; }
.kino-link svg { width: 14px; height: 14px; }
.hero-mockup {
    width: 484px;
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    display: block;
    margin: 0 auto;
}
.hero-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(122,27,46,0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

/* ===== PRODUKTE ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.product-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.3s;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
}
.product-card:nth-child(1)::before { background: #6B1D2A; }
.product-card:nth-child(2)::before { background: #2d6a4f; }
.product-card:nth-child(3)::before { background: #e07a2f; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.product-icon {
    width: 68px;
    height: 68px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.product-card:nth-child(1) .product-icon { background: rgba(122,27,46,0.1); color: #6B1D2A; }
.product-card:nth-child(2) .product-icon { background: rgba(45,106,79,0.1); color: #2d6a4f; }
.product-card:nth-child(3) .product-icon { background: rgba(224,122,47,0.1); color: #e07a2f; }
.product-icon svg, .product-icon img { width: 40px; height: 40px; }
.product-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.product-card .product-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.product-card:nth-child(1) .product-tag { background: rgba(122,27,46,0.1); color: #6B1D2A; }
.product-card:nth-child(2) .product-tag { background: rgba(45,106,79,0.1); color: #2d6a4f; }
.product-card:nth-child(3) .product-tag { background: rgba(224,122,47,0.1); color: #e07a2f; }
.product-card p { font-size: 15px; color: #666; line-height: 1.7; margin-bottom: 24px; }
.product-link {
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}
.product-card:nth-child(1) .product-link { color: #6B1D2A; }
.product-card:nth-child(2) .product-link { color: #2d6a4f; }
.product-card:nth-child(3) .product-link { color: #e07a2f; }
.product-link:hover { gap: 10px; }

/* ===== TERRAFOX DETAIL ===== */
.terrafox-section { background: #fff; }
.terrafox-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.video-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    aspect-ratio: 16/9;
    width: 100%;
}
.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
    background: #000;
}
.highlight-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    background: #f7f7f8;
    border: 1px solid #eee;
}

/* ===== WORKFLOW / ABLAUF ===== */
.workflow-section { background: #f7f7f8; }
.workflow-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 48px;
    position: relative;
}
.workflow-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: linear-gradient(90deg, #6B1D2A, #2d6a4f, #e07a2f, #6B1D2A, #2d6a4f, #e07a2f);
    border-radius: 2px;
}
.workflow-step {
    text-align: center;
    position: relative;
    z-index: 2;
}
.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.3s;
}
.step-icon svg { width: 32px; height: 32px; color: #6B1D2A; }
.workflow-step:hover .step-icon {
    border-color: #6B1D2A;
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(122,27,46,0.15);
}
.workflow-step h4 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.workflow-step p { font-size: 12px; color: #777; line-height: 1.5; }
.workflow-tags {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.workflow-tag {
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid;
}
.workflow-tag:nth-child(1) { border-color: #6B1D2A; color: #6B1D2A; }
.workflow-tag:nth-child(2) { border-color: #2d6a4f; color: #2d6a4f; }
.workflow-tag:nth-child(3) { border-color: #e07a2f; color: #e07a2f; }

/* ===== FEATURE GRIDS ===== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.feature-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border: 1px solid #eee;
    transition: all 0.3s;
}
.feature-card:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.feature-card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: rgba(122,27,46,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B1D2A;
}
.feature-card-icon svg { width: 22px; height: 22px; }
.feature-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.feature-card p { font-size: 14px; color: #666; line-height: 1.6; }

/* ===== VORTEILE (Benefits) ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.benefit-card {
    background: #fff;
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}
.benefit-card:nth-child(1)::before, .benefit-card:nth-child(5)::before { background: #6B1D2A; }
.benefit-card:nth-child(2)::before, .benefit-card:nth-child(6)::before { background: #2d6a4f; }
.benefit-card:nth-child(3)::before, .benefit-card:nth-child(7)::before { background: #c9a227; }
.benefit-card:nth-child(4)::before, .benefit-card:nth-child(8)::before { background: #e07a2f; }
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.06); }
.benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.benefit-icon svg { width: 24px; height: 24px; }
.benefit-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.benefit-card p { font-size: 13px; color: #777; line-height: 1.6; }

/* ===== APP SECTION ===== */
.app-section { background: #fff; }
.app-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.app-card {
    background: #f7f7f8;
    border-radius: 16px;
    padding: 36px;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}
.app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}
.app-card:nth-child(1)::before { background: #6B1D2A; }
.app-card:nth-child(2)::before { background: #2d6a4f; }
.app-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.app-card h3 svg { width: 24px; height: 24px; color: #6B1D2A; }
.app-card ul { list-style: none; }
.app-card ul li {
    padding: 8px 0;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.app-card ul li::before {
    content: '\2192';
    color: #6B1D2A;
    font-weight: 700;
    flex-shrink: 0;
}
.app-hint {
    background: #f0f0f0;
    border-radius: 12px;
    padding: 20px 28px;
    margin-top: 24px;
    font-size: 14px;
    color: #555;
}
.app-hint strong { color: #1a1a2e; }

/* ===== MBFD SECTION ===== */
.mbfd-section { background: #fff; }
.mbfd-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.mbfd-mockup {
    display: flex;
    justify-content: center;
}
.mbfd-mockup img {
    width: 100%;
    max-width: 520px;
    height: auto;
}
.mbfd-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 1024px) {
    .mbfd-intro { grid-template-columns: 1fr; }
    .mbfd-cards { grid-template-columns: 1fr; }
}

/* ===== ANTENNE SECTION ===== */
.antenne-section {
    background: #fff;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}
.antenne-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.antenne-mockup {
    display: flex;
    justify-content: center;
}
.antenne-mockup img {
    width: 100%;
    max-width: 600px;
    height: auto;
}
.antenne-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.spec-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    border: 1px solid #eee;
    transition: all 0.3s;
}
.spec-card:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.spec-value {
    font-size: 36px;
    font-weight: 900;
    color: #6B1D2A;
    line-height: 1.1;
    margin-bottom: 8px;
}
.spec-label {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}
.spec-detail {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
}
@media (max-width: 1024px) {
    .antenne-intro { grid-template-columns: 1fr; }
    .antenne-specs { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .antenne-specs { grid-template-columns: 1fr; }
}

/* ===== TERRAFOX SLIDER ===== */
.terrafox-slider-section {
    background: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid #e8e8e8;
}
.terrafox-slider, .mbfd-slider { position: relative; outline: none; }
.slider-viewport { overflow: clip; }
.terrafox-slider .video-wrapper { box-shadow: none; }
.slider-track {
    display: flex;
    align-items: flex-start;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}
.slider-slide {
    flex: 0 0 100%;
    min-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 4px 4px 24px;
    box-sizing: border-box;
}
.slider-viewport { transition: height 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 36px;
}
.slider-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #d8d8d8;
    cursor: pointer;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: #888;
    padding: 0;
}
.slider-arrow:hover {
    background: #fff;
    color: #6B1D2A;
    border-color: #6B1D2A;
}
.slider-arrow svg { width: 14px; height: 14px; }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    background: #cfcfcf;
    cursor: pointer;
    transition: all 0.25s;
    padding: 0;
}
.slider-dot:hover { background: #888; }
.slider-dot.active {
    background: #6B1D2A;
    width: 20px;
    border-radius: 4px;
}
@media (max-width: 768px) {
    .terrafox-slider-section {
        min-height: auto;
        justify-content: flex-start;
    }
    .slider-track { align-items: flex-start; }
    .slider-slide { justify-content: flex-start; }
    .slider-viewport { transition: height 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
}

/* ===== LEISTUNGEN ===== */
.leistungen-section { background: #f7f7f8; }
.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.leistung-card {
    background: #fff;
    border-radius: 14px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s;
}
.leistung-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.06); }
.leistung-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(122,27,46,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #6B1D2A;
}
.leistung-icon svg { width: 28px; height: 28px; }
.leistung-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.leistung-card p { font-size: 14px; color: #666; line-height: 1.6; }

/* ===== ABOUT ===== */
.about-section { background: #fff; }
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}
.contact-card {
    background: #f7f7f8;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid #eee;
    text-align: center;
}
.contact-card-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #777;
    margin-bottom: 18px;
}
.contact-card-photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: 0 auto 18px;
    overflow: hidden;
    background: #fff;
    border: 3px solid #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.contact-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.contact-card-name {
    font-size: 19px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 4px;
}
.contact-card-role {
    font-size: 13px;
    font-weight: 600;
    color: #6B1D2A;
}
@media (max-width: 1024px) {
    .about-content { grid-template-columns: 1fr; max-width: 700px; }
}

/* ===== KONTAKT ===== */
.contact-section { background: #f7f7f8; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 48px;
}
.contact-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #eee;
}
.contact-info-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 24px; }
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: rgba(122,27,46,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B1D2A;
}
.contact-detail-icon svg { width: 20px; height: 20px; }
.contact-detail p { font-size: 15px; color: #555; }
.contact-detail strong { color: #1a1a2e; font-weight: 600; }
.contact-form {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #eee;
}
.contact-form h3 { font-size: 22px; font-weight: 800; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
    background: #fafafa;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #6B1D2A;
    background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
    width: 100%;
    padding: 14px;
    background: #6B1D2A;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}
.form-submit:hover { background: #5e1523; }

/* ===== KINO PAGE ===== */
.kino-page {
    background: #0a0a14;
    color: #fff;
    min-height: 100vh;
}
.kino-page body, body.kino-page { background: #0a0a14; color: #fff; }
.kino-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}
.kino-bar .nav-logo img {
    height: 28px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}
.kino-bar a.kino-back {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}
.kino-bar a.kino-back:hover { color: #fff; }
.kino-stage {
    padding: 40px 0 80px;
    text-align: center;
}
.kino-title {
    font-size: clamp(40px, 7vw, 84px);
    font-weight: 900;
    letter-spacing: 4px;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.05;
}
.kino-tagline {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255,255,255,0.7);
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.6;
}
.kino-video {
    max-width: 1140px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 120px rgba(122,27,46,0.3), 0 0 0 1px rgba(255,255,255,0.08);
    aspect-ratio: 16/9;
    background: #000;
}
.kino-video video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.kino-followup {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 80px 0 100px;
    text-align: center;
}
.kino-followup h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.2;
}
.kino-followup p {
    color: rgba(255,255,255,0.65);
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.7;
    font-size: 16px;
}
.kino-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.kino-actions .btn-primary {
    background: #6B1D2A;
    color: #fff;
}
.kino-actions .btn-primary:hover { background: #5e1523; }
.kino-actions .btn-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.25);
}
.kino-actions .btn-secondary:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255,255,255,0.05);
}
.kino-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 880px;
    margin: 56px auto 0;
}
.kino-link-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 24px 22px;
    text-align: left;
    transition: all 0.2s;
}
.kino-link-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.18);
    transform: translateY(-2px);
}
.kino-link-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.kino-link-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    margin: 0;
}
.kino-footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 32px 0;
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 13px;
}
.kino-footer a {
    color: rgba(255,255,255,0.55);
    margin: 0 10px;
    transition: color 0.2s;
}
.kino-footer a:hover { color: #fff; }
@media (max-width: 768px) {
    .kino-stage { padding: 24px 0 56px; }
    .kino-followup { padding: 56px 0 72px; }
    .kino-links-grid { grid-template-columns: 1fr; }
}

/* ===== LEGAL PAGES ===== */
.legal-section {
    padding-top: 140px;
    padding-bottom: 80px;
    background: #fff;
}
.legal-content {
    max-width: 820px;
    margin-top: 32px;
}
.legal-content h2 {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
    margin-top: 40px;
    margin-bottom: 14px;
}
.legal-content > h2:first-child { margin-top: 0; }
.legal-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin-top: 28px;
    margin-bottom: 10px;
}
.legal-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 14px;
}
.legal-content a {
    color: #6B1D2A;
    border-bottom: 1px solid currentColor;
}
.legal-content a:hover { color: #5e1523; }
.legal-content ul {
    margin-left: 24px;
    margin-bottom: 14px;
}
.legal-content ul li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 6px;
}
.legal-placeholder {
    display: inline-block;
    background: #fffbe6;
    color: #876800;
    border: 1px solid #f0e0a0;
    border-radius: 4px;
    padding: 1px 8px;
    font-size: 14px;
    font-style: italic;
}

/* ===== FOOTER ===== */
.footer {
    background: #1a1a2e;
    color: #aaa;
    padding: 48px 0;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-logo img {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}
.footer-links { display: flex; gap: 28px; }
.footer-links a {
    font-size: 14px;
    color: #aaa;
    transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 13px; width: 100%; text-align: center; margin-top: 24px; padding-top: 24px; border-top: 1px solid #2a2a3e; }

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    z-index: 999;
}
.mobile-menu.open { display: flex; flex-direction: column; gap: 16px; }
.mobile-menu a {
    font-size: 16px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text p { margin: 0 auto 36px; }
    .hero-buttons { justify-content: center; }
    .hero-visual { margin-top: 40px; }
    .products-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
    .terrafox-intro { grid-template-columns: 1fr; text-align: center; }
    .terrafox-intro .highlight-badges { justify-content: center; }
    .terrafox-intro .section-subtitle { margin-left: auto; margin-right: auto; }
    .hero-mockup { width: 320px; }
    .workflow-steps { grid-template-columns: repeat(3, 1fr); }
    .workflow-steps::before { display: none; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .leistungen-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .section { padding: 56px 0; }
    .section-label { font-size: 12px; letter-spacing: 2.5px; margin-bottom: 12px; }
    .section-title { margin-bottom: 16px; font-size: clamp(24px, 7.5vw, 32px); }
    .section-subtitle { font-size: 15px; line-height: 1.65; }
    .nav-links { display: none; }
    .nav-burger { display: flex; }
    .nav-inner { height: 64px; }
    .mobile-menu { top: 64px; }
    .hero { padding-top: 96px; padding-bottom: 48px; }
    .hero-content { gap: 32px; }
    .hero-text h1 { font-size: 32px; margin-bottom: 16px; }
    .hero-text p { font-size: 16px; margin-bottom: 28px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary { width: 100%; max-width: 320px; justify-content: center; text-align: center; padding: 14px 24px; }
    .hero-mockup { width: 260px; }
    .hero-visual::before { width: 280px; height: 280px; }
    .product-card { padding: 28px 24px; }
    .product-card h3 { font-size: 20px; }
    .terrafox-intro { gap: 32px; }
    .highlight-badges { gap: 8px; margin-top: 24px; }
    .badge { font-size: 12px; padding: 6px 12px; }
    .workflow-steps { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .step-icon { width: 64px; height: 64px; }
    .step-icon svg { width: 26px; height: 26px; }
    .feature-grid { grid-template-columns: 1fr; gap: 12px; }
    .feature-card { padding: 20px; gap: 14px; }
    .feature-card h4 { font-size: 15px; }
    .feature-card p { font-size: 13px; }
    .benefits-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .benefit-card { padding: 24px 16px; }
    .benefit-card h4 { font-size: 14px; }
    .benefit-card p { font-size: 12px; }
    .benefit-icon { width: 44px; height: 44px; margin-bottom: 12px; }
    .benefit-icon svg { width: 20px; height: 20px; }
    .app-cards { grid-template-columns: 1fr; gap: 16px; }
    .app-card { padding: 28px 24px; }
    .app-card h3 { font-size: 18px; }
    .app-card ul li { font-size: 13px; padding: 6px 0; }
    .app-hint { padding: 16px 20px; font-size: 13px; }
    .leistungen-grid { grid-template-columns: 1fr; gap: 16px; }
    .leistung-card { padding: 28px 24px; }
    .leistung-card h4 { font-size: 16px; }
    .contact-grid { gap: 24px; }
    .contact-info-card { padding: 28px 24px; }
    .contact-info-card h3 { font-size: 20px; margin-bottom: 20px; }
    .contact-form { padding: 28px 24px; }
    .contact-form h3 { font-size: 20px; margin-bottom: 20px; }
    .form-group { margin-bottom: 16px; }
    .footer { padding: 36px 0; }
    .footer-inner { flex-direction: column; text-align: center; gap: 16px; }
    .footer-links { justify-content: center; gap: 20px; flex-wrap: wrap; }
    .footer-copy { margin-top: 16px; padding-top: 16px; }
    .legal-section { padding-top: 96px; padding-bottom: 56px; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section { padding: 48px 0; }
    .hero { padding-top: 88px; padding-bottom: 40px; }
    .hero-text h1 { font-size: 28px; }
    .hero-text p { font-size: 15px; }
    .hero-mockup { width: 240px; }
    .benefits-grid { grid-template-columns: 1fr; }
    .workflow-steps { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
    .workflow-tags { gap: 8px; margin-top: 28px; }
    .workflow-tag { padding: 6px 16px; font-size: 12px; }
    .product-card { padding: 24px 20px; }
    .contact-detail { padding: 10px 0; }
    .contact-detail p { font-size: 14px; }
}
