/* ==========================================================================
   Team Becker – Zulassungsdienst | Blau/Gelb, Mobile-first, keine externen
   Abhängigkeiten (System-Fonts, Inline-SVG-Icons)
   ========================================================================== */

:root {
  --blau-dunkel: #0a2e6e;
  --blau: #0b3d91;
  --blau-hell: #1653c4;
  --blau-ton: #eef3fc;
  --gelb: #ffc800;
  --gelb-dunkel: #e6b400;
  --text: #1c2430;
  --text-hell: #4a5568;
  --weiss: #ffffff;
  --rand: #dde5f0;
  --radius: 14px;
  --schatten: 0 6px 24px rgba(10, 46, 110, 0.10);
  --container: 1120px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--weiss);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: var(--blau);
}

a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 64px 0;
}

.section--ton {
  background: var(--blau-ton);
}

.section-kopf {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-kopf h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--blau-dunkel);
}

.section-kopf p {
  margin: 0;
  color: var(--text-hell);
  font-size: 1.05rem;
}

.kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blau);
  background: rgba(255, 200, 0, 0.35);
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 12px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 26px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn svg {
  width: 20px;
  height: 20px;
  flex: none;
}

.btn--gelb {
  background: var(--gelb);
  color: var(--blau-dunkel);
  box-shadow: 0 4px 14px rgba(255, 200, 0, 0.4);
}

.btn--gelb:hover {
  background: var(--gelb-dunkel);
}

.btn--hell {
  background: var(--weiss);
  color: var(--blau-dunkel);
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.btn--umriss {
  background: transparent;
  color: var(--weiss);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn--umriss:hover {
  border-color: var(--gelb);
  color: var(--gelb);
}

.btn--blau {
  background: var(--blau);
  color: var(--weiss);
}

.btn--blau:hover {
  background: var(--blau-hell);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--blau-dunkel);
  color: var(--weiss);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
}

.marke {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--weiss);
}

.marke__schild {
  background: var(--weiss);
  color: var(--blau-dunkel);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  border-radius: 6px;
  padding: 4px 10px;
  border: 2px solid var(--gelb);
  white-space: nowrap;
}

.marke__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.marke__name {
  font-weight: 800;
  font-size: 1.05rem;
}

.marke__sub {
  font-size: 0.75rem;
  color: var(--gelb);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--gelb);
}

.header__cta {
  padding: 10px 20px;
  font-size: 0.95rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
}

/* Telefon-Icon im Header – nur mobil sichtbar */

.header__tel-mobil {
  display: none;
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gelb);
  color: var(--blau-dunkel);
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.header__tel-mobil svg {
  width: 21px;
  height: 21px;
}

.nav-toggle svg {
  width: 28px;
  height: 28px;
  stroke: var(--weiss);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  background: linear-gradient(135deg, var(--blau-dunkel) 0%, var(--blau) 55%, var(--blau-hell) 100%);
  color: var(--weiss);
  padding: 72px 0 84px;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.15;
  margin: 0 0 18px;
}

.hero h1 .gelb {
  color: var(--gelb);
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 28px;
  max-width: 560px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
}

.badge svg {
  width: 16px;
  height: 16px;
  fill: var(--gelb);
}

/* Kennzeichen-Deko */

.hero__visual {
  display: flex;
  justify-content: center;
}

.kennzeichen {
  background: var(--weiss);
  border: 3px solid #111;
  border-radius: 10px;
  display: flex;
  align-items: stretch;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  transform: rotate(-3deg);
  overflow: hidden;
}

.kennzeichen__eu {
  background: #003399;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  font-size: 0.7rem;
  font-weight: 700;
}

.kennzeichen__sterne {
  color: var(--gelb);
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.kennzeichen__text {
  color: #111;
  font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  letter-spacing: 0.06em;
  padding: 18px 26px;
  font-family: "Arial Narrow", Arial, sans-serif;
  white-space: nowrap;
}

.kennzeichen__plakette {
  align-self: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gelb);
  border: 2px solid #b38f00;
  margin-right: 14px;
  flex: none;
}

/* --------------------------------------------------------------------------
   Leistungen
   -------------------------------------------------------------------------- */

.karten {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}

.karte {
  background: var(--weiss);
  border: 1px solid var(--rand);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--schatten);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.karte__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--blau-ton);
  display: flex;
  align-items: center;
  justify-content: center;
}

.karte__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--blau);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.karte h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--blau-dunkel);
}

