/*
 * index.css – Komplettes Stylesheet der Startseite (index.html).
 *
 * Nur die Startseite laedt diese Datei; die Unterseiten nutzen shared.css.
 * Bis Juli 2026 lag dieses CSS inline im <style>-Block der index.html und
 * wurde unveraendert hierher ausgelagert (Reihenfolge der Regeln ist fuer
 * die Kaskade relevant – beim Umsortieren visuellen Diff laufen lassen!).
 */
:root {
    --primary-navy: #1a2332;
    --accent-gold: #c9a66b;
    --accent-gold-light: #d4b583;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --shadow: rgba(26, 35, 50, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Browser-Default-Linkfarbe (blau/lila) nur fuer klassenlose Links neutralisieren. Klassen-gestaltete Links (.menu-link, Buttons etc.) bleiben unangetastet. */
a:not([class]):link, a:not([class]):visited { color: inherit; }
/* Footer-Links in derselben Farbe wie der Copyright-Text. */
.site-footer .footer-col a:link, .site-footer .footer-col a:visited { color: rgba(255, 255, 255, 0.5); }

/* Header Section */
header {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #2c3e50 100%);
    padding: 0.25rem 0;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201, 166, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(201, 166, 107, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

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

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    margin: 0;
    letter-spacing: 1px;
    animation: fadeInDown 1s ease-out;
    text-transform: lowercase;
}

.logo-accent {
    color: var(--accent-gold);
}

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

/* Menu CSS is loaded from menu.js */

.tagline {
    font-size: 1rem;
    color: var(--accent-gold-light);
    font-weight: 300;
    position: relative;
    z-index: 1;
    animation: fadeIn 1s ease-out 0.3s backwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem;
}

/* Banner and CTA Wrapper */
.banner-cta-wrapper {
    margin-bottom: 1.2rem;
}

/* Banner Section */
.banner {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    animation: fadeIn 1s ease-out 0.5s backwards;
}

.banner-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 35%;
}

.banner-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
    background: linear-gradient(to left, rgba(26, 35, 50, 0.85), transparent);
}

