/* ==========================================================================
   Express Entrümpelung VC – Stylesheet (Relaunch)
   ========================================================================== */

:root {
    --color-accent: #f97316;
    --color-accent-dark: #ea580c;
    --color-accent-soft: #fff1e6;
    --color-navy: #1e3a8a;
    --color-navy-dark: #0f1f4d;
    --color-ink: #0f172a;
    --color-body: #3f4a5e;
    --color-muted: #6b7280;
    --color-bg: #f7f8fb;
    --color-surface: #ffffff;
    --color-border: #e7e9f0;
    --color-whatsapp: #25d366;
    --color-whatsapp-dark: #1da851;
    --color-star: #f59e0b;

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-pill: 999px;

    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 12px 28px -10px rgba(15, 23, 42, 0.18);
    --shadow-lg: 0 30px 60px -20px rgba(15, 23, 42, 0.35);

    --container: 1160px;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --mobile-bar-height: 64px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

html { height: 100%; }
body {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    font-family: var(--font-sans);
    background: var(--color-bg);
    color: var(--color-body);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

main { flex: 1 0 auto; }

img { max-width: 100%; display: block; }
a { color: inherit; }

.skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--color-accent); color: white;
    padding: 14px 22px; z-index: 2000;
    border-radius: 0 0 var(--radius-sm) 0;
    text-decoration: none; font-weight: 700;
}
.skip-link:focus { left: 0; }

.visually-hidden {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ---------- Sticky Header ---------- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px clamp(20px, 4vw, 48px);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: var(--shadow-sm);
    padding-top: 10px;
    padding-bottom: 10px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 52px; height: 52px; border-radius: 50%; object-fit: contain; background: white; box-shadow: var(--shadow-sm); }
.brand span {
    font-weight: 800; font-size: 17px; color: white; letter-spacing: -0.01em;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}
.site-header.is-scrolled .brand span { color: var(--color-ink); text-shadow: none; }

.header-right { display: flex; align-items: center; gap: 32px; }

.header-nav-inline { display: none; align-items: center; gap: 26px; }
.header-nav-inline a {
    color: rgba(255,255,255,0.9); text-decoration: none; font-weight: 600; font-size: 15px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.35);
    transition: color 0.2s ease;
    white-space: nowrap;
}
.header-nav-inline a:hover, .header-nav-inline a[aria-current="page"] { color: var(--color-accent); }
.site-header.is-scrolled .header-nav-inline a { color: var(--color-body); text-shadow: none; }
.site-header.is-scrolled .header-nav-inline a:hover, .site-header.is-scrolled .header-nav-inline a[aria-current="page"] { color: var(--color-accent); }

.header-actions { display: flex; align-items: center; gap: 10px; }

@media (min-width: 1000px) {
    .header-nav-inline { display: flex; }
    .header-actions .menu-button { display: none; }
}

.icon-button {
    width: 46px; height: 46px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
    flex-shrink: 0;
}
.icon-button svg { width: 20px; height: 20px; }
.icon-button:hover { transform: translateY(-2px); }

.icon-button--ghost {
    color: white;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.4);
}
.site-header.is-scrolled .icon-button--ghost { color: var(--color-ink); background: var(--color-bg); border-color: var(--color-border); }

.icon-button--call { color: white; background: var(--color-accent); border: 1px solid var(--color-accent); }
.icon-button--whatsapp { color: white; background: var(--color-whatsapp); border: 1px solid var(--color-whatsapp); }
.icon-button--call:hover { background: var(--color-accent-dark); }
.icon-button--whatsapp:hover { background: var(--color-whatsapp-dark); }

.header-actions .icon-button--call,
.header-actions .icon-button--whatsapp { display: none; }
@media (min-width: 560px) {
    .header-actions .icon-button--call,
    .header-actions .icon-button--whatsapp { display: flex; }
}

.menu-button { cursor: pointer; border: none; }