.karte p {
  margin: 0;
  color: var(--text-hell);
  font-size: 0.97rem;
}

.karte--express {
  background: var(--blau-dunkel);
  border-color: var(--blau-dunkel);
  color: var(--weiss);
  position: relative;
}

.karte--express h3 {
  color: var(--gelb);
}

.karte--express p {
  color: rgba(255, 255, 255, 0.85);
}

.karte--express .karte__icon {
  background: rgba(255, 200, 0, 0.18);
}

.karte--express .karte__icon svg {
  stroke: var(--gelb);
}

.karte__label {
  position: absolute;
  top: -12px;
  right: 18px;
  background: var(--gelb);
  color: var(--blau-dunkel);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 4px 12px;
}

/* Siegel-Zeile in der Kennzeichen-Karte */

.karte__siegel {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blau) !important;
}

.karte__siegel svg {
  width: 18px;
  height: 18px;
  fill: var(--gelb-dunkel);
  flex: none;
}

/* --------------------------------------------------------------------------
   Zertifizierung (DIN CERTCO)
   -------------------------------------------------------------------------- */

.zertifikat {
  max-width: 760px;
  margin: 34px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  background: var(--weiss);
  border: 1px solid var(--rand);
  border-radius: var(--radius);
  box-shadow: var(--schatten);
  padding: 26px 24px;
}

.zertifikat__zeichen {
  flex: none;
  width: 56px;
  height: 56px;
}

.zertifikat__text h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  color: var(--blau-dunkel);
}

.zertifikat__text p {
  margin: 0;
  color: var(--text-hell);
  font-size: 0.96rem;
}

.zertifikat__meta {
  margin-top: 12px !important;
  padding-top: 12px;
  border-top: 1px solid var(--rand);
  font-size: 0.84rem !important;
  font-weight: 600;
  color: var(--blau) !important;
}

@media (min-width: 700px) {
  .zertifikat {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 26px;
    padding: 26px 30px;
  }
}

/* --------------------------------------------------------------------------
   Ablauf
   -------------------------------------------------------------------------- */

.schritte {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
  counter-reset: schritt;
}

.schritt {
  background: var(--weiss);
  border-radius: var(--radius);
  border: 1px solid var(--rand);
  padding: 28px 24px;
  position: relative;
}

.schritt__nr {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gelb);
  color: var(--blau-dunkel);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.schritt h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: var(--blau-dunkel);
}

.schritt p {
  margin: 0;
  color: var(--text-hell);
  font-size: 0.97rem;
}

/* --------------------------------------------------------------------------
   Vorteile
   -------------------------------------------------------------------------- */

.vorteile {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

.vorteil {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.vorteil__icon {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gelb);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vorteil__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--blau-dunkel);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vorteil h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  color: var(--blau-dunkel);
}

.vorteil p {
  margin: 0;
  color: var(--text-hell);
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   Sprachen
   -------------------------------------------------------------------------- */

.sprachen {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}

.sprache {
  background: var(--weiss);
  border: 1px solid var(--rand);
  border-top: 4px solid var(--gelb);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--schatten);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sprache__flagge {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--blau);
  background: var(--blau-ton);
  border-radius: 6px;
  padding: 3px 10px;
  align-self: flex-start;
}

.sprache[dir="rtl"] .sprache__flagge {
  align-self: flex-start;
}

.sprache h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--blau-dunkel);
}

.sprache p {
  margin: 0;
  color: var(--text-hell);
  font-size: 0.97rem;
}

.sprache .btn {
  align-self: flex-start;
  padding: 10px 20px;
  font-size: 0.92rem;
}

/* --------------------------------------------------------------------------
   Einzugsgebiet
   -------------------------------------------------------------------------- */

.orte {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.ort {
  background: var(--weiss);
  border: 1px solid var(--rand);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blau-dunkel);
}

.infobox {
  max-width: 820px;
  margin: 36px auto 0;
  background: var(--blau-ton);
  border-left: 5px solid var(--gelb);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
}

.infobox p {
  margin: 0;
  color: var(--text-hell);
  font-size: 0.97rem;
}

.infobox strong {
  color: var(--blau-dunkel);
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--weiss);
  border: 1px solid var(--rand);
  border-radius: var(--radius);
  box-shadow: var(--schatten);
  overflow: hidden;
}