.banner-text {
    color: white;
    font-size: 0.75rem;
    line-height: 1.4;
    text-align: right;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.banner-text strong {
    color: var(--accent-gold);
    font-weight: 600;
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.banner-btn {
    display: inline-block;
    margin-top: 0.6rem;
    padding: 0.45rem 1.2rem;
    background: var(--accent-gold);
    color: var(--primary-navy);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.7rem;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
    text-shadow: none;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.banner-btn:hover {
    background: white;
    color: var(--primary-navy);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(201, 166, 107, 0.4);
}

/* Desktop layout: Banner and CTAs side by side - exact height match */
@media (min-width: 769px) and (max-width: 1100px) {
    .banner-cta-wrapper {
        display: grid;
        grid-template-columns: 1fr 240px;
        gap: 1rem;
        align-items: stretch;
    }

    .cta-section {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .banner {
        overflow: hidden;
    }

    .banner picture {
        position: absolute;
        inset: 0;
        display: block;
    }

    .banner-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .banner-overlay {
        width: 65%;
        padding: 1.5rem;
    }

    .banner-text {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .banner-text strong {
        font-size: 1.15rem;
        margin-bottom: 0.4rem;
    }

    .banner-btn {
        font-size: 0.85rem;
        padding: 0.5rem 1.3rem;
        margin-top: 0.6rem;
    }
}

@media (min-width: 1101px) {
    .banner-cta-wrapper {
        display: grid;
        grid-template-columns: 1fr 320px;
        gap: 1.5rem;
        align-items: stretch;
    }

    .cta-section {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .banner {
        overflow: hidden;
    }

    .banner picture {
        position: absolute;
        inset: 0;
        display: block;
    }

    .banner-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .banner-overlay {
        padding: 2rem;
    }

    .banner-text {
        font-size: 1.2rem;
        line-height: 1.5;
    }

    .banner-text strong {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }
    
    .banner-btn {
        font-size: 0.9rem;
        padding: 0.55rem 1.6rem;
        margin-top: 0.8rem;
    }
}

/* Video Player Section */
.video-section {
    background: white;
    border-radius: 16px;
    padding: 1.2rem;
    box-shadow: 0 10px 40px var(--shadow);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.7s backwards;
}

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

/* Video Dropdown - Mobile only */
.video-dropdown-wrapper {
    display: none;
    margin-bottom: 0.8rem;
}

.video-dropdown {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-navy);
    background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a2332' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.video-dropdown:hover {
    background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
    border-color: var(--primary-navy);
}

.video-dropdown:focus {
    outline: none;
    border-color: var(--primary-navy);
    box-shadow: 0 0 0 3px rgba(201, 166, 107, 0.3);
}

/* Video Tabs - Aligned to video container left edge */
.video-tabs {
    display: flex;
    gap: 3px;
    margin-bottom: 0;
    flex-wrap: nowrap;
}

.video-tab {
    flex: 1 1 auto;
    padding: 0.7rem 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-navy), #2c3e50);
    color: white;
    border: none;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
    border-bottom: none;
    overflow: hidden;
    white-space: nowrap;
}

.video-tab:hover {
    background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
    color: var(--primary-navy);
    transform: translateY(-2px);
}

.video-tab.active {
    background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
    color: var(--primary-navy);
    border-color: var(--accent-gold);
    border-bottom: none;
}

.video-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gold);
}

/* Video Container - for tab alignment reference */
/* Demo thumbnail grid (overlay inside video-container) */
.demo-thumb-grid {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    gap: 4px;
    padding: 2% 3%;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    align-content: center;
    z-index: 5;
    box-sizing: border-box;
}

.demo-thumb-grid.active {
    display: grid;
}

.demo-thumb-grid.active .demo-thumb-item {
    animation: thumbFadeIn 0.4s ease forwards;
}

@keyframes thumbFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.demo-thumb-grid.active ~ .video-click-overlay,
.demo-thumb-grid.active ~ .play-overlay {
    display: none;
}

.demo-thumb-item {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    -webkit-tap-highlight-color: transparent;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.demo-thumb-item:hover {
    border-color: var(--accent-gold);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.demo-thumb-item:hover .demo-thumb-label {
    background: var(--accent-gold);
    color: var(--primary-navy);
}

.demo-thumb-item img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: contain;
    background: #000;
    display: block;
    border-radius: 6px 6px 0 0;
}

.demo-thumb-img-wrap {
    position: relative;
    line-height: 0;
}

.demo-thumb-img-wrap::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(20px, 24%, 56px);
    aspect-ratio: 1;
    background: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8,5 L8,19 L20,12 Z' fill='white' stroke='white' stroke-width='3' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
    pointer-events: none;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.75));
    transition: transform 0.2s ease;
    z-index: 3;
}

.demo-thumb-item:hover .demo-thumb-img-wrap::after {
    transform: translate(-50%, -50%) scale(1.15);
}

.video-close-btn {
    position: absolute;
    top: 3%;
    right: 3%;
    width: auto;
    height: auto;
    background: none;
    border: none;
    color: white;
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    cursor: pointer;
    z-index: 10;
    display: none;
    align-items: center;
    justify-content: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    transition: color 0.2s ease, transform 0.2s ease;
    line-height: 1;
}

.video-close-btn:hover {
    color: var(--accent-gold);
    transform: scale(1.15);
}

.video-close-btn.visible {
    display: flex;
}

.demo-thumb-label {
    padding: 5px 8px;
    background: var(--primary-navy);
    color: white;
    font-size: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 0 0 6px 6px;
    transition: background 0.2s ease, color 0.2s ease;
}

/* In-video download button (top-left, mirror of the close ×, same size) + menu */
.video-dl-btn {
    position: absolute;
    top: 3%;
    left: 3%;
    /* exact same box as the close × (its font-size), so size + vertical position match */
    width: clamp(1.8rem, 2.5vw, 2.5rem);
    height: clamp(1.8rem, 2.5vw, 2.5rem);
    border-radius: 50%;
    background: rgba(201, 166, 107, 0.78);
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}
.video-dl-btn.visible { display: flex; }
.video-dl-btn svg { width: 62%; height: 62%; fill: #fff; }
.video-dl-btn:hover { transform: scale(1.12); background: var(--accent-gold); }

.video-dl-menu {
    position: absolute;
    top: calc(3% + 2.9rem);
    left: 3%;
    background: var(--primary-navy);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    padding: 6px;
    display: none;
    z-index: 11;
    min-width: 190px;
}
.video-dl-menu.open { display: block; }
.video-dl-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    border-radius: 6px;
}
.video-dl-item svg { width: 18px; height: 18px; fill: var(--accent-gold); flex: none; }
.video-dl-item:hover { background: rgba(255, 255, 255, 0.1); }