/* Vollflächiges Overlay-Menü */
.nav-menu {
    position: fixed; inset: 0;
    background: var(--color-navy-dark);
    z-index: 200;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    overflow-y: auto;
    padding: 100px 20px 40px;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.nav-menu.active { opacity: 1; visibility: visible; }
.nav-menu ul { list-style: none; text-align: center; width: 100%; max-width: 420px; }
.nav-menu li { margin: 10px 0; }
.nav-menu a {
    color: rgba(255,255,255,0.8); text-decoration: none;
    font-size: clamp(19px, 4.5vw, 26px); font-weight: 700;
    transition: color 0.2s ease;
}
.nav-menu a:hover, .nav-menu a:focus, .nav-menu a[aria-current="page"] { color: var(--color-accent); }
.nav-group-label {
    display: block;
    color: rgba(255,255,255,0.4);
    font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
    margin: 28px 0 4px;
}
.nav-menu .nav-sub a { font-size: clamp(15px, 3.5vw, 18px); color: rgba(255,255,255,0.65); font-weight: 600; }
.nav-menu .nav-sub li { margin: 6px 0; }
.nav-divider { border: none; border-top: 1px solid rgba(255,255,255,0.15); margin: 24px 0; }
.nav-legal a { font-size: 14px; color: rgba(255,255,255,0.45); font-weight: 600; }
.nav-legal li { margin: 4px 0; }

.nav-close {
    position: fixed; top: 24px; right: clamp(20px, 4vw, 48px);
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3);
    color: white; cursor: pointer; z-index: 210;
    display: flex; align-items: center; justify-content: center;
}
.nav-close svg { width: 20px; height: 20px; }
body.menu-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    color: white;
    text-align: center;
    background-image: linear-gradient(180deg, rgba(15,23,42,0.35) 0%, rgba(15,23,42,0.55) 55%, rgba(15,23,42,0.85) 100%), url('img/hintergrund.jpg');
    background-size: cover;
    background-position: center;
    display: flex; align-items: center; justify-content: center;
    padding: 160px 20px 100px;
}
.hero--full { min-height: 100vh; }
.hero--page { min-height: 58vh; }
.hero--small { min-height: 38vh; padding-top: 130px; }

.hero-inner { max-width: 900px; }

.hero h1 {
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.hero--full h1 { font-size: clamp(2rem, 7vw, 4.5rem); line-height: 1.05; }
.hero--page h1 { font-size: clamp(1.85rem, 5.5vw, 3.1rem); line-height: 1.1; }
.hero--small h1 { font-size: clamp(1.6rem, 4.5vw, 2.25rem); margin-bottom: 0; }

.hero .subtitle {
    font-size: clamp(16px, 2.2vw, 20px);
    max-width: 720px; margin: 0 auto 36px;
    color: rgba(255,255,255,0.92);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 15px 30px;
    border-radius: var(--radius-pill);
    font-weight: 700; font-size: 16px;
    text-decoration: none; border: none; cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--color-accent); color: white; box-shadow: 0 10px 24px -8px rgba(249, 115, 22, 0.6); }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--color-accent-dark); transform: translateY(-2px); box-shadow: 0 16px 30px -8px rgba(249, 115, 22, 0.7); }
.btn-whatsapp { background: var(--color-whatsapp); color: white; box-shadow: 0 10px 24px -8px rgba(37, 211, 102, 0.55); }
.btn-whatsapp:hover, .btn-whatsapp:focus-visible { background: var(--color-whatsapp-dark); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.5); backdrop-filter: blur(6px); }
.btn-ghost:hover, .btn-ghost:focus-visible { background: rgba(255,255,255,0.2); transform: translateY(-2px); }

/* Vertrauens-Leiste unter dem Hero */
.trust-strip { background: var(--color-surface); border-bottom: 1px solid var(--color-border); }
.trust-strip__inner {
    max-width: var(--container); margin: 0 auto;
    padding: 22px 20px;
    display: flex; flex-wrap: wrap; gap: 18px 40px;
    justify-content: center;
    font-size: 14px; font-weight: 700; color: var(--color-ink);
}
.trust-strip__item { display: flex; align-items: center; gap: 8px; }
.trust-strip__item svg { width: 18px; height: 18px; color: var(--color-accent); flex-shrink: 0; }

