/* ==========================================================================
   techhilfe.at – Öffentliches Designsystem
   Systemschriften, Markenfarben Grün/Rot, helles, ruhiges, hochwertiges Design.
   Ziel: klein, zugänglich (WCAG 2.2 AA), ohne Layoutverschiebungen.
   ========================================================================== */

:root {
  --brand-700: #0f5f34;
  /* Interaktives Grün: eine Spur dunkler als das Markengrün #168a4a, damit
     weisse Schrift auf Buttons/Badges und Grün-auf-Weiss-Links WCAG 2.2 AA
     erreichen (Kontrast >= 4.5:1). Das Logo bleibt beim Markengrün. */
  --brand-600: #15803f;
  --brand-500: #1ba158;
  --brand-050: #e8f3ec;
  --brand-100: #d3e8dc;

  --accent-600: #d72638;
  --accent-050: #fdecee;

  --ink: #16241c;
  --text: #2c3b34;
  --muted: #5d6d64;
  --line: #e3e8e4;
  --line-strong: #cdd6d0;

  --bg: #ffffff;
  --bg-soft: #f4f8f5;
  --bg-warm: #f7faf8;

  --white: #ffffff;
  --ring: #1ba158;
  --danger: #c11f30;
  --danger-bg: #fdecee;
  --ok: #0f7a43;
  --ok-bg: #e8f3ec;
  --warn: #8a5a00;
  --warn-bg: #fdf3e0;

  --shadow-sm: 0 1px 2px rgba(16, 40, 28, .06), 0 1px 3px rgba(16, 40, 28, .05);
  --shadow-md: 0 6px 20px rgba(16, 60, 40, .08);
  --shadow-lg: 0 18px 44px rgba(16, 60, 40, .12);

  --radius: 14px;
  --radius-lg: 22px;
  --radius-sm: 10px;

  --container: 1120px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
          "Apple Color Emoji", "Segoe UI Emoji", sans-serif;

  --step: clamp(1rem, .9rem + .5vw, 1.125rem);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--step);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; font-weight: 700; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 1.5rem + 2.4vw, 3.15rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.55rem, 1.2rem + 1.4vw, 2.25rem); letter-spacing: -.015em; }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }
a { color: var(--brand-600); text-decoration-thickness: .08em; text-underline-offset: .15em; }
a:hover { color: var(--brand-700); }
img, svg { max-width: 100%; height: auto; display: block; }
/* `hidden` muss auch bei Elementen mit eigener display-Regel greifen
   (z. B. .btn, .field__error) – sonst bleiben ausgeblendete Elemente sichtbar. */
[hidden] { display: none !important; }
strong { color: var(--ink); }
ul, ol { padding-left: 1.2em; }

/* Fokus – gut sichtbar */
:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--brand-700); color: #fff; padding: .75rem 1.1rem;
  border-radius: 0 0 var(--radius-sm) 0; font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1rem, .5rem + 2vw, 2rem); }

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

