/* ===== CSS Variables - Light + Blue Theme ===== */
:root {
    --color-primary: #387797;
    --color-primary-dark: #2c5f7a;
    --color-primary-light: #4a94b5;
    --color-accent: #387797;
    --color-accent-light: #4a94b5;
    --color-dark: #1a1a1a;
    --color-darker: #0f0f0f;
    --color-surface: #ffffff;
    --color-surface-alt: #f8f8f8;
    --color-surface-hover: #f0f0f0;
    --color-text: #1a1a1a;
    --color-text-secondary: #555555;
    --color-text-muted: #888888;
    --color-border: #e0e0e0;
    --color-border-light: #f0f0f0;
    --color-white: #ffffff;
    --color-blue-bg: #387797;
    --color-blue-dark-bg: #2c5f7a;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-max: 1200px;
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s ease;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--color-white);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--color-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary-dark); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 1.5rem; }
.accent { color: var(--color-accent); }

/* ===== Navbar ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
    padding: 1rem 0;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 0.6rem 0;
}
.navbar.scrolled .logo-text { color: #1e3050; }
.navbar.scrolled .nav-links a { color: var(--color-text); }
.navbar.scrolled .nav-cta { background: var(--color-accent) !important; color: white !important; }
.navbar.scrolled .hamburger span { background: var(--color-text); }
.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo-img {
    height: 44px;
    width: auto;
    aspect-ratio: 2172 / 724;
    object-fit: contain;
    transition: filter var(--transition);
}
.navbar.scrolled .nav-logo-img {
    filter: none;
}
/* Navbar scrolled logo handled via filter */
.nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
}
.nav-links a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.nav-links a:hover { color: white; background: rgba(56,119,151,0.3); }
.nav-cta {
    background: var(--color-accent) !important;
    color: white !important;
    font-weight: 600 !important;
    border-radius: var(--radius-sm) !important;
}
.nav-cta:hover { background: var(--color-primary-dark) !important; color: white !important; }
.hamburger {
    display: none;
    background: none; border: none;
    cursor: pointer; padding: 0.5rem;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    margin: 5px 0;
    transition: all var(--transition);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-darker);
}
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.hero-shop-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.65) saturate(0.85);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.45) 0%,
        rgba(0,0,0,0.2) 35%,
        rgba(0,0,0,0.2) 60%,
        rgba(0,0,0,0.75) 100%
    );
}
.hero-content {
    position: relative;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 700;
    color: #1e3050;
    letter-spacing: 5px;
    margin-bottom: 0;
    text-shadow: 0 2px 30px rgba(0,0,0,0.3);
    text-align: center;
    line-height: 1.15;
}
.hero-gmbh {
    font-size: 0.35em;
    font-weight: 500;
    letter-spacing: 6px;
    text-transform: uppercase;
    opacity: 0.8;
}
.hero-velos {
    font-size: 0.28em;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 0.7;
}
.hero-subtitle {
    display: none;
}
.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 550px;
    margin: 1.5rem auto 2rem;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-dots { display: none; }

/* Hero Logo */
.hero-logo {
    max-width: 950px;
    width: 95%;
    margin: 0 auto 1.5rem;
    display: block;
    aspect-ratio: 2172 / 724;
    object-fit: contain;
    filter:
        brightness(1.15)
        drop-shadow(0 0 20px rgba(57, 168, 232, 0.9))
        drop-shadow(0 0 50px rgba(57, 168, 232, 0.4))
        drop-shadow(0 4px 16px rgba(0, 0, 0, 0.7));
    transition: filter 0.3s ease;
}
.hero-logo:hover {
    filter:
        brightness(1.3)
        drop-shadow(0 0 30px rgba(57, 168, 232, 0.95))
        drop-shadow(0 0 70px rgba(57, 168, 232, 0.5))
        drop-shadow(0 4px 20px rgba(0, 0, 0, 0.8));
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
}
.btn-primary {
    background: var(--color-accent);
    color: white;
    border-color: var(--color-accent);
}
.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(56,119,151,0.4);
}
.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}
.scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    margin: 0 auto;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; height: 40px; }
    50% { opacity: 1; height: 50px; }
}

/* Animations */
.fadeInUp {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Slideshow Strip ===== */
.slideshow-strip {
    overflow: hidden;
    background: var(--color-darker);
    border-top: 3px solid var(--color-accent);
    border-bottom: 3px solid var(--color-accent);
}
.strip-track {
    display: flex;
    animation: slideScroll 300s linear infinite;
    width: max-content;
}
.strip-track:hover { animation-play-state: paused; }
.strip-img {
    height: 140px;
    width: auto;
    flex-shrink: 0;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}
.strip-img:hover { opacity: 1; }
@keyframes slideScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}
.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}
.section-desc {
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ===== About ===== */
.about {
    padding: 6rem 0;
    background: var(--color-white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}
.about-images {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.about-img-single {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.about-lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 1rem;
}
.about-content p {
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
}
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}
.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--color-blue-bg);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: default;
    transition: all var(--transition);
    border: 2px solid transparent;
}
.feature:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(56, 119, 151, 0.3);
}
.feature-icon { font-size: 1.3rem; }

