/* --- 1. VARIABLEN & GRUNDEINSTELLUNGEN --- */
:root {
    /* Farben */
    --primary-blue: #62b5e5;       /* SVDL Original Blau */
    --teamshot-teal: #4aa3d4;      /* Frischer Akzentton für Teamshot */
    --text-dark: #2c3e50;          /* Dunkles Anthrazit für bessere Lesbarkeit */
    --text-light: #5a6b7c;         /* Weicherer Lesetext */
    --bg-warm: #fcfbf8;            /* "Papier"-Weiß für warme Sektionen */
    --bg-white: #ffffff;
    
    /* UI Design */
    --radius-soft: 12px;           /* Weiche Ecken (Modern) */
    --radius-pill: 50px;           /* Runde Buttons */
    --shadow-soft: 0 20px 40px -10px rgba(0,0,0,0.08); /* Hochwertiger Schatten */
    --header-height: 80px;
    --max-width: 1200px;
    --font-stack: 'Montserrat', sans-serif;
}

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


/* Lazy Loading */
img.lazy {
    opacity: 0;
    transition: opacity 0.5s ease;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}
img.lazy.loaded {
    opacity: 1;
}
.impressionen-track img.lazy {
    background: linear-gradient(135deg, #e8f4f8 0%, #d0e8f0 100%);
}
.parallax-img.lazy {
    background: #2c3e50;
}
.footer-splash img.lazy {
    background: #1a1a1a;
}
.ken-burns.lazy {
    background: linear-gradient(135deg, #e8e8e8 0%, #d8d8d8 100%);
}
.team-img.lazy {
    background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
}
.concept-image img.lazy {
    background: linear-gradient(135deg, #e8f4f8 0%, #d0e8f0 100%);
}
.footer-logo.lazy {
    background: transparent;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--font-stack);
    color: var(--text-dark);
    line-height: 1.7; 
    font-weight: 300;
    background-color: var(--bg-warm);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }

/* --- 2. HEADER & NAVIGATION --- */
header {
    position: fixed; top: 0; left: 0; width: 100%; height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px); 
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-inner {
    max-width: var(--max-width); height: 100%; margin: 0 auto; padding: 0 20px;
    display: flex; justify-content: space-between; align-items: center;
}

/* Logos */
.logo-teamshot-header { height: 42px; width: auto; transition: transform 0.3s; }
.logo-teamshot-header:hover { transform: scale(1.05); }

.logo-right img { height: 35px; width: auto; opacity: 0.8; transition: opacity 0.3s; }
.logo-right:hover img { opacity: 1; }

/* Desktop Menu */
#desktop-nav ul { display: flex; gap: 35px; }
#desktop-nav a {
    font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--text-dark); position: relative; padding-bottom: 5px;
}
#desktop-nav a::after {
    content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 0;
    background: var(--primary-blue); transition: width 0.3s;
}
#desktop-nav a:hover { color: var(--primary-blue); }
#desktop-nav a:hover::after { width: 100%; }

/* --- 3. HERO SECTION (SPLASH) --- */
.hero-section {
    position: relative; height: 100vh; width: 100%;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: var(--bg-white);
    background-color: #2c3e50; overflow: hidden;
}

.hero-bg-img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
    animation: slowZoom 20s infinite alternate; 
}
@keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.1); } }

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    z-index: 1;
}

.hero-content {
    position: relative; z-index: 2; padding: 20px; width: 100%; max-width: 900px;
}

.hero-logo-big {
    width: 80%; max-width: 650px; margin: 0 auto 30px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
}

.hero-slogan {
    font-size: 1.6rem; letter-spacing: 4px; text-transform: uppercase; font-weight: 300;
    margin-bottom: 50px; opacity: 0.95; text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.scroll-down-btn {
    display: inline-flex; flex-direction: column; align-items: center;
    color: var(--bg-white); font-size: 0.9rem; font-weight: 500;
    opacity: 0.8; transition: 0.3s; cursor: pointer;
}
.scroll-down-btn:hover { opacity: 1; transform: translateY(2px); }
.scroll-down-btn .scroll-arrow { margin-top: 10px; animation: bounce 2s infinite; }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* --- 4. METHODEN WRAPPER (Integriertes Design) --- */
.methoden-wrapper {
    background: var(--bg-white);
    border-radius: var(--radius-soft);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
}

.methoden-header {
    padding: 50px 50px 40px;
    border-bottom: 1px solid #f0f0f0;
}
.methoden-header h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}
.methoden-header p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Integrierter Impressionen-Strip */
.impressionen-strip {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
    padding: 25px 0;
    position: relative;
}
.impressionen-strip::before,
.impressionen-strip::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.impressionen-strip::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-white), transparent);
}
.impressionen-strip::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg-white), transparent);
}

