/* shared.css - Common styles for all subpages (not index.html) */

: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);
}

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

/* Header */
header { background: linear-gradient(135deg, var(--primary-navy) 0%, #2c3e50 100%); padding: 0.6rem 0; }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Barlow Condensed', sans-serif; font-size: 2.3rem; font-weight: 700; color: var(--text-light); text-decoration: none; letter-spacing: 1px; text-transform: lowercase; }
.logo-accent { color: var(--accent-gold); }
.header-right { display: flex; align-items: center; gap: 12px; }

/* Footer */
.site-footer { background: linear-gradient(135deg, var(--primary-navy) 0%, #2c3e50 100%); padding: 2rem 0; text-align: center; }
.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-text { color: rgba(255, 255, 255, 0.5); font-size: 0.85rem; }

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

/* Content sections (impressum, datenschutz, nutzungsbedingungen, blog, kontakt) */
.content-section { background: white; border-radius: 16px; padding: 3rem; box-shadow: 0 10px 40px var(--shadow); margin-bottom: 1.5rem; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; color: var(--primary-navy); margin-bottom: 0.5rem; position: relative; padding-bottom: 1rem; }
.section-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 3px; background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light)); border-radius: 2px; }
.section-subtitle { font-size: 1rem; color: #888; margin-bottom: 2rem; font-weight: 400; }

/* Legal content (datenschutz, nutzungsbedingungen) */
.legal-content h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--primary-navy); margin: 2rem 0 0.8rem; padding-top: 1rem; border-top: 1px solid #eee; }
.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content h3 { font-size: 1.05rem; color: var(--primary-navy); margin: 1.2rem 0 0.5rem; font-weight: 600; }
.legal-content p { font-size: 0.9rem; color: #666; line-height: 1.7; margin-bottom: 0.8rem; }
.legal-content ul { font-size: 0.9rem; color: #666; line-height: 1.7; margin: 0.5rem 0 1rem 1.5rem; }
.legal-content li { margin-bottom: 0.3rem; }
.legal-content a { color: var(--accent-gold); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }
.legal-content em { color: #888; }
.legal-content blockquote { border-left: 3px solid var(--accent-gold); padding: 1rem 1.5rem; margin: 1rem 0; background: var(--bg-light); border-radius: 0 8px 8px 0; }
.legal-content blockquote p { margin-bottom: 0; }

/* Page hero banner */
.page-hero { position: relative; width: 100%; height: 280px; background-size: cover; background-position: center; border-radius: 16px 16px 0 0; overflow: hidden; }
.page-hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem 3rem; z-index: 1; background: linear-gradient(to top, rgba(26,35,50,0.85) 0%, rgba(26,35,50,0.5) 60%, transparent 100%); }
.page-hero-title { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; color: white; line-height: 1.2; margin: 0; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.page-hero-meta { font-size: 0.85rem; color: var(--accent-gold); font-weight: 600; margin-top: 0.5rem; }
.page-hero + .article-section { border-radius: 0 0 16px 16px; }
.page-hero + .article-section .article-title,
.page-hero + .article-section .article-title::after { display: none; }

/* Blog article */
.article-section { background: white; border-radius: 16px; padding: 3rem; box-shadow: 0 10px 40px var(--shadow); margin-bottom: 1.5rem; }
.article-title { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; color: var(--primary-navy); margin-bottom: 0.5rem; line-height: 1.2; position: relative; padding-bottom: 1rem; }
.article-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 3px; background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light)); border-radius: 2px; }
.article-meta { font-size: 0.85rem; color: var(--accent-gold); font-weight: 600; margin-bottom: 2rem; }
.article-intro { font-size: 1.05rem; color: #555; line-height: 1.8; margin-bottom: 2rem; }
.article-section h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--primary-navy); margin: 2rem 0 1rem; }
.article-section h3 { font-family: 'Montserrat', sans-serif; font-size: 1.1rem; color: var(--primary-navy); margin: 1.5rem 0 0.8rem; font-weight: 600; }
.article-section p { color: #555; line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem; }
.highlight-box { background: var(--bg-light); border-left: 4px solid var(--accent-gold); padding: 1.2rem 1.5rem; border-radius: 0 8px 8px 0; margin: 1.5rem 0; }
.highlight-box strong { color: var(--primary-navy); }

/* CTA buttons */
.cta-buttons { display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap; justify-content: center; }
.cta-btn { display: inline-block; padding: 0.9rem 2rem; background: var(--accent-gold); color: var(--primary-navy); text-decoration: none; border-radius: 50px; font-weight: 600; font-size: 0.95rem; transition: var(--transition); font-family: 'Montserrat', sans-serif; text-align: center; }
.cta-btn:hover { background: var(--primary-navy); color: white; transform: translateY(-2px); box-shadow: 0 6px 25px rgba(201, 166, 107, 0.4); }
.cta-btn.secondary { background: var(--primary-navy); color: white; }
.cta-btn.secondary:hover { background: var(--accent-gold); color: var(--primary-navy); }

/* "Weitere Leistungen/Informationen" links */
.article-section > p:last-of-type a { color: var(--accent-gold); text-decoration: none; font-weight: 500; font-size: 0.88rem; border-bottom: 1px solid transparent; transition: border-color 0.3s, color 0.3s; }
.article-section > p:last-of-type a:hover { border-bottom-color: var(--accent-gold); }

/* Video demo */
.video-demo-section { background: white; border-radius: 16px; padding: 2rem; box-shadow: 0 10px 40px var(--shadow); margin-bottom: 1.5rem; }
.video-demo-section h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--primary-navy); margin-bottom: 1.5rem; position: relative; padding-bottom: 0.8rem; }
.video-demo-section h2::after { content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 3px; background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light)); border-radius: 2px; }
.video-container { position: relative; width: 100%; background: #000; border-radius: 12px; overflow: hidden; aspect-ratio: 16/9; }
.video-container video { width: 100%; height: 100%; object-fit: cover; }
.play-overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80px; height: 80px; 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); }
.play-overlay::after { content: ''; width: 0; height: 0; border-left: 24px solid var(--primary-navy); border-top: 16px solid transparent; border-bottom: 16px solid transparent; margin-left: 5px; }
.play-overlay.hidden { display: none; }