@keyframes dlPulseRing {
    0%   { transform: scale(1); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}
.dl-pulse-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(201, 166, 107, 0.9);
    pointer-events: none;
    animation: dlPulseRing 1.1s ease-out forwards;
}

.video-container {
    position: relative;
    width: 100%;
    max-height: 70vh;
    margin: 0 auto;
    background: #000;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.video-container video {
    width: 100%;
    height: 100%;
    max-height: 70vh;
    aspect-ratio: 16/9;
    object-fit: contain;
    display: block;
}


/* Mobile layout wrapper - hidden on desktop */
.video-mobile-layout {
    display: block;
    margin: 0 auto;
}

/* Mobile category list - hidden on desktop */
.mobile-category-list {
    display: none;
}

video {
    width: 100%;
    display: block;
}

/* Custom Play Button Overlay */
.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: rgba(201, 166, 107, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.play-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--accent-gold);
    box-shadow: 0 6px 20px rgba(201, 166, 107, 0.5);
}

.play-overlay::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 27px solid var(--primary-navy);
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    margin-left: 6px;
}

.play-overlay.hidden {
    display: none;
}

/* Click-anywhere overlay */
.video-click-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
    z-index: 5;
}

.video-click-overlay.hidden {
    display: none;
}

/* CTA Cards - Side column */
.cta-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-card {
    background: white;
    border-radius: 12px;
    padding: 1.2rem;
    box-shadow: 0 4px 20px var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.cta-card:hover::before {
    transform: scaleX(1);
}

.cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(26, 35, 50, 0.2);
}

.cta-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
}

.cta-icon {
    font-size: 1.3rem;
    line-height: 1;
}

.cta-card h3, .cta-card .cta-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: var(--primary-navy);
    margin: 0;
    font-weight: 500;
    line-height: 1;
}

.cta-card p {
    color: #666;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cta-btn {
    display: inline-block;
    width: 100%;
    padding: 0.8rem 1.5rem;
    background: var(--primary-navy);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(26, 35, 50, 0.2);
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.cta-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-navy);
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(201, 166, 107, 0.4);
}

.cta-btn.secondary {
    background: var(--accent-gold);
    color: var(--primary-navy);
}

.cta-btn.secondary:hover {
    background: var(--primary-navy);
    color: white;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.modal-close {
    position: sticky;
    top: 0;
    float: right;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    transition: var(--transition);
    line-height: 1;
    padding: 0;
    width: 44px;
    height: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    margin-top: -0.5rem;
    margin-right: -0.5rem;
    margin-bottom: -1.5rem;
}

.modal-close:hover {
    color: var(--primary-navy);
    transform: rotate(90deg);
}

.modal h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}
.form-group.form-group-compact {
    margin-bottom: 0.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-navy);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(201, 166, 107, 0.1);
}

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

.form-group input[type="file"] {
    display: none;
}

.drop-zone {
    width: 100%;
    padding: 1.2rem 1rem;
    border: 2px dashed rgba(255,255,255,0.3);
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    color: #aaa;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: 0.9rem;
}

.drop-zone:hover {
    border-color: var(--accent-gold);
    background: rgba(201, 166, 107, 0.1);
}

.drop-zone.dragover {
    border-color: var(--accent-gold);
    background: rgba(201, 166, 107, 0.15);
    color: var(--accent-gold);
}

.drop-zone .drop-zone-text::before {
    content: '📄 ';
}

.drop-zone.has-file {
    border-color: rgba(201, 166, 107, 0.5);
    color: #ccc;
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-navy);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
}

.submit-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 166, 107, 0.4);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.ai-loading {
    display: none;
    text-align: center;
    padding: 2rem 1rem;
}

.ai-loading.show {
    display: block;
}

