/* =========================================================
   Taxi Zschinzsch – zentrale Stylesheet
   Reines CSS, keine Frameworks. Farben/Abstände als Variablen.
   Themes: Hell (Standard) / Dunkel / Barrierefrei-Modus
   ========================================================= */

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

:root {
    /* Farben – Hell */
    --bg: #F5F3F0;
    --surface: #FFFFFF;
    --surface-raised: #FFFFFF;
    --border: #E2DDD7;
    --border-light: #EFEBE6;
    --text: #181818;            /* ~14:1 auf --bg */
    --text-secondary: #555049;  /* ~6:1  auf --bg (AA für Fließtext) */
    --text-muted: #6E6862;      /* ~4.8:1 auf --bg */
    --accent: #154FCC;          /* Blau, weißer Text ~6.3:1 */
    --accent-hover: #0F3FA8;
    --accent-soft: #E7EEFF;
    --accent-text: #11357F;     /* Blau als Text auf hellem Grund ~8:1 */
    --dark: #14131A;
    --warm-gray: #2C2A28;

    /* Form */
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow: 0 1px 3px rgba(0,0,0,0.05), 0 4px 12px rgba(0,0,0,0.04);
    --shadow-md: 0 2px 8px rgba(0,0,0,0.05), 0 8px 24px rgba(0,0,0,0.07);
    --shadow-lg: 0 4px 12px rgba(0,0,0,0.05), 0 16px 48px rgba(0,0,0,0.09);

    /* Schrift */
    --font-body: 'General Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Outfit', var(--font-body);
    --fs-body: 1.125rem;        /* 18px Fließtext (Mindestvorgabe) */
    --icon-filter: brightness(0) saturate(100%) invert(8%);
}

/* Dunkelmodus */
[data-theme="dark"] {
    --bg: #0E0D11;
    --surface: #181620;
    --surface-raised: #211F2A;
    --border: #312E3A;
    --border-light: #262430;
    --text: #F2EFEA;
    --text-secondary: #BDB7B0;   /* ~8:1 auf --bg */
    --text-muted: #8E8880;
    --accent: #5E86F2;
    --accent-hover: #7497F5;
    --accent-soft: #1B2547;
    --accent-text: #9DB6FB;
    --dark: #181620;
    --warm-gray: #E8E4DF;
    --shadow: 0 1px 3px rgba(0,0,0,0.4);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.45);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.55);
    --icon-filter: brightness(0) saturate(100%) invert(92%);
}

/* =========================================================
   BARRIEREFREI-MODUS (verstärkt)
   – größere Schrift, höhere Kontraste, größere Klickflächen,
     keine Animationen, Links unterstrichen
   ========================================================= */
html[data-a11y="on"] { font-size: 118.75%; }          /* Basis 16px -> 19px */
html[data-a11y="on"] {
    --text-secondary: #3A352F;   /* stärkerer Kontrast */
    --text-muted: #46413B;
    --accent: #0E3FAE;
    --accent-text: #0C2E78;
    --border: #B9B2AA;
}
html[data-a11y="on"][data-theme="dark"] {
    --text-secondary: #E6E2DC;
    --text-muted: #CFCAC3;
    --accent: #8FAAFB;
    --accent-text: #BFD0FC;
    --border: #5A5666;
}
html[data-a11y="on"] body { line-height: 1.85; letter-spacing: 0.01em; }
html[data-a11y="on"] .btn { padding: 18px 32px; }
html[data-a11y="on"] .nav-links a,
html[data-a11y="on"] .k-card { padding-top: 16px; padding-bottom: 16px; }
html[data-a11y="on"] main a:not(.btn):not(.nav-cta):not(.s-cat-link) { text-decoration: underline; }
html[data-a11y="on"] .reveal,
html[data-a11y="on"] .reveal-left,
html[data-a11y="on"] .reveal-right { opacity: 1 !important; transform: none !important; transition: none !important; }
html[data-a11y="on"] * { animation: none !important; }

/* =========================================================
   BASIS
   ========================================================= */
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Sichtbarer Fokus für Tastaturnutzer */
:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
    border-radius: 6px;
}