.impressionen-track {
    display: flex;
    width: max-content;
    animation: scrollImpressions 60s linear infinite;
    gap: 12px;
}
.impressionen-track img {
    height: 100px;
    width: 150px;
    object-fit: cover;
    border-radius: 6px;
    opacity: 0.85;
    transition: all 0.4s ease;
}
.impressionen-track img:hover {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scrollImpressions {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Angebote Grid (ohne Icons) */
.angebote-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.angebot-card {
    padding: 40px 35px;
    border-right: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}
.angebot-card:nth-child(3n) { border-right: none; }
.angebot-card:nth-child(n+4) { border-bottom: none; }

.angebot-card:hover {
    background: linear-gradient(135deg, rgba(98, 181, 229, 0.03) 0%, rgba(98, 181, 229, 0.08) 100%);
}

.angebot-nummer {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(98, 181, 229, 0.15);
    line-height: 1;
    margin-bottom: 15px;
    transition: color 0.3s;
}
.angebot-card:hover .angebot-nummer {
    color: rgba(98, 181, 229, 0.3);
}

.angebot-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.angebot-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* --- 5. ALLGEMEINE SECTION STYLES --- */
.section-padding { padding: 120px 20px; }
.section-white { background-color: var(--bg-white); }
.section-warm { background-color: var(--bg-warm); border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.container { max-width: var(--max-width); margin: 0 auto; position: relative; }

.section-title {
    text-align: center; margin-bottom: 80px; max-width: 900px; margin-left: auto; margin-right: auto;
}
.section-title h2 {
    font-size: 2.5rem; font-weight: 700; color: var(--text-dark); margin-bottom: 20px;
    text-transform: uppercase; letter-spacing: -0.5px;
}
.section-title p {
    font-size: 1.15rem; color: var(--text-light); line-height: 1.6;
}
.section-title .subtitle {
    font-size: 0.95rem; margin-top: 20px; font-style: italic; opacity: 0.8;
}
.section-title .accent {
    color: var(--primary-blue); font-weight: 400; font-family: serif; font-style: italic;
}
.divider { width: 70px; height: 3px; background: var(--primary-blue); margin: 20px auto; }

/* --- 6. LEGACY GRID (für andere Sektionen) --- */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }

/* --- 7. PROJEKTE SLIDER (MODERN OVERLAP) --- */
.slider-wrapper { position: relative; padding-bottom: 60px; }
.slider-track { display: flex; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); }

.slide {
    min-width: 100%; display: grid; grid-template-columns: 1.2fr 0.8fr; 
    align-items: center; opacity: 0.3; transform: scale(0.98); transition: 0.6s;
    filter: grayscale(80%);
}
.slide.active-slide { opacity: 1; transform: scale(1); filter: grayscale(0%); }

.slide-img-container {
    height: 550px; border-radius: var(--radius-soft); overflow: hidden;
    box-shadow: var(--shadow-soft); position: relative;
}
.ken-burns { width: 100%; height: 100%; object-fit: cover; transition: opacity 1.2s ease-in-out; }

.slide-content-box {
    background: #fff; padding: 50px; 
    border-radius: 0 var(--radius-soft) var(--radius-soft) 0;
    box-shadow: -10px 20px 50px rgba(0,0,0,0.08);
    margin-left: -50px; /* Overlap */
    position: relative; z-index: 2; border: 1px solid rgba(0,0,0,0.05);
}
.slide-content-box h3 { font-size: 1.6rem; margin-bottom: 25px; color: var(--text-dark); }
.slide-content-box ul { padding-left: 0; }
.slide-content-box li { list-style: none; margin-bottom: 15px; border-bottom: 1px solid #f0f0f0; padding-bottom: 10px; color: var(--text-light); }
.slide-content-box strong { color: var(--primary-blue); margin-right: 8px; }

/* Moderne Controls unten */
.modern-controls {
    position: absolute; bottom: 0; right: 0; 
    display: flex; align-items: center; gap: 20px;
    background: #fff; padding: 15px 30px;
    border-radius: var(--radius-pill);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.control-btn {
    background: none; border: none; font-size: 1.2rem; 
    color: var(--text-dark); cursor: pointer; transition: 0.3s;
    width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.control-btn:hover { background: var(--bg-warm); color: var(--primary-blue); }

.progress-bar { width: 100px; height: 2px; background: #eee; position: relative; }
.progress-fill { width: 33%; height: 100%; background: var(--primary-blue); transition: width 0.3s; }

/* --- 8. FAKTEN (GLASS DESIGN) --- */
.fakten-section {
    position: relative; padding: 140px 20px; overflow: hidden;
}
.parallax-img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
}
.overlay-dark {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(30, 30, 30, 0.7); z-index: 1; 
}
.relative { position: relative; }
.z-2 { z-index: 2; }
.text-center { text-align: center; }
.white { color: var(--bg-white); }
.white h2 { color: var(--bg-white); }
.white p { color: rgba(255,255,255,0.8); }

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 30px; text-align: center;
    border-radius: var(--radius-soft);
    color: #fff; transition: 0.3s;
}
.glass-card:hover { background: rgba(255, 255, 255, 0.15); transform: translateY(-5px); }
.glass-card p { color: rgba(255,255,255,0.9); }

.big-number {
    display: block; font-size: 4.5rem; font-weight: 700; color: var(--primary-blue);
    margin-bottom: 10px; line-height: 1; text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}
.glass-card h3 { font-size: 1.5rem; margin-bottom: 15px; font-weight: 600; }

/* --- 9. TEAM SECTION --- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }

.team-member {
    background: var(--bg-white); border: 1px solid #eee; padding: 40px;
    display: flex; gap: 30px; align-items: flex-start;
    border-radius: var(--radius-soft); transition: 0.3s;
}
.team-member:hover { box-shadow: var(--shadow-soft); border-color: rgba(0,0,0,0.05); }

.team-img {
    width: 140px; height: 140px; border-radius: 50%; object-fit: cover;
    border: 3px solid var(--bg-warm); flex-shrink: 0;
}
.team-content h3 { font-size: 1.3rem; margin-bottom: 5px; }
.role {
    display: block; color: var(--teamshot-teal); font-weight: 600;
    font-size: 0.8rem; text-transform: uppercase; margin-bottom: 15px;
}
.team-content p { font-size: 0.9rem; margin-bottom: 20px; }

.socials { display: flex; gap: 10px; }
.social-btn {
    width: 36px; height: 36px; background: #f0f0f0; color: #555;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    transition: 0.3s; font-size: 0.9rem;
}
.social-btn:hover { background: var(--primary-blue); color: var(--bg-white); transform: translateY(-3px); }
.linkedin:hover { background: #0077b5; } 

/* --- 10. LOCATION KONZEPTE (SPLIT) --- */
.split-concepts { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

.concept-card {
    background: #fff; border-radius: var(--radius-soft);
    overflow: hidden; border: 1px solid #eee;
    transition: 0.3s; display: flex; flex-direction: column;
}
.concept-card:hover { box-shadow: var(--shadow-soft); border-color: var(--primary-blue); }

.concept-image img { height: 250px; width: 100%; object-fit: cover; }

.concept-header {
    padding: 30px 30px 10px; display: flex; justify-content: space-between; align-items: start;
}
.concept-header h3 { margin: 0; font-size: 1.4rem; color: var(--text-dark); }

.badge-service { background: var(--primary-blue); color: #fff; padding: 5px 12px; border-radius: 20px; font-size: 0.7rem; text-transform: uppercase; font-weight: 600; }
.badge-rent { background: #333; color: #fff; padding: 5px 12px; border-radius: 20px; font-size: 0.7rem; text-transform: uppercase; font-weight: 600; }

.concept-body { padding: 0 30px 30px; flex: 1; display: flex; flex-direction: column; }
.concept-body p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 20px; }

.check-list.small { list-style: none; padding: 0; margin-bottom: 20px; }
.check-list.small li { font-size: 0.9rem; margin-bottom: 8px; display: flex; align-items: center; }
.check-list.small i { color: var(--primary-blue); margin-right: 10px; font-size: 0.9rem; }

.price-area {
    margin-top: auto; padding-top: 20px; border-top: 1px solid #f5f5f5;
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px;
}
.price-label { font-size: 0.8rem; text-transform: uppercase; color: #888; }
.price-value { font-size: 1.3rem; font-weight: 700; color: var(--text-dark); }

.cta-button {
    display: block; width: 100%; padding: 16px;
    text-align: center; text-transform: uppercase; font-weight: 600; letter-spacing: 1px;
    border-radius: var(--radius-pill); transition: 0.3s;
}
.cta-button.primary { background: var(--primary-blue); color: #fff; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.cta-button.primary:hover { background: #3a8bb5; transform: translateY(-2px); }

.cta-button.outline { background: transparent; border: 2px solid var(--text-dark); color: var(--text-dark); }
.cta-button.outline:hover { background: var(--text-dark); color: #fff; }

/* --- 11. TESTIMONIALS --- */
.testimonial-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius-soft);
    padding: 35px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    box-shadow: var(--shadow-soft);
    border-color: rgba(98, 181, 229, 0.2);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, #f8fbfd 0%, #fff 100%);
    border: 1px solid rgba(98, 181, 229, 0.15);
    margin-bottom: 30px;
}

/* Audio Testimonial */
.audio-testimonial {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}
.audio-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), #3a8bb5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.audio-content {
    flex: 1;
}
.audio-label {
    display: inline-block;
    background: var(--primary-blue);
    color: #fff;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.audio-content h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}
.audio-context {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
}

.audio-player {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f5f7f9;
    padding: 12px 20px;
    border-radius: 30px;
    margin-bottom: 10px;
}
.play-btn {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.play-btn:hover {
    background: #3a8bb5;
    transform: scale(1.05);
}
.audio-wave {
    display: flex;
    align-items: center;
    gap: 3px;
    flex: 1;
}
.audio-wave span {
    width: 3px;
    height: 20px;
    background: #ccc;
    border-radius: 3px;
}
.audio-wave span:nth-child(odd) { height: 12px; }
.audio-wave span:nth-child(3n) { height: 25px; }
.audio-duration {
    font-size: 0.85rem;
    color: var(--text-light);
    white-space: nowrap;
}
.audio-placeholder-note {
    font-size: 0.8rem;
    color: #999;
    font-style: italic;
}

/* Text Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}
.testimonial-card .quote-icon {
    color: var(--primary-blue);
    opacity: 0.2;
    font-size: 2rem;
    margin-bottom: 15px;
}
.testimonial-card > p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}
.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.95rem;
}
.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* --- 12. SOCIAL MEDIA SEKTION --- */
.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-white);
    padding: 25px 30px;
    border-radius: var(--radius-soft);
    border: 1px solid #eee;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    position: relative;
}
.social-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.social-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    flex-shrink: 0;
}
.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social-icon.tiktok {
    background: #000;
}
.social-icon.youtube {
    background: #ff0000;
}

.social-info h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}
.social-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 5px;
}
.social-handle {
    font-size: 0.8rem;
    color: var(--primary-blue);
    font-weight: 500;
}

.social-external {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #ccc;
    font-size: 0.9rem;
    transition: 0.3s;
}
.social-card:hover .social-external {
    color: var(--primary-blue);
}

.social-hint {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.social-hint i {
    color: var(--primary-blue);
}

/* --- 13. DSGVO MODAL --- */
.dsgvo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.dsgvo-modal.active {
    display: flex;
}

.dsgvo-modal-content {
    background: #fff;
    border-radius: var(--radius-soft);
    max-width: 480px;
    width: 100%;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
}
@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.dsgvo-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #eee;
}
.dsgvo-header i {
    font-size: 1.3rem;
    color: var(--primary-blue);
}
.dsgvo-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.dsgvo-body {
    padding: 25px 30px;
}
.dsgvo-body > p {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.dsgvo-info {
    display: flex;
    gap: 15px;
    background: #fff9e6;
    border: 1px solid #ffeeba;
    border-radius: 8px;
    padding: 15px;
}
.dsgvo-info > i {
    color: #d4a000;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.dsgvo-info strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-size: 0.9rem;
}
.dsgvo-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.dsgvo-actions {
    display: flex;
    gap: 12px;
    padding: 0 30px 20px;
}
.dsgvo-btn {
    flex: 1;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.dsgvo-btn.secondary {
    background: #f5f5f5;
    color: var(--text-dark);
}
.dsgvo-btn.secondary:hover {
    background: #eee;
}
.dsgvo-btn.primary {
    background: var(--primary-blue);
    color: #fff;
}
.dsgvo-btn.primary:hover {
    background: #3a8bb5;
}

.dsgvo-remember {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #f8f9fa;
    font-size: 0.85rem;
    color: var(--text-light);
    cursor: pointer;
    border-top: 1px solid #eee;
}
.dsgvo-remember input {
    cursor: pointer;
}

/* --- 14. FOOTER & SPLASH --- */
.footer-splash { width: 100%; height: 300px; overflow: hidden; }
.footer-splash img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

footer { background: #222; color: #999; padding: 80px 0 30px; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-col h4 { color: var(--bg-white); margin-bottom: 25px; text-transform: uppercase; letter-spacing: 1px; font-size: 1rem; }
.footer-small { font-size: 0.8rem; color: #666; margin-top: 15px; }
.footer-col a:hover { color: var(--primary-blue); text-decoration: underline; }
.social-footer a { font-size: 1.5rem; color: var(--bg-white); transition: 0.3s; display: inline-block; margin-top: 10px; }
.social-footer a:hover { color: var(--primary-blue); transform: scale(1.1); }
.footer-logo { width: 120px; margin-bottom: 20px; opacity: 0.7; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.copyright { text-align: center; border-top: 1px solid #333; padding-top: 30px; color: #555; font-size: 0.8rem; }

/* --- 12. ANIMATION CLASSES --- */
.fade-in-up { opacity: 0; transform: translateY(30px); animation: fadeInUp 1.2s forwards; }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

.fade-in-on-scroll { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* --- 13. MOBILE RESPONSIVE --- */
.hamburger {
    display: none; flex-direction: column; justify-content: space-between;
    width: 30px; height: 22px; cursor: pointer; z-index: 1001;
}
.hamburger span { width: 100%; height: 2px; background: var(--text-dark); transition: 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    position: fixed; top: 0; right: 0; width: 100%; height: 100vh;
    background: var(--bg-white); z-index: 999; padding-top: 100px;
    transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; align-items: center; gap: 25px; }
.mobile-menu a { font-size: 1.4rem; text-transform: uppercase; font-weight: 600; color: var(--text-dark); }
.separator { width: 50px; height: 2px; background: #eee; margin: 10px 0; }
.external-link { font-size: 1rem !important; color: var(--primary-blue) !important; text-transform: none !important; }

/* === TABLET (max 900px) === */
@media (max-width: 900px) {
    /* Header: Rechtes Logo ausblenden */
    .logo-right { display: none; }
    .header-inner {
        justify-content: space-between;
        padding: 0 15px;
    }
    #desktop-nav { display: none; }
    .hamburger { display: flex; }
    .logo-teamshot-header { height: 38px; }

    /* Hero anpassen */
    .hero-slogan { font-size: 1.2rem; letter-spacing: 2px; }
    .hero-logo-big { width: 75vw; max-width: 400px; }

    /* Layout Mobile Stack */
    .slide, .grid-2, .split-concepts { grid-template-columns: 1fr; }

    /* Methoden-Wrapper */
    .methoden-header { padding: 30px 25px 25px; }
    .angebote-grid { grid-template-columns: 1fr; }
    .angebot-card { border-right: none; }
    .angebot-card:nth-child(n+4) { border-bottom: 1px solid #f0f0f0; }
    .angebot-card:last-child { border-bottom: none; }

    /* Slider */
    .slide-img-container { height: 250px; order: -1; }
    .slide-content-box { margin-left: 0; margin-top: -30px; padding: 30px 20px; }
    .slide { display: flex; flex-direction: column; }
    .modern-controls { bottom: -20px; right: 50%; transform: translateX(50%); width: 100%; justify-content: center; }

    /* Team */
    .team-member { flex-direction: column; text-align: center; }
    .team-member img { margin: 0 auto; }
    .socials { justify-content: center; }

    /* Testimonials */
    .audio-testimonial { flex-direction: column; text-align: center; }
    .audio-avatar { margin: 0 auto; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .audio-player { flex-wrap: wrap; justify-content: center; }
    .audio-wave { order: 3; width: 100%; justify-content: center; margin-top: 10px; }

    /* Social Media */
    .social-grid { grid-template-columns: 1fr; }
    .social-card { padding: 20px; }
    .social-external { display: none; }

    /* DSGVO Modal */
    .dsgvo-modal-content { margin: 10px; }
    .dsgvo-header, .dsgvo-body { padding: 20px; }
    .dsgvo-actions { flex-direction: column; padding: 0 20px 15px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-col.right { align-items: center; display: flex; flex-direction: column; }
}

/* === MOBILE (max 600px) === */
@media (max-width: 600px) {
    /* Header kompakt */
    header { height: 60px; }
    .header-inner { padding: 0 12px; }
    .logo-teamshot-header { height: 32px; }
    .hamburger { width: 26px; height: 18px; }
    .hamburger span { height: 2px; }

    /* Hero für kleine Screens */
    .hero-section { min-height: 100vh; min-height: 100dvh; }
    .hero-logo-big {
        width: 85vw;
        max-width: 320px;
        margin-bottom: 20px;
    }
    .hero-slogan {
        font-size: 0.95rem;
        letter-spacing: 1.5px;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    .scroll-down-btn { font-size: 0.8rem; }
    .scroll-down-btn .scroll-arrow { width: 16px; height: 10px; }

    /* Section Padding reduzieren */
    .section-padding { padding: 80px 15px; }
    .section-title { margin-bottom: 50px; }
    .section-title h2 { font-size: 1.8rem; }
    .section-title p { font-size: 1rem; }

    /* Impressionen-Strip: Statisches Grid statt Marquee */
    .impressionen-strip {
        padding: 20px 15px;
        overflow: visible;
    }
    .impressionen-track {
        animation: none;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        width: 100%;
    }
    .impressionen-track img {
        width: 100%;
        height: 80px;
        border-radius: 6px;
    }
    /* Nur erste 6 Bilder auf Mobile zeigen */
    .impressionen-track img:nth-child(n+7) {
        display: none;
    }
    .impressionen-strip::before,
    .impressionen-strip::after {
        display: none;
    }

    /* Angebote-Cards kompakter */
    .angebot-card { padding: 25px 20px; }
    .angebot-nummer { font-size: 2rem; }
    .angebot-card h4 { font-size: 1rem; }
    .angebot-card p { font-size: 0.85rem; }

    /* Slider */
    .slide-img-container { height: 200px; }
    .slide-content-box { padding: 25px 15px; }
    .slide-content-box h3 { font-size: 1.3rem; }
    .slide-content-box li { font-size: 0.9rem; margin-bottom: 10px; padding-bottom: 8px; }

    /* Fakten */
    .fakten-section { padding: 100px 15px; }
    .glass-card { padding: 30px 20px; }
    .big-number { font-size: 3.5rem; }
    .glass-card h3 { font-size: 1.2rem; }
    .glass-card p { font-size: 0.9rem; }

    /* Team */
    .team-img { width: 120px; height: 120px; }
    .team-content h3 { font-size: 1.2rem; }
    .team-content p { font-size: 0.9rem; }

    /* Location/Datscha */
    .concept-header { padding: 20px 20px 10px; flex-direction: column; gap: 10px; align-items: flex-start; }
    .concept-body { padding: 0 20px 25px; }
    .price-value { font-size: 1.1rem; }
    .cta-button { padding: 14px; font-size: 0.85rem; }

    /* Testimonials */
    .testimonial-card { padding: 25px 20px; }
    .audio-avatar { width: 60px; height: 60px; font-size: 1.2rem; }
    .audio-player { padding: 10px 15px; }

    /* Social */
    .social-card { gap: 15px; padding: 18px; }
    .social-icon { width: 45px; height: 45px; font-size: 1.2rem; }
    .social-info h4 { font-size: 1rem; }
    .social-info p { font-size: 0.8rem; }
    .social-hint { font-size: 0.75rem; }

    /* Footer */
    .footer-splash { height: 200px; }
    footer { padding: 60px 0 25px; }
    .footer-col h4 { font-size: 0.9rem; margin-bottom: 15px; }
    .footer-col p { font-size: 0.85rem; }
    .footer-logo { width: 100px; }
}

/* === SMALL MOBILE (max 380px) === */
@media (max-width: 380px) {
    .hero-logo-big { width: 90vw; }
    .hero-slogan { font-size: 0.85rem; letter-spacing: 1px; }

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

    .impressionen-track {
        grid-template-columns: repeat(2, 1fr);
    }
    .impressionen-track img:nth-child(n+5) {
        display: none;
    }

    .angebot-card { padding: 20px 15px; }
}