.ai-loading .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(201, 166, 107, 0.2);
    border-top-color: var(--accent-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

.ai-loading .loading-text {
    color: #999;
    font-size: 0.95rem;
}

.submit-info {
    text-align: center;
    color: #999;
    font-size: 0.8rem;
    margin-top: 0.75rem;
    line-height: 1.4;
}

.success-message,
.error-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: none;
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.success-message.show,
.error-message.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Content Sections */
.content-section {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 40px var(--shadow);
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 1rem;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 2rem;
    font-weight: 400;
    text-align: center;
}

.section-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

/* Nutzungsrechte */
#preise {
    padding-top: 2rem;
}

#prozess .section-subtitle,
#preise .section-subtitle {
    font-size: 0.9rem;
}

#preise .section-subtitle {
    margin-bottom: 0.5rem;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.rights-card {
    background: white;
    border-radius: 12px;
    padding: 1.2rem 1.2rem;
    text-align: left;
    transition: var(--transition);
    border: 1px solid #e8e8e8;
    border-left: 3px solid var(--accent-gold);
}

.rights-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px var(--shadow);
}

.rights-card h4, .rights-card .rights-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    color: var(--primary-navy);
    margin-bottom: 0.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rights-h4-icon {
    color: var(--accent-gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.rights-card p {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.5;
}

.rights-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    justify-content: center;
}

.rights-btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.rights-btn-primary {
    background: var(--accent-gold);
    color: var(--primary-navy);
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

@media (pointer: fine) {
    .rights-btn-primary:hover {
        background: var(--primary-navy);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(26, 35, 50, 0.3);
    }
}

.rights-btn-secondary {
    background: transparent;
    color: var(--primary-navy);
    border: 1.5px solid var(--primary-navy);
}

.rights-btn-secondary:hover {
    background: var(--primary-navy);
    color: white;
    transform: translateY(-2px);
}

/* Pricing Tables */
.pricing-section {
    margin-top: 2.5rem;
}

.pricing-inclusive {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.2rem 1.8rem;
    margin-bottom: 2rem;
    border-left: 3px solid var(--accent-gold);
}

.pricing-inclusive-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.7rem;
}

.pricing-inclusive-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1.8rem;
}