/* ===== BFLITZER ===== */
.bflitzer {
    padding: 6rem 0;
    background: var(--color-surface-alt);
}
.bflitzer-hero {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}
.bflitzer-hero-img {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}
.bflitzer-hero-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
}
.bflitzer-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-accent);
    color: white;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 50px;
}
.bflitzer-hero-text h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}
.bflitzer-lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}
.bflitzer-hero-text p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.bflitzer-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}
.bflitzer-highlight {
    background: var(--color-white);
    border-radius: var(--radius-sm);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid var(--color-border-light);
    transition: all var(--transition);
}
.bflitzer-highlight:hover {
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(56, 119, 151, 0.15);
}
.bflitzer-highlight-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}
.bflitzer-highlight strong {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text);
    font-family: var(--font-heading);
}
.bflitzer-highlight span {
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

/* BFLITZER Gallery */
.bflitzer-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.bflitzer-gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    cursor: zoom-in;
}
.bflitzer-gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.bflitzer-gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform var(--transition);
}
.bflitzer-gallery-item:hover img {
    transform: scale(1.03);
}
.bflitzer-gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 2.5rem 1rem 1rem;
    text-transform: uppercase;
}

/* BFLITZER zoom hint on hero image */
.bflitzer-zoom-hint {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.85);
    color: var(--color-text);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}
.bflitzer-hero-img:hover .bflitzer-zoom-hint {
    opacity: 1;
}

/* BFLITZER Lightbox */
.bflitzer-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.bflitzer-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}
.bflitzer-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 60px rgba(0,0,0,0.5);
}
.bflitzer-lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    font-size: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
    z-index: 10001;
    line-height: 1;
}
.bflitzer-lightbox-close:hover {
    background: rgba(255,255,255,0.3);
}

/* BFLITZER Responsive */
@media (max-width: 1024px) {
    .bflitzer-hero {
        grid-template-columns: 1fr;
    }
    .bflitzer-hero-img {
        order: -1;
    }
    .bflitzer-highlights {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .bflitzer-highlights {
        grid-template-columns: 1fr;
    }
    .bflitzer-gallery {
        grid-template-columns: 1fr;
    }
    .bflitzer-gallery-item img {
        height: 220px;
    }
}

/* ===== Marken ===== */
.marken {
    padding: 6rem 0;
    background: var(--color-surface-alt);
}
.marken-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.marken-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all var(--transition);
    text-decoration: none;
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow);
}
.marken-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-accent);
}
.marken-logo-wrap {
    width: 140px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: var(--color-surface-alt);
    border-radius: 8px;
}
.marken-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}
.marken-logo-fallback {
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.marken-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: 1px;
}

/* ===== Service ===== */
.service {
    padding: 6rem 0;
    background: var(--color-white);
}
.service-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}
.service-cards-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.service-img-side {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}
.service-side-photo {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
    display: block;
}
.service-card {
    background: var(--color-surface-alt);
    border-radius: var(--radius);
    padding: 1.25rem;
    border: 1px solid var(--color-border-light);
    transition: all var(--transition);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-accent);
    background: var(--color-white);
}
.service-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 0.5rem;
    color: var(--color-accent);
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}
.service-card p {
    color: var(--color-text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* ===== Galerie ===== */
.galerie {
    padding: 6rem 0;
    background: var(--color-surface-alt);
}
.galerie-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
}
.galerie-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.galerie-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform var(--transition), filter var(--transition);
}
.galerie-item:hover .galerie-img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* ===== Info Bar ===== */
.info-bar {
    padding: 5rem 0;
    background: var(--color-blue-bg);
    color: white;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.info-card {
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
}
.info-icon {
    width: 40px;
    height: 40px;
    color: white;
    margin-bottom: 1rem;
}
.info-icon svg { width: 100%; height: 100%; }
.info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}
.info-list p { color: rgba(255,255,255,0.85); margin-bottom: 0.25rem; }
.info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.85);
}
.info-row span:first-child { font-weight: 500; color: white; }
.info-link {
    color: white !important;
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.info-link:hover { color: rgba(255,255,255,0.7) !important; }

/* ===== Kontakt ===== */
.kontakt {
    padding: 6rem 0;
    background: var(--color-surface-alt);
}
.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
}
.kontakt-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.kontakt-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--color-white);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    text-decoration: none;
    transition: all var(--transition);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow);
}
.kontakt-card:hover {
    border-color: var(--color-accent);
    transform: translateX(4px);
    box-shadow: var(--shadow-hover);
}
.kontakt-card-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--color-accent);
}
.kontakt-card-icon svg { width: 100%; height: 100%; }
.kontakt-card-info { flex: 1; }
.kontakt-card-info h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.kontakt-card-info span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
}
.kontakt-card-arrow {
    color: var(--color-text-muted);
    font-size: 1.2rem;
    transition: all var(--transition);
}
.kontakt-card:hover .kontakt-card-arrow { color: var(--color-accent); }
.kontakt-map {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 350px;
    background: #eee;
    box-shadow: var(--shadow);
}