.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 52px 18px 22px;
  font-weight: 700;
  color: var(--blau-dunkel);
  position: relative;
  font-size: 1rem;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 3px solid var(--gelb-dunkel);
  border-bottom: 3px solid var(--gelb-dunkel);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq__item[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.faq__item[open] summary {
  border-bottom: 1px solid var(--rand);
}

.faq__item p {
  margin: 0;
  padding: 16px 22px 20px;
  color: var(--text-hell);
  font-size: 0.97rem;
}

/* --------------------------------------------------------------------------
   Kontakt
   -------------------------------------------------------------------------- */

.kontakt {
  background: linear-gradient(135deg, var(--blau-dunkel) 0%, var(--blau) 100%);
  color: var(--weiss);
}

.kontakt .section-kopf h2 {
  color: var(--weiss);
}

.kontakt .section-kopf p {
  color: rgba(255, 255, 255, 0.85);
}

.kontakt__grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}

.kontakt__karte {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kontakt__karte h3 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  color: var(--gelb);
}

.kontakt__karte h3 svg {
  width: 20px;
  height: 20px;
  stroke: var(--gelb);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kontakt__karte p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.kontakt__karte a {
  color: var(--weiss);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--gelb);
}

.kontakt__hinweis {
  margin-top: 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

/* Anfahrt: Zwei-Klick-Google-Maps-Karte */

.karte-embed {
  margin-top: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}

.karte-embed__platzhalter {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 40px 24px;
  color: var(--blau-dunkel);
  background-color: var(--blau-ton);
  background-image:
    repeating-linear-gradient(0deg, rgba(11, 61, 145, 0.07) 0, rgba(11, 61, 145, 0.07) 1px, transparent 1px, transparent 46px),
    repeating-linear-gradient(90deg, rgba(11, 61, 145, 0.07) 0, rgba(11, 61, 145, 0.07) 1px, transparent 1px, transparent 46px),
    linear-gradient(160deg, #eef3fc 0%, #dfe9f8 55%, #d3e0f4 100%);
}

.karte-embed__pin {
  width: 54px;
  height: 54px;
  stroke: var(--blau-dunkel);
  fill: var(--gelb);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.karte-embed__platzhalter h3 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--blau-dunkel);
}

.karte-embed__adresse {
  margin: 0;
  color: var(--text-hell);
  font-weight: 600;
}

.karte-embed__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 6px;
}

.karte-embed__buttons .btn {
  cursor: pointer;
  border: 0;
  font-family: inherit;
}

.karte-embed__buttons .btn--umriss {
  color: var(--blau-dunkel);
  border: 2px solid var(--blau);
}

.karte-embed__buttons .btn--umriss:hover {
  border-color: var(--blau-hell);
  color: var(--blau-hell);
}

.karte-embed__hinweis {
  margin: 6px 0 0;
  font-size: 0.82rem;
  color: var(--text-hell);
  max-width: 460px;
}

.karte-embed__hinweis a {
  color: var(--blau);
  font-weight: 600;
}

.karte-embed iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  background: #071f4d;
  color: rgba(255, 255, 255, 0.75);
  padding: 34px 0;
  font-size: 0.9rem;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
}

.footer a {
  color: var(--gelb);
  text-decoration: none;
  font-weight: 600;
}

.footer a:hover {
  text-decoration: underline;
}

.footer__links {
  display: flex;
  gap: 20px;
}

/* --------------------------------------------------------------------------
   WhatsApp-Widget (schwebend unten rechts)
   -------------------------------------------------------------------------- */

.wa-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.wa-widget__knopf {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: wa-einstieg 0.5s cubic-bezier(0.22, 1, 0.36, 1) 1.2s both;
}

.wa-widget__knopf svg {
  width: 32px;
  height: 32px;
}

.wa-widget__knopf:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.34);
}

.wa-widget__knopf::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: wa-puls 2.6s ease-out 2s infinite;
}

