/* ================================================================
   UMZUGSMEISTER – STARTSEITE
   Aufbau: 1) Design-Tokens  2) Reset  3) Basis (mobile-first)
           4) Komponenten  5) Sektionen  6) Desktop-Media-Queries
   ================================================================ */

/* ---------- 1) Design-Tokens ---------- */
:root {
    /* Farben – Markenfarben von umzugsmeister.at (Türkis + Gelb) */
    --ink:        #0c3b44;   /* dunkles Petrol – dunkle Sektionen, Footer, Logo */
    --ink-2:      #0f4a56;
    --ink-3:      #135c6b;
    --accent:     #008396;   /* Marken-Türkis – Primär, CTA, Links, Icons */
    --accent-dk:  #006d7d;   /* Türkis Hover */
    --highlight:  #fff54d;   /* Marken-Gelb – sparsamer Zweitakzent */
    --success:    #1f7a54;   /* „entfällt“, Häkchen */
    --bg:         #ffffff;
    --bg-soft:    #f4f7f8;   /* Sektionswechsel, kühles Off-White */
    --bg-ink:     #0c3b44;
    --text:       #1e2a2e;
    --muted:      #5c6b70;
    --line:       #e2e8ea;
    --line-soft:  #eef2f3;
    --star:       #f4a623;

    /* Typografie */
    --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    /* Abstände / Radius / Schatten */
    --radius: 14px;
    --radius-lg: 22px;
    --shadow-sm: 0 2px 8px rgba(20,35,61,0.06);
    --shadow: 0 12px 32px rgba(20,35,61,0.10);
    --shadow-lg: 0 24px 60px rgba(20,35,61,0.16);
    --container: 1200px;
}

/* ---------- 2) Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -0.02em; color: var(--ink); font-weight: 700; }

/* Barrierefreiheit: sichtbarer Fokus + Skip-Link */
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 200;
    background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- 3) Layout-Basis ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section-soft { background: var(--bg-soft); }
.eyebrow {
    font-family: var(--font-body); font-weight: 700; font-size: 0.8rem;
    letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent);
    display: inline-block; margin-bottom: 14px;
}
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(1.7rem, 5vw, 2.5rem); font-weight: 800; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin-top: 14px; }

/* ---------- 4) Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-family: var(--font-body); font-weight: 600; font-size: 1rem;
    padding: 15px 26px; border-radius: 100px; border: 2px solid transparent;
    cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    line-height: 1; white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(0,131,150,0.28); }
.btn-primary:hover { background: var(--accent-dk); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,131,150,0.34); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-ghost-light { background: rgba(255,255,255,0.10); color: #fff; border-color: rgba(255,255,255,0.38); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.18); border-color: #fff; transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-block { width: 100%; }

/* ---------- 5) Bild-Platzhalter ---------- */
/* Ersetzen: <img src="..." alt="..." width=".." height=".."> an gleicher Stelle einsetzen */
.img-ph {
    position: relative; width: 100%; background:
        repeating-linear-gradient(45deg, #eef2f7 0 12px, #e7edf5 12px 24px);
    border: 1px dashed #c3cfdd; border-radius: var(--radius);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 8px; color: #8695a7; text-align: center; padding: 20px; min-height: 180px;
}
.img-ph svg { width: 34px; height: 34px; opacity: .6; }
.img-ph span { font-size: .82rem; font-weight: 600; max-width: 240px; }

/* ================= HEADER ================= */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: transparent; border-bottom: 1px solid transparent;
    transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom-color: var(--line-soft);
    box-shadow: 0 2px 14px rgba(12,59,68,0.07);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

/* Logo – hell über dem dunklen Hero, dunkel sobald der Header weiß wird.
   Logo-Platzhalter bleibt laut Vorgabe. HINWEIS: über dem dunklen Hero ist eine HELLE
   Logo-Variante nötig (das schwarze Logo wäre dort unsichtbar). */
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: #fff; transition: color .3s ease; }
.logo .logo-mark {
    width: 36px; height: 36px; border-radius: 9px;
    background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.28);
    display: grid; place-items: center; color: #fff; transition: background .3s, border-color .3s;
}
.logo .logo-mark svg { width: 20px; height: 20px; }
.site-header.scrolled .logo { color: var(--ink); }
.site-header.scrolled .logo .logo-mark { background: var(--ink); border-color: transparent; }

