/* ==========================================================================
   IngKfz – Kfz-Sachverständigenbüro
   Single stylesheet, no framework. ~12 KB unminified.
   ========================================================================== */

:root {
  --navy-900: #071f36;
  --navy-800: #0b2d4d;
  --navy-700: #123a61;
  --navy-100: #e3ebf4;
  --orange-600: #e64a19;
  --orange-500: #ff5722;
  --orange-100: #ffe9e1;
  --green-500: #1e9e5a;
  --ink-900: #14203a;
  --ink-700: #33415c;
  --ink-500: #5b6b86;
  --line: #dfe5ee;
  --bg: #f5f7fa;
  --card: #ffffff;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(7, 31, 54, .06), 0 1px 3px rgba(7, 31, 54, .08);
  --shadow-md: 0 8px 24px rgba(7, 31, 54, .10);
  --shadow-lg: 0 20px 50px rgba(7, 31, 54, .18);
  --container: 1160px;
  --font: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--bg);
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-800); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--orange-600); }
h1, h2, h3, h4 { color: var(--ink-900); line-height: 1.18; margin: 0 0 .5em; font-weight: 800; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
ul { padding-left: 1.2em; }
strong { color: var(--ink-900); }
:focus-visible { outline: 3px solid var(--orange-500); outline-offset: 3px; border-radius: 4px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 1rem; top: -4rem; background: var(--orange-500); color: #fff; padding: .6rem 1rem; border-radius: var(--radius-sm); z-index: 1000; }
.skip-link:focus { top: 1rem; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section--white { background: var(--card); }
.section--navy { background: var(--navy-800); color: #d6e1ee; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section-head { max-width: 720px; margin-bottom: 2.5rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.eyebrow { display: inline-block; font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--orange-600); margin-bottom: .75rem; }
.section--navy .eyebrow { color: #ffb59c; }
.lead { font-size: 1.15rem; color: var(--ink-500); }
.section--navy .lead { color: #b7c7d9; }

/* Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.5rem; border-radius: 999px; font-weight: 800; font-size: 1rem;
  text-decoration: none; border: 2px solid transparent; cursor: pointer; line-height: 1.2;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--orange-500); color: #fff; box-shadow: 0 6px 18px rgba(255, 87, 34, .35); }
.btn--primary:hover { background: var(--orange-600); color: #fff; }
.btn--whatsapp { background: #25d366; color: #fff; box-shadow: 0 6px 18px rgba(37, 211, 102, .3); }
.btn--whatsapp:hover { background: #1fb457; color: #fff; }
.btn--outline { background: transparent; color: var(--navy-800); border-color: var(--navy-800); }
.btn--outline:hover { background: var(--navy-800); color: #fff; }
.btn--light { background: #fff; color: var(--navy-800); }
.btn--light:hover { background: var(--navy-100); color: var(--navy-900); }
.btn--ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.35); }
.btn--ghost:hover { background: rgba(255,255,255,.2); color: #fff; }
.btn--lg { padding: 1rem 1.9rem; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

/* Header -------------------------------------------------------------- */
.topbar { background: var(--navy-900); color: #b7c7d9; font-size: .85rem; }
.topbar .container { display: flex; justify-content: space-between; gap: 1rem; padding: .4rem 0; flex-wrap: wrap; }
.topbar a { color: #fff; text-decoration: none; }
.topbar a:hover { color: #ffb59c; }
.topbar span + span { margin-left: 1.25rem; }
@media (max-width: 720px) { .topbar { display: none; } }

.header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); backdrop-filter: saturate(180%) blur(10px); border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s; }
.header.is-scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.header .container { display: flex; align-items: center; gap: 1.5rem; height: 88px; }
.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; color: var(--navy-800); font-weight: 800; font-size: 1.45rem; letter-spacing: -.02em; }
.brand:hover { color: var(--navy-800); }
.brand__mark { width: 60px; height: 60px; flex: none; border-radius: 12px; transition: transform .2s ease; }
.brand:hover .brand__mark { transform: scale(1.04); }
.brand small { display: block; font-size: .74rem; font-weight: 600; color: var(--ink-500); letter-spacing: .01em; line-height: 1; margin-top: .2rem; }
.nav { margin-left: auto; }
.nav > ul { list-style: none; margin: 0; padding: 0; display: flex; gap: .35rem; }
.nav > ul > li { position: relative; }
.nav a { display: block; padding: .6rem .3rem; font-weight: 700; color: var(--ink-700); text-decoration: none; font-size: .95rem; position: relative; transition: color .18s ease; }
/* Orange Unterstrich, der von links einläuft – wie auf der bisherigen Seite */
.nav > ul > li > a::after { content: ""; position: absolute; left: .3rem; right: .3rem; bottom: .15rem; height: 2px; background: var(--orange-500); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .22s ease; }
.nav > ul > li > a:hover { color: var(--navy-800); }
.nav > ul > li > a:hover::after { transform: scaleX(1); }
.nav > ul > li > a[aria-current="page"] { color: var(--orange-600); }
.nav > ul > li > a[aria-current="page"]::after { transform: scaleX(1); }
.nav > ul > li + li { margin-left: .5rem; }
.caret { display: inline-block; width: 7px; height: 7px; margin-left: .4rem; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: translateY(-2px) rotate(45deg); opacity: .6; }
.sub-toggle { display: none; }
.subnav { list-style: none; margin: 0; padding: .4rem; position: absolute; top: 100%; left: -.6rem; min-width: 230px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .18s ease, transform .18s ease, visibility .18s; z-index: 10; }
.has-sub:hover .subnav, .has-sub:focus-within .subnav { opacity: 1; visibility: visible; transform: translateY(0); }
.subnav a { padding: .6rem .75rem; border-radius: var(--radius-sm); font-size: .93rem; }
.subnav a:hover, .subnav a[aria-current="page"] { background: var(--orange-100); color: var(--orange-600); }
.header .btn { padding: .7rem 1.2rem; font-size: .95rem; }
.nav-toggle { display: none; margin-left: auto; width: 46px; height: 46px; border: 1px solid var(--line); background: #fff; border-radius: var(--radius-sm); cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy-800); position: relative; transition: background .2s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--navy-800); transition: transform .2s; }
.nav-toggle span::before { top: -7px; } .nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 1040px) {
  .nav { position: absolute; left: 0; right: 0; top: 88px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); display: none; padding: .75rem 1.25rem 1.25rem; }
  .nav.is-open { display: block; }
  .nav > ul { flex-direction: column; gap: 0; }
  .nav > ul > li + li { margin-left: 0; }
  .nav a { padding: .9rem .5rem; border-bottom: 1px solid var(--line); border-radius: 0; font-size: 1.05rem; }
  .nav > ul > li > a::after { display: none; }
  .nav > ul > li:last-child > a { border-bottom: 0; }
  .nav-toggle { display: flex; }
  .header .btn--header { display: none; }
  .brand__mark { width: 52px; height: 52px; }
  .brand { font-size: 1.3rem; }
  /* Untermenü auf dem Handy: aufklappbar statt Hover */
  .has-sub { position: relative; }
  .sub-toggle { display: block; position: absolute; right: 0; top: 0; width: 52px; height: 52px; background: none; border: 0; cursor: pointer; }
  .sub-toggle::after { content: ""; position: absolute; left: 50%; top: 50%; width: 9px; height: 9px; margin: -6px 0 0 -5px; border-right: 2px solid var(--ink-500); border-bottom: 2px solid var(--ink-500); transform: rotate(45deg); transition: transform .2s ease; }
  .sub-toggle[aria-expanded="true"]::after { transform: rotate(-135deg); margin-top: -2px; }
  .caret { display: none; }
  .subnav { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; padding: 0 0 .5rem .75rem; min-width: 0; display: none; }
  .subnav.is-open { display: block; }
  .subnav a { border-bottom: 0; font-size: .98rem; padding: .6rem .5rem; color: var(--ink-500); }
}

/* Hero ---------------------------------------------------------------- */
.hero { position: relative; background: var(--navy-900); color: #fff; overflow: hidden; isolation: isolate; }
.hero::before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(60% 80% at 85% 10%, rgba(255, 87, 34, .28), transparent 60%),
  radial-gradient(50% 60% at 10% 90%, rgba(30, 115, 190, .35), transparent 60%),
  linear-gradient(160deg, var(--navy-900), var(--navy-800) 60%, #0f3a66); z-index: -2; }
.hero--photo::after { content: ""; position: absolute; inset: 0; background-image: var(--hero-img, url("/assets/img/gen/hero-kfz-gutachter-1280.webp")); background-position: center right; background-size: cover; background-repeat: no-repeat; opacity: .28; z-index: -1; }
.hero .container { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero h1 em { font-style: normal; color: #ffb59c; }
.hero .lead { color: #c7d5e4; font-size: 1.2rem; max-width: 560px; }
.hero__badges { list-style: none; padding: 0; margin: 1.5rem 0 2rem; display: grid; gap: .5rem; }
.hero__badges li { display: flex; gap: .6rem; align-items: flex-start; color: #e6eef7; font-weight: 600; }
.hero__badges svg { width: 22px; height: 22px; flex: none; color: #5be49b; margin-top: .1rem; }
.hero__note { margin-top: 1rem; font-size: .9rem; color: #9fb3c8; }
.hero--compact .container { grid-template-columns: 1fr; padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.hero--compact .lead { max-width: 720px; }
.breadcrumb { list-style: none; margin: 0 0 1.25rem; padding: 0; display: flex; flex-wrap: wrap; gap: .4rem; font-size: .85rem; color: #9fb3c8; }
.breadcrumb a { color: #c7d5e4; text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb li + li::before { content: "›"; margin-right: .4rem; }
/* Brotkrümel auf hellen Seiten (ohne Aufmacherbild) */
.breadcrumb--light { color: var(--ink-500); margin-bottom: 1.5rem; }
.breadcrumb--light a { color: var(--ink-500); }
.breadcrumb--light a:hover { color: var(--orange-600); }
@media (max-width: 900px) { .hero .container { grid-template-columns: 1fr; gap: 2rem; } }

/* Quick check card ---------------------------------------------------- */
.qcheck { background: #fff; color: var(--ink-700); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-lg); }
.qcheck h2 { font-size: 1.25rem; margin-bottom: .25rem; }
.qcheck p.small { font-size: .9rem; color: var(--ink-500); margin-bottom: 1.25rem; }
.qcheck fieldset { border: 0; padding: 0; margin: 0 0 1rem; }
.qcheck legend { font-weight: 800; color: var(--ink-900); margin-bottom: .5rem; font-size: .95rem; }
.qcheck .choices { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.qcheck .choices label { display: flex; align-items: center; gap: .5rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: .6rem .8rem; cursor: pointer; font-weight: 600; font-size: .95rem; transition: border-color .15s, background .15s; }
.qcheck .choices label:hover { border-color: var(--navy-800); }
.qcheck .choices input { accent-color: var(--orange-500); margin: 0; }
.qcheck .choices label:has(input:checked) { border-color: var(--orange-500); background: var(--orange-100); }
.qcheck__result { border-radius: var(--radius-sm); padding: 1rem; background: var(--navy-100); font-size: .95rem; margin-bottom: 1rem; }
.qcheck__result strong { display: block; margin-bottom: .25rem; }
.qcheck__result.is-good { background: #e3f7ec; }
.qcheck__result.is-warn { background: #fff4e5; }

/* Cards & grids ------------------------------------------------------- */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card__icon { width: 52px; height: 52px; border-radius: 12px; background: var(--orange-100); color: var(--orange-600); display: grid; place-items: center; margin-bottom: 1.1rem; }
.card__icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: .4rem; }
/* Leistungsüberschriften in Markenorange – wie auf der bisherigen Seite */
.card__title { color: var(--orange-600); }
.card__claim { font-weight: 800; color: var(--ink-900); }
.card p { color: var(--ink-500); }
.card p:last-of-type, .card ul:last-of-type { margin-bottom: 0; }
.card ul { color: var(--ink-500); font-size: .95rem; margin: 0 0 1rem; padding-left: 1.1em; }
.card .more { font-weight: 800; text-decoration: none; display: inline-flex; align-items: center; gap: .35rem; margin-top: auto; }
.card .more::after { content: "→"; transition: transform .15s; }
.card .more:hover::after { transform: translateX(3px); }
.card--flat { box-shadow: none; }
.card--flat:hover { transform: none; }

/* Card with a photo header */
.card--photo { padding: 0; overflow: hidden; }
.card--photo > *:not(.card__media):not(.card__icon) { padding-inline: 1.75rem; }
.card--photo > *:not(.card__media):last-child { padding-bottom: 1.75rem; }
.card__media { margin: 0; aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy-100); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.card--photo:hover .card__media img { transform: scale(1.04); }
.card--photo .card__icon { margin: -34px 0 1.1rem 1.75rem; position: relative; background: #fff; box-shadow: var(--shadow-md); border: 1px solid var(--line); }

/* Reason card with brand pictogram */
.card--reason { text-align: center; align-items: center; }
.brand-icon { width: 64px; height: 64px; margin-bottom: 1rem; }
.card--reason h3 { font-size: 1.05rem; }
.card--reason p { font-size: .95rem; }

/* Vehicle type tiles */
.vehicle { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 260px; display: flex; align-items: flex-end; color: #fff; box-shadow: var(--shadow-md); }
.vehicle img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .4s ease; }
.vehicle::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,31,54,.94) 12%, rgba(7,31,54,.55) 48%, rgba(7,31,54,.15) 100%); z-index: 1; }
.vehicle:hover img { transform: scale(1.05); }
.vehicle__body { position: relative; z-index: 2; padding: 1.5rem; }
.vehicle h3 { color: #fff; margin-bottom: .35rem; }
.vehicle p { color: #d6e1ee; font-size: .95rem; margin: 0; }

/* Media figure inside a split section */
.media-figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.media-figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.media-figure figcaption { background: var(--navy-800); color: #b7c7d9; font-size: .85rem; padding: .75rem 1rem; }
.section--navy .card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); box-shadow: none; }
.section--navy .card h3 { color: #fff; }
.section--navy .card p, .section--navy .card ul { color: #b7c7d9; }
.section--navy .card__icon { background: rgba(255, 87, 34, .18); color: #ffb59c; }

/* USP strip ----------------------------------------------------------- */
.usp { background: #fff; border-bottom: 1px solid var(--line); }
.usp ul { list-style: none; margin: 0; padding: 1rem 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.usp li { display: flex; gap: .7rem; align-items: center; font-weight: 700; color: var(--ink-900); font-size: .95rem; }
.usp svg { width: 26px; height: 26px; color: var(--orange-500); flex: none; }
@media (max-width: 900px) { .usp ul { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .usp ul { grid-template-columns: 1fr; gap: .6rem; } }

/* Steps --------------------------------------------------------------- */
.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.steps li { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.4rem 1.5rem 1.5rem; }
.steps li::before { counter-increment: step; content: counter(step); position: absolute; top: -18px; left: 1.5rem; width: 38px; height: 38px; border-radius: 50%; background: var(--orange-500); color: #fff; font-weight: 800; display: grid; place-items: center; box-shadow: 0 4px 12px rgba(255,87,34,.35); }
.steps h3 { font-size: 1.1rem; }
.steps p { color: var(--ink-500); font-size: .95rem; margin: 0; }
@media (max-width: 960px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* Split / about ------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.split--narrow { grid-template-columns: 1.2fr .8fr; }
@media (max-width: 900px) { .split, .split--narrow { grid-template-columns: 1fr; gap: 2rem; } }
.check-list { list-style: none; padding: 0; margin: 1.25rem 0; display: grid; gap: .65rem; }
.check-list li { display: flex; gap: .7rem; align-items: flex-start; }
.check-list svg { width: 22px; height: 22px; color: var(--green-500); flex: none; margin-top: .15rem; }
.check-list strong { display: block; }
.figure { background: var(--navy-800); border-radius: var(--radius); padding: 2rem; color: #fff; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.figure::after { content: ""; position: absolute; right: -40px; bottom: -40px; width: 200px; height: 200px; border-radius: 50%; background: rgba(255,87,34,.25); }
.figure .stat { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 1.5rem; }
.figure .stat div { background: rgba(255,255,255,.08); border-radius: var(--radius-sm); padding: 1rem; }
.figure .stat b { display: block; font-size: 1.4rem; color: #ffb59c; overflow-wrap: anywhere; }
.figure .stat span { font-size: .85rem; color: #b7c7d9; }
@media (max-width: 480px) { .figure .stat { grid-template-columns: 1fr; } }

/* Callout ------------------------------------------------------------- */
.callout { border-left: 5px solid var(--orange-500); background: var(--orange-100); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.25rem 1.5rem; margin: 1.5rem 0; }
.callout > svg { width: 28px; height: 28px; color: var(--green-500); vertical-align: -6px; margin-right: .4rem; }
.callout strong { color: var(--ink-900); }
.callout--info { border-color: var(--navy-800); background: var(--navy-100); }
.callout--success { border-color: var(--green-500); background: #e3f7ec; }

/* Cost table ---------------------------------------------------------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
table { width: 100%; border-collapse: collapse; font-size: .95rem; }
th, td { text-align: left; padding: .9rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: var(--navy-100); color: var(--ink-900); font-weight: 800; }
tr:last-child td { border-bottom: 0; }
td strong { color: var(--green-500); }

/* FAQ ----------------------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: .75rem; }
.faq summary { list-style: none; cursor: pointer; padding: 1.05rem 3rem 1.05rem 1.25rem; font-weight: 800; color: var(--ink-900); position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 1.1rem; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--orange-500); font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details > div { padding: 0 1.25rem 1.1rem; color: var(--ink-500); }
.faq details > div p:last-child { margin: 0; }

/* Locations ----------------------------------------------------------- */
.loc { display: flex; flex-direction: column; }
.loc__city { font-size: .8rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--orange-600); }
.loc address { font-style: normal; margin: .5rem 0 .75rem; color: var(--ink-500); }
.loc__hours { font-size: .9rem; color: var(--ink-500); margin-bottom: 1rem; }
.loc__hours b { color: var(--ink-900); }
.map { border: 0; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius); box-shadow: var(--shadow-md); background: var(--navy-100); display: block; }
/* Zwei-Klick-Karte: Platzhalter, bis der Nutzer zustimmt */
.map-consent { border: 1px solid var(--line); border-radius: var(--radius); background: var(--navy-100); aspect-ratio: 16 / 9; display: grid; place-items: center; padding: 1.5rem; }
.map-consent__inner { max-width: 460px; text-align: center; }
.map-consent__inner svg { width: 40px; height: 40px; color: var(--orange-500); margin-bottom: .5rem; }
.map-consent__inner p { color: var(--ink-500); font-size: .95rem; }
.map-consent__inner .btn { margin-bottom: .75rem; }
@media (max-width: 620px) { .map-consent { aspect-ratio: auto; } }

/* Kontaktliste in der Seitenspalte */
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.contact-list li { display: flex; gap: .8rem; align-items: flex-start; }
.contact-list svg { width: 24px; height: 24px; color: var(--orange-500); flex: none; margin-top: .2rem; }
.contact-list b { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-500); }
.contact-list a { font-weight: 700; text-decoration: none; }

/* Zusatzzeilen unter der H1 (Startseite) */
.hero__lines { font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 600; color: #e6eef7; margin-bottom: 1rem; line-height: 1.5; }

/* Reviews ------------------------------------------------------------- */
.stars { color: #f6b100; letter-spacing: .1em; font-size: 1.1rem; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
.review p { color: var(--ink-700); font-style: italic; }
.review footer { font-size: .9rem; color: var(--ink-500); font-weight: 700; }

/* Contact ------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-md); }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form .row { grid-template-columns: 1fr; } }
.field { margin-bottom: 1rem; }
.field label { display: block; font-weight: 700; font-size: .9rem; color: var(--ink-900); margin-bottom: .35rem; }
.req { color: var(--orange-600); }
.field input, .field select, .field textarea { width: 100%; font: inherit; padding: .75rem .9rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: #fff; color: var(--ink-900); transition: border-color .15s, box-shadow .15s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy-800); box-shadow: 0 0 0 4px rgba(11,45,77,.12); }
.field textarea { min-height: 130px; resize: vertical; }
.field--check { display: flex; gap: .65rem; align-items: flex-start; font-size: .9rem; color: var(--ink-500); }
.field--check input { width: 20px; height: 20px; margin-top: .1rem; accent-color: var(--orange-500); flex: none; }
.form__status { margin-top: 1rem; padding: 1rem; border-radius: var(--radius-sm); display: none; }
.form__status.is-ok { display: block; background: #e3f7ec; color: #0f5c34; }
.form__status.is-error { display: block; background: #fdecea; color: #8a1c12; }
.hp { position: absolute; left: -9999px; }
.contact-side .card { margin-bottom: 1rem; }
.contact-side .card h3 { font-size: 1rem; color: var(--ink-500); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.contact-side .big { font-size: 1.5rem; font-weight: 800; color: var(--navy-800); text-decoration: none; }
.contact-side .big:hover { color: var(--orange-600); }

/* CTA band ------------------------------------------------------------ */
.cta { background: linear-gradient(135deg, var(--orange-500), #ff7a45); color: #fff; }
.cta .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 3rem 0; flex-wrap: wrap; }
.cta h2 { color: #fff; margin-bottom: .35rem; }
.cta p { margin: 0; color: #ffe9e1; }
.cta .btn--light { color: var(--orange-600); }

/* Article ------------------------------------------------------------- */
.prose { max-width: 780px; }
.prose h2 { margin-top: 2.5rem; font-size: 1.6rem; }
.prose h3 { margin-top: 1.75rem; }
.prose li { margin-bottom: .35rem; }

/* Footer -------------------------------------------------------------- */
.footer { background: var(--navy-900); color: #9fb3c8; padding: 4rem 0 6rem; font-size: .95rem; }
.footer h3 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer a { color: #d6e1ee; text-decoration: none; }
.footer a:hover { color: #ffb59c; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.footer address { font-style: normal; line-height: 1.5; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand { color: #fff; font-weight: 800; font-size: 1.3rem; display: flex; align-items: center; gap: .7rem; margin-bottom: .75rem; }
.footer__brand .brand__mark { width: 56px; height: 56px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 3rem; padding-top: 1.5rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem; }
.footer__bottom ul { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; }
@media (min-width: 761px) { .footer { padding-bottom: 4rem; } }

/* Mobile sticky action bar -------------------------------------------- */
.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none; gap: .6rem; padding: .6rem .75rem calc(.6rem + env(safe-area-inset-bottom)); background: rgba(255,255,255,.96); backdrop-filter: blur(10px); border-top: 1px solid var(--line); }
.mobile-bar .btn { flex: 1; padding: .8rem .5rem; font-size: .95rem; }
@media (max-width: 760px) { .mobile-bar { display: flex; } }

/* Floating WhatsApp (desktop) ----------------------------------------- */
.wa-float { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 25px rgba(37,211,102,.4); transition: transform .15s; }
.wa-float:hover { transform: scale(1.06); color: #fff; }
.wa-float svg { width: 30px; height: 30px; }
@media (max-width: 760px) { .wa-float { display: none; } }

/* Utilities ----------------------------------------------------------- */
.mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; } .mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.muted { color: var(--ink-500); }
.small { font-size: .9rem; }
.pill { display: inline-block; padding: .25rem .7rem; border-radius: 999px; background: var(--navy-100); color: var(--navy-800); font-size: .8rem; font-weight: 800; }
.pill--green { background: #e3f7ec; color: #0f5c34; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}
@media print {
  .header, .topbar, .mobile-bar, .wa-float, .cta, .footer { display: none !important; }
}