.pricing-inclusive-list li {
    font-size: 0.84rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.pricing-inclusive-list li::before {
    content: '✓';
    color: var(--accent-gold);
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-col {
    border-radius: 12px;
    border: 1px solid var(--accent-gold);
    box-shadow: 0 4px 20px rgba(201, 166, 107, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-col-head {
    padding: 1.3rem 1.3rem 1rem;
    background: linear-gradient(135deg, #fdf8f0 0%, #faf3e8 100%);
    border-bottom: 1px solid rgba(201, 166, 107, 0.3);
}

.pricing-badge {
    display: inline-block;
    padding: 0.22rem 0.65rem;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.pricing-badge--passive,
.pricing-badge--active,
.pricing-badge--audio {
    background: var(--accent-gold);
    color: var(--primary-navy);
}

.pricing-col-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.35rem;
}

@media (max-width: 768px) {
    .pricing-buyout-tag { display: block; }
}

.pricing-col-desc {
    font-size: 0.76rem;
    color: #aaa;
    line-height: 1.5;
    margin: 0;
    min-height: 4.5em;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    flex: 1;
}

.pricing-table thead th {
    background: var(--primary-navy);
    color: rgba(255,255,255,0.85);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.45rem 1rem;
    text-align: left;
}

.pricing-table thead th:last-child {
    text-align: right;
}

.pricing-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
}

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

.pricing-table tbody td {
    padding: 0.6rem 1rem;
    font-size: 0.84rem;
    color: #444;
}

.pricing-table tbody td:last-child {
    text-align: right;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-navy);
}

.pricing-row--extra td {
    color: #999 !important;
    font-size: 0.78rem !important;
    font-style: italic;
    background: #fafafa;
}

.pricing-row--extra td:last-child {
    font-weight: 600 !important;
}

.pricing-footnote {
    font-size: 0.8rem;
    color: #999;
    line-height: 1.6;
    margin: 0 auto 0.8rem;
    padding: 0 0.3rem;
    text-align: left;
    max-width: 750px;
}

.pricing-closing {
    font-size: 0.8rem;
    color: #aaa;
    line-height: 1.6;
    padding: 0 0.3rem;
    margin: 0.8rem auto 0;
    text-align: left;
    max-width: 750px;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.blog-card {
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px var(--shadow);
}

.blog-card-image {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, var(--primary-navy), #2c3e50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.blog-card-content {
    padding: 1.2rem;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.blog-card-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.blog-card-content p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

.blog-link {
    display: inline-block;
    margin-top: 0.8rem;
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.blog-link:hover {
    color: var(--primary-navy);
}

/* Impressum */
.impressum-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 1.5rem;
}

.impressum-block {
    margin-bottom: 1.5rem;
}

.impressum-block h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.impressum-block p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

/* Referenzen Logo Carousel */
.referenzen-section {
    background: white;
    border-radius: 16px;
    padding: 1rem 0;
    box-shadow: 0 10px 40px var(--shadow);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.logo-carousel {
    overflow: hidden;
    position: relative;
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
    padding: 1rem 0 1.5rem;
}

.logo-carousel:active {
    cursor: grabbing;
}

.logo-track {
    display: flex;
    gap: 2.5rem;
    min-height: 110px;
    will-change: transform;
}

.logo-item {
    flex-shrink: 0;
    width: 110px;
    height: 110px;
    background: white;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #eee;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.logo-item:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 6px 25px rgba(201, 166, 107, 0.2);
}

.logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.logo-item.has-video {
    cursor: pointer;
    position: relative;
    overflow: visible;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    user-select: none;
}

.logo-play-icon {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 26px;
    height: 26px;
    background: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    z-index: 2;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.logo-item.has-video:hover .logo-play-icon {
    background: var(--accent-gold);
    transform: scale(1.15);
}

.logo-play-icon::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid white;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    margin-left: 2px;
}

/* Video Lightbox */
.video-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.85);
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.video-lightbox.active {
    display: flex;
}

.video-lightbox-wrap {
    position: relative;
    width: 100%;
    max-width: 900px;
}

.video-lightbox-close {
    position: absolute;
    top: -44px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2.2rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    z-index: 10;
}

.video-lightbox-close:hover {
    color: var(--accent-gold);
}

.video-lightbox-inner {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.video-lightbox-inner video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-item {
        width: 90px;
        height: 90px;
        padding: 3px;
    }

    .logo-track {
        gap: 1.5rem;
        min-height: 90px;
    }

    .referenzen-section {
        padding: 0.5rem 0;
    }

}

@media (max-width: 480px) {
    .logo-item {
        width: 75px;
        height: 75px;
        padding: 3px;
    }

    .logo-track {
        gap: 1.2rem;
        min-height: 75px;
    }

    .referenzen-section {
        padding: 0.3rem 0;
    }
}

/* Stats Bar */
.stats-divider {
    width: 340px;
    max-width: 80%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
    border-radius: 2px;
    margin: 0 auto;
}

.stats-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1rem 1.5rem 0.5rem;
}

.stats-item {
    text-align: center;
}

.stats-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1.2;
}

.stats-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trustpilot-badge {
    text-align: center;
    padding: 1rem 1.5rem 1rem;
    position: relative;
    z-index: 2;
}

.trustpilot-static {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    text-decoration: none;
    transition: opacity 0.3s;
}

.trustpilot-static:hover {
    opacity: 0.7;
}

@media (max-width: 480px) {
    .stats-bar {
        gap: 1.5rem;
        padding: 0.8rem 1rem 0.3rem;
    }

    .stats-number {
        font-size: 1.8rem;
    }

    .stats-label {
        font-size: 0.65rem;
    }

    .stats-divider {
        width: 200px;
    }
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #2c3e50 100%);
    padding: 2rem 0;
    text-align: center;
    margin-top: 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-transform: lowercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.footer-logo-accent {
    color: var(--accent-gold);
}

.footer-nav { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; margin: 1.5rem 0; text-align: left; }
.footer-col { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-col-title { font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 600; color: var(--accent-gold); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.3rem; }
.footer-col a { color: rgba(255, 255, 255, 0.5); font-size: 0.85rem; text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent-gold); }

.footer-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}
@media (max-width: 600px) { .footer-nav { flex-wrap: nowrap; gap: 0.8rem; } .footer-col { flex: 1; min-width: 0; gap: 0.35rem; } .footer-col-title { font-size: 0.68rem; } .footer-col a { font-size: 0.72rem; hyphens: auto; -webkit-hyphens: auto; } }

/* Responsive */
@media (max-width: 768px) {
    .logo {
        font-size: 1.8rem;
    }
    
    .header-inner {
        padding: 0 1rem;
    }
    
    .container {
        padding: 1.5rem 1rem;
    }
    
    .banner {
        margin-bottom: 1rem;
    }
    
    .banner-overlay {
        width: 55%;
        padding: 1.5rem;
    }
    
    .banner-text {
        font-size: 0.95rem;
    }
    
    .banner-text strong {
        font-size: 1.2rem;
    }
    
    /* Compact CTAs on tablet */
    .cta-section {
        gap: 0.8rem;
        margin-bottom: 1rem;
        display: flex;
        flex-direction: column;
    }
    
    .cta-card {
        padding: 0.9rem 0.7rem;
    }
    
    .cta-header {
        gap: 0.4rem;
        margin-bottom: 0.5rem;
    }
    
    .cta-icon {
        font-size: 1.2rem;
    }
    
    .cta-card h3, .cta-card .cta-card-title {
        font-size: 1.05rem;
    }
    
    .cta-card p {
        font-size: 0.75rem;
        margin-bottom: 0.7rem;
    }
    
    .cta-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .cta-card:hover::before {
        transform: scaleX(0);
    }

    .cta-card:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(26, 35, 50, 0.1);
    }

    .video-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .video-tabs {
        gap: 2px;
    }

    .video-tab {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .play-overlay {
        width: 50px;
        height: 50px;
    }
    
    .play-overlay::after {
        border-left: 15px solid var(--primary-navy);
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
    }
    
    .modal-content {
        padding: 2rem;
    }

    .content-section {
        padding: 2rem 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .rights-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-inclusive-list {
        flex-direction: column;
        gap: 0.3rem;
    }

    .blog-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .impressum-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
    }
    
    .header-inner {
        padding: 0 0.8rem;
    }
    
    .container {
        padding: 1rem 0.8rem;
    }
    
    .banner-cta-wrapper {
        display: block;
    }
    
    .banner {
        margin-bottom: 0.8rem;
        border-radius: 12px;
    }
    
    .banner-overlay {
        width: 60%;
        padding: 0.8rem;
        background: linear-gradient(to left, rgba(26, 35, 50, 0.9), transparent);
    }

    .banner-text {
        font-size: 0.7rem;
        line-height: 1.3;
    }

    .banner-text strong {
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
    }

    /* CTAs side by side on mobile */
    .cta-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }

    .cta-card {
        padding: 0.8rem 0.4rem;
    }

    .cta-header {
        gap: 0.3rem;
        margin-bottom: 0.4rem;
    }

    .cta-icon {
        font-size: 1.1rem;
    }

    .cta-card h3, .cta-card .cta-card-title {
        font-size: 0.95rem;
    }

    .cta-card p {
        font-size: 0.65rem;
        margin-bottom: 0.6rem;
        line-height: 1.35;
    }
    
    .cta-btn {
        padding: 0.55rem 1rem;
        font-size: 0.75rem;
    }
    
    /* Hide tabs, show mobile category list */
    .video-tabs {
        display: none;
    }
    
    .demo-thumb-grid {
        gap: 4px;
        padding: 2% 3%;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.2) !important;
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
    }

    .demo-thumb-item {
        border-width: 1px;
        border-radius: 4px;
        min-width: 0;
    }

    .demo-thumb-item img {
        aspect-ratio: 16/9;
        object-fit: cover;
        border-radius: 3px 3px 0 0;
    }

    .demo-thumb-label {
        display: block;
        font-size: 0.5rem;
        padding: 1px 3px;
        border-radius: 0 0 3px 3px;
    }

    .video-close-btn {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.6);
        text-shadow: none;
        font-size: 1rem;
        top: 4%;
        right: 4%;
    }

    .video-section {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    /* Mobile: Video oben, Buttons darunter */
    .video-mobile-layout {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        max-width: 900px;
        margin: 0 auto;
    }
    
    .video-container {
        width: 100%;
        min-width: 0;
        border-radius: 12px;
        aspect-ratio: 16 / 9;
        overflow: hidden;
    }
    
    /* Video passt in den 16:9 Container (contain statt cover für nicht-16:9 Videos) */
    .video-container video {
        width: 100%;
        height: 100%;
        object-fit: contain;
        background: #000;
        display: block;
    }
    
    .mobile-category-list {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 6px;
        width: 100%;
        position: relative;
        z-index: 10;
    }
    
    .mobile-category-btn {
        padding: 0.55rem 0.3rem;
        background: linear-gradient(135deg, var(--primary-navy), #2c3e50);
        color: white;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 0.75rem;
        transition: var(--transition);
        text-align: center;
        line-height: 1.2;
    }
    
    .mobile-category-btn:hover {
        background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
        color: var(--primary-navy);
    }
    
    .mobile-category-btn.active {
        background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
        color: var(--primary-navy);
        box-shadow: 0 2px 8px rgba(201, 166, 107, 0.4);
    }
    
    /* Play-Button mobil: zentriert und etwas kleiner */
    .play-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 55px;
        height: 55px;
        bottom: auto;
    }
    
    .play-overlay:hover {
        transform: translate(-50%, -50%) scale(1.1);
    }
    
    .play-overlay::after {
        border-left: 16px solid var(--primary-navy);
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        margin-left: 4px;
    }
    
    .modal-content {
        padding: 1.5rem;
        width: 95%;
    }

    .content-section {
        padding: 1.5rem 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .rights-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .pricing-col-head {
        padding: 1rem;
    }

    .pricing-table tbody td {
        padding: 0.5rem 0.8rem;
        font-size: 0.84rem;
    }

    .pricing-table thead th {
        padding: 0.4rem 0.8rem;
        font-size: 0.72rem;
    }

    .rights-card {
        padding: 0.8rem 0.8rem;
    }

    .rights-card h4, .rights-card .rights-card-title {
        font-size: 0.95rem;
    }

    .rights-card p {
        font-size: 0.78rem;
    }

    #preise {
        padding-top: 1rem;
    }

    #prozess .section-subtitle,
    #preise .section-subtitle {
        font-size: 0.82rem;
    }

    #preise .section-subtitle {
        margin-bottom: 0.3rem;
    }

    .rights-buttons {
        flex-direction: column;
        align-items: center;
        margin-top: 1.8rem;
        gap: 0.6rem;
    }

    .rights-btn {
        width: 100%;
        text-align: center;
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .impressum-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Intro Section (unter Video-Player) */
.intro-text { max-width: 750px; margin: 0 auto; }
.intro-text p { font-size: 0.95rem; line-height: 1.7; color: #444; margin-bottom: 1.1rem; hyphens: auto; -webkit-hyphens: auto; text-align: justify; }
.intro-text p:last-child { margin-bottom: 0; }

/* Process Steps (4-Schritte-Prozess) */
.process-steps { display: flex; gap: 0; margin: 2rem 0; counter-reset: step; }
.process-step { flex: 1; text-align: center; padding: 1.2rem 0.8rem; position: relative; }
.process-step::before { content: counter(step); counter-increment: step; display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: var(--accent-gold); color: var(--primary-navy); font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; margin: 0 auto 0.8rem; }
.process-step::after { content: ''; position: absolute; top: 30px; left: calc(50% + 24px); right: calc(-50% + 24px); height: 2px; background: #e0e0e0; }
.process-step:last-child::after { display: none; }
.process-step-title { font-size: 0.95rem; font-weight: 600; color: var(--primary-navy); margin-bottom: 0.4rem; }
.process-step-desc { font-size: 0.85rem; color: #666; line-height: 1.5; }
@media (max-width: 768px) {
    .process-steps { flex-wrap: wrap; gap: 0.5rem; }
    .process-step { flex: 0 0 calc(50% - 0.25rem); }
    .process-step::after { display: none; }
}
@media (max-width: 480px) {
    .process-steps { flex-direction: column; gap: 0; margin: 1.5rem 0 0; }
    .process-step {
        flex: none;
        padding: 1.2rem 0.8rem;
        position: relative;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        column-gap: 0.7rem;
        row-gap: 0.5rem;
        text-align: center;
    }
    .process-step::before { margin: 0; flex-shrink: 0; }
    .process-step-title { margin-bottom: 0; }
    .process-step-desc { flex-basis: 100%; margin: 0; }
    .process-step::after,
    .process-step:last-child::after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 25%;
        right: auto;
        width: 50%;
        height: 1px;
        background: #e0e0e0;
    }
}

/* Language toggle CSS is loaded from menu.js */

/* Sticky CTA */
.sticky-cta { position: fixed; bottom: 1.2rem; left: 50%; transform: translateX(-50%) translateY(120px); z-index: 900; transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); pointer-events: none; }
.sticky-cta.visible { transform: translateX(-50%) translateY(0); pointer-events: auto; }
.sticky-cta .cta-btn { display: inline-block; padding: 0.5rem 1.4rem; background: var(--accent-gold); color: var(--primary-navy); text-decoration: none; border-radius: 50px; font-weight: 600; font-size: 0.8rem; font-family: 'Montserrat', sans-serif; transition: var(--transition); letter-spacing: 0.3px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25); white-space: nowrap; }
.sticky-cta .cta-btn:hover { background: white; color: var(--primary-navy); transform: scale(1.05); box-shadow: 0 6px 25px rgba(201, 166, 107, 0.4); }
@media (max-width: 768px) {
    .sticky-cta { bottom: 1rem; }
    .sticky-cta .cta-btn { padding: 0.45rem 1.1rem; font-size: 0.75rem; }
}

/* === Abmelde-Modal === */
.unsub-overlay { position: fixed; inset: 0; background: rgba(15, 23, 42, 0.65); z-index: 9990; display: none; align-items: center; justify-content: center; padding: 20px; opacity: 0; transition: opacity 0.25s ease; }
.unsub-overlay.visible { display: flex; opacity: 1; }
.unsub-overlay.fading { opacity: 0; }
.unsub-box { background: #fff; border-radius: 16px; padding: 48px 28px 32px; max-width: 460px; width: 100%; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); position: relative; transform: translateY(20px); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.unsub-overlay.visible .unsub-box { transform: translateY(0); }
.unsub-close { position: absolute; top: 12px; right: 14px; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: #94a3b8; line-height: 1; padding: 4px 10px; border-radius: 6px; }
.unsub-close:hover { color: #1a2332; background: #f1f5f9; }
.unsub-box h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: #1a2332; margin-bottom: 8px; font-weight: 600; line-height: 1.2; }
.unsub-form input[type=email] { width: 100%; padding: 12px 14px; border: 1.5px solid #d4dae0; border-radius: 10px; font-size: 1rem; font-family: 'Montserrat', sans-serif; transition: border-color 0.2s; }
.unsub-form input[type=email]:focus { outline: none; border-color: #c9a66b; }
.unsub-honey { position: absolute; left: -9999px; top: -9999px; opacity: 0; pointer-events: none; height: 0; width: 0; overflow: hidden; }
.unsub-form button { width: 100%; margin-top: 18px; padding: 13px 20px; background: #1a2332; color: #fff; border: none; border-radius: 10px; font-size: 0.95rem; font-weight: 600; cursor: pointer; font-family: 'Montserrat', sans-serif; letter-spacing: 0.3px; transition: background 0.2s; }
.unsub-form button:hover:not(:disabled) { background: #2c3e50; }
.unsub-form button:disabled { opacity: 0.6; cursor: not-allowed; }
.unsub-error { color: #dc2626; font-size: 0.85rem; margin-top: 0; min-height: 0; }
.unsub-error:not(:empty) { margin-top: 10px; }
.unsub-legal { font-size: 0.6rem; color: #b6bcc4; line-height: 1.45; margin-top: 14px; margin-bottom: 0; text-align: center; }
.unsub-legal a { color: #b6bcc4; text-decoration: underline; }
.unsub-success { text-align: center; padding: 8px 0; }
.unsub-check { width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%; background: #16a34a; display: flex; align-items: center; justify-content: center; animation: unsubPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.unsub-check svg { width: 32px; height: 32px; stroke: #fff; stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 50; stroke-dashoffset: 50; animation: unsubDraw 0.5s ease-out 0.2s forwards; }
@keyframes unsubPop { 0% { transform: scale(0); } 100% { transform: scale(1); } }
@keyframes unsubDraw { to { stroke-dashoffset: 0; } }
.unsub-success h2 { color: #16a34a; }