.main-nav ul { display: flex; align-items: center; gap: 6px; }
.main-nav a { padding: 9px 14px; border-radius: 8px; font-weight: 500; font-size: .96rem; transition: background .15s, color .15s; }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .96rem; color: #fff; transition: color .3s; }
.header-phone svg { width: 18px; height: 18px; color: var(--highlight); }
.site-header.scrolled .header-phone { color: var(--ink); }
.site-header.scrolled .header-phone svg { color: var(--accent); }

/* Hamburger */
.nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.3); border-radius: 10px;
    background: rgba(255,255,255,0.12); cursor: pointer; transition: background .3s, border-color .3s;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: #fff; margin: 0 auto; transition: transform .25s, opacity .2s, background .3s; }
.site-header.scrolled .nav-toggle { background: #fff; border-color: var(--line); }
.site-header.scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================= HERO (dunkler Hintergrund + Bild + Overlay) ================= */
.hero { position: relative; padding: 138px 0 90px; overflow: hidden; background: var(--ink); }
/* BILD ERSETZEN: /assets/hero.jpg (querformat, mind. 1920x1080, Team/LKW/Wiener Motiv). Bis dahin dunkler Fallback. */
.hero-bg { position: absolute; inset: 0; z-index: 0; background: #0a323a url('../assets/hero.jpg') center/cover no-repeat; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(112deg, rgba(7,38,45,0.95) 0%, rgba(10,50,58,0.82) 52%, rgba(12,59,68,0.55) 100%); }
.hero-inner { position: relative; z-index: 1; }
.hero-copy { max-width: 640px; }
.hero-media .img-ph { min-height: 300px; height: 100%; background: linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03)); border: 1px dashed rgba(255,255,255,0.30); color: rgba(255,255,255,0.62); }
.hero-media .img-ph svg { opacity: 0.55; }
.hero-media .img-ph span { color: rgba(255,255,255,0.7); }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.24); border-radius: 100px; padding: 7px 15px 7px 9px;
    font-size: .84rem; font-weight: 600; color: #fff; margin-bottom: 22px;
}
.hero-badge .stars { color: var(--star); letter-spacing: 1px; }
.hero h1 { color: #fff; font-size: clamp(2.2rem, 7vw, 3.9rem); font-weight: 800; }
.hero h1 .hl { color: var(--ink); background: var(--highlight); padding: 0.04em 0.26em; border-radius: 5px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.hero-lead { font-size: 1.14rem; color: rgba(255,255,255,0.86); margin: 22px 0 30px; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; }
.hero-trust li { display: flex; align-items: center; gap: 8px; font-size: .94rem; color: #fff; font-weight: 500; }
.hero-trust svg { width: 18px; height: 18px; color: var(--highlight); flex-shrink: 0; }

/* ================= USP-LEISTE ================= */
.usp-bar { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--bg-soft); }
.usp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.usp-item { background: var(--bg-soft); padding: 22px 18px; display: flex; align-items: flex-start; gap: 12px; }
.usp-item svg { width: 26px; height: 26px; color: var(--accent); flex-shrink: 0; }
.usp-item strong { display: block; font-family: var(--font-display); font-size: 1rem; color: var(--ink); }
.usp-item span { font-size: .86rem; color: var(--muted); }

/* ================= LEISTUNGEN ================= */
.services-grid { display: grid; gap: 18px; }
.service-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
    overflow: hidden; transition: transform .18s, box-shadow .18s, border-color .18s;
    display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.service-media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.service-media .img-ph { height: 100%; min-height: 0; border: none; border-radius: 0; }
.service-media .service-tag {
    position: absolute; left: 14px; bottom: 14px; z-index: 2;
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(12,59,68,0.82); color: #fff; border-radius: 100px;
    padding: 6px 12px 6px 10px; font-size: .78rem; font-weight: 600; backdrop-filter: blur(4px);
}
.service-media .service-tag svg { width: 15px; height: 15px; color: var(--highlight); }
.service-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex-grow: 1; }
.service-body h3 { font-size: 1.25rem; margin-bottom: 10px; }
.service-body p { color: var(--muted); font-size: .96rem; margin-bottom: 18px; flex-grow: 1; }
.service-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: var(--accent); font-size: .95rem; }
.service-link svg { width: 17px; height: 17px; transition: transform .15s; }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* Über uns / Team */
.about-wrap { display: grid; gap: 30px; align-items: center; }
.about-media .img-ph { min-height: 340px; height: 100%; }
.about-copy h2 { font-size: clamp(1.7rem, 5vw, 2.5rem); font-weight: 800; }
.about-copy p { color: var(--muted); margin-top: 14px; font-size: 1.02rem; }
.about-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.about-badge { display: flex; align-items: center; gap: 11px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 12px 16px; }
.about-badge .n { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: var(--accent); }
.about-badge .t { font-size: .8rem; color: var(--muted); line-height: 1.25; }