/* Skip-Link */
.skip-link {
    position: absolute; left: 12px; top: -100px;
    background: var(--accent); color: #fff;
    padding: 12px 20px; border-radius: 10px; z-index: 2000;
    font-weight: 600; transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0;
    margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 12px 24px; }
.nav-bar {
    max-width: 1200px; margin: 0 auto;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 16px; padding: 0 16px 0 24px; min-height: 60px;
    display: flex; align-items: center; justify-content: space-between;
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
}
.nav-logo { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--text); display: flex; align-items: center; gap: 8px; }
.nav-logo .logo-mark { width: 30px; height: 30px; flex-shrink: 0; display: block; }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
    font-size: 0.98rem; font-weight: 500; color: var(--text-secondary);
    padding: 9px 14px; border-radius: 10px; transition: all 0.2s; display: block;
}
.nav-links a:hover { color: var(--text); background: var(--border-light); }
.nav-links a[aria-current="page"] { color: var(--accent-text); background: var(--accent-soft); font-weight: 600; }
.nav-cta {
    font-size: 0.98rem !important; font-weight: 700 !important;
    background: var(--accent) !important; color: #fff !important;
    padding: 10px 18px !important; border-radius: 10px !important;
    display: inline-flex !important; align-items: center; gap: 8px;
}
.nav-cta:hover { background: var(--accent-hover) !important; }
.nav-cta svg { width: 16px; height: 16px; }

.nav-right { display: flex; align-items: center; gap: 8px; }
.icon-btn {
    background: var(--border-light); border: 1px solid var(--border);
    width: 40px; height: 40px; border-radius: 10px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-secondary); transition: all 0.2s;
}
.icon-btn:hover { background: var(--border); color: var(--text); }
.icon-btn svg { width: 18px; height: 18px; }

.theme-toggle .icon-moon { display: block; }
.theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }

.a11y-toggle[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: #fff; }

.hamburger { display: none; }
.mobile-only { display: none; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 15px 28px; border-radius: 12px;
    font-size: 1.02rem; font-weight: 700; font-family: var(--font-body);
    border: none; cursor: pointer; transition: all 0.25s; line-height: 1.2;
}
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 2px 10px rgba(21,79,204,0.25); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(21,79,204,0.32); }
.btn-outline { background: var(--surface); color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--text-muted); }
.btn-lg { padding: 18px 34px; font-size: 1.12rem; }

/* =========================================================
   HERO
   ========================================================= */