/* -------------------------------------------------- Buttons ------------- */
.btn {
  --btn-bg: var(--brand-600); --btn-fg: #fff; --btn-bd: var(--brand-600);
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 48px; padding: .7rem 1.4rem;
  font: inherit; font-weight: 650; line-height: 1.1;
  color: var(--btn-fg); background: var(--btn-bg);
  border: 2px solid var(--btn-bd); border-radius: 999px;
  text-decoration: none; cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease;
}
.btn:hover { background: var(--brand-700); border-color: var(--brand-700); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--brand-700); --btn-bd: var(--line-strong); }
.btn--ghost:hover { background: var(--brand-050); border-color: var(--brand-500); color: var(--brand-700); }
.btn--secondary { --btn-bg: var(--ink); --btn-bd: var(--ink); }
.btn--secondary:hover { background: #0c1712; border-color: #0c1712; }
.btn--lg { min-height: 56px; padding: .95rem 1.9rem; font-size: 1.08rem; }
/* Anrufen ist die schnellste Kontaktaufnahme – deshalb die Signalfarbe */
.btn--call { --btn-bg: var(--accent-600); --btn-bd: var(--accent-600); }
.btn--call:hover { background: #b81f2e; border-color: #b81f2e; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }

/* -------------------------------------------------- Header -------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; gap: 1rem; min-height: 68px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; margin-right: auto; }
.brand__logo { height: 34px; width: auto; }
.brand__name { font-weight: 800; font-size: 1.2rem; color: var(--ink); letter-spacing: -.02em; }
.brand__name .dot { color: var(--accent-600); }

.nav { display: flex; align-items: center; gap: .3rem; }
.nav__list { display: flex; align-items: center; gap: .2rem; list-style: none; margin: 0; padding: 0; }
.nav__link {
  display: inline-block; padding: .55rem .8rem; border-radius: var(--radius-sm);
  color: var(--text); text-decoration: none; font-weight: 550; font-size: .98rem;
}
.nav__link:hover { background: var(--brand-050); color: var(--brand-700); }
.header-tel { display: inline-flex; align-items: center; gap: .4rem; font-weight: 650; color: var(--ink); text-decoration: none; padding: .5rem .7rem; }
.header-tel:hover { color: var(--brand-700); }
.header-tel__label { white-space: nowrap; }
.header-actions { display: flex; align-items: center; gap: .5rem; }
/* Nur auf schmalen Bildschirmen: die Navigation liegt dort hinter dem
   Menü-Knopf, der Anruf muss trotzdem mit einem Tipp erreichbar sein. */
.header-call {
  display: none; align-items: center; gap: .4rem; min-height: 48px;
  padding: .5rem .9rem; border-radius: var(--radius-sm);
  background: var(--accent-600); color: #fff; text-decoration: none;
  font-weight: 700; font-size: .95rem; white-space: nowrap;
}
.header-call:hover { background: #b81f2e; color: #fff; }
/* Header-CTA kompakter halten, damit der Text in einer Zeile bleibt */
.header-actions .btn { padding: .5rem 1.05rem; min-height: 44px; font-size: .92rem; white-space: nowrap; }

.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 48px; height: 48px; border: 1px solid var(--line-strong);
  background: #fff; border-radius: var(--radius-sm); cursor: pointer; color: var(--ink);
}

@media (max-width: 860px) {
  .header-call { display: inline-flex; }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; inset: 68px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: .6rem clamp(1rem, .5rem + 2vw, 2rem) 1rem;
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav[data-open="true"] { display: flex; }
  .nav__list { flex-direction: column; align-items: stretch; gap: .1rem; }
  .nav__link { padding: .85rem .8rem; font-size: 1.05rem; }
  .header-actions { flex-direction: column; align-items: stretch; margin-top: .5rem; }
  .header-actions .btn { width: 100%; }
  .header-tel {
    justify-content: center; min-height: 48px; border-radius: var(--radius-sm);
    border: 1.5px solid var(--accent-600); color: var(--accent-600); font-size: 1.05rem;
  }
}

/* Auf sehr schmalen Geräten bleibt nur das Hörer-Symbol – der Anruf-Knopf muss
   neben Logo und Menü-Knopf Platz haben, ohne den Kopfbereich umzubrechen. */
@media (max-width: 400px) {
  .header-call span { display: none; }
  .header-call { padding-inline: .7rem; }
}

/* -------------------------------------------------- Sections ----------- */
.section { padding: clamp(3rem, 2rem + 5vw, 5.5rem) 0; }
.section--alt { background: var(--bg-soft); }
.section--warm { background: var(--bg-warm); }
.section__head { max-width: 46rem; margin-bottom: 2.5rem; }
.section__head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand-700); background: var(--brand-050);
  padding: .35rem .7rem; border-radius: 999px; margin-bottom: 1rem;
}
.section__lead { font-size: 1.12rem; color: var(--muted); }
.section__lead--narrow { margin-inline: auto; max-width: 34rem; }

/* -------------------------------------------------- Hero --------------- */
.hero { position: relative; overflow: hidden; background:
    radial-gradient(1200px 500px at 80% -10%, var(--brand-050), transparent 60%),
    linear-gradient(180deg, #fff, var(--bg-warm)); }
.hero__inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(1.5rem, 1rem + 3vw, 3.5rem);
  align-items: center; padding: clamp(2.5rem, 1.5rem + 5vw, 5rem) 0 clamp(2.5rem, 1.5rem + 4vw, 4.5rem); }
.hero__title { margin-bottom: .5rem; }
.hero__title .accent { color: var(--brand-600); }
.hero__subtitle { font-size: 1.2rem; color: var(--text); max-width: 34rem; margin-bottom: 1.6rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.8rem; }
.hero__cta--center { justify-content: center; }
.hero__trust { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .6rem .9rem; }
.hero__trust li { display: flex; align-items: flex-start; gap: .5rem; font-size: .98rem; color: var(--text); }
.hero__trust .icon { color: var(--brand-600); flex: 0 0 auto; margin-top: .15rem; }

.hero__media { position: relative; }
.person-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.person-card__photo { width: 100%; height: auto; aspect-ratio: 2 / 3; object-fit: cover; background: var(--brand-050); display: block; }
.person-card__body { padding: 1.1rem 1.2rem 1.3rem; }
.person-card__name { font-weight: 750; color: var(--ink); font-size: 1.15rem; }
.person-card__role { color: var(--brand-700); font-weight: 600; font-size: .95rem; margin-bottom: .5rem; }
.person-card__text { color: var(--muted); font-size: .95rem; margin: 0; }

@media (max-width: 820px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { max-width: 22rem; margin-inline: auto; order: -1; }
  .hero__trust { grid-template-columns: 1fr; }
}

/* -------------------------------------------------- Cards / grids ------ */
.grid { display: grid; gap: 1.1rem; }
.services-grid { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.3rem 1.3rem 1.4rem; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--brand-100); }
.card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--brand-050); color: var(--brand-700); margin-bottom: .9rem;
}
.card__title { font-size: 1.06rem; margin-bottom: .3rem; }
.card__text { color: var(--muted); font-size: .96rem; margin: 0; }