/* ================= SIGNATURE: TRANSPARENZ ================= */
.transp { background: var(--bg-ink); color: #fff; }
.transp .eyebrow { color: var(--accent); }
.transp h2 { color: #fff; font-size: clamp(1.7rem, 5vw, 2.5rem); font-weight: 800; }
.transp .transp-lead { color: #b9c6d8; margin-top: 14px; max-width: 620px; }
.transp-cols { display: grid; gap: 18px; margin-top: 40px; }
.transp-card { border-radius: var(--radius-lg); padding: 28px 26px; }
.transp-card.others { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); }
.transp-card.ours { background: #fff; color: var(--ink); box-shadow: var(--shadow-lg); }
.transp-card h3 { font-size: 1.15rem; margin-bottom: 20px; }
.transp-card.others h3 { color: #fff; }
.transp-list li { display: flex; align-items: center; gap: 12px; padding: 11px 0; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.transp-card.ours .transp-list li { border-bottom-color: var(--line-soft); }
.transp-list li:last-child { border-bottom: none; }
.transp-list .ico { width: 22px; height: 22px; flex-shrink: 0; }
.others .transp-list .label { color: #cdd8e6; text-decoration: line-through; text-decoration-color: rgba(255,255,255,0.4); }
.others .transp-list .ico { color: #ff7a7a; }
.ours .transp-list .ico { color: var(--success); }
.ours .transp-list .amount { margin-left: auto; font-weight: 700; color: var(--success); font-family: var(--font-display); }
.others .transp-list .amount { margin-left: auto; font-weight: 700; color: #ff9a9a; font-family: var(--font-display); }

/* ================= ABLAUF (echte Sequenz) ================= */
.steps { display: grid; gap: 18px; counter-reset: step; }
.step {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 26px 24px 24px; position: relative;
}
.step-num {
    font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: var(--ink);
    width: 40px; height: 40px; border-radius: 50%; background: var(--highlight);
    display: grid; place-items: center; margin-bottom: 16px;
    box-shadow: 0 6px 16px rgba(12,59,68,0.20);
}
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .93rem; }

/* ================= RECHNER-TEASER ================= */
.calc-cta { background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%); border-radius: var(--radius-lg); padding: 44px 32px; color: #fff; text-align: center; }
.calc-cta h2 { color: #fff; font-size: clamp(1.6rem, 5vw, 2.3rem); font-weight: 800; margin-bottom: 14px; }
.calc-cta p { color: #b9c6d8; max-width: 520px; margin: 0 auto 28px; }
.calc-cta .btn { font-size: 1.05rem; padding: 17px 34px; }

/* ================= PREISE ================= */
.price-grid { display: grid; gap: 18px; }
.price-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 30px 26px; text-align: center; position: relative;
}
.price-card.featured { border-color: var(--accent); box-shadow: 0 16px 40px rgba(0,131,150,0.14); }
.price-tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--highlight); color: var(--ink); font-size: .74rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: 5px 15px; border-radius: 100px; box-shadow: 0 5px 14px rgba(12,59,68,0.24); }
.price-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.price-card .crew { color: var(--muted); font-size: .88rem; margin-bottom: 18px; }
.price-amount { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; color: var(--ink); line-height: 1; }
.price-amount span { font-size: 1rem; font-weight: 600; color: var(--muted); }
.price-note { font-size: .82rem; color: var(--muted); margin-top: 12px; }
.price-legal { text-align: center; color: var(--muted); font-size: .86rem; margin-top: 24px; }

/* ================= BEZIRKE / LOCAL SEO ================= */
.area-wrap { display: grid; gap: 30px; }
.area-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.area-chips a { background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: 8px 16px; font-size: .9rem; font-weight: 500; color: var(--ink); transition: border-color .15s, transform .15s; }
.area-chips a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* EU-weit-Block */
.eu-band { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 26px; margin-top: 24px; }
.eu-ico { width: 54px; height: 54px; border-radius: 14px; background: rgba(0,131,150,0.10); display: grid; place-items: center; flex-shrink: 0; }
.eu-ico svg { width: 28px; height: 28px; color: var(--accent); }
.eu-copy { flex: 1; min-width: 0; }
.eu-copy h3 { font-size: 1.3rem; margin-bottom: 8px; }
.eu-copy p { color: var(--muted); font-size: .98rem; margin-bottom: 18px; max-width: 680px; }

/* ================= BEWERTUNGEN ================= */
.reviews-head { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 32px; }
.review-score { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 20px; box-shadow: var(--shadow-sm); }
.review-score .big { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--ink); line-height: 1; }
.review-score .stars { color: var(--star); font-size: 1.05rem; letter-spacing: 1px; }
.review-score .sub { font-size: .82rem; color: var(--muted); }
.reviews-grid { display: grid; gap: 18px; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 24px; }
.review-card .stars { color: var(--star); letter-spacing: 2px; margin-bottom: 14px; }
.review-card p { color: var(--text); font-size: .98rem; margin-bottom: 18px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--ink-2); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; }
.review-author strong { display: block; font-size: .92rem; color: var(--ink); }
.review-author span { font-size: .8rem; color: var(--muted); }

/* ================= FAQ ================= */
.faq-list { display: grid; gap: 12px; max-width: 820px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 22px; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { width: 24px; height: 24px; flex-shrink: 0; position: relative; transition: transform .2s; }
.faq-item summary .plus::before, .faq-item summary .plus::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; }
.faq-item summary .plus::before { width: 14px; height: 2px; top: 11px; left: 5px; }
.faq-item summary .plus::after { width: 2px; height: 14px; top: 5px; left: 11px; transition: transform .2s; }
.faq-item[open] summary .plus::after { transform: rotate(90deg); }
.faq-item .faq-body { padding: 0 22px 22px; color: var(--muted); font-size: .98rem; }

/* ================= KONTAKT-CTA ================= */
.contact-cta { background: var(--bg-soft); }
.contact-box { display: grid; gap: 26px; }
.contact-info h2 { font-size: clamp(1.6rem, 5vw, 2.3rem); font-weight: 800; margin-bottom: 14px; }
.contact-info p { color: var(--muted); margin-bottom: 26px; }
.contact-methods { display: grid; gap: 12px; }
.contact-method { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; transition: transform .15s, box-shadow .15s; }
.contact-method:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.contact-method .ci { width: 46px; height: 46px; border-radius: 12px; background: rgba(0,131,150,0.10); display: grid; place-items: center; flex-shrink: 0; }
.contact-method .ci svg { width: 22px; height: 22px; color: var(--accent); }
.contact-method .cm-label { font-size: .8rem; color: var(--muted); }
.contact-method .cm-value { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 1.05rem; }

/* ================= FOOTER ================= */
.site-footer { background: var(--bg-ink); color: #b9c6d8; padding: 56px 0 26px; }
.footer-grid { display: grid; gap: 34px; margin-bottom: 40px; }
.footer-col h4 { color: #fff; font-family: var(--font-display); font-size: 1rem; margin-bottom: 16px; }
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand .logo .logo-mark { background: #fff; color: var(--ink); }
.footer-brand p { font-size: .9rem; line-height: 1.7; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { font-size: .92rem; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 12px; font-size: .92rem; }
.footer-contact svg { width: 17px; height: 17px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; font-size: .84rem; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 18px; }

/* Mobiler Sticky-Call-Balken (nur Mobile sichtbar) */
.mobile-callbar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); border-top: 1px solid var(--line); }
.mobile-callbar .btn { padding: 13px; font-size: .95rem; }
body { padding-bottom: 72px; } /* Platz für Callbar auf Mobile */

/* ========================================================
   6) DESKTOP – ab 768px / 1024px
   ======================================================== */
@media (min-width: 768px) {
    .section { padding: 88px 0; }
    .usp-grid { grid-template-columns: repeat(4, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .transp-cols { grid-template-columns: 1fr 1fr; }
    .about-wrap { grid-template-columns: 0.95fr 1.05fr; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .price-grid { grid-template-columns: repeat(3, 1fr); }
    .reviews-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.4fr; }
    .contact-box { grid-template-columns: 1fr 1fr; align-items: center; }
    body { padding-bottom: 0; }
    .mobile-callbar { display: none; }
}
@media (min-width: 1024px) {
    .hero { padding: 150px 0 96px; }
    .hero-inner { display: grid; grid-template-columns: 1.05fr 0.9fr; gap: 44px; align-items: center; }
    .hero-copy { max-width: none; }
    .services-grid { grid-template-columns: repeat(4, 1fr); }
    .steps { grid-template-columns: repeat(4, 1fr); }
    .area-wrap { grid-template-columns: 1fr 1fr; align-items: center; }
}

/* Navigation: mobil eingeklappt, ab 900px offen */
/* Navigation: immer als Hamburger-Overlay (alle Bildschirmgrößen) */
.main-nav {
    position: fixed; inset: 72px 0 auto 0; background: #fff;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    transform: translateY(-120%); transition: transform .3s ease; visibility: hidden;
    max-height: calc(100vh - 72px); overflow-y: auto;
}
.main-nav.open { transform: translateY(0); visibility: visible; }
.main-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 14px 22px 24px; }
.main-nav a { padding: 15px 6px; border-bottom: 1px solid var(--line-soft); border-radius: 0; color: var(--text); font-weight: 500; font-size: 1.02rem; }
.main-nav a:hover { color: var(--accent); background: transparent; }
.main-nav .nav-extra { border-bottom: none; padding-top: 12px; }
.main-nav .nav-extra.phone a { color: var(--ink); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.main-nav .nav-extra.phone svg { width: 18px; height: 18px; color: var(--accent); }
.main-nav .nav-extra .btn { width: 100%; margin-top: 4px; }

/* Angebot-Button im Header (auf sehr schmalen Geräten aus – Callbar übernimmt) */
.header-btn { display: inline-flex; }
@media (max-width: 559px) { .header-btn { display: none; } }

/* Reduzierte Bewegung respektieren */
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* Sanftes Einblenden beim Scrollen */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ================================================================
   UNTERSEITEN – zusätzliche Komponenten
   ================================================================ */

/* ---------- Seitenkopf (Unterseiten) ---------- */
.page-hero { position: relative; background: var(--ink); padding: 128px 0 56px; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; background: #0a323a url('../assets/hero.jpg') center/cover no-repeat; }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(112deg, rgba(7,38,45,0.95) 0%, rgba(10,50,58,0.86) 55%, rgba(12,59,68,0.62) 100%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 5.5vw, 3rem); font-weight: 800; max-width: 800px; }
.page-hero .page-lead { color: rgba(255,255,255,0.86); font-size: 1.08rem; margin-top: 16px; max-width: 620px; }
.page-hero .hero-actions { margin-top: 28px; margin-bottom: 0; }

/* ---------- Brotkrumen ---------- */
.breadcrumb { padding: 14px 0; border-bottom: 1px solid var(--line-soft); background: #fff; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: .86rem; color: var(--muted); }
.breadcrumb a { color: var(--accent); font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb li::after { content: '›'; margin-left: 8px; color: var(--line); }
.breadcrumb li:last-child::after { content: ''; }

/* ---------- Fließtext-Bereiche ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.5rem, 4vw, 2rem); margin: 40px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.2rem; margin: 26px 0 10px; }
.prose p { color: var(--muted); margin-bottom: 14px; }
.prose ul { margin: 0 0 18px 0; padding-left: 0; }
.prose ul li { display: flex; gap: 10px; margin-bottom: 9px; color: var(--muted); }
.prose ul li::before { content: ''; flex-shrink: 0; width: 18px; height: 18px; margin-top: 3px; background: var(--accent); border-radius: 50%; -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/13px no-repeat; mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/13px no-repeat; }
.prose strong { color: var(--ink); }

/* Zweispaltiger Textbereich mit Bild */
.split { display: grid; gap: 30px; align-items: center; }
.split .img-ph { min-height: 300px; height: 100%; }

/* ---------- Info-/Hinweisbox ---------- */
.notice { background: var(--bg-soft); border-left: 3px solid var(--accent); border-radius: 0 var(--radius) var(--radius) 0; padding: 20px 22px; margin: 22px 0; }
.notice strong { display: block; color: var(--ink); font-family: var(--font-display); margin-bottom: 5px; }
.notice p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- Karten-Raster (Leistungen, Blog, Bezirke) ---------- */
.card-grid { display: grid; gap: 18px; }
.card-grid.cols-2 { grid-template-columns: 1fr; }
.card-grid.cols-3 { grid-template-columns: 1fr; }
.link-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px 24px; transition: transform .18s, box-shadow .18s, border-color .18s; display: block; }
.link-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.link-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.link-card p { color: var(--muted); font-size: .94rem; margin-bottom: 14px; }
.link-card .service-link { color: var(--accent); }

/* Blog-Karte mit Bild */
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .18s, box-shadow .18s; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-card .post-media { aspect-ratio: 16 / 9; }
.post-card .post-media .img-ph { height: 100%; min-height: 0; border: none; border-radius: 0; }
.post-card .post-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex-grow: 1; }
.post-meta { font-size: .8rem; color: var(--muted); margin-bottom: 8px; display: flex; gap: 10px; flex-wrap: wrap; }
.post-meta .cat { color: var(--accent); font-weight: 600; }
.post-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.post-card p { color: var(--muted); font-size: .92rem; margin-bottom: 14px; flex-grow: 1; }

/* Bezirks-Kacheln */
.district-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.district-tile { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; transition: border-color .15s, transform .15s, box-shadow .15s; }
.district-tile:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.district-tile .plz { font-family: var(--font-display); font-weight: 800; color: var(--accent); font-size: 1.05rem; }
.district-tile .name { display: block; font-size: .88rem; color: var(--muted); }

/* ---------- Tabelle (Preise/Übersicht) ---------- */
.table-wrap { overflow-x: auto; margin: 20px 0; }
table.data { width: 100%; border-collapse: collapse; font-size: .94rem; background: #fff; border-radius: var(--radius); overflow: hidden; }
table.data th { background: var(--ink); color: #fff; text-align: left; padding: 13px 16px; font-weight: 600; font-size: .88rem; }
table.data td { padding: 13px 16px; border-bottom: 1px solid var(--line-soft); color: var(--muted); }
table.data tr:last-child td { border-bottom: none; }
table.data td strong { color: var(--ink); }

/* ---------- Abschluss-CTA (auf jeder Unterseite) ---------- */
.cta-band { background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%); border-radius: var(--radius-lg); padding: 42px 32px; color: #fff; text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 4.5vw, 2.1rem); font-weight: 800; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.82); max-width: 540px; margin: 0 auto 26px; }
.cta-band .hero-actions { justify-content: center; margin-bottom: 0; }

/* ---------- Footer: vollständige Seitenübersicht ---------- */
.footer-grid.sitemap { grid-template-columns: 1fr; }
.footer-col ul.two-col { columns: 2; column-gap: 18px; }

/* ---------- Platzhalter-Kennzeichnung (nur Entwurfsphase) ---------- */
.draft-note { background: #fff8e1; border: 1px dashed #e0c168; border-radius: var(--radius); padding: 14px 18px; margin: 18px 0; font-size: .9rem; color: #7a6320; }
.draft-note strong { color: #5c4a10; }

/* ---------- Desktop ---------- */
@media (min-width: 768px) {
    .page-hero { padding: 150px 0 68px; }
    .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
    .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
    .split { grid-template-columns: 1fr 1fr; }
    .split.media-right .split-media { order: 2; }
    .footer-grid.sitemap { grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr; }
}