/* ---------- Notice / Emergency banner ---------- */
.notice-banner {
    background: linear-gradient(135deg, var(--color-navy) 0%, #2b4fc4 100%);
    color: white;
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    max-width: 880px;
    margin: -56px auto 0;
    position: relative;
    z-index: 5;
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.notice-banner h3 { font-size: 19px; margin-bottom: 6px; }
.notice-banner a { color: white; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Sections ---------- */
.section { padding: 96px 20px; scroll-margin-top: 90px; }
.section--tight { padding: 64px 20px; }
.section-inner { max-width: var(--container); margin: 0 auto; }
.section-inner--narrow { max-width: 760px; }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-head .eyebrow-label {
    display: inline-block; color: var(--color-accent); font-weight: 800;
    letter-spacing: 0.06em; text-transform: uppercase; font-size: 13px; margin-bottom: 12px;
}
.section-head h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; color: var(--color-ink);
    letter-spacing: -0.02em; margin-bottom: 14px;
}
.section-head p { font-size: 17px; color: var(--color-muted); }

.prose { max-width: 760px; margin: 0 auto; text-align: center; }
.prose h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; color: var(--color-ink); letter-spacing: -0.02em; margin-bottom: 20px; }
.prose p { font-size: 17px; color: var(--color-body); margin-bottom: 16px; }
.prose--left, .prose--left p, .prose--left h2, .prose--left h3 { text-align: left; }
.prose--left h2 { font-size: 22px; font-weight: 800; color: var(--color-ink); margin: 36px 0 14px; letter-spacing: -0.01em; }
.prose--left h3 { font-size: 17px; font-weight: 700; color: var(--color-ink); margin: 22px 0 10px; }
.prose--left h2:first-child, .prose--left h3:first-child { margin-top: 0; }
.prose--left p { font-size: 15px; }

/* ---------- Card grid ---------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--color-accent-soft);
    color: var(--color-accent);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { color: var(--color-ink); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.card p { color: var(--color-muted); font-size: 15px; }

/* ---------- Leistungen-Übersicht (Startseite) ---------- */
.service-links { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-top: 40px; }
.service-link {
    display: flex; align-items: center; gap: 16px;
    background: var(--color-surface); border: 1px solid var(--color-border);
    border-radius: var(--radius-md); padding: 20px 22px;
    text-decoration: none; color: var(--color-ink);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-link:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--color-accent); }
.service-link .card-icon { margin-bottom: 0; flex-shrink: 0; }
.service-link strong { display: block; font-size: 16px; margin-bottom: 2px; }
.service-link span.desc { font-size: 13px; color: var(--color-muted); }
.service-link .arrow { margin-left: auto; color: var(--color-accent); flex-shrink: 0; }
.service-link .arrow svg { width: 18px; height: 18px; }

/* ---------- Foto-Galerie ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin-top: 40px; }
.gallery-item { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); position: relative; aspect-ratio: 3 / 4; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }

.certificate-wrap { text-align: center; }
.certificate-wrap img { border-radius: var(--radius-md); box-shadow: var(--shadow-md); margin: 0 auto; }

/* ---------- Ablauf / Prozess ---------- */
.process { display: grid; gap: 28px; margin-top: 48px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); counter-reset: step; }
.process-step { text-align: center; position: relative; }
.process-step .num {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--color-navy); color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 800;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-md);
}
.process-step h3 { font-size: 16px; font-weight: 800; color: var(--color-ink); margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--color-muted); }
@media (min-width: 700px) {
    .process { grid-template-columns: repeat(5, 1fr); }
    .process-step:not(:last-child)::after {
        content: ''; position: absolute; top: 28px; left: calc(50% + 40px); width: calc(100% - 56px);
        height: 2px; background: repeating-linear-gradient(90deg, var(--color-border) 0 8px, transparent 8px 14px);
    }
}

/* ---------- Bewertungen ---------- */
.rating-summary {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: 16px; margin: 0 auto 44px; text-align: center;
}
.rating-summary .score { font-size: 40px; font-weight: 800; color: var(--color-ink); }
.stars { display: inline-flex; gap: 3px; color: var(--color-star); }
.stars svg { width: 20px; height: 20px; }
.rating-summary .meta { font-size: 14px; color: var(--color-muted); }
.rating-summary .source-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--color-bg); border: 1px solid var(--color-border);
    border-radius: var(--radius-pill); padding: 6px 14px; font-size: 13px; font-weight: 700; color: var(--color-body);
}

.review-card {
    background: var(--color-surface); border: 1px solid var(--color-border);
    border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow-sm);
}
.review-card .stars { margin-bottom: 14px; }
.review-card p { font-size: 15px; color: var(--color-body); margin-bottom: 18px; font-style: italic; }
.review-card .author { display: flex; align-items: center; justify-content: space-between; font-size: 13px; }
.review-card .author strong { color: var(--color-ink); font-style: normal; font-size: 14px; }
.review-card .author span { color: var(--color-muted); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--color-surface); border: 1px solid var(--color-border);
    border-radius: var(--radius-md); overflow: hidden;
}
.faq-item summary {
    padding: 20px 24px; cursor: pointer; font-weight: 700; color: var(--color-ink);
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
    flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
    background: var(--color-accent-soft); color: var(--color-accent);
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.25s ease;
}
.faq-item[open] summary .plus { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 24px 22px; font-size: 15px; color: var(--color-muted); }