.hero { padding: 140px 0 70px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent-soft); color: var(--accent-text);
    padding: 7px 16px; border-radius: 50px; font-size: 0.92rem;
    font-weight: 600; margin-bottom: 22px;
}
.eyebrow .pulse { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 0 0 rgba(21,79,204,0.5); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(21,79,204,0.4); } 70% { box-shadow: 0 0 0 8px rgba(21,79,204,0); } 100% { box-shadow: 0 0 0 0 rgba(21,79,204,0); } }
.hero h1 {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(2.6rem, 5vw, 3.9rem);
    line-height: 1.07; letter-spacing: -0.03em; color: var(--text); margin-bottom: 22px;
}
.hero-desc { font-size: 1.18rem; color: var(--text-secondary); line-height: 1.65; max-width: 500px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: 0.98rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.hero-note svg { width: 17px; height: 17px; color: var(--accent); }

.hero-visual { position: relative; }
.hero-image { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.hero-float-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 18px 24px;
    box-shadow: var(--shadow-md); display: flex; gap: 28px;
    margin-top: 16px; justify-content: center;
}
.float-stat { text-align: center; }
.float-stat .num { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; color: var(--text); }
.float-stat .lbl { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

/* =========================================================
   STAT-BAND
   ========================================================= */
.stats-band { padding: 0 0 20px; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.stat-box {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px 20px; text-align: center;
}
.stat-box .num { font-family: var(--font-display); font-weight: 700; font-size: 2.1rem; color: var(--accent-text); line-height: 1; }
.stat-box .lbl { font-size: 0.98rem; color: var(--text-secondary); margin-top: 8px; }

/* =========================================================
   SEKTIONEN
   ========================================================= */
section { padding: 90px 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--accent-text); margin-bottom: 14px;
}
.section-title {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    line-height: 1.12; letter-spacing: -0.025em; color: var(--text); margin-bottom: 16px;
}
.section-sub { font-size: 1.12rem; color: var(--text-secondary); line-height: 1.7; }
.text-center { text-align: center; }
.section-head.center { margin-left: auto; margin-right: auto; }

/* =========================================================
   LEISTUNGEN – Kurzkarten (Start) und Kategorien (Detailseite)
   ========================================================= */
.services-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 920px; }
.s-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px 24px; transition: all 0.3s;
}
.s-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.s-card-icon {
    width: 50px; height: 50px; border-radius: 12px; background: var(--accent-soft);
    display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.s-card-icon svg { width: 26px; height: 26px; stroke: var(--accent); }
.s-card h3 { font-family: var(--font-display); font-size: 1.18rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.s-card p { font-size: 1rem; color: var(--text-secondary); line-height: 1.6; }

/* Kategorie-Blöcke (Leistungen-Seite) */
.cat-block { margin-bottom: 28px; }
.cat-block:last-child { margin-bottom: 0; }
.cat {
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 40px; overflow: hidden;
}
.cat.reverse { grid-template-columns: 0.9fr 1.1fr; }
.cat.reverse .cat-media { order: -1; }
.cat-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent-soft); color: var(--accent-text);
    font-size: 0.85rem; font-weight: 700; padding: 6px 14px; border-radius: 50px; margin-bottom: 16px;
}
.cat-badge svg { width: 16px; height: 16px; }
.cat h2 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--text); margin-bottom: 14px; letter-spacing: -0.02em; }
.cat-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.cat-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.05rem; color: var(--text-secondary); line-height: 1.55; }
.cat-list svg { width: 22px; height: 22px; flex-shrink: 0; stroke: var(--accent); margin-top: 2px; }
.cat-list strong { color: var(--text); font-weight: 600; }
.cat-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }

/* =========================================================
   ABLAUF (3 Schritte)
   ========================================================= */
.steps { background: var(--surface); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { text-align: center; padding: 12px; position: relative; }
.step-num {
    width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%;
    background: var(--accent-soft); color: var(--accent-text);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 700; font-size: 1.6rem;
}
.step h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 10px; color: var(--text); }
.step p { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.6; max-width: 320px; margin: 0 auto; }

/* =========================================================
   FLEET-STRIP
   ========================================================= */
.fleet-strip { padding: 60px 0; }
.fleet-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.fleet-img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--border); }

/* =========================================================
   VERTRAUEN
   ========================================================= */
.trust { background: var(--surface); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.trust-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.trust-photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.trust-cards-col { display: flex; flex-direction: column; gap: 14px; }
.trust-cards-col .trust-card { display: flex; gap: 18px; align-items: flex-start; padding: 24px 26px; }
.trust-cards-col .trust-card .ti { margin-bottom: 0; flex-shrink: 0; }
.trust-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; }
.trust-card .ti { width: 52px; height: 52px; border-radius: 12px; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.trust-card .ti svg { width: 27px; height: 27px; stroke: var(--accent); }
.trust-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.trust-card p { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.65; }

/* =========================================================
   ÜBER UNS
   ========================================================= */
.about-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-hero img { width: 100%; aspect-ratio: 3/4; max-height: 560px; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.about-text p { font-size: 1.12rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 18px; }
.about-text p:last-child { margin-bottom: 0; }

.timeline { background: var(--surface); }
.tl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tl-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; }
.tl-year { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--accent-text); margin-bottom: 12px; }
.tl-title { font-weight: 600; font-size: 1.18rem; color: var(--text); margin-bottom: 8px; }
.tl-desc { font-size: 1.02rem; color: var(--text-secondary); line-height: 1.65; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; }
.value .vi { width: 52px; height: 52px; border-radius: 12px; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.value .vi svg { width: 27px; height: 27px; stroke: var(--accent); }
.value h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.value p { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.65; }

.about-wide { width: 100%; aspect-ratio: 21/9; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow); }