/* Related articles */
.related-section { background: white; border-radius: 16px; padding: 3rem; box-shadow: 0 10px 40px var(--shadow); margin-bottom: 1.5rem; }
.related-section h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--primary-navy); margin-bottom: 1.5rem; position: relative; padding-bottom: 0.8rem; }
.related-section h2::after { content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 3px; background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light)); border-radius: 2px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.related-card { background: var(--bg-light); border-radius: 12px; overflow: hidden; transition: var(--transition); text-decoration: none; color: inherit; display: block; }
.related-card:hover { transform: translateY(-4px); box-shadow: 0 8px 25px var(--shadow); }
.related-card-image { width: 100%; height: 100px; background: linear-gradient(135deg, var(--primary-navy), #2c3e50); display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.related-card-content { padding: 1rem; }
.related-card-content h4 { font-family: 'Montserrat', sans-serif; font-size: 0.9rem; color: var(--primary-navy); font-weight: 600; line-height: 1.3; margin-bottom: 0.3rem; }
.related-card-content p { font-size: 0.8rem; color: #888; line-height: 1.4; }

/* Blog overview grid */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
a.blog-card { text-decoration: none; color: inherit; display: block; }
.blog-card { background: var(--bg-light); border-radius: 12px; overflow: hidden; transition: var(--transition); cursor: pointer; border: 2px solid transparent; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 25px var(--shadow); border-color: var(--accent-gold); }
.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, .blog-card-content .blog-card-title { 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, .impressum-block .impressum-heading { 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; }
.impressum-block a { color: var(--accent-gold); text-decoration: none; }
.impressum-block a:hover { text-decoration: underline; }

/* Breadcrumbs */
.breadcrumbs { font-size: 0.82rem; color: #999; margin-bottom: 1.5rem; font-weight: 400; }
.breadcrumbs a { color: var(--accent-gold); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs .bc-sep { margin: 0 0.4rem; color: #ccc; }

/* Trust badges bar */
.trust-bar { display: flex; justify-content: center; flex-wrap: wrap; gap: 1.5rem; padding: 1.2rem 0; margin: 2rem 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: #666; font-weight: 500; white-space: nowrap; }
.trust-icon { font-size: 1.1rem; color: var(--accent-gold); flex-shrink: 0; }

/* Page stats bar (matches homepage) */
.page-stats { margin: 2rem 0; background: white; border-radius: 16px; padding: 1rem 0; box-shadow: 0 10px 40px var(--shadow); overflow: hidden; }
.page-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; }
.page-stats-bar { display: flex; justify-content: center; gap: 3rem; padding: 1rem 1.5rem 0.5rem; }
.page-stat { text-align: center; }
.page-stat-number { font-family: 'Barlow Condensed', sans-serif; font-size: 2.2rem; font-weight: 700; color: var(--accent-gold); line-height: 1.2; }
.page-stat-label { font-size: 0.85rem; font-weight: 500; color: var(--primary-navy); text-transform: uppercase; letter-spacing: 0.05em; }

/* Process steps */
.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.82rem; font-weight: 600; color: var(--primary-navy); margin-bottom: 0.3rem; }
.process-step-desc { font-size: 0.75rem; color: #888; line-height: 1.4; }

/* Page FAQ accordion */
.page-faq { margin: 2.5rem 0 0; padding-top: 2rem; border-top: 1px solid #eee; }
.page-faq h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--primary-navy); margin-bottom: 1rem; }
.page-faq details { border-bottom: 1px solid #eee; }
.page-faq summary { padding: 1rem 0; cursor: pointer; font-weight: 500; color: var(--primary-navy); font-size: 0.92rem; list-style: none; display: flex; justify-content: space-between; align-items: center; transition: color 0.3s; }
.page-faq summary::-webkit-details-marker { display: none; }
.page-faq summary::after { content: '+'; font-size: 1.3rem; color: var(--accent-gold); font-weight: 300; transition: transform 0.3s; flex-shrink: 0; margin-left: 1rem; }
.page-faq details[open] summary::after { content: '−'; }
.page-faq details[open] summary { color: var(--accent-gold); }
.page-faq .faq-answer { padding: 0 0 1rem; font-size: 0.88rem; color: #666; line-height: 1.7; }
.page-faq .faq-answer a { color: var(--accent-gold); text-decoration: none; }
.page-faq .faq-answer a:hover { text-decoration: underline; }

/* BW test mode (?bw=1) */
.bw-mode img, .bw-mode .page-hero, .bw-mode .banner-image { filter: grayscale(100%); }

/* Article photos */
.article-photo-float { float: right; width: 40%; margin: 0.5rem 0 1.5rem 2rem; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); overflow: hidden; }
.article-photo-float img { width: 100%; height: auto; display: block; border-radius: 12px; max-height: 380px; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.article-photo-float:hover img { transform: scale(1.03); }
.article-photo-float--left { float: left; width: 40%; margin: 0.5rem 2rem 1.5rem 0; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); overflow: hidden; }
.article-photo-float--left img { width: 100%; height: auto; display: block; border-radius: 12px; max-height: 380px; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.article-photo-float--left:hover img { transform: scale(1.03); }
.article-photo-full { margin: 1.5rem 0; border-radius: 12px; overflow: hidden; clear: both; }
.article-photo-full img { width: 100%; height: auto; display: block; border-radius: 12px; max-height: 400px; object-fit: cover; }
.article-photo-caption { font-size: 0.78rem; color: #999; margin-top: 0.4rem; font-style: italic; text-align: center; }

/* Cinematic photo – editorial full-bleed with overlay caption */
.article-photo-cinematic { position: relative; margin: 2.5rem -3rem; border-radius: 0; overflow: hidden; clear: both; }
.article-photo-cinematic img { width: 100%; height: auto; display: block; transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.article-photo-cinematic:hover img { transform: scale(1.02); }
.article-photo-cinematic .article-photo-caption { position: absolute; bottom: 0; left: 0; right: 0; margin: 0; padding: 1.5rem 2rem 1rem; background: linear-gradient(to top, rgba(26,35,50,0.8) 0%, transparent 100%); color: rgba(255,255,255,0.85); font-size: 0.82rem; text-align: left; font-style: italic; }

/* Equipment feature cards – image + text side by side */
.equipment-card { display: grid; grid-template-columns: 2fr 3fr; gap: 0; margin: 1.5rem 0; border-radius: 12px; overflow: hidden; background: var(--bg-light); box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: box-shadow 0.4s ease; clear: both; }
.equipment-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.equipment-card--reversed { direction: rtl; }
.equipment-card--reversed > * { direction: ltr; }
.equipment-card-image { position: relative; overflow: hidden; min-height: 220px; }
.equipment-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.equipment-card:hover .equipment-card-image img { transform: scale(1.04); }
.equipment-card-image::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light)); }
.equipment-card-body { padding: 1.8rem 2rem; display: flex; flex-direction: column; justify-content: center; }
.equipment-card-body strong { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--primary-navy); display: block; margin-bottom: 0.6rem; }
.equipment-card-body p { font-size: 0.88rem; color: #555; line-height: 1.7; margin: 0; }

.article-section h2 { clear: both; }

/* Client logos (matches homepage carousel items) */
.client-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; margin: 1.5rem 0; padding: 1rem 0; }
.client-logo-item { width: 110px; height: 110px; border-radius: 16px; background: white; overflow: hidden; display: flex; align-items: center; justify-content: center; padding: 10px; 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; flex-shrink: 0; outline: none; -webkit-tap-highlight-color: transparent; }
.client-logo-item:hover { border-color: var(--accent-gold); box-shadow: 0 6px 25px rgba(201,166,107,0.2); }
.client-logo-item img { width: 100%; height: 100%; object-fit: contain; border-radius: 14px; }
.client-logo-item.has-video { cursor: pointer; position: relative; overflow: visible; -webkit-tap-highlight-color: transparent; outline: none; user-select: none; }
.client-logo-play { 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; }
.client-logo-play::after { content: ''; width: 0; height: 0; border-left: 8px solid white; border-top: 5px solid transparent; border-bottom: 5px solid transparent; margin-left: 2px; }
.client-logo-item.has-video:hover .client-logo-play { background: var(--accent-gold); transform: scale(1.15); }

/* Video lightbox (for subpages) */
.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; }

/* Sticky CTA floating button */
.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); }

/* Audio comparison */
.audio-compare { margin: 2rem 0; }
.audio-compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.audio-compare-card { background: var(--bg-light); border-radius: 12px; padding: 1.5rem; text-align: center; border: 2px solid transparent; transition: border-color 0.3s; }
.audio-compare-card:hover { border-color: var(--accent-gold); }
.audio-compare-label { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--primary-navy); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 1px; }
.audio-compare-sub { font-size: 0.8rem; color: #888; margin-bottom: 1rem; }
.audio-compare-card audio { width: 100%; }

/* Responsive */
@media (max-width: 768px) {
    .logo { font-size: 1.8rem; }
    .container { padding: 1.5rem 1rem; }
    .content-section { padding: 2rem 1.5rem; }
    .section-title { font-size: 1.8rem; }
    .article-section { padding: 2rem 1.5rem; }
    .article-title { font-size: 1.8rem; }
    .related-grid { grid-template-columns: 1fr 1fr; }
    .related-section { padding: 2rem 1.5rem; }
    .video-demo-section { padding: 1.5rem; }
    .blog-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .impressum-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .page-hero { height: 220px; }
    .page-hero-content { padding: 1.5rem 2rem; }
    .page-hero-title { font-size: 1.8rem; }
    .trust-bar { gap: 1rem; }
    .page-stats-bar { gap: 2rem; }
    .page-stat-number { font-size: 1.8rem; }
    .process-steps { flex-wrap: wrap; gap: 0.5rem; }
    .process-step { flex: 0 0 calc(50% - 0.25rem); }
    .process-step::after { display: none; }
    .audio-compare-grid { grid-template-columns: 1fr; }
    .client-logo-item { width: 90px; height: 90px; padding: 3px; }
    .client-logos { gap: 1.5rem; }
    .article-photo-float { float: none; width: 100%; margin: 1.5rem 0; }
    .article-photo-float--left { float: none; width: 100%; margin: 1.5rem 0; }
    .equipment-card { grid-template-columns: 1fr; }
    .equipment-card--reversed { direction: ltr; }
    .equipment-card-image { min-height: 180px; }
    .article-photo-cinematic { margin: 2rem -1.5rem; }
}

@media (max-width: 480px) {
    .logo { font-size: 1.5rem; }
    .header-inner { padding: 0 0.8rem; }
    .container { padding: 1rem 0.8rem; }
    .content-section { padding: 1.5rem 1rem; }
    .section-title { font-size: 1.5rem; }
    .article-section { padding: 1.5rem 1rem; }
    .article-title { font-size: 1.5rem; }
    .article-section h2 { font-size: 1.4rem; }
    .related-grid { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; }
    .cta-btn { width: 100%; text-align: center; }
    .related-section { padding: 1.5rem 1rem; }
    .video-demo-section { padding: 1rem; }
    .play-overlay { width: 55px; height: 55px; }
    .play-overlay::after { border-left: 16px solid var(--primary-navy); border-top: 10px solid transparent; border-bottom: 10px solid transparent; }
    .blog-grid { grid-template-columns: 1fr; gap: 1rem; }
    .impressum-grid { grid-template-columns: 1fr; gap: 1rem; }
    .page-hero { height: 180px; border-radius: 12px 12px 0 0; background-position: center !important; }
    .page-hero-content { padding: 1rem 1.2rem; }
    .page-hero-title { font-size: 1.4rem; }
    .trust-bar { gap: 0.8rem; padding: 1rem 0; }
    .trust-item { font-size: 0.75rem; }
    .page-stats-bar { gap: 1.5rem; padding: 0.8rem 1rem 0.3rem; }
    .page-stats-divider { width: 200px; }
    .page-stat-number { font-size: 1.8rem; }
    .page-stat-label { font-size: 0.65rem; }
    .process-steps { flex-direction: column; }
    .process-step { flex: none; }
    .sticky-cta { bottom: 1rem; }
    .sticky-cta .cta-btn { padding: 0.45rem 1.1rem; font-size: 0.75rem; }
    .client-logo-item { width: 75px; height: 75px; padding: 3px; }
    .client-logos { gap: 1.2rem; }
    .equipment-card-body { padding: 1.2rem 1rem; }
    .article-photo-cinematic { margin: 1.5rem -1rem; }
    .article-photo-cinematic .article-photo-caption { padding: 1rem 1.2rem 0.8rem; }
}