/* ---------- Kontaktformular ---------- */
.contact-panel {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: clamp(28px, 5vw, 56px);
    max-width: 680px;
    margin: 0 auto;
}
.form-group { margin-bottom: 20px; text-align: left; }
.form-group label { display: block; font-weight: 700; margin-bottom: 8px; font-size: 14px; color: var(--color-ink); }
.form-group input[type="text"], .form-group input[type="tel"], .form-group input[type="email"], .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-family: inherit;
    background: var(--color-bg);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px var(--color-accent-soft);
    background: white;
}
.form-hint { font-size: 12px; color: var(--color-muted); margin-top: 6px; }

.file-drop {
    border: 1.5px dashed var(--color-border);
    border-radius: var(--radius-sm);
    padding: 22px;
    text-align: center;
    background: var(--color-bg);
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    position: relative;
}
.file-drop:hover, .file-drop.drag-over { border-color: var(--color-accent); background: var(--color-accent-soft); }
.file-drop input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.file-drop svg { width: 26px; height: 26px; color: var(--color-accent); margin: 0 auto 8px; }
.file-drop .label { font-weight: 700; font-size: 14px; color: var(--color-ink); }
.file-drop .sub { font-size: 12px; color: var(--color-muted); margin-top: 4px; }
.file-list { margin-top: 10px; font-size: 13px; color: var(--color-body); text-align: left; }
.file-list li { display: flex; justify-content: space-between; padding: 4px 0; }

.checkbox-group { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 24px; text-align: left; font-size: 14px; }
.checkbox-group input[type="checkbox"] { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--color-accent); }
.checkbox-group a { color: var(--color-accent); font-weight: 600; }

.submit-button {
    background: var(--color-accent); color: white;
    padding: 15px 32px; border: none; border-radius: var(--radius-pill);
    font-size: 16px; font-weight: 700; cursor: pointer; width: 100%;
    box-shadow: 0 10px 24px -8px rgba(249, 115, 22, 0.5);
    transition: transform 0.2s ease, background-color 0.2s ease;
}
.submit-button:hover, .submit-button:focus-visible { background: var(--color-accent-dark); transform: translateY(-2px); }
.submit-button:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-feedback { margin-top: 18px; padding: 14px 18px; border-radius: var(--radius-sm); font-weight: 700; text-align: center; display: none; }
.form-feedback.success { display: block; background: #dcfce7; color: #166534; }
.form-feedback.error { display: block; background: #fee2e2; color: #991b1b; }

/* Kontaktinfos (Unterseiten) */
.contact-info { display: flex; flex-direction: column; gap: 10px; align-items: center; margin-top: 24px; }
.contact-info a { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 17px; color: var(--color-ink); text-decoration: none; }
.contact-info a svg { width: 20px; height: 20px; color: var(--color-accent); }
.contact-info a:hover { color: var(--color-accent); }

/* ---------- Footer ---------- */
.site-footer {
    position: relative;
    background: var(--color-navy-dark);
    color: rgba(255,255,255,0.85);
}
.site-footer::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--color-accent) 0%, #ffb17a 35%, transparent 85%);
}
.footer-inner { max-width: var(--container); margin: 0 auto; padding: 64px 20px 32px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
.footer-col h3 {
    color: white; font-size: 13px; font-weight: 800; margin-bottom: 18px;
    text-transform: uppercase; letter-spacing: 0.06em;
}
.footer-col p, .footer-col a { font-size: 14px; color: rgba(255,255,255,0.68); margin-bottom: 10px; text-decoration: none; }
.footer-col a { display: flex; align-items: center; gap: 9px; width: fit-content; transition: color 0.2s ease, transform 0.2s ease; }
.footer-col a:hover { color: var(--color-accent); transform: translateX(2px); }
.footer-col a svg { width: 16px; height: 16px; color: var(--color-accent); flex-shrink: 0; }

.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { width: 48px; height: 48px; border-radius: 50%; background: white; box-shadow: var(--shadow-sm); }
.footer-brand span { font-weight: 800; color: white; font-size: 17px; letter-spacing: -0.01em; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 20px; max-width: 260px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16);
    display: flex; align-items: center; justify-content: center;
    color: white; transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 24px;
    display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
    font-size: 13px; color: rgba(255,255,255,0.5);
}
.footer-bottom-links { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,0.68); text-decoration: none; transition: color 0.2s ease; }
.footer-bottom-links a:hover { color: var(--color-accent); }
.footer-bottom .back-to-top { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.68); text-decoration: none; transition: color 0.2s ease; }
.footer-bottom .back-to-top svg { width: 14px; height: 14px; }
.footer-bottom .back-to-top:hover { color: var(--color-accent); }