.icon { width: 24px; height: 24px; stroke-width: 1.9; }
.icon--lg { width: 26px; height: 26px; }

.callout {
  display: flex; gap: .75rem; align-items: flex-start;
  margin-top: 1.6rem; padding: 1rem 1.2rem;
  background: var(--brand-050); border: 1px solid var(--brand-100);
  border-radius: var(--radius); color: var(--brand-700);
}
.callout .icon { color: var(--brand-700); flex: 0 0 auto; }
.callout p { margin: 0; color: var(--ink); }

/* Features (Warum) */
.features { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.feature { display: flex; gap: .85rem; align-items: flex-start; }
.feature__icon { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 11px; background: var(--accent-050); color: var(--accent-600); display: inline-flex; align-items: center; justify-content: center; }
.feature__title { font-size: 1.02rem; margin: .1rem 0 .2rem; }
.feature__text { color: var(--muted); font-size: .95rem; margin: 0; }

/* -------------------------------------------------- Pricing ------------ */
.pricing-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); align-items: stretch; }
.price-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.price-card--highlight { border: 2px solid var(--brand-500); box-shadow: var(--shadow-md); position: relative; }
.price-badge { position: absolute; top: -.8rem; left: 1.6rem; background: var(--brand-600); color: #fff; font-size: .78rem; font-weight: 700; padding: .3rem .7rem; border-radius: 999px; letter-spacing: .03em; }
.price-card__title { font-size: 1.15rem; }
.price-amount { display: flex; align-items: baseline; gap: .35rem; margin: .3rem 0 .1rem; }
.price-amount .value { font-size: 2.3rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.price-amount .unit { color: var(--muted); font-weight: 600; }
.price-list { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: .55rem; }
.price-list li { display: flex; gap: .55rem; align-items: flex-start; color: var(--text); font-size: .97rem; }
.price-list .icon { color: var(--brand-600); flex: 0 0 auto; margin-top: .12rem; width: 20px; height: 20px; }
.price-note { margin-top: 1.1rem; padding-top: 1rem; border-top: 1px dashed var(--line-strong); color: var(--muted); font-size: .9rem; }
.vat-note { margin-top: 1.4rem; color: var(--muted); font-size: .92rem; }

/* -------------------------------------------------- Area --------------- */
.area-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 1rem + 3vw, 3rem); align-items: center; }
.area-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.2rem 0; }
.area-chip { background: #fff; border: 1px solid var(--line-strong); border-radius: 999px; padding: .45rem .9rem; font-size: .93rem; font-weight: 550; color: var(--ink); }
.region-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.region-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem; box-shadow: var(--shadow-sm); text-decoration: none; color: inherit; transition: transform .18s ease, box-shadow .18s ease; }
.region-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.region-card h3 { color: var(--brand-700); }
.map-figure { background: linear-gradient(160deg, var(--brand-050), #fff); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.map-figure svg { width: 100%; height: auto; }
@media (max-width: 780px) { .area-inner { grid-template-columns: 1fr; } .region-cards { grid-template-columns: 1fr; } }

/* -------------------------------------------------- Steps -------------- */
.steps { counter-reset: step; display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); list-style: none; margin: 0; padding: 0; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.3rem 1.3rem; box-shadow: var(--shadow-sm); }
.step__num { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--brand-600); color: #fff; font-weight: 800; margin-bottom: .7rem; }
.step__title { font-size: 1.04rem; margin-bottom: .25rem; }
.step__text { color: var(--muted); font-size: .95rem; margin: 0; }
.process-note { margin-top: 1.6rem; }

/* Info banner */
.banner {
  display: flex; gap: .7rem; align-items: flex-start;
  padding: 1rem 1.2rem; border-radius: var(--radius); font-size: .98rem;
}
.banner--info { background: var(--brand-050); border: 1px solid var(--brand-100); color: var(--ink); }
.banner--info .icon { color: var(--brand-700); flex: 0 0 auto; }
.banner p { margin: 0; }
.banner--warn { background: var(--warn-bg); border: 1px solid #f0dcae; color: #6b4600; }
.banner--spaced { margin-top: 1.6rem; }
.banner .icon { flex: 0 0 auto; }
.banner p { margin: 0; }

/* -------------------------------------------------- FAQ ---------------- */
.faq { display: grid; gap: .7rem; max-width: 52rem; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.05rem 1.2rem; font-weight: 650; color: var(--ink); cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--brand-700); }
.faq__q .chev { flex: 0 0 auto; transition: transform .2s ease; color: var(--brand-600); }
.faq__item[open] .faq__q .chev { transform: rotate(180deg); }
.faq__a { padding: 0 1.2rem 1.15rem; color: var(--text); }
.faq__a p { margin: 0; }

/* -------------------------------------------------- Person section ----- */
.person { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(1.5rem, 1rem + 3vw, 3rem); align-items: center; }
.person__points { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: .5rem; }
.person__points li { display: flex; gap: .5rem; align-items: flex-start; color: var(--text); }
.person__points .icon { color: var(--brand-600); flex: 0 0 auto; margin-top: .15rem; }
@media (max-width: 780px) { .person { grid-template-columns: 1fr; } .person .person__media { max-width: 20rem; } }

/* -------------------------------------------------- Footer ------------- */
.site-footer { background: var(--ink); color: #cdd9d1; padding: 3rem 0 2rem; }
.site-footer a { color: #dfeee6; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-brand__name { color: #fff; font-weight: 800; font-size: 1.2rem; }
.footer-brand__name .dot { color: #ff8a94; }
.footer-brand__text { color: #a9bcb2; margin-top: .6rem; max-width: 24rem; }
.footer-col h2 { color: #fff; font-size: .95rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .8rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .4rem; }
.footer-tel { display: inline-flex; align-items: center; gap: .45rem; font-size: 1.15rem; font-weight: 750; color: #fff; }
.footer-tel .icon { width: 20px; height: 20px; flex: 0 0 auto; }
.footer-hours { color: #9db0a6; font-size: .88rem; margin-top: -.2rem; }
.footer-legal { border-top: 1px solid rgba(255,255,255,.14); padding-top: 1.2rem; font-size: .88rem; color: #9db0a6; display: flex; flex-wrap: wrap; gap: .3rem 1rem; justify-content: space-between; }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 1.4rem; } }

.cta-band__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }
.cta-band__actions .btn { flex: 0 1 auto; }
@media (max-width: 520px) { .cta-band__actions .btn { flex: 1 1 100%; } }

/* -------------------------------------------------- Kontaktseite ------- */
.contact-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); align-items: stretch; }
.contact-card {
  display: flex; flex-direction: column; gap: .55rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.6rem; box-shadow: var(--shadow-sm);
}
.contact-card--primary { border: 2px solid var(--accent-600); box-shadow: var(--shadow-md); }
.contact-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--brand-050); color: var(--brand-700);
}
.contact-card--primary .contact-card__icon { background: var(--accent-050); color: var(--accent-600); }
.contact-card__title { font-size: 1.1rem; margin: .2rem 0 0; }
.contact-card__value {
  font-size: 1.6rem; font-weight: 800; color: var(--ink); text-decoration: none;
  letter-spacing: -.01em; word-break: break-word;
}
.contact-card__value:hover { color: var(--accent-600); }
.contact-card__value--sm { font-size: 1.1rem; font-weight: 700; }
.contact-card__badge {
  display: flex; align-items: center; gap: .4rem; margin: 0;
  color: var(--ok); font-weight: 650; font-size: .92rem;
}
.contact-card__badge .icon, .contact-card .muted .icon { width: 18px; height: 18px; flex: 0 0 auto; vertical-align: -.2em; }
.contact-card .muted { margin: 0; font-size: .95rem; }
.contact-card .btn { margin-top: auto; }

/* -------------------------------------------------- Anruf ------------- */
.call-section .call-card {
  display: grid; grid-template-columns: 1.35fr .65fr;
  gap: clamp(1.5rem, 1rem + 3vw, 3rem); align-items: center;
  background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--accent-600);
  border-radius: var(--radius-lg); padding: clamp(1.4rem, 1rem + 2vw, 2.4rem);
  box-shadow: var(--shadow-sm);
}
.call-card__text h2 { margin-bottom: .4rem; }
.call-card__points { list-style: none; margin: 1.2rem 0 0; padding: 0; display: grid; gap: .6rem; }
.call-card__points li { display: flex; gap: .55rem; align-items: flex-start; color: var(--text); font-size: .98rem; }
.call-card__points .icon { color: var(--accent-600); flex: 0 0 auto; margin-top: .12rem; }
.call-card__action { display: grid; gap: .7rem; }
.call-card__action .btn--call { font-size: 1.15rem; letter-spacing: .01em; }
.call-card__hours { display: flex; align-items: center; justify-content: center; gap: .4rem;
  margin: 0; color: var(--muted); font-size: .92rem; }
.call-card__hours .icon { width: 18px; height: 18px; flex: 0 0 auto; }
.call-card__note { margin: 0; font-size: .88rem; text-align: center; }
@media (max-width: 780px) {
  .call-section .call-card { grid-template-columns: 1fr; }
}

/* Fester Schnellkontakt am unteren Rand – nur auf Handy/kleinem Tablet.
   Der Cookie-Hinweis liegt darüber (z-index 200) und verdeckt die Leiste,
   bis er beantwortet ist; das ist gewollt. */
.callbar {
  display: none; position: fixed; inset: auto 0 0 0; z-index: 150;
  gap: .5rem; padding: .5rem clamp(.6rem, 3vw, 1rem) calc(.5rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .96); backdrop-filter: saturate(1.4) blur(8px);
  border-top: 1px solid var(--line-strong); box-shadow: 0 -6px 20px rgba(16, 60, 40, .1);
}
.callbar__btn {
  flex: 1 1 0; display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 54px; padding: .5rem .8rem; border-radius: var(--radius-sm);
  text-decoration: none; font-weight: 700; line-height: 1.15; text-align: left;
}
.callbar__btn .icon { flex: 0 0 auto; }
.callbar__strong { display: block; font-size: 1rem; }
.callbar__sub { display: block; font-weight: 500; font-size: .78rem; opacity: .85; }
.callbar__btn--call { background: var(--accent-600); color: #fff; }
.callbar__btn--call:hover { background: #b81f2e; color: #fff; }
.callbar__btn--ask { background: #fff; color: var(--ink); border: 1.5px solid var(--line-strong); }
.callbar__btn--ask:hover { border-color: var(--brand-500); color: var(--brand-700); }
@media (max-width: 860px) {
  .callbar { display: flex; }
  /* Platz schaffen, damit die Leiste nie den Seitenabschluss verdeckt. Die
     Klasse setzt das Layout nur, wenn die Leiste auch ausgegeben wird. */
  body.has-callbar { padding-bottom: 78px; }
}
@media print { .callbar { display: none; } }

/* -------------------------------------------------- Utilities ---------- */
.center { text-align: center; }
.text-left { text-align: left; }
.mt-1 { margin-top: .2rem; }
.mt-2 { margin-top: 1.5rem; } .mt-3 { margin-top: 2.2rem; }
/* Exakte Margin-Utilities (Wert in rem * 100), ergänzend zu .mt-1/.mt-2/.mt-3 */
.mt-100 { margin-top: 1rem; }
.mt-140 { margin-top: 1.4rem; }
.mt-160 { margin-top: 1.6rem; }
.mt-200 { margin-top: 2rem; }
.announcement { padding-top: 1rem; }
.muted { color: var(--muted); }
.lead { font-size: 1.12rem; color: var(--text); }
.anchor { scroll-margin-top: 84px; }

/* -------------------------------------------------- Motion ------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* ==========================================================================
   Anfrage-Flow (Mehrschritt-Formular)
   ========================================================================== */
.request-section { background:
    radial-gradient(900px 400px at 15% 0%, var(--brand-050), transparent 55%),
    var(--bg-soft); }
.wizard-wrap { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 60rem; margin-inline: auto; }
.wizard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: clamp(1.2rem, .8rem + 2vw, 2.2rem);
}
.wizard__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.wizard__step-label { font-weight: 650; color: var(--brand-700); font-size: .95rem; }
.progressbar { height: 8px; background: var(--brand-050); border-radius: 999px; overflow: hidden; margin-bottom: 1.6rem; }
.progressbar__fill { height: 100%; background: linear-gradient(90deg, var(--brand-500), var(--brand-600)); border-radius: 999px; width: 16%; transition: width .3s ease; }

.step-panel { display: none; }
.step-panel.is-active { display: block; animation: fade .25s ease; }
.no-js .step-panel { display: block; border-top: 1px dashed var(--line); padding-top: 1.4rem; margin-top: 1.4rem; }
.no-js .step-panel:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.no-js .wizard__nav, .no-js .progressbar, .no-js .wizard__head { display: none; }
@keyframes fade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

.step-panel__title { font-size: 1.3rem; margin-bottom: .3rem; }
.step-panel__hint { color: var(--muted); margin-bottom: 1.3rem; }

.field { margin-bottom: 1.15rem; }
.field__label { display: block; font-weight: 600; color: var(--ink); margin-bottom: .35rem; }
.field__label .req { color: var(--accent-600); }
.field__hint { color: var(--muted); font-size: .88rem; margin: .3rem 0 0; }
.input, .textarea, .select {
  width: 100%; font: inherit; color: var(--ink);
  padding: .8rem .9rem; min-height: 48px;
  background: #fff; border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.input:focus, .textarea:focus, .select:focus { outline: none; border-color: var(--brand-500); box-shadow: 0 0 0 3px var(--brand-050); }
.textarea { min-height: 130px; resize: vertical; line-height: 1.55; }
.field--error .input, .field--error .textarea, .field--error .select { border-color: var(--danger); background: #fff; }
.consent.field--error { border-color: var(--danger); }
.field__error { color: var(--danger); font-size: .9rem; margin: .4rem 0 0; display: flex; gap: .35rem; align-items: center; font-weight: 550; }
.field-row { display: grid; grid-template-columns: 2fr 1fr; gap: 1rem; }
.field-row--2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .field-row, .field-row--2 { grid-template-columns: 1fr; } }

/* Auswahl-Karten (Radio) */
.choice-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .7rem; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.choice__box {
  display: flex; align-items: center; gap: .7rem; height: 100%;
  padding: .9rem 1rem; min-height: 56px;
  border: 1.5px solid var(--line-strong); border-radius: var(--radius); background: #fff;
  font-weight: 550; color: var(--ink); transition: border-color .15s ease, background-color .15s ease;
}
.choice__box .icon { color: var(--brand-600); flex: 0 0 auto; }
.choice input:hover + .choice__box { border-color: var(--brand-400, var(--brand-500)); }
.choice input:checked + .choice__box { border-color: var(--brand-600); background: var(--brand-050); box-shadow: 0 0 0 1px var(--brand-600) inset; }
.choice input:focus-visible + .choice__box { outline: 3px solid var(--ring); outline-offset: 2px; }

/* Chips (Mehrfachauswahl) */
.chips { display: flex; flex-wrap: wrap; gap: .55rem; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chip__box { display: inline-flex; align-items: center; gap: .4rem; padding: .5rem .9rem; min-height: 44px; border: 1.5px solid var(--line-strong); border-radius: 999px; background: #fff; font-size: .95rem; color: var(--ink); }
.chip input:checked + .chip__box { border-color: var(--brand-600); background: var(--brand-050); color: var(--brand-700); font-weight: 600; }
.chip input:focus-visible + .chip__box { outline: 3px solid var(--ring); outline-offset: 2px; }

/* Adress-Autocomplete */
/* Bezugspunkt ist bewusst nur das Eingabefeld (nicht das ganze .field mit
   Label und Hinweis) – sonst klappt die Liste erst unter dem Hinweistext auf. */
.autocomplete__anchor { position: relative; }
.autocomplete__list {
  position: absolute; z-index: 30; left: 0; right: 0; top: calc(100% + 4px);
  background: #fff; border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md); list-style: none; margin: 0; padding: .25rem; max-height: 260px; overflow: auto;
}
.autocomplete__list[hidden] { display: none; }
.autocomplete__opt {
  padding: .6rem .7rem; border-radius: 8px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: baseline; gap: .8rem;
}
.autocomplete__opt[aria-selected="true"], .autocomplete__opt:hover { background: var(--brand-050); color: var(--brand-700); }
.autocomplete__region { color: var(--muted); font-size: .85rem; flex: 0 0 auto; }
.autocomplete__opt[aria-selected="true"] .autocomplete__region,
.autocomplete__opt:hover .autocomplete__region { color: var(--brand-700); }

/* Adresshinweis: „Meinten Sie …?“ – bewusst ein Hinweis, kein Fehler. */
.address-hint {
  margin-top: 1rem; padding: .9rem 1.1rem; border-radius: var(--radius);
  background: var(--warn-bg); border: 1px solid #f0dcae; color: #6b4600; font-size: .95rem;
}
.address-hint[hidden] { display: none; }
.address-hint__text { margin: 0; }
.address-hint__actions { margin: .7rem 0 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.address-hint__actions .btn { min-height: 44px; padding: .5rem 1rem; font-size: .92rem; background: #fff; }
.address-hint__note { margin: .7rem 0 0; font-size: .88rem; opacity: .85; }

/* Anfahrtskosten-Box */
.travel-box { margin-top: 1rem; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.travel-box__head { background: var(--brand-050); padding: .8rem 1rem; font-weight: 650; color: var(--brand-700); display: flex; align-items: center; gap: .5rem; }
.travel-box__body { padding: .3rem 1rem 1rem; }
.travel-line { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: .55rem 0; border-bottom: 1px dashed var(--line); font-size: .96rem; }
.travel-line > span:first-child { min-width: 0; }
.travel-line > span:last-child { text-align: right; }
.travel-line:last-child { border-bottom: 0; }
.travel-line--total { font-weight: 750; color: var(--ink); font-size: 1.08rem; border-bottom: 0; padding-top: .7rem; }
.travel-line .muted { color: var(--muted); }
/* Schmale Displays: Wert unter das Label statt gequetschter Zweispalter */
@media (max-width: 560px) {
  .travel-line { display: block; }
  .travel-line > span { display: block; }
  .travel-line > span:last-child { text-align: left; }
}
.travel-box.is-loading { opacity: .6; }
.travel-status { font-size: .9rem; color: var(--muted); margin-top: .5rem; }

/* Zusammenfassung */
.summary { display: grid; gap: .1rem; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.summary__row { display: grid; grid-template-columns: 12rem 1fr; gap: 1rem; padding: .75rem 1rem; background: #fff; }
.summary__row:nth-child(odd) { background: var(--bg-soft); }
.summary__row dt { color: var(--muted); font-weight: 600; margin: 0; }
.summary__row dd { margin: 0; color: var(--ink); }
@media (max-width: 560px) { .summary__row { grid-template-columns: 1fr; gap: .1rem; } }

/* Zustimmung */
.consent { display: flex; gap: .7rem; align-items: flex-start; padding: 1rem; border: 1.5px solid var(--line-strong); border-radius: var(--radius); background: #fff; }
.consent input { width: 22px; height: 22px; margin-top: .15rem; flex: 0 0 auto; accent-color: var(--brand-600); }
.consent label { color: var(--text); font-size: .97rem; }

/* Navigation */
.wizard__nav { display: flex; justify-content: space-between; gap: .8rem; margin-top: 1.6rem; }
.wizard__nav .spacer { flex: 1; }

/* Honeypot */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Formular-Alerts */
.form-alert { display: flex; gap: .7rem; align-items: flex-start; padding: 1rem 1.2rem; border-radius: var(--radius); margin-bottom: 1.4rem; }
.form-alert--error { background: var(--danger-bg); border: 1px solid #f2c2c8; color: #8a1420; }
.form-alert--info { background: var(--brand-050); border: 1px solid var(--brand-100); color: var(--ink); }
.form-alert .icon { flex: 0 0 auto; }
.form-alert strong { color: inherit; }

.noscript-note { margin-bottom: 1.4rem; }

/* -------------------------------------------------- Confirmation ------- */
.confirm { max-width: 46rem; margin-inline: auto; text-align: center; padding: clamp(2.5rem, 2rem + 4vw, 5rem) 0; }
.confirm__icon { display: inline-flex; align-items: center; justify-content: center; width: 84px; height: 84px; border-radius: 50%; background: var(--ok-bg); color: var(--ok); margin-bottom: 1.2rem; }
.confirm__number { display: inline-block; margin: 1.2rem 0; padding: .8rem 1.4rem; background: #fff; border: 2px dashed var(--brand-500); border-radius: var(--radius); font-size: 1.4rem; font-weight: 800; letter-spacing: .04em; color: var(--brand-700); }
.confirm__box { text-align: left; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.6rem; box-shadow: var(--shadow-sm); margin-top: 1.5rem; }
.confirm__box h2 { font-size: 1.15rem; }
.confirm__box ul { margin: .5rem 0 0; padding-left: 1.2rem; color: var(--text); }

/* -------------------------------------------------- Legal pages -------- */
.prose { max-width: 48rem; }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.4rem; }
.prose table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.prose th, .prose td { text-align: left; padding: .6rem .7rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.review-note { background: var(--warn-bg); border: 1px solid #f0dcae; color: #6b4600; padding: 1rem 1.2rem; border-radius: var(--radius); margin: 1.2rem 0; font-size: .95rem; }
.exception-trace { overflow: auto; background: #0d2318; color: #c8e6d3; padding: 1rem; border-radius: 12px; font-size: .8rem; }

/* -------------------------------------------------- 404 ---------------- */
.error-page { text-align: center; padding: clamp(3rem, 2rem + 6vw, 7rem) 0; }
.error-page .code { font-size: clamp(4rem, 3rem + 6vw, 7rem); font-weight: 800; color: var(--brand-600); line-height: 1; }

/* -------------------------------------------------- Cookie-Hinweis ----- */
/* Eingeblendeter Hinweis (unten fixiert) und dieselbe Darstellung als
   dauerhafter Block auf der Datenschutzseite. Kein Overlay, keine Sperre:
   die Seite bleibt ohne Entscheidung vollständig benutzbar. */
.cookie-notice { color: var(--text); }
.cookie-notice--banner {
  position: fixed; inset: auto 0 0 0; z-index: 200;
  padding: 1rem; background: rgba(22, 36, 28, .35);
}
.cookie-notice__inner {
  max-width: 46rem; margin-inline: auto;
  background: #fff; border: 1px solid var(--line-strong); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 1.3rem 1.5rem;
  max-height: min(80vh, 40rem); overflow-y: auto;
}
.cookie-notice--inline .cookie-notice__inner { box-shadow: var(--shadow-sm); }
.cookie-notice--inline { margin: 1.5rem 0 2.5rem; }
.cookie-notice__title { display: flex; align-items: center; gap: .5rem; font-size: 1.15rem; margin-bottom: .6rem; }
.cookie-notice__title:focus-visible { outline: 3px solid var(--ring); outline-offset: 3px; }
.cookie-notice__text { font-size: .95rem; margin-bottom: .9rem; }
.cookie-notice__summary { cursor: pointer; font-weight: 650; color: var(--brand-700); padding: .4rem 0; }
.cookie-notice__details { margin-bottom: 1rem; }
.cookie-cat { display: flex; gap: .7rem; align-items: flex-start; padding: .7rem 0; border-top: 1px solid var(--line); }
.cookie-cat input { width: 22px; height: 22px; margin-top: .15rem; flex: 0 0 auto; accent-color: var(--brand-600); }
.cookie-cat label { display: block; }
.cookie-cat p { margin: .15rem 0 0; font-size: .88rem; color: var(--muted); }
.cookie-notice__save { margin-top: .8rem; }
.cookie-notice__actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.cookie-notice__actions .btn { flex: 1 1 12rem; }
.cookie-notice__saved { display: flex; align-items: center; gap: .4rem; margin: .8rem 0 0; color: var(--ok); font-weight: 650; font-size: .9rem; }
.cookie-notice__meta { margin: .8rem 0 0; font-size: .82rem; color: var(--muted); }
@media (max-width: 560px) {
  .cookie-notice__inner { padding: 1.1rem 1.1rem 1.2rem; }
}

/* -------------------------------------------------- reCAPTCHA ---------- */
/* Das Badge wird ausgeblendet; der von Google geforderte Hinweis steht
   stattdessen im Fussbereich und beim Formular. */
.recaptcha-badge-hidden .grecaptcha-badge { visibility: hidden; }
.recaptcha-note { margin-top: .9rem; text-align: center; }
.footer-legal--fine { font-size: .8rem; opacity: .85; }

/* ==========================================================================
   Unterseiten: Brotkrumen, Themen-, Orts- und Preisseiten
   ========================================================================== */

/* -------------------------------------------------- Brotkrumen --------- */
.breadcrumb { background: var(--bg-soft); border-bottom: 1px solid var(--line); font-size: .9rem; }
.breadcrumb__list { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: .35rem;
  margin: 0; padding: .7rem 0; color: var(--muted); }
.breadcrumb__item { display: inline-flex; align-items: center; gap: .35rem; }
.breadcrumb__item [aria-current="page"] { color: var(--ink); font-weight: 600; }
.breadcrumb__sep { width: 16px; height: 16px; transform: rotate(-90deg); color: var(--line-strong); }

/* -------------------------------------------------- Themenkopf --------- */
.hero--compact .topic-head { max-width: 48rem; padding: clamp(2rem, 1.2rem + 3.5vw, 3.6rem) 0; }
.hero--compact .hero__subtitle { max-width: 46rem; }

/* Anklickbare Karten (Leistungs- und Ortsverweise) */
.card--link { display: block; text-decoration: none; color: inherit; }
.card--link:hover .card__title { color: var(--brand-700); }
.card__more { display: inline-flex; align-items: center; gap: .35rem; margin-top: .8rem;
  font-size: .9rem; font-weight: 650; color: var(--brand-600); }
.card__more .icon { width: 18px; height: 18px; }

.area-chip--link { display: inline-flex; align-items: center; gap: .35rem; text-decoration: none;
  transition: border-color .18s ease, background-color .18s ease; }
.area-chip--link:hover { border-color: var(--brand-500); background: var(--brand-050); color: var(--brand-700); }

/* -------------------------------------------------- Symptomliste ------- */
.symptom-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); }
.symptom { display: flex; gap: .65rem; align-items: flex-start; background: #fff;
  border: 1px solid var(--line); border-left: 3px solid var(--accent-600);
  border-radius: var(--radius-sm); padding: .85rem 1rem; box-shadow: var(--shadow-sm); }
.symptom .icon { color: var(--accent-600); flex: 0 0 auto; width: 20px; height: 20px; margin-top: .15rem; }

.price-list--two { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: .7rem 2rem; }

/* -------------------------------------------------- Hinweiskarte ------- */
.note-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.5rem; box-shadow: var(--shadow-sm); }
.note-card h3 { display: flex; align-items: center; gap: .5rem; color: var(--brand-700); }
.note-card h3 .icon { flex: 0 0 auto; }
.note-card > :last-child { margin-bottom: 0; }

/* -------------------------------------------------- Ortsliste ---------- */
.location-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.location-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.1rem 1.2rem; box-shadow: var(--shadow-sm); text-decoration: none; color: inherit;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.location-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--brand-100); }
.location-card h3 { display: flex; align-items: center; gap: .4rem; font-size: 1.05rem;
  margin-bottom: .3rem; color: var(--brand-700); }
.location-card p { font-size: .92rem; margin: 0 0 .3rem; }
.location-card__zip { font-size: .82rem; color: var(--muted); letter-spacing: .02em; }

/* -------------------------------------------------- Preistabelle ------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.price-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; min-width: 34rem; }
.price-table th, .price-table td { padding: .8rem 1rem; text-align: left; border-bottom: 1px solid var(--line); }
.price-table thead th { background: var(--brand-050); color: var(--brand-700); font-size: .9rem;
  text-transform: uppercase; letter-spacing: .04em; }
.price-table tbody tr:last-child th, .price-table tbody tr:last-child td { border-bottom: 0; }
.price-table tbody th { font-weight: 650; color: var(--ink); }

/* -------------------------------------------------- Abschluss-CTA ------ */
.cta-band { background: linear-gradient(180deg, var(--bg-warm), #fff); }