@keyframes wa-einstieg {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.6);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes wa-puls {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.wa-widget__fenster {
  width: min(320px, calc(100vw - 40px));
  max-height: calc(100vh - 130px);
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: var(--weiss);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
  animation: wa-fenster-auf 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
  transform-origin: bottom right;
}

.wa-widget__fenster[hidden] {
  display: none;
}

@keyframes wa-fenster-auf {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.wa-widget__kopf {
  background: #075e54;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}

.wa-widget__kopf strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.2;
}

.wa-widget__kopf span {
  font-size: 0.78rem;
  opacity: 0.85;
}

.wa-widget__avatar {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gelb);
  color: var(--blau-dunkel);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-widget__schliessen {
  margin-left: auto;
  background: none;
  border: 0;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 6px;
}

.wa-widget__schliessen:hover {
  background: rgba(255, 255, 255, 0.15);
}

.wa-widget__inhalt {
  background: #e5ddd5;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
}

.wa-widget__blase {
  background: var(--weiss);
  border-radius: 4px 14px 14px 14px;
  padding: 12px 14px;
  font-size: 0.92rem;
  color: var(--text);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  max-width: 92%;
}

.wa-widget__start {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  padding: 12px 18px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.wa-widget__start:hover {
  background: #1fb959;
  transform: translateY(-2px);
}

.wa-widget__start svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 480px) {
  .wa-widget {
    right: 14px;
    bottom: 14px;
  }

  .wa-widget__knopf {
    width: 54px;
    height: 54px;
  }
}

/* --------------------------------------------------------------------------
   Rechtsseiten (Impressum / Datenschutz)
   -------------------------------------------------------------------------- */

.rechtsseite {
  padding: 56px 0 72px;
}

.rechtsseite .container {
  max-width: 780px;
}

.rechtsseite h1 {
  color: var(--blau-dunkel);
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  margin: 0 0 28px;
}

.rechtsseite h2 {
  color: var(--blau-dunkel);
  font-size: 1.25rem;
  margin: 34px 0 10px;
}

.rechtsseite h3 {
  color: var(--blau-dunkel);
  font-size: 1.05rem;
  margin: 24px 0 8px;
}

.rechtsseite p,
.rechtsseite li {
  color: var(--text-hell);
}

.zurueck {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-weight: 600;
  text-decoration: none;
}

/* 404-Seite */

.fehlerseite {
  text-align: center;
}

.fehlerseite__cta {
  margin-top: 28px;
}

.fehlerseite__tel {
  margin-top: 24px;
}

/* --------------------------------------------------------------------------
   Animationen
   -------------------------------------------------------------------------- */

/* Hero-Einstieg: Text von unten, Kennzeichen fährt von rechts ein */

@keyframes einblenden-hoch {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes kennzeichen-einfahrt {
  0% {
    opacity: 0;
    transform: translateX(140px) rotate(2deg);
  }
  70% {
    opacity: 1;
    transform: translateX(-12px) rotate(-4deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotate(-3deg);
  }
}

@keyframes schweben {
  0%, 100% {
    transform: rotate(-3deg) translateY(0);
  }
  50% {
    transform: rotate(-2.4deg) translateY(-8px);
  }
}

.hero h1 {
  animation: einblenden-hoch 0.7s ease-out both;
}

.hero p {
  animation: einblenden-hoch 0.7s ease-out 0.15s both;
}

.hero__ctas {
  animation: einblenden-hoch 0.7s ease-out 0.3s both;
}

.hero__badges {
  animation: einblenden-hoch 0.7s ease-out 0.45s both;
}

.kennzeichen {
  animation:
    kennzeichen-einfahrt 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both,
    schweben 5s ease-in-out 1.3s infinite;
}

.kennzeichen:hover {
  animation-play-state: paused, paused;
}

/* Scroll-Reveal: JS setzt .anim beim Laden und .drin beim Sichtbarwerden */

.anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim.drin {
  opacity: 1;
  transform: translateY(0);
}

/* Hover-Effekte auf Karten */

.karte,
.sprache,
.kontakt__karte,
.schritt {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.karte:hover,
.sprache:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(10, 46, 110, 0.16);
}

.kontakt__karte:hover {
  transform: translateY(-4px);
}

.schritt:hover .schritt__nr {
  transform: scale(1.12) rotate(6deg);
}

.schritt__nr {
  transition: transform 0.25s ease;
}

.vorteil__icon {
  transition: transform 0.25s ease;
}

.vorteil:hover .vorteil__icon {
  transform: scale(1.12) rotate(-6deg);
}

/* Express-Karte: dezentes Pulsieren des Labels */

@keyframes puls {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 200, 0, 0.55);
  }
  60% {
    box-shadow: 0 0 0 9px rgba(255, 200, 0, 0);
  }
}

.karte__label {
  animation: puls 2.4s ease-out infinite;
}

/* Gelber CTA: Glanz-Effekt beim Hover */

.btn--gelb {
  position: relative;
  overflow: hidden;
}

.btn--gelb::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.btn--gelb:hover::after {
  left: 130%;
}

/* FAQ: Antwort sanft einblenden */

@keyframes faq-auf {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq__item[open] > p {
  animation: faq-auf 0.3s ease-out;
}

.faq__item summary {
  transition: background 0.2s ease;
}

.faq__item summary:hover {
  background: var(--blau-ton);
}

/* Header: stärkerer Schatten nach dem Scrollen (JS setzt .gescrollt) */

.header {
  transition: box-shadow 0.25s ease;
}

.header.gescrollt {
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.35);
}

/* Aktiver Nav-Punkt (Scrollspy) */

.nav a.aktiv {
  color: var(--gelb);
}

/* Tastatur-Fokus deutlich sichtbar */

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gelb);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Reduzierte Bewegung: alle Animationen aus */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .anim {
    opacity: 1;
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   Mobile Schnellkontakt-Leiste (unten fixiert)
   -------------------------------------------------------------------------- */

.mobil-leiste {
  display: none;
}

@media (max-width: 640px) {
  .mobil-leiste {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 95;
    display: flex;
    background: var(--blau-dunkel);
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.25);
    padding-bottom: env(safe-area-inset-bottom);
  }

  .mobil-leiste__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 58px;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--weiss);
  }

  .mobil-leiste__btn svg {
    width: 20px;
    height: 20px;
    flex: none;
  }

  .mobil-leiste__btn--tel {
    background: var(--gelb);
    color: var(--blau-dunkel);
  }

  .mobil-leiste__btn--wa {
    background: #25d366;
    color: #fff;
  }

  .mobil-leiste__btn--route {
    background: var(--blau-dunkel);
    color: var(--weiss);
  }

  /* Platz für die Leiste schaffen und Überlappungen vermeiden */

  body {
    padding-bottom: calc(58px + env(safe-area-inset-bottom));
  }

  /* Schwebendes WhatsApp-Widget auf Mobil ausblenden – die Leiste übernimmt */

  .wa-widget {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Mobile Feinschliff
   -------------------------------------------------------------------------- */

@media (max-width: 640px) {
  .section {
    padding: 48px 0;
  }

  .section-kopf {
    margin-bottom: 30px;
  }

  .hero {
    padding: 44px 0 56px;
  }

  .hero__inner {
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(1.55rem, 6.5vw, 1.9rem);
  }

  .hero p {
    font-size: 1.02rem;
  }

  .kennzeichen__text {
    font-size: 1.7rem;
    padding: 14px 18px;
  }

  .kennzeichen__plakette {
    width: 18px;
    height: 18px;
    margin-right: 10px;
  }

  .karte,
  .sprache,
  .schritt {
    padding: 22px 18px;
  }

  .faq__item summary {
    padding: 16px 46px 16px 18px;
  }

  .faq__item p {
    padding: 14px 18px 18px;
  }

  .karte-embed__platzhalter {
    min-height: 340px;
  }

  .karte-embed iframe {
    height: 340px;
  }
}

@media (max-width: 480px) {
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__ctas .btn {
    justify-content: center;
    min-height: 52px;
  }

  .kontakt__hinweis {
    font-size: 0.88rem;
  }
}

/* --------------------------------------------------------------------------
   Mobile Navigation
   -------------------------------------------------------------------------- */

@media (max-width: 860px) {
  .header__tel-mobil {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--blau-dunkel);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 20px;
    display: none;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
  }

  .nav.offen {
    display: flex;
  }

  .nav a {
    padding: 12px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav .header__cta {
    margin-top: 14px;
    justify-content: center;
    border-bottom: none;
  }

  .nav-toggle {
    display: block;
  }

  .marke__name {
    font-size: 0.95rem;
  }
}

/* --------------------------------------------------------------------------
   Größere Screens
   -------------------------------------------------------------------------- */

@media (min-width: 640px) {
  .karten {
    grid-template-columns: repeat(2, 1fr);
  }

  .sprachen {
    grid-template-columns: repeat(2, 1fr);
  }

  .kontakt__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vorteile {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .section {
    padding: 88px 0;
  }

  .hero__inner {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .karten {
    grid-template-columns: repeat(3, 1fr);
  }

  .schritte {
    grid-template-columns: repeat(3, 1fr);
  }

  .vorteile {
    grid-template-columns: repeat(4, 1fr);
  }

  .kontakt__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