@media (min-width: 700px) {
    .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
}

/* ---------- Cookie-Consent ---------- */
.cookie-banner {
    position: fixed; left: 20px; right: 20px; bottom: calc(20px + var(--mobile-bar-offset, 0px));
    max-width: 620px; margin: 0 auto;
    background: var(--color-surface);
    color: var(--color-body);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    padding: 28px;
    z-index: 3000;
    display: none;
    overflow: hidden;
}
.cookie-banner::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--color-accent) 0%, #ffb17a 45%, var(--color-navy) 100%);
}
.cookie-banner.visible { display: block; animation: rise 0.4s ease; }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.cookie-banner__inner { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.cookie-banner__icon {
    flex-shrink: 0;
    width: 46px; height: 46px;
    border-radius: 14px;
    background: var(--color-accent-soft);
    color: var(--color-accent);
    display: flex; align-items: center; justify-content: center;
}
.cookie-banner__icon svg { width: 24px; height: 24px; }
.cookie-banner h3 { font-size: 16px; font-weight: 800; color: var(--color-ink); margin-bottom: 6px; letter-spacing: -0.01em; }
.cookie-banner p { font-size: 14px; margin: 0; color: var(--color-muted); line-height: 1.6; }
.cookie-banner a { color: var(--color-accent); font-weight: 600; }

.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner__actions button {
    padding: 12px 20px; border-radius: var(--radius-pill); border: none;
    font-weight: 700; cursor: pointer; font-size: 14px; flex: 1;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.cookie-accept { background: var(--color-accent); color: white; box-shadow: 0 8px 20px -8px rgba(249, 115, 22, 0.55); }
.cookie-accept:hover { background: var(--color-accent-dark); transform: translateY(-2px); box-shadow: 0 12px 24px -8px rgba(249, 115, 22, 0.65); }
.cookie-reject { background: var(--color-surface); color: var(--color-ink); border: 1.5px solid var(--color-border) !important; }
.cookie-reject:hover { background: var(--color-bg); transform: translateY(-2px); }

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-float {
    position: fixed; right: 20px; bottom: calc(20px + var(--mobile-bar-offset, 0px));
    width: 58px; height: 58px; border-radius: 50%;
    background: var(--color-whatsapp); color: white;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 24px -6px rgba(37, 211, 102, 0.6);
    z-index: 500; text-decoration: none;
    transition: transform 0.2s ease;
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover { transform: scale(1.08); }

/* ---------- Mobile CTA-Leiste ---------- */
.mobile-cta-bar {
    display: none;
    position: fixed; left: 0; right: 0; bottom: 0;
    height: var(--mobile-bar-height);
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -4px 16px rgba(15,23,42,0.08);
    z-index: 400;
    grid-template-columns: repeat(3, 1fr);
}
.mobile-cta-bar a {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 3px; text-decoration: none; font-size: 11px; font-weight: 700;
    color: var(--color-ink);
    border-right: 1px solid var(--color-border);
}
.mobile-cta-bar a:last-child { border-right: none; }
.mobile-cta-bar a svg { width: 20px; height: 20px; }
.mobile-cta-bar a.call { color: var(--color-accent); }
.mobile-cta-bar a.whatsapp { color: var(--color-whatsapp-dark); }

@media (max-width: 640px) {
    .mobile-cta-bar { display: grid; }
    .whatsapp-float { display: none; }
    body.has-mobile-bar { --mobile-bar-offset: 76px; padding-bottom: var(--mobile-bar-height); }
}

/* ---------- 404 ---------- */
.not-found { text-align: center; }
.not-found .code {
    font-size: clamp(80px, 18vw, 160px); font-weight: 800;
    background: linear-gradient(135deg, var(--color-navy), var(--color-accent));
    -webkit-background-clip: text; background-clip: text; color: transparent;
    line-height: 1;
}

/* ---------- Reveal-on-scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
    .section { padding: 64px 20px; }
    .notice-banner { margin-top: -40px; padding: 22px 18px; }
    .cookie-banner { left: 12px; right: 12px; bottom: calc(12px + var(--mobile-bar-offset, 0px)); }
    .cookie-banner__actions { flex-direction: column; }
}
