/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0c1624;
    --bg: #152238;
    --bg-card: rgba(21, 34, 56, 0.9);
    --bg-elevated: rgba(25, 45, 70, 0.95);
    --border: rgba(255,255,255,0.1);
    --text: #ffffff;
    --text-muted: #a8b8c8;
    --accent: #3b82f6;
    --accent-glow: rgba(59, 130, 246, 0.3);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Page Load Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

body {
    font-family: var(--font);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Fixed Gradient Background Container */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/gradient-bg.svg') no-repeat center center;
    background-size: cover;
    z-index: -1;
    pointer-events: none;
}

/* Typography */
h1 { font-size: clamp(40px, 7vw, 72px); font-weight: 700; line-height: 1.05; letter-spacing: -0.03em; }
h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 600; letter-spacing: -0.02em; }
h3 { font-size: 20px; font-weight: 600; }

.label {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--accent);
    text-transform: uppercase;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 48px;
    background: transparent;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(10, 15, 26, 0.9);
    border-bottom-color: var(--border);
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.logo-main {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, #fff 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gradient);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.logo-sub {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--accent);
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.nav a:hover { color: var(--text); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.2);
}

.btn-nav {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 10px 20px;
}

.btn-nav:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
}

/* Hero */
.hero {
    position: relative;
    height: 100vh; /* Fallback */
    height: calc(var(--vh, 1vh) * 100); /* JS-basierte Höhe - universell */
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 10%, rgba(0, 102, 255, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 70%, rgba(168, 85, 247, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(236, 72, 153, 0.25) 0%, transparent 60%),
        linear-gradient(
            to bottom,
            rgba(10, 22, 40, 0.5) 0%,
            rgba(26, 10, 46, 0.6) 50%,
            rgba(10, 22, 40, 0.95) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-content h1 {
    margin-bottom: 24px;
    text-shadow: 0 4px 40px rgba(0,0,0,0.5);
    animation: slideUp 0.8s ease-out 0.3s both;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    animation: slideUp 0.8s ease-out 0.5s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease-out 0.7s both;
}

.hero-mute-btn {
    position: absolute;
    bottom: 32px;
    right: 32px;
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.hero-mute-btn:hover {
    background: rgba(255,255,255,0.2);
}

/* Hero Waveform Animation */
.hero-waveform {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 80px;
    z-index: 0;
    opacity: 0.5;
    animation: fadeIn 1s ease-out 0.9s both;
}

.wave-bar {
    width: 4px;
    background: linear-gradient(to top, var(--accent), #60a5fa);
    border-radius: 2px;
    animation: waveform 1.2s ease-in-out infinite;
}

.wave-bar:nth-child(1) { height: 20px; animation-delay: 0s; }
.wave-bar:nth-child(2) { height: 35px; animation-delay: 0.1s; }
.wave-bar:nth-child(3) { height: 25px; animation-delay: 0.2s; }
.wave-bar:nth-child(4) { height: 50px; animation-delay: 0.3s; }
.wave-bar:nth-child(5) { height: 40px; animation-delay: 0.4s; }
.wave-bar:nth-child(6) { height: 60px; animation-delay: 0.5s; }
.wave-bar:nth-child(7) { height: 45px; animation-delay: 0.6s; }
.wave-bar:nth-child(8) { height: 70px; animation-delay: 0.7s; }
.wave-bar:nth-child(9) { height: 55px; animation-delay: 0.8s; }
.wave-bar:nth-child(10) { height: 80px; animation-delay: 0.9s; }
.wave-bar:nth-child(11) { height: 55px; animation-delay: 1.0s; }
.wave-bar:nth-child(12) { height: 70px; animation-delay: 0.7s; }
.wave-bar:nth-child(13) { height: 45px; animation-delay: 0.6s; }
.wave-bar:nth-child(14) { height: 60px; animation-delay: 0.5s; }
.wave-bar:nth-child(15) { height: 40px; animation-delay: 0.4s; }
.wave-bar:nth-child(16) { height: 50px; animation-delay: 0.3s; }
.wave-bar:nth-child(17) { height: 25px; animation-delay: 0.2s; }
.wave-bar:nth-child(18) { height: 35px; animation-delay: 0.1s; }
.wave-bar:nth-child(19) { height: 20px; animation-delay: 0s; }
.wave-bar:nth-child(20) { height: 30px; animation-delay: 0.15s; }

@keyframes waveform {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    color: var(--text-muted);
    text-decoration: none;
    cursor: pointer;
    animation: slideUp 0.8s ease-out 1.1s both;
    transition: color 0.3s ease;
}

.scroll-indicator:hover {
    color: var(--text);
}

.scroll-indicator span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-arrow {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* Animated Client Logo Marquee */
.clients-marquee {
    padding: 48px 0;
    background: var(--bg);
    overflow: hidden;
}

.marquee-label {
    text-align: center;
    margin-bottom: 40px;
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg) 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 64px;
    animation: marquee 20s linear infinite;
    width: fit-content;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-33.333% - 21px)); }
}

.marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.marquee-item:hover {
    opacity: 0.8;
}

/* Styled Text Logos - Monochrome Style */
.client-logo-styled {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
}

/* Ostseewelle HIT-RADIO - mit Rahmen wie Original */
.ostseewelle {
    border: 2px solid currentColor;
    border-radius: 4px;
    padding: 8px 12px;
    gap: 0;
}

.logo-welle-ost {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.logo-hit {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.15em;
}

/* Antenne Niedersachsen - Sprechblasen-Stil */
.antenne {
    position: relative;
    background: currentColor;
    border-radius: 8px 8px 8px 0;
    padding: 10px 14px;
    gap: 0;
}

.antenne::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-top-color: currentColor;
    border-left-color: currentColor;
    transform: translateY(100%);
}

.logo-antenne-text {
    font-size: 18px;
    font-weight: 800;
    color: var(--bg);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.logo-antenne-sub {
    font-size: 7px;
    font-weight: 600;
    color: var(--bg);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* WDR */
.wdr {
    flex-direction: row;
    align-items: flex-start;
}

.logo-wdr {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* mdr */
.mdr {
    flex-direction: row;
}

.logo-mdr-text {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* rbb - mit Rahmen */
.rbb {
    border: 2px solid currentColor;
    border-radius: 4px;
    padding: 6px 14px;
}

.logo-rbb {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* hr */
.hr {
    flex-direction: row;
}

.logo-hr {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* NDR */
.ndr {
    flex-direction: row;
}

.logo-ndr {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* E.ON */
.eon {
    flex-direction: row;
}

.logo-eon {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* TheVibe */
.thevibe {
    flex-direction: row;
}

.logo-vibe {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.02em;
    font-style: italic;
}

/* Section Header */
.section-header {
    margin-bottom: 48px;
}

.section-header .label {
    margin-bottom: 12px;
}

.section-header h2 {
    margin-top: 8px;
}

/* Work Section */
.work {
    padding: 100px 48px;
}

.tracks-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.track {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.track:hover {
    background: var(--bg-elevated);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.15);
}

.track.playing {
    background: rgba(0, 212, 255, 0.15);
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s;
}

.play-btn:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.track-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 160px;
}

.track-title {
    font-size: 15px;
    font-weight: 600;
}

.track-tag {
    font-size: 12px;
    color: var(--text-muted);
}

.track-waveform {
    flex: 1;
    display: flex;
    align-items: center;
}

.waveform-visual {
    display: flex;
    align-items: center;
    gap: 1px;
    height: 32px;
    cursor: pointer;
    flex: 1;
}

.waveform-bar {
    flex: 1;
    min-width: 2px;
    background: rgba(255,255,255,0.3);
    border-radius: 1px;
    transition: background 0.1s ease;
}

/* Played portion of waveform */
.waveform-bar.played {
    background: var(--accent);
    box-shadow: 0 0 6px var(--accent-glow);
}

/* Hover effect on waveform */
.track:hover .waveform-bar:not(.played) {
    background: rgba(255,255,255,0.45);
}

/* Idle waveform subtle animation */
.waveform-bar {
    animation: waveform-idle 2s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.05s);
}

@keyframes waveform-idle {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.track-progress {
    display: none;
}

.track-bar {
    display: none;
}

.track-time {
    font-size: 13px;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
    min-width: 40px;
    text-align: right;
}

/* About Section */
.about {
    padding: 100px 48px;
    background: var(--bg);
    position: relative;
}

.about-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex-shrink: 0;
}

.about-image img {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
}

.about-content {
    text-align: left;
}

.about-content .label {
    margin-bottom: 16px;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content > p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Why Section */
.why {
    padding: 100px 48px;
    position: relative;
    background: url('../images/why-bg.jpg') center center / cover no-repeat fixed;
    filter: none;
}

.why::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.75);
    z-index: 0;
}

.why-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-header {
    text-align: center;
    margin-bottom: 48px;
}

.why-header .label {
    margin-bottom: 16px;
}

.why-header h2 {
    margin-bottom: 16px;
    color: #fff;
}

.why-header > p {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 32px;
    background: var(--bg-elevated);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.why-point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.why-check {
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 2px;
}

.why-point div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.why-point strong {
    font-size: 17px;
    font-weight: 600;
}

.why-point span {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Showreel */
.showreel {
    padding: 100px 48px;
}

.showreel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.showreel-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.showreel-item:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.2);
}

.showreel-video {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
}

.showreel-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showreel-item:hover .showreel-video video {
    transform: scale(1.05);
}

.showreel-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    color: white;
    opacity: 1;
    transition: all 0.3s;
}

.showreel-item:hover .showreel-play {
    background: rgba(0,0,0,0.5);
}

.showreel-play svg {
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
}

.showreel-info {
    padding: 20px 24px;
}

.showreel-info h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.showreel-info p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Packages */
.packages {
    padding: 100px 48px;
    background: var(--bg-card);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.package {
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.package:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.15);
}

.package-visual {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.package-visual video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
}

.package-content {
    padding: 24px;
}

.package-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.package-category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--accent);
    text-transform: uppercase;
}

.package-tag {
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    background: var(--accent-glow);
    color: var(--accent);
    letter-spacing: 0.05em;
}

.package-content h3 {
    margin-bottom: 8px;
}

.package-content > p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.package-tracks {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Process */
.process {
    padding: 100px 48px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.15);
}

.step-visual {
    height: 140px;
    overflow: hidden;
}

.step-visual video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.step-content {
    padding: 24px;
}

.step-num {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
}

.step-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Contact */
.contact {
    padding: 100px 48px;
    background: var(--bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.contact-visual {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.contact-visual video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-content .label {
    margin-bottom: 16px;
}

.contact-content h2 {
    margin-bottom: 16px;
}

.contact-content > p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
}

.contact-method:hover {
    border-color: var(--accent);
    background: var(--bg-elevated);
}

.contact-method svg {
    color: var(--accent);
}

/* Footer */
.footer {
    padding: 24px 48px;
    border-top: 1px solid var(--border);
    background: var(--bg-dark);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-copy {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-lang {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-lang a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-lang a:hover,
.footer-lang a.active {
    color: var(--text);
}

.lang-divider,
.link-divider {
    color: var(--text-muted);
    opacity: 0.5;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text);
}

/* Legal Pages */
.legal-page {
    padding: 140px 48px 80px;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 48px;
    background: linear-gradient(135deg, #fff 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-content h2 {
    font-size: 20px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text);
}

.legal-content h3 {
    font-size: 16px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text);
}

.legal-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}

.legal-content a:hover {
    color: #60a5fa;
}

.legal-content strong {
    color: var(--text);
}

.legal-content em {
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1100px) {
    .packages-grid,
    .showreel-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .header {
        padding: 16px 24px;
    }

    .logo-main {
        font-size: 22px;
    }

    .logo-sub {
        font-size: 11px;
    }

    .nav {
        display: none;
    }

    .btn-nav {
        padding: 8px 16px;
        font-size: 12px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-waveform {
        height: 50px;
        gap: 4px;
    }

    .wave-bar {
        width: 3px;
    }

    .scroll-indicator {
        bottom: 24px;
    }

    section {
        padding: 60px 24px;
    }

    .clients-marquee {
        padding: 32px 0;
    }

    .marquee-track {
        gap: 40px;
    }

    .logo-wdr, .logo-mdr-text, .logo-hr, .logo-ndr, .logo-rbb, .logo-eon {
        font-size: 24px;
    }

    .logo-welle-ost {
        font-size: 12px;
    }

    .logo-antenne-text {
        font-size: 14px;
    }

    .logo-vibe {
        font-size: 18px;
    }

    .work,
    .about,
    .why,
    .showreel,
    .packages,
    .process,
    .contact {
        padding: 60px 24px;
    }

    .why-point {
        padding: 20px;
    }

    .why {
        background-attachment: scroll;
    }

    .tracks-container {
        grid-template-columns: 1fr;
    }

    .track {
        padding: 16px;
        gap: 12px;
        flex-wrap: wrap;
    }

    .track-info {
        flex: 1;
        min-width: 0;
    }

    .track-title {
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .track-waveform {
        flex-basis: 100%;
        order: 1;
        margin-top: 8px;
    }

    .track-time {
        order: 0;
    }

    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        text-align: center;
    }

    .about-image img {
        width: 240px;
        height: 240px;
    }

    .about-stats {
        gap: 40px;
        justify-content: center;
    }

    .stat-number {
        font-size: 36px;
    }

    .packages-grid,
    .showreel-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-visual {
        display: none;
    }

    .footer {
        padding: 20px 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-left {
        flex-direction: column;
        gap: 12px;
    }

    .legal-page {
        padding: 120px 24px 60px;
    }

    .legal-content h1 {
        margin-bottom: 32px;
    }
}

@media (max-width: 600px) {
    .marquee-track {
        gap: 32px;
        animation-duration: 20s;
    }

    .logo-wdr, .logo-mdr-text, .logo-hr, .logo-ndr, .logo-rbb {
        font-size: 20px;
    }

    .ostseewelle {
        padding: 6px 8px;
    }

    .antenne {
        padding: 8px 10px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .btn-nav {
        width: auto;
    }
}
