/* =========================================================================
   Zuschuss-Umzug — schlankes Design-System
   Marke: Signalrot (#ED1D23) + Barlow Condensed (Headings) + Inter (Body)
   Betreiber: 1A Qualitäts Umzüge GmbH, Bremen
   ========================================================================= */

:root {
  --red:          #ED1D23;
  --red-dark:     #c8141a;
  --red-darker:   #8f0e12;
  --red-light:    #f26669;
  --red-lightest: #fdecec;
  --red-t5:       rgba(237,29,35,.05);
  --red-t10:      rgba(237,29,35,.10);
  --red-t20:      rgba(237,29,35,.20);
  --green:        #25D366;
  --green-dark:   #1ebe5b;
  --ink:          #1a1a1a;
  --ink-strong:   #030303;
  --muted:        #5a5a5a;
  --line:         #e6e6e6;
  --white:        #fff;
  --bg-soft:      #fafafa;
  --dark:         #030303;
  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 24px;
  --shadow-s: 0 1px 2px rgba(3,3,3,.06), 0 1px 3px rgba(3,3,3,.05);
  --shadow-m: 0 4px 12px rgba(3,3,3,.08), 0 2px 4px rgba(3,3,3,.05);
  --shadow-l: 0 18px 40px rgba(3,3,3,.12), 0 6px 12px rgba(3,3,3,.06);
  --maxw: 1200px;
  --font-head: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --font-body: 'Inter', -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--red-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
strong { font-weight: 700; }
ul, ol { padding-left: 1.25rem; }

/* ---------- Typo ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink-strong); line-height: 1.05; font-weight: 800; letter-spacing: .005em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 900; text-transform: uppercase; }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); font-weight: 800; text-transform: uppercase; }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 700; }
h4 { font-size: 1.25rem; font-weight: 700; }
p { margin: 0 0 1rem; }
.lead { font-size: 1.2rem; color: var(--muted); }
.eyebrow { font-family: var(--font-head); font-weight: 700; font-size: .95rem; letter-spacing: .14em; text-transform: uppercase; color: var(--red); margin-bottom: .6rem; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 1.25rem; }
.container--narrow { max-width: 860px; }
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--soft { background: var(--bg-soft); }
.section--tint { background: var(--red-t5); }
.section--tint10 { background: var(--red-lightest); }
.section--dark { background: var(--dark); color: #d8d8d8; }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark p { color: #bdbdbd; }
.section--dark .eyebrow { color: var(--red-light); }
.section-head { max-width: 780px; margin: 0 auto 2.5rem; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.12rem; }
.section--dark .section-head p { color: #bdbdbd; }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 700; font-size: 1.08rem; letter-spacing: .02em;
  text-transform: uppercase;
  padding: .8rem 1.6rem; border-radius: 8px; border: 2px solid transparent;
  cursor: pointer; transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
  text-decoration: none; line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--red); color: #fff; box-shadow: var(--shadow-s); }
.btn--primary:hover { background: var(--red-dark); color: #fff; box-shadow: var(--shadow-m); }
.btn--dark { background: var(--ink-strong); color: #fff; }
.btn--dark:hover { background: #000; color: #fff; }
.btn--ghost { background: transparent; color: var(--ink-strong); border-color: rgba(3,3,3,.22); }
.btn--ghost:hover { border-color: var(--ink-strong); color: var(--ink-strong); }
.btn--whatsapp { background: var(--green); color: #fff; }
.btn--whatsapp:hover { background: var(--green-dark); color: #fff; }
.btn--lg { padding: 1rem 2rem; font-size: 1.2rem; }
.btn img { width: 1.15em; height: 1.15em; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.btn-row--center { justify-content: center; }

/* ---------- Navbar ---------- */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 74px; }
.nav__logo img { height: 42px; width: auto; }
/* ---------- Bild-Logo (Emblem + Wortmarke) ---------- */
.nav__logo { display: inline-flex; align-items: center; gap: .55rem; }
.brandmark { height: 44px; width: auto; display: block; flex: none; }
.footer__logo { display: inline-flex; align-items: center; gap: .55rem; margin-bottom: 1rem; }
.footer__logo .brandmark { height: 42px; margin-bottom: 0; filter: none; }
.nav__links { display: flex; align-items: center; gap: 1.6rem; list-style: none; padding: 0; margin: 0; }
.nav__links a { color: var(--ink); font-family: var(--font-head); font-weight: 600; font-size: 1.12rem; letter-spacing: .02em; text-transform: uppercase; }
.nav__links a:hover { color: var(--red); text-decoration: none; }
.nav__cta { display: flex; align-items: center; gap: .6rem; }
.nav__dropdown { position: relative; }
.nav__dropdown > button { background: none; border: 0; font: inherit; font-family: var(--font-head); font-weight: 600; font-size: 1.12rem; letter-spacing: .02em; text-transform: uppercase; color: var(--ink); cursor: pointer; display: inline-flex; align-items: center; gap: .3rem; }
.nav__dropdown > button:hover { color: var(--red); }
.nav__menu { position: absolute; top: calc(100% + .6rem); left: 0; min-width: 300px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-m); box-shadow: var(--shadow-l); padding: .5rem; opacity: 0; visibility: hidden; transform: translateY(6px); transition: .16s ease; list-style: none; margin: 0; }
.nav__dropdown:hover .nav__menu, .nav__dropdown:focus-within .nav__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__menu a { display: block; padding: .55rem .8rem; border-radius: var(--radius-s); font-size: 1rem; font-family: var(--font-body); text-transform: none; font-weight: 500; letter-spacing: 0; }
.nav__menu a:hover { background: var(--red-lightest); color: var(--red-dark); text-decoration: none; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav__toggle span { display: block; width: 26px; height: 2.5px; background: var(--ink-strong); border-radius: 2px; margin: 5px 0; transition: .2s; }

/* ---------- Text-Wordmark (Fallback) ---------- */
.wordmark { font-family: var(--font-head); font-weight: 800; font-size: 1.9rem; letter-spacing: .005em; line-height: 1; display: inline-flex; align-items: center; gap: .3rem; text-transform: uppercase; }
.wordmark__b { color: var(--ink-strong); }
.wordmark--light .wordmark__b { color: #fff; }
.wordmark__a { color: #fff; background: var(--red); border-radius: 8px; padding: .1em .28em .04em; font-weight: 900; box-shadow: var(--shadow-s); }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(2.5rem, 6vw, 5rem); overflow: hidden; background: var(--red-lightest); position: relative; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero__title { margin-bottom: 1.2rem; }
.hero__title .t-red { color: var(--red); display: block; text-shadow: 0 2px 2px rgba(3,3,3,.10); }
.hero__title .t-dark { color: var(--ink-strong); display: block; }
.hero__text { font-size: 1.18rem; color: var(--ink); margin-bottom: 1.6rem; max-width: 46ch; }
.hero__media { position: relative; }
.hero__media img { width: 100%; height: auto; border-radius: var(--radius-l); box-shadow: var(--shadow-l); }
.hero__media--graphic img { max-width: 460px; margin-inline: auto; box-shadow: none; border-radius: 0; filter: drop-shadow(0 18px 30px rgba(3,3,3,.15)); transform-origin: 62% 58%; will-change: transform; }
/* animierte, zeigende Hand – Marken-Element, bewusst immer aktiv (kein reduced-motion-Guard) */
.hand-point { animation: hand-point 3.4s cubic-bezier(.34,1.56,.64,1) infinite; }
@keyframes hand-point {
  0%, 20%, 100% { transform: scale(1) translate(0,0); }
  45% { transform: scale(1.12) translate(-1%, 2%); }
  62% { transform: scale(1.04) translate(0, .6%); }
  80% { transform: scale(1.09) translate(-.5%, 1.4%); }
  92% { transform: scale(1) translate(0,0); }
}
.hero__badge { position: absolute; top: -14px; left: -14px; background: var(--red); color: #fff; font-family: var(--font-head); font-weight: 800; text-transform: uppercase; font-size: 1.05rem; line-height: 1.05; padding: .7rem 1rem; border-radius: 12px; box-shadow: var(--shadow-m); rotate: -4deg; text-align: center; }
.hero__badge b { display: block; font-size: 1.7rem; }
.hero__usps { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 1.6rem; }
.hero__usp { display: flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .98rem; color: var(--ink-strong); }
.hero__usp::before { content: "✓"; display: grid; place-items: center; width: 1.5rem; height: 1.5rem; border-radius: 50%; background: var(--red); color: #fff; font-size: .8rem; flex: none; }

/* ---------- Antwort-Box (GEO: „Auf einen Blick") ---------- */
.answer { background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--red); border-radius: var(--radius-m); padding: 1.4rem 1.6rem; box-shadow: var(--shadow-s); margin: 1.5rem 0; }
.answer__label { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .85rem; color: var(--red); margin-bottom: .4rem; }
.answer p { margin: 0; font-size: 1.12rem; color: var(--ink); }
.answer p + p { margin-top: .6rem; }

/* ---------- Fakten-Kacheln / Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.25rem; }
.stat { text-align: center; padding: 1.4rem 1rem; }
.stat__num { font-family: var(--font-head); font-weight: 900; font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--red); line-height: 1; }
.section--dark .stat__num { color: var(--red-light); }
.stat__label { color: var(--muted); font-size: .98rem; margin-top: .4rem; }
.section--dark .stat__label { color: #bdbdbd; }

/* ---------- Feature-Karten (Warum) ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.feat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); padding: 1.6rem; }
.feat__icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 12px; background: var(--red-lightest); color: var(--red); font-size: 1.6rem; margin-bottom: .9rem; }
.feat h3 { font-size: 1.35rem; margin-bottom: .4rem; }
.feat p { color: var(--muted); font-size: .98rem; margin: 0; }

/* ---------- Antragsart-/Service-Grid ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.svc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); padding: 1.6rem; display: flex; flex-direction: column; gap: .7rem; transition: transform .15s ease, box-shadow .15s ease, border-color .15s; }
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); border-color: var(--red-light); }
.svc-card__icon { width: 72px; height: 72px; object-fit: contain; }
.svc-card h3 { font-size: 1.5rem; }
.svc-card p { color: var(--muted); font-size: .98rem; margin: 0; }
.svc-card__meta { font-size: .85rem; color: var(--red-dark); font-weight: 600; }
.svc-card__link { margin-top: auto; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: var(--red-dark); display: inline-flex; align-items: center; gap: .35rem; }
.svc-card__link::after { content: "→"; transition: transform .15s; }
.svc-card:hover .svc-card__link::after { transform: translateX(3px); }
.svc-card__list { list-style: none; padding: 0; margin: .2rem 0 0; display: grid; gap: .4rem; }
.svc-card__list li { position: relative; padding-left: 1.6rem; font-size: .95rem; color: var(--ink); }
.svc-card__list li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* ---------- Deeppage: Detail-Layout ---------- */
.detail { display: grid; grid-template-columns: 1fr 340px; gap: 2.5rem; align-items: start; }
.detail__aside { position: sticky; top: 92px; display: grid; gap: 1.2rem; }
.aside-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); padding: 1.4rem; box-shadow: var(--shadow-s); }
.aside-card--cta { background: var(--dark); color: #fff; }
.aside-card--cta h3, .aside-card--cta p { color: #fff; }
.aside-card h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.aside-card .btn { width: 100%; justify-content: center; margin-top: .5rem; }
.aside-fact { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.aside-fact:last-child { border-bottom: 0; }
.aside-fact dt { color: var(--muted); }
.aside-fact dd { font-weight: 600; text-align: right; color: var(--ink-strong); }
.prose-block { max-width: 760px; }
.prose-block h2 { margin: 2.2rem 0 .9rem; }
.prose-block h2:first-child { margin-top: 0; }
.prose-block h3 { margin: 1.6rem 0 .5rem; color: var(--red-darker); }
.prose-block p { color: var(--ink); }
.prose-block ul { display: grid; gap: .45rem; margin: 0 0 1.1rem; }
@media (max-width: 900px) { .detail { grid-template-columns: 1fr; } .detail__aside { position: static; } }

/* ---------- Ablauf-Steps (nummeriert) ---------- */
.flow { display: grid; gap: 1rem; counter-reset: flow; list-style: none; padding: 0; }
.flow li { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-m); padding: 1.2rem 1.3rem 1.2rem 3.6rem; }
.flow li::before { counter-increment: flow; content: counter(flow); position: absolute; left: 1rem; top: 1.1rem; width: 1.9rem; height: 1.9rem; background: var(--red); color: #fff; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; }
.flow li strong { display: block; font-family: var(--font-head); font-size: 1.2rem; text-transform: uppercase; letter-spacing: .01em; }

/* ---------- Vergleichs-/Kostentabelle ---------- */
.table-wrap { overflow-x: auto; margin: 1.4rem 0; border: 1px solid var(--line); border-radius: var(--radius-m); }
table.ztab { width: 100%; border-collapse: collapse; font-size: .98rem; min-width: 560px; }
table.ztab th, table.ztab td { padding: .8rem 1rem; text-align: left; border-bottom: 1px solid var(--line); }
table.ztab thead th { background: var(--dark); color: #fff; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .03em; font-weight: 700; }
table.ztab tbody tr:nth-child(even) { background: var(--bg-soft); }
table.ztab tbody tr:hover { background: var(--red-t5); }
table.ztab td:first-child { font-weight: 600; color: var(--ink-strong); }

/* ---------- Steps (WhatsApp 4-Schritte) ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.25rem; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); padding: 1.5rem; text-align: center; position: relative; }
.step__num { position: absolute; top: 1rem; right: 1.1rem; font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: var(--red-light); }
.step img { width: 68px; height: 68px; object-fit: contain; margin: 0 auto .8rem; }
.step h3 { font-size: 1.25rem; margin-bottom: .3rem; }
.step p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- Quote / CTA-Box ---------- */
.quote { background: var(--dark); color: #fff; border-radius: var(--radius-l); padding: clamp(2rem, 5vw, 3.5rem); text-align: center; box-shadow: var(--shadow-l); }
.quote h2 { color: #fff; }
.quote p { color: rgba(255,255,255,.85); font-size: 1.12rem; max-width: 58ch; margin-inline: auto; }
.quote .btn--primary { background: var(--red); color: #fff; }
.quote .btn--primary:hover { background: var(--red-dark); color: #fff; }
.quote .btn--ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.quote .btn--ghost:hover { border-color: #fff; color: #fff; }

/* ---------- Split (Bild + Text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--img-right .split__media { order: 2; }
.media-photo { border-radius: var(--radius-l); box-shadow: var(--shadow-l); width: 100%; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } .split--img-right .split__media { order: -1; } }

/* ---------- Werte / Über uns ---------- */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 1.25rem; }
.value { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); padding: 1.6rem; }
.value h3 { font-size: 1.35rem; margin-bottom: .4rem; color: var(--red-darker); }
.value p { color: var(--muted); font-size: .98rem; margin: 0; }

/* ---------- Timeline (unser Weg) ---------- */
.timeline { display: grid; gap: 1.2rem; max-width: 780px; margin-inline: auto; }
.tl { display: grid; grid-template-columns: 130px 1fr; gap: 1.2rem; align-items: start; }
.tl__mark { font-family: var(--font-head); font-weight: 800; text-transform: uppercase; color: var(--red); font-size: 1.1rem; padding-top: .2rem; border-right: 3px solid var(--red-t20); padding-right: 1rem; }
.tl__body h3 { font-size: 1.4rem; }
.tl__body p { color: var(--muted); margin: .3rem 0 0; }
@media (max-width: 620px) { .tl { grid-template-columns: 1fr; } .tl__mark { border-right: 0; border-left: 3px solid var(--red-t20); padding-right: 0; padding-left: 1rem; } }

/* ---------- Sofortpreis-Rechner ---------- */
.calc { display: grid; grid-template-columns: 1.5fr 1fr; gap: 1.5rem; align-items: start; }
.calc__form { display: grid; gap: 1.6rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); padding: clamp(1.2rem, 3vw, 2rem); box-shadow: var(--shadow-s); }
.calc__q > .calc__label { display: block; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .02em; color: var(--ink-strong); margin-bottom: .7rem; font-size: 1.2rem; }
.calc__opts { display: flex; flex-wrap: wrap; gap: .55rem; }
.calc__opt { position: relative; }
.calc__opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.calc__opt label { display: block; padding: .55rem 1.05rem; border: 2px solid var(--line); border-radius: 8px; cursor: pointer; font-family: var(--font-body); font-weight: 500; font-size: .95rem; color: var(--ink); transition: .12s ease; }
.calc__opt label:hover { border-color: var(--red-light); }
.calc__opt input:checked + label { border-color: var(--red); background: var(--red-lightest); color: var(--red-dark); }
.calc__opt input:focus-visible + label { outline: 2px solid var(--red); outline-offset: 2px; }
.calc__result { position: sticky; top: 92px; background: var(--dark); color: #fff; border-radius: var(--radius-l); padding: 1.8rem; text-align: center; box-shadow: var(--shadow-l); }
.calc__result .eyebrow { color: var(--red-light); }
.calc__price { font-family: var(--font-head); font-weight: 900; font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1.1; margin: .3rem 0 .2rem; }
.calc__hint { font-size: .9rem; color: rgba(255,255,255,.85); margin-bottom: 1.2rem; }
.calc__result .btn { width: 100%; justify-content: center; margin-top: .6rem; }
.calc__result .btn--primary { background: var(--red); color: #fff; }
.calc__disclaimer { font-size: .8rem; color: var(--muted); margin-top: 1rem; text-align: center; }
@media (max-width: 820px) { .calc { grid-template-columns: 1fr; } .calc__result { position: static; } }

/* ---------- Prose ---------- */
.prose { max-width: 780px; margin-inline: auto; }
.prose h2 { margin-bottom: 1rem; }
.prose p { color: var(--muted); font-size: 1.1rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 840px; margin-inline: auto; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius-m); margin-bottom: .8rem; background: #fff; overflow: hidden; }
.faq__item[open] { border-color: var(--red-light); box-shadow: var(--shadow-s); }
.faq__item summary { list-style: none; cursor: pointer; padding: 1.15rem 1.3rem; font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; letter-spacing: .01em; color: var(--ink-strong); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.6rem; color: var(--red); font-weight: 400; transition: transform .2s; flex: none; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item > p, .faq__item > div { padding: 0 1.3rem 1.2rem; color: var(--muted); margin: 0; }

/* ---------- Lokaler SEO-Block (Ortsseiten) ---------- */
.lokal-seo h2 { margin-bottom: 1.2rem; }
.lokal-seo h3 { margin: 2rem 0 .6rem; color: var(--red-darker); }
.lokal-seo p { color: var(--ink); }
.lokal-seo .lokal-check { list-style: none; padding: 0; display: grid; gap: .55rem; }
.lokal-seo .lokal-check li { position: relative; padding-left: 1.9rem; }
.lokal-seo .lokal-check li::before { content: "✓"; position: absolute; left: 0; top: .05rem; display: grid; place-items: center; width: 1.35rem; height: 1.35rem; border-radius: 50%; background: var(--red); color: #fff; font-size: .75rem; font-weight: 700; }

/* ---------- Ratgeber / Artikel ---------- */
.article-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.25rem; }
.article-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); padding: 1.6rem; display: flex; flex-direction: column; gap: .6rem; transition: transform .15s, box-shadow .15s, border-color .15s; }
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); border-color: var(--red-light); }
.article-card h3 { font-size: 1.4rem; }
.article-card p { color: var(--muted); font-size: .98rem; margin: 0; }
.article-card__link { margin-top: auto; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; color: var(--red-dark); }
.article-body { max-width: 780px; margin-inline: auto; }
.article-body h2 { margin: 2rem 0 .8rem; }
.article-body h3 { margin: 1.5rem 0 .5rem; color: var(--red-darker); }
.article-body ul, .article-body ol { display: grid; gap: .4rem; margin-bottom: 1.1rem; }

/* ---------- Kontakt / Formular ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2rem; align-items: start; }
.contact-quick { display: grid; gap: .7rem; align-content: start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); padding: 1.6rem; box-shadow: var(--shadow-s); }
.contact-quick .btn { justify-content: flex-start; }
.contact-quick__note { font-size: .9rem; color: var(--muted); margin: .4rem 0 0; }
.form { display: grid; gap: .9rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); padding: 1.6rem; box-shadow: var(--shadow-s); position: relative; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.form label { display: grid; gap: .3rem; font-family: var(--font-head); font-weight: 600; font-size: 1rem; text-transform: uppercase; letter-spacing: .02em; color: var(--ink-strong); }
.form input, .form textarea, .form select { font: inherit; font-family: var(--font-body); text-transform: none; letter-spacing: 0; padding: .7rem .85rem; border: 2px solid var(--line); border-radius: var(--radius-s); background: #fff; color: var(--ink); width: 100%; }
.form input:focus, .form textarea:focus, .form select:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px var(--red-t10); }
.form button { margin-top: .3rem; }
.form__hint { font-size: .8rem; color: var(--muted); }
.form__hp { position: absolute; left: -9999px; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } .form__row { grid-template-columns: 1fr; } }

/* ---------- Umzugs-Assistent (Wizard) ---------- */
.wizard { max-width: 800px; margin-inline: auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); box-shadow: var(--shadow-m); overflow: hidden; position: relative; }
.wizard__bar { display: flex; background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.wizard__tab { flex: 1; text-align: center; padding: .8rem .4rem; font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .02em; font-size: .82rem; color: var(--muted); border-bottom: 3px solid transparent; }
.wizard__tab[data-active="true"] { color: var(--red); border-bottom-color: var(--red); background: #fff; }
.wizard__tab span { display: grid; place-items: center; width: 1.6rem; height: 1.6rem; border-radius: 50%; background: var(--line); color: var(--ink); margin: 0 auto .25rem; font-size: .85rem; }
.wizard__tab[data-active="true"] span { background: var(--red); color: #fff; }
.wizard__panels { padding: clamp(1.4rem, 4vw, 2.2rem); }
.wizard__panel { display: none; }
.wizard__panel[data-active="true"] { display: block; }
.wizard__panel h3 { font-size: 1.6rem; margin-bottom: .3rem; }
.wizard__panel > p { color: var(--muted); margin-bottom: 1.2rem; }
.wizard__nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.6rem; }
.wizard__grid { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
@media (max-width: 620px) { .wizard__grid { grid-template-columns: 1fr; } .wizard__tab { font-size: 0; } .wizard__tab span { font-size: .85rem; margin-bottom: 0; } }

/* ---------- Breadcrumb ---------- */
.crumbs { font-size: .9rem; color: var(--muted); padding-block: 1rem; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--red); }

/* ---------- Footer ---------- */
.footer { background: var(--ink-strong); color: #b7b7b7; padding-block: 3.5rem 2rem; font-size: .95rem; }
.footer a { color: #b7b7b7; }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 2rem; }
.footer__logo img { height: 44px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer h4 { color: #fff; font-size: 1.2rem; margin-bottom: .9rem; text-transform: uppercase; }
.footer ul { list-style: none; padding: 0; display: grid; gap: .5rem; }
.footer__cities { columns: 2; column-gap: 1.5rem; font-size: .88rem; }
.footer__cities a { display: block; margin-bottom: .35rem; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.5rem; padding-top: 1.5rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .85rem; color: #8a8a8a; }
.footer__bottom a { color: #8a8a8a; }
.footer__orte { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.5rem; padding-top: 1.5rem; }
.footer__orte h4 { color: #fff; font-size: 1.1rem; text-transform: uppercase; margin-bottom: .8rem; }
.footer__orte-links { font-size: .82rem; line-height: 1.9; color: #8a8a8a; }
.footer__orte-links a { color: #b7b7b7; }
.footer__orte-links a:hover { color: #fff; }
.footer__orte-bl { display: block; margin-bottom: .55rem; }
.footer__orte-bl b { color: #fff; }

/* ---------- Floating WhatsApp ---------- */
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 60; width: 60px; height: 60px; border-radius: 50%; background: var(--green); box-shadow: var(--shadow-l); display: grid; place-items: center; animation: wa-pulse 2.6s infinite; }
.wa-float img { width: 32px; height: 32px; }
.wa-float:hover { transform: scale(1.05); }
@keyframes wa-pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* ---------- Sticky CTA-Leiste (mobil) ---------- */
.cta-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: none; gap: .5rem; padding: .55rem .7rem calc(.55rem + env(safe-area-inset-bottom)); background: rgba(255,255,255,.97); backdrop-filter: blur(10px); border-top: 1px solid var(--line); box-shadow: 0 -4px 16px rgba(3,3,3,.08); }
.cta-bar .btn { flex: 1; justify-content: center; }
@media (max-width: 720px) {
  .cta-bar { display: flex; }
  .wa-float { display: none; }
  body { padding-bottom: 76px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav__links, .nav__cta .btn--ghost { display: none; }
  .nav__toggle { display: block; }
  .nav[data-open="true"] .nav__links { display: flex; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column; align-items: flex-start; background: #fff; border-bottom: 1px solid var(--line); padding: 1rem 1.25rem; gap: 1rem; box-shadow: var(--shadow-m); }
  .nav[data-open="true"] .nav__menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding-left: .5rem; }
  .footer__grid { grid-template-columns: 1fr; }
}

/* ---------- Trust-Badges (Hero) ---------- */
.trust-row { display: flex; flex-wrap: wrap; gap: .55rem .6rem; margin-top: 1.3rem; }
.trust-badge { display: inline-flex; align-items: center; gap: .35rem; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .03em; font-size: .82rem; color: var(--ink-strong); background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .38rem .8rem; }
.trust-badge--star { color: var(--red-dark); border-color: var(--red-t20); background: var(--red-lightest); }

/* ---------- Bewertungen ---------- */
.reviews-head { text-align: center; margin-bottom: 2rem; }
.reviews-score { font-family: var(--font-head); font-weight: 800; font-size: 3.2rem; line-height: 1; color: var(--ink-strong); }
.reviews-stars { color: #f5b301; font-size: 1.5rem; letter-spacing: .12em; margin-top: .1rem; }
.reviews-meta { color: var(--muted); margin-top: .5rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.1rem; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.3rem 1.4rem; box-shadow: var(--shadow-s); display: flex; flex-direction: column; }
.review-card__stars { color: #f5b301; letter-spacing: .1em; margin-bottom: .5rem; }
.review-card__text { font-size: .98rem; line-height: 1.55; color: var(--ink); }
.review-card__author { margin-top: .9rem; font-weight: 600; font-size: .88rem; color: var(--muted); font-style: normal; }

/* ---------- Einfaches Anfrage-Formular (senioren-freundlich) ---------- */
.anfrage-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 1.6rem; align-items: start; max-width: 940px; margin-inline: auto; }
.anfrage-grid .form label { font-size: 1.05rem; }
.anfrage-grid .form input, .anfrage-grid .form textarea, .anfrage-grid .form select { font-size: 1.05rem; padding: .8rem .9rem; }
.anfrage-direkt { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-l); padding: 1.6rem; box-shadow: var(--shadow-s); display: grid; gap: .7rem; }
.anfrage-direkt h3 { margin-bottom: .2rem; }
.anfrage-direkt .btn { justify-content: center; }
@media (max-width: 820px) { .anfrage-grid { grid-template-columns: 1fr; } }

/* ---------- Google-Bewertungssiegel ---------- */
.gbadge{ display:inline-flex; align-items:center; gap:.65rem; background:#fff; border:1px solid var(--line);
  border-radius:12px; padding:.5rem .9rem; box-shadow:var(--shadow-s); text-decoration:none;
  margin-top:1.1rem; width:max-content; max-width:100% }
.gbadge:hover{ box-shadow:var(--shadow-m); text-decoration:none; transform:translateY(-1px) }
.gbadge__g{ display:flex; flex:none }
.gbadge__txt{ display:flex; flex-direction:column; line-height:1.15 }
.gbadge__top{ display:inline-flex; align-items:center; gap:.45rem }
.gbadge__top b{ font-family:var(--font-head); font-weight:800; font-size:1.25rem; color:var(--ink-strong) }
.gbadge__stars{ color:#f5b301; font-size:1rem; letter-spacing:.04em }
.gbadge__sub{ font-size:.82rem; color:var(--muted) }

/* ---------- Header-Telefon (farblich hinterlegt) ---------- */
.btn--phone { background: var(--red-lightest); color: var(--red-dark); border-color: var(--red-t20); }
.btn--phone:hover { background: var(--red-t20); color: var(--red-darker); border-color: var(--red); }