/* ===== Footer ===== */
.footer {
    background: var(--color-darker);
    padding: 4rem 0 0;
    color: rgba(255,255,255,0.7);
}
.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 2rem;
    padding-bottom: 2rem;
}
.footer-logo-img {
    max-width: 280px;
    width: 100%;
    aspect-ratio: 2172 / 724;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}
.footer-brand p { margin-top: 0.25rem; font-size: 0.95rem; color: rgba(255,255,255,0.5); }
.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: white;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--color-accent-light); }
.footer-contact p { margin-bottom: 0.25rem; font-size: 0.9rem; }
.footer-contact a { color: var(--color-accent-light); }
.footer-contact a:hover { color: white; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
}
.footer-legal { display: flex; gap: 1rem; }
.footer-toggle {
    background: none; border: none;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    cursor: pointer;
    transition: color var(--transition);
    font-family: var(--font-body);
}
.footer-toggle:hover { color: var(--color-accent-light); }
.toggle-chevron {
    display: inline-block;
    transition: transform var(--transition);
    font-size: 0.7rem;
}
.footer-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.footer-collapse-inner {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-collapse-inner h4,
.footer-collapse-inner h5 {
    font-family: var(--font-heading);
    color: white;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}
.footer-collapse-inner h5 {
    margin-top: 1rem;
}
.footer-collapse-inner p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .marken-grid { grid-template-columns: repeat(3, 1fr); }
    .service-layout { grid-template-columns: 1fr; }
    .service-cards-side { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr 1fr; }
    .footer-main { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .hamburger { display: block; position: relative; z-index: 1100; }
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 280px; height: 100vh;
        background: var(--color-darker);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0.25rem;
        transition: right var(--transition);
        box-shadow: -5px 0 30px rgba(0,0,0,0.5);
        z-index: 1050;
        overflow-y: auto;
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1rem; padding: 0.75rem 1rem; width: 100%; color: rgba(255,255,255,0.85) !important; }
    .nav-links a:hover { background: rgba(56,119,151,0.2); color: white !important; }
    .nav-links a.active { color: var(--color-accent-light) !important; }
    .nav-links li:last-child { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.15); }
    .nav-cta { margin-top: 0 !important; }
    /* Override scrolled state — mobile menu always uses dark bg with white text */
    .navbar.scrolled .nav-links a { color: rgba(255,255,255,0.85) !important; }
    .navbar.scrolled .nav-links a:hover { color: white !important; }
    .navbar.scrolled .nav-links a.active { color: var(--color-accent-light) !important; }
    .navbar.scrolled .nav-cta { background: var(--color-accent) !important; color: white !important; }
    .navbar.scrolled .hamburger span { background: var(--color-text); }
    .navbar.scrolled .hamburger.active span { background: white; }
    /* Mobile menu overlay */
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 1040;
        cursor: pointer;
    }
    .nav-overlay.active { display: block; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .strip-img { height: 100px; }
    .hero-logo { width: 100%; max-width: 100%; margin-bottom: 1.5rem; }
    .hero-content { padding: 1rem 0.75rem; }
    .hero-title { letter-spacing: 3px; }
    .hero-subtitle { letter-spacing: 4px; }
    .about-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: repeat(2, 1fr); }
    .marken-grid { grid-template-columns: repeat(2, 1fr); }
    .service-layout { grid-template-columns: 1fr; }
    .service-cards-side { grid-template-columns: 1fr; }
    .info-grid { grid-template-columns: 1fr; }
    .kontakt-grid { grid-template-columns: 1fr; }
    .galerie-grid { grid-template-columns: repeat(2, 1fr); }
    .galerie-img { height: 100px; }
    .footer-main { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}
@media (max-width: 480px) {
    .marken-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .marken-logo-wrap { width: 100px; height: 60px; }
    .about-features { grid-template-columns: 1fr; }
    .galerie-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 280px; text-align: center; }
    .hero-shop-banner { max-width: 300px; }
    .hero-logo { width: 98%; max-width: 98%; }
    .hero-content { padding: 1rem; }
    .hero-buttons { margin-top: 0.5rem; }
    .nav-logo-img { height: 32px; }
}