/* =========================================================
   CTA-BLOCK
   ========================================================= */
.cta { padding: 80px 0; }
.cta-card {
    background: linear-gradient(135deg, #E7EEFF 0%, #D7E2FF 45%, #C7D6FF 100%);
    border-radius: var(--radius-xl); padding: 64px 48px;
    text-align: center; border: 1px solid rgba(21,79,204,0.1);
}
[data-theme="dark"] .cta-card { background: linear-gradient(135deg, #141A33 0%, #182148 45%, #1B2752 100%); border-color: rgba(94,134,242,0.2); }
.cta-card h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.9rem, 3vw, 2.5rem); color: #122A66; margin-bottom: 12px; }
[data-theme="dark"] .cta-card h2 { color: #CFDCFF; }
.cta-card p { font-size: 1.18rem; color: #2E437E; margin-bottom: 30px; max-width: 520px; margin-left: auto; margin-right: auto; }
[data-theme="dark"] .cta-card p { color: #9DB0E0; }
.cta-card .btn-primary { background: var(--accent); }
.cta-phone { margin-top: 16px; font-size: 1rem; color: #2E437E; }
[data-theme="dark"] .cta-phone { color: #9DB0E0; }

/* =========================================================
   KONTAKT
   ========================================================= */
.kontakt-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: 40px; align-items: start; }
.k-cards { display: flex; flex-direction: column; gap: 14px; }
.k-card {
    display: flex; align-items: center; gap: 18px;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 22px 24px; transition: all 0.2s;
}
.k-card:hover { box-shadow: var(--shadow-md); }
a.k-card { cursor: pointer; }
.k-card-icon { width: 50px; height: 50px; border-radius: 12px; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.k-card-icon svg { width: 23px; height: 23px; stroke: var(--accent); }
.k-card h3 { font-size: 0.92rem; font-weight: 600; color: var(--text-muted); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.04em; }
.k-card .val { font-size: 1.18rem; color: var(--text); font-weight: 600; }
.k-card .val.sm { font-size: 1.02rem; font-weight: 500; }
.k-phone-card { background: var(--accent); border-color: var(--accent); }
.k-phone-card h3 { color: rgba(255,255,255,0.85); }
.k-phone-card .val { color: #fff; font-size: 1.5rem; }
.k-phone-card .k-card-icon { background: rgba(255,255,255,0.18); }
.k-phone-card .k-card-icon svg { stroke: #fff; }

.kontakt-map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); min-height: 460px; background: var(--surface); }
.kontakt-map iframe { width: 100%; height: 100%; min-height: 460px; border: 0; display: block; }
.map-consent { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 14px; height: 100%; min-height: 460px; padding: 40px 28px; }
.map-consent svg { width: 44px; height: 44px; stroke: var(--accent); }
.map-consent h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--text); }
.map-consent p { font-size: 1rem; color: var(--text-secondary); max-width: 400px; line-height: 1.6; }
.map-consent .map-direct { font-size: 0.95rem; color: var(--accent-text); text-decoration: underline; }
.hours-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 24px; }
.hours-card h3 { font-family: var(--font-display); font-size: 1.18rem; margin-bottom: 6px; color: var(--text); }
.hours-card p { color: var(--text-secondary); font-size: 1.05rem; }
.hours-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--accent-soft); color: var(--accent-text); font-weight: 600; padding: 6px 14px; border-radius: 50px; font-size: 0.95rem; margin-top: 10px; }

/* =========================================================
   RECHTSSEITEN
   ========================================================= */
.legal { padding: 130px 0 90px; }
.legal-inner { max-width: 760px; margin: 0 auto; }
.legal h1 { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.legal .lead { color: var(--text-secondary); font-size: 1.12rem; margin-bottom: 36px; }
.legal h2 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--text); margin: 34px 0 10px; }
.legal h3 { font-size: 1.08rem; font-weight: 600; color: var(--text); margin: 20px 0 6px; }
.legal p { font-size: 1.125rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 12px; }
.legal ul { margin: 0 0 12px 22px; color: var(--text-secondary); font-size: 1.125rem; line-height: 1.8; }
.legal a { color: var(--accent-text); text-decoration: underline; }
.legal-note { background: var(--accent-soft); border: 1px solid rgba(21,79,204,0.15); border-radius: var(--radius); padding: 18px 22px; margin: 16px 0; font-size: 1rem; color: var(--accent-text); }

/* =========================================================
   FOOTER
   ========================================================= */
footer { background: var(--dark); color: rgba(255,255,255,0.65); padding: 60px 0 30px; border-radius: var(--radius-xl) var(--radius-xl) 0 0; margin-top: 40px; }
[data-theme="dark"] footer { background: var(--surface); color: var(--text-secondary); border-top: 1px solid var(--border); }
.footer-grid { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.1); }
[data-theme="dark"] .footer-grid { border-color: var(--border); }
.footer-brand .f-logo { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: #fff; margin-bottom: 10px; }
[data-theme="dark"] .footer-brand .f-logo { color: var(--text); }
.footer-brand p { font-size: 0.98rem; max-width: 300px; line-height: 1.6; }
.footer-call { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; background: var(--accent); color: #fff; padding: 10px 18px; border-radius: 10px; font-weight: 700; }
.footer-call svg { width: 17px; height: 17px; }
.footer-links { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h4 { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.45); margin-bottom: 14px; }
[data-theme="dark"] .footer-col h4 { color: var(--text-muted); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { font-size: 0.98rem; color: rgba(255,255,255,0.7); transition: color 0.2s; }
[data-theme="dark"] .footer-col a { color: var(--text-secondary); }
.footer-col a:hover { color: #fff; }
[data-theme="dark"] .footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; font-size: 0.9rem; flex-wrap: wrap; gap: 10px; color: rgba(255,255,255,0.5); }
[data-theme="dark"] .footer-bottom { color: var(--text-muted); }
.footer-bottom a { color: rgba(255,255,255,0.5); }
[data-theme="dark"] .footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: #fff; }

/* =========================================================
   FIXIERTER MOBIL-ANRUF-BUTTON
   ========================================================= */
.fab-call {
    display: none;
    position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200;
    background: var(--accent); color: #fff;
    padding: 16px; border-radius: 14px; font-weight: 700; font-size: 1.1rem;
    align-items: center; justify-content: center; gap: 10px;
    box-shadow: 0 6px 20px rgba(21,79,204,0.4);
}
.fab-call svg { width: 20px; height: 20px; }

/* =========================================================
   ANIMATIONEN
   ========================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: none; }
.stagger > * { transition-delay: calc(var(--i, 0) * 0.06s); }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
    .reveal, .reveal-left, .reveal-right { opacity: 1 !important; transform: none !important; }
    .eyebrow .pulse { animation: none !important; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
    .nav-links {
        display: none; position: fixed; top: 84px; left: 12px; right: 12px;
        background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
        flex-direction: column; padding: 14px; gap: 4px; box-shadow: var(--shadow-lg); align-items: stretch;
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 13px 16px; width: 100%; font-size: 1.05rem; }
    .nav-cta { justify-content: center; }
    .hamburger { display: flex; }
    .hero-grid, .kontakt-layout, .about-hero, .trust-layout { grid-template-columns: 1fr; gap: 36px; }
    .cat, .cat.reverse { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
    .cat.reverse .cat-media { order: 0; }
    .services-cards, .trust-grid, .tl-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: 1fr; gap: 36px; }
    .fleet-inner { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { flex-direction: column; gap: 32px; }
    .fab-call { display: flex; }
    body { padding-bottom: 80px; }     /* Platz für FAB */
}
@media (max-width: 600px) {
    .hero { padding: 120px 0 50px; }
    .hero h1 { font-size: 2.3rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; }
    .services-cards, .trust-grid, .tl-grid, .values-grid, .fleet-inner, .stats-grid { grid-template-columns: 1fr; }
    .cta-card { padding: 44px 24px; }
    .footer-links { flex-direction: column; gap: 28px; }
    .legal h1 { font-size: 1.9rem; }
    section { padding: 64px 0; }
}
