:root{
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #64748b;

  --navy: #0b1b33;
  --border: #e5e7eb;

  --primary: #0b5ed7;     /* Button Blau */
  --primary-2: #084db3;
  --accent: #ca8a04;      /* Gold: Zulassungsstelle */

  --radius: 14px;
  --shadow: 0 10px 30px rgba(15, 23, 42, .08);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

a{ color: inherit; text-decoration: none; }
a:focus{ outline: 2px solid rgba(11,94,215,.35); outline-offset: 2px; }

.container{
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 10px;
  background: #fff;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  z-index: 9999;
}
.skip-link{
  position: absolute;
  left: -999px;
  top: 10px;
  background: #fff;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus{ left: 16px; }

.icon svg{
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Header: Topbar + Nav gemeinsam sticky */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Topbar */
.topbar{
  background: var(--navy);
  color: #cbd5e1;
  font-size: 13px;
}
.topbar__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 16px;
}
.topbar__left{
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.topbar__item{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: .95;
}
.topbar__item:hover{ opacity: 1; color: #fff; }
.topbar__right{
  display: flex;
  align-items: center;
  gap: 12px;
}
.topbar__social{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #cbd5e1;
}
.topbar__social svg{ width: 16px; height: 16px; fill: currentColor; }
.topbar__social:hover{ background: rgba(255,255,255,.08); color: #fff; }

/* Nav */
.navwrap{
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(15,23,42,.05);
}
.nav{
  position: relative; /* wichtig für mobile dropdown menu (absolute) */
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
}

/* Brand (Logo only) */
.brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand__logo{
  height: 42px;
  width: auto;
  max-width: 260px; /* für breites Logo */
}

/* Desktop Menu */
.nav__menu{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.nav__link{
  color: #334155;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 8px 4px;
}
.nav__link:hover{ color: #0f172a; }
.nav__link--accent{ color: var(--accent); }

.nav__actions{
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  box-shadow: 0 6px 18px rgba(2, 6, 23, .08);
}
.btn--primary{
  background: var(--primary);
  color: #fff;
}
.btn--primary:hover{ background: var(--primary-2); }

/* Call Button - etwas kompakter */
.btn--call{
  padding: 11px 14px;
}

/* Language dropdown */
.lang{ position: relative; }
.lang__button{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
}
.lang__chev{ width: 18px; height: 18px; fill: #64748b; }
.lang__dropdown{
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 120px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 6px;
  display: none;
  z-index: 1001;
}
.lang.is-open .lang__dropdown{ display: block; }
.lang__item{
  display: block;
  padding: 10px 10px;
  border-radius: 10px;
  color: #0f172a;
  font-weight: 600;
}
.lang__item:hover{ background: #f1f5f9; }

/* Mobile toggle */
.nav__toggle{
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
}
.nav__toggle span{
  display: block;
  width: 18px;
  height: 2px;
  background: #334155;
  margin: 4px auto;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 980px){
  /* Topbar kompakter (nicht mehr als Spalte!) */
  .topbar__inner{
    padding: 8px 0;
  }

  /* Mobile menu als Dropdown unter Nav (sauber, ohne fixed top) */
  .nav__toggle{ display: inline-block; }

  .nav__menu{
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    z-index: 1000;
  }
  .nav__menu.is-open{ display: flex; }

  .nav__link{
    width: 100%;
    padding: 12px 10px;
    border-radius: 12px;
  }
  .nav__link:hover{ background: #f8fafc; }

  .brand__logo{
    height: 34px;
    max-width: 210px;
  }
}

/* Mobile: Telefon in Topbar ausblenden, Call-Button noch kompakter */
@media (max-width: 680px){
  .topbar__item--phone{ display: none; }

  .btn--call{
    padding: 11px 12px;
  }
}

/* Sehr klein: Call-Text ausblenden -> nur Icon (sauber wie Screenshot) */
@media (max-width: 520px){
  .btn--call .btn__text{ display: none; }
  .btn--call{ padding: 12px; }
}

/* Footer */
.site-footer{
  margin-top: 60px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.footer__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  color: #475569;
  font-size: 14px;
}
.footer__meta{
  margin-top: 6px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.dot{ opacity: .5; }

@media (max-width: 720px){
  .footer__inner{ flex-direction: column; align-items: flex-start; }
}

/* =========================
   HERO
========================= */
.btn--outline{
  background: #fff;
  color: var(--primary);
  border: 1px solid rgba(11,94,215,.35);
  box-shadow: none;
}
.btn--outline:hover{
  border-color: rgba(11,94,215,.6);
}

.hero{
  position: relative;
  padding: 46px 0 24px;
  background:
    radial-gradient(900px 380px at 78% 40%, rgba(11,94,215,.12), transparent 60%),
    radial-gradient(700px 280px at 15% 35%, rgba(202,138,4,.10), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  overflow: hidden;
}

.hero__inner{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
}

.hero__pillbar{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(226,232,240,.9);
  border-radius: 999px;
  padding: 8px 12px;
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
}

.pill{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2px;
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.pill--primary{
  color: #0b5ed7;
  background: rgba(11,94,215,.10);
}
.pill--accent{
  color: var(--accent);
  background: rgba(202,138,4,.12);
}
.pill__sep{ color: #94a3b8; font-weight: 700; }

.hero__title{
  margin: 14px 0 12px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.6px;
  font-size: clamp(30px, 3.2vw, 54px);
  color: #0f172a;
}

.hero__text{
  margin: 0 0 18px;
  color: #475569;
  font-size: 16px;
  line-height: 1.7;
  max-width: 52ch;
}

.hero__cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero__badges{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  color: #64748b;
  font-size: 14px;
}
.hero__badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero__check{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(34,197,94,.12);
  color: #16a34a;
}
.hero__check svg{
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.hero__media{
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 16px;
}

.hero__img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  background: #eef6ff;
}

/* kompakt + mobile-first */
@media (max-width: 980px){
  .hero{
    padding: 22px 0 18px;
  }
  .hero__inner{
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero__media{
    padding: 10px;
  }
  .hero__text{
    font-size: 15px;
    margin-bottom: 14px;
  }
  .hero__cta .btn{
    width: 100%;
    justify-content: center;
  }
}

/* =========================
   ABOUT (Über uns)
========================= */
.section{
  padding: 52px 0;
}

.about{
  position: relative;
  background:
    radial-gradient(900px 420px at 80% 55%, rgba(11,94,215,.10), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  overflow: hidden;
}

.about__inner{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items: center;
}

.kicker{
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 800;
}

.about__title{
  margin: 10px 0 12px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.6px;
  font-size: clamp(30px, 3.0vw, 52px);
  color: #0f172a;
}

.about__text{
  margin: 0 0 14px;
  color: #475569;
  line-height: 1.75;
  font-size: 15.5px;
  max-width: 62ch;
}

.about__divider{
  margin-top: 22px;
  height: 1px;
  background: rgba(148,163,184,.45);
  max-width: 640px;
}

/* rechte Card wie im Screenshot */
.about__card{
  background: rgba(219,240,255,.85);
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 22px;
  min-height: 320px;
  display: grid;
  place-items: center;
}

.about__cardInner{
  text-align: center;
}

.about__mark{
  width: 92px;
  height: 92px;
  border-radius: 18px;
  background: #0b5ed7;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  box-shadow: 0 10px 22px rgba(2,6,23,.16);
}

.about__mark img{
  width: 54px;
  height: 54px;
  filter: brightness(0) invert(1);
}

.about__cardTitle{
  font-weight: 800;
  color: #0b5ed7;
  margin: 0 0 6px;
}

.about__cardSub{
  margin: 0;
  color: #64748b;
  font-size: 13.5px;
}

/* Mobile kompakt */
@media (max-width: 980px){
  .section{ padding: 34px 0; }
  .about__inner{
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .about__card{
    min-height: 240px;
    padding: 16px;
  }
  .about__text{ font-size: 15px; }
}


/* =========================
   STATS
========================= */
.stats{
  padding: 46px 0;
  background:
    radial-gradient(900px 380px at 50% 30%, rgba(255,255,255,.08), transparent 60%),
    linear-gradient(180deg, #0b1b33 0%, #08162b 100%);
  color: #e2e8f0;
}

.stats__inner{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: center;
}

.stat{
  text-align: center;
  padding: 10px 8px;
  position: relative;
}

.stat:not(:last-child)::after{
  content: "";
  position: absolute;
  right: -9px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: rgba(148,163,184,.28);
}

.stat__value{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  margin: 0 0 10px;
  color: #ffffff;
}

.stat__label{
  margin: 0;
  font-size: 12.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(226,232,240,.75);
  font-weight: 700;
}

@media (max-width: 980px){
  .stats{ padding: 26px 0; }
  .stats__inner{
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .stat{
    text-align: left;
    border: 1px solid rgba(148,163,184,.18);
    border-radius: 16px;
    background: rgba(255,255,255,.03);
    padding: 14px 14px;
  }
  .stat:not(:last-child)::after{ display:none; }
  .stat__value{ margin-bottom: 6px; }
}

/* =========================
   SERVICES (Unsere Leistungen)
========================= */
.services{
  background: #f8fbff;
}

.section__head{
  text-align: center;
  margin-bottom: 24px;
}
.section__title{
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 3vw, 52px);
  margin: 0 0 10px;
  letter-spacing: -0.6px;
  color: #0f172a;
}
.section__sub{
  margin: 0 auto;
  color: #64748b;
  line-height: 1.7;
  max-width: 70ch;
  font-size: 15.5px;
}

.services__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card{
  background: #fff;
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(15,23,42,.06);
  padding: 18px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15,23,42,.10);
  border-color: rgba(148,163,184,.55);
}

.svc__top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.svc__icon{
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(11,94,215,.10);
  color: #0b5ed7;
}
.svc__icon svg{
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.svc__badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 800;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(11,94,215,.10);
  color: #0b5ed7;
  white-space: nowrap;
}

.svc__title{
  margin: 0 0 8px;
  font-weight: 800;
  font-size: 18px;
  color: #0f172a;
}
.svc__desc{
  margin: 0 0 12px;
  color: #64748b;
  line-height: 1.7;
  font-size: 14.5px;
  min-height: 54px;
}

.svc__more{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0b5ed7;
  font-weight: 800;
  font-size: 14px;
}
.svc__more:hover{ text-decoration: underline; }

/* Highlight (KFZ-Zulassung) */
.card--accent{
  background: rgba(202,138,4,.08);
  border-color: rgba(202,138,4,.38);
}
.card--accent .svc__icon{
  background: rgba(202,138,4,.14);
  color: var(--accent);
}
.card--accent .svc__badge{
  background: rgba(202,138,4,.16);
  color: var(--accent);
}
.card--accent .svc__more{
  color: var(--accent);
}

/* Responsive */
@media (max-width: 980px){
  .services__grid{
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .card{ padding: 16px; }
  .svc__desc{ min-height: unset; }
}


/* =========================
   WHY (Warum H.E.C.)
========================= */
.why{
  background: #ffffff;
}

.why__grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 26px;
}

.why__card{
  background: linear-gradient(180deg, #eef8ff 0%, #e8f4ff 100%);
  border: 1px solid rgba(147, 197, 253, .55);
  border-radius: 16px;
  padding: 18px 16px;
  box-shadow: 0 10px 26px rgba(15,23,42,.06);
  text-align: center;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.why__card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15,23,42,.10);
  border-color: rgba(96,165,250,.70);
}

.why__iconWrap{
  width: 74px;
  height: 74px;
  border-radius: 999px;
  background: #ffffff;
  display: grid;
  place-items: center;
  margin: 8px auto 6px;
  box-shadow: 0 12px 22px rgba(2,6,23,.10);
}

.why__icon{
  width: 26px;
  height: 26px;
  fill: #0b5ed7;
}

.why__title{
  margin: 0;
  font-weight: 900;
  color: #0f172a;
  font-size: 16.5px;
  line-height: 1.25;
}

.why__desc{
  margin: 0 auto;
  color: #64748b;
  line-height: 1.7;
  font-size: 14.2px;
  max-width: 22ch;
}

/* Mobile: horizontal scroll (kompakt, wenig vertikales Scrollen) */
@media (max-width: 980px){
  .why__grid{
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .why__grid::-webkit-scrollbar{ height: 8px; }
  .why__grid::-webkit-scrollbar-thumb{
    background: rgba(148,163,184,.35);
    border-radius: 999px;
  }

  .why__card{
    flex: 0 0 76%;
    min-height: 280px;
    scroll-snap-align: start;
  }
}
@media (max-width: 520px){
  .why__card{ flex-basis: 86%; }
}


/* =========================
   PARTNERS (Slider)
========================= */
.partners{
  background: #ffffff;
}

.partners__head{
  text-align: center;
  margin-bottom: 16px;
}

.partners__title{
  margin: 0 0 10px;
  font-weight: 900;
  font-size: clamp(28px, 2.4vw, 44px);
  color: #0b5ed7;
}

.partners__line{
  width: min(560px, 86%);
  height: 2px;
  background: rgba(11,94,215,.45);
  margin: 0 auto;
  border-radius: 999px;
}

/* Slider Frame */
.partners__wrap{
  position: relative;
  margin-top: 26px;
}

.partners__viewport{
  overflow: hidden;
  border-radius: 16px;
}

.partners__track{
  display: flex;
  gap: 34px;
  align-items: center;
  padding: 14px 56px; /* Platz für Pfeile */
  scroll-behavior: smooth;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}
.partners__track::-webkit-scrollbar{ display: none; }

.partner__item{
  flex: 0 0 auto;
  width: 220px;
  height: 110px;
  display: grid;
  place-items: center;
  scroll-snap-align: center;
}

.partner__logo{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: saturate(1.02);
}

/* Arrow Buttons */
.partners__arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: none;
  background: rgba(15,23,42,.65);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 26px rgba(2,6,23,.22);
  transition: transform .15s ease, background .15s ease, opacity .15s ease;
  z-index: 2;
}
.partners__arrow:hover{
  background: rgba(15,23,42,.78);
  transform: translateY(-50%) scale(1.03);
}
.partners__arrow:disabled{
  opacity: .35;
  cursor: not-allowed;
}
.partners__arrow svg{
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.partners__arrow--prev{ left: 6px; }
.partners__arrow--next{ right: 6px; }

/* Mobile kompakt */
@media (max-width: 980px){
  .partners__track{
    gap: 18px;
    padding: 12px 46px;
  }
  .partner__item{
    width: 180px;
    height: 90px;
  }
  .partners__arrow{
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 520px){
  .partner__item{
    width: 160px;
    height: 82px;
  }
}


/* =========================
   TEAM
========================= */
.team{
  background: #ffffff;
}

.team__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.team__card{
  background: #fff;
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(15,23,42,.06);
  padding: 18px 16px;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.team__card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15,23,42,.10);
  border-color: rgba(148,163,184,.55);
}

.team__avatar{
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: #0b5ed7;
  display: grid;
  place-items: center;
  margin: 6px auto 12px;
  box-shadow: 0 14px 26px rgba(2,6,23,.18);
  overflow: hidden;
}

.team__avatar img{
  width: 44px;
  height: 44px;
  filter: brightness(0) invert(1);
}

.team__name{
  margin: 0 0 6px;
  font-weight: 900;
  color: #0f172a;
  font-size: 16px;
}

.team__role{
  margin: 0 0 12px;
  font-weight: 800;
  color: #0b5ed7;
  font-size: 13.5px;
}

.team__contacts{
  display: grid;
  gap: 8px;
  justify-content: center;
  margin-top: 6px;
}

.team__link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #475569;
  font-weight: 600;
  font-size: 13.5px;
}
.team__link:hover{ color: #0f172a; }

.team__link svg{
  width: 16px;
  height: 16px;
  fill: #64748b;
}

/* Responsive */
@media (max-width: 1100px){
  .team__grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px){
  /* kompakt: horizontal swipe statt viel scrollen */
  .team__grid{
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .team__grid::-webkit-scrollbar{ height: 8px; }
  .team__grid::-webkit-scrollbar-thumb{
    background: rgba(148,163,184,.35);
    border-radius: 999px;
  }
  .team__card{
    flex: 0 0 86%;
    scroll-snap-align: start;
  }
}


/* =========================
   REVIEWS (Bewertungen)
========================= */
.reviews{
  background: #f8fbff;
}

.reviews__wrap{
  position: relative;
  margin-top: 26px;
}

.reviews__viewport{
  overflow: hidden;
  border-radius: 16px;
}

.reviews__track{
  display: flex;
  gap: 18px;
  align-items: stretch;
  padding: 10px 56px; /* Platz für Pfeile */
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}
.reviews__track::-webkit-scrollbar{ display: none; }

.review{
  flex: 0 0 auto;
  width: 360px;
  background: #fff;
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(15,23,42,.06);
  padding: 18px 18px 16px;
  min-height: 250px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

.review__quote{
  width: 34px;
  height: 34px;
  color: rgba(59,130,246,.35);
  margin-bottom: 8px;
}
.review__quote svg{ width: 34px; height: 34px; fill: currentColor; }

.review__text{
  margin: 0 0 16px;
  color: #334155;
  font-style: italic;
  line-height: 1.75;
  font-size: 14.8px;
}

.review__footer{
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.review__person{
  display: flex;
  align-items: center;
  gap: 12px;
}

.review__avatar{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #0b5ed7;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 13px;
}

.review__name{
  margin: 0;
  font-weight: 900;
  color: #0f172a;
  font-size: 14px;
}
.review__since{
  margin: 2px 0 0;
  color: #64748b;
  font-size: 12.5px;
}

.review__stars{
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.review__stars svg{
  width: 16px;
  height: 16px;
  fill: #f59e0b; /* Stern-Gold */
}

/* Pfeile wie im Screenshot-Stil */
.reviews__arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: none;
  background: rgba(15,23,42,.65);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 26px rgba(2,6,23,.22);
  transition: transform .15s ease, background .15s ease, opacity .15s ease;
  z-index: 2;
}
.reviews__arrow:hover{
  background: rgba(15,23,42,.78);
  transform: translateY(-50%) scale(1.03);
}
.reviews__arrow:disabled{
  opacity: .35;
  cursor: not-allowed;
}
.reviews__arrow svg{
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.reviews__arrow--prev{ left: 6px; }
.reviews__arrow--next{ right: 6px; }

/* Responsive: kompakter & mehr Swipe */
@media (max-width: 980px){
  .reviews__track{
    padding: 10px 46px;
  }
  .review{
    width: 84%;
    min-height: 240px;
  }
  .reviews__arrow{
    width: 48px;
    height: 48px;
  }
}

/* =========================
   CONTACT
========================= */
.contact{
  background: #ffffff;
}

.contact__grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items: start;
  margin-top: 26px;
}

.contact__card{
  background: #fff;
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(15,23,42,.06);
  padding: 18px;
}

.contact__formTitle{
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 12px;
  font-size: 16px;
}

.form__row{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.form__row--2{
  grid-template-columns: 1fr 1fr;
}

.field label{
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 6px;
}

.field input,
.field textarea{
  width: 100%;
  border: 1px solid rgba(148,163,184,.45);
  border-radius: 12px;
  padding: 12px 12px;
  font-size: 14.5px;
  outline: none;
  background: #f8fafc;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.field textarea{ resize: vertical; min-height: 120px; }

.field input:focus,
.field textarea:focus{
  border-color: rgba(11,94,215,.55);
  box-shadow: 0 0 0 4px rgba(11,94,215,.12);
  background: #ffffff;
}

.field .req{ color: #ef4444; font-weight: 900; }

.form__hint{
  color: #64748b;
  font-size: 12.5px;
  margin-top: 6px;
}

.form__check{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
  color: #475569;
  font-size: 13px;
  line-height: 1.5;
}

.form__check input{
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.form__check a{
  color: #0b5ed7;
  font-weight: 800;
}
.form__check a:hover{ text-decoration: underline; }

.contact__submit{
  width: 100%;
  justify-content: center;
  margin-top: 14px;
}

.contact__alert{
  border-radius: 14px;
  padding: 12px 12px;
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 13.5px;
}
.contact__alert--ok{
  background: rgba(34,197,94,.10);
  border: 1px solid rgba(34,197,94,.25);
  color: #166534;
}
.contact__alert--err{
  background: rgba(239,68,68,.08);
  border: 1px solid rgba(239,68,68,.22);
  color: #991b1b;
}

/* Rechte Seite: Kontaktdaten */
.contact__sideTitle{
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 14px;
  font-size: 18px;
}

.contact__list{
  display: grid;
  gap: 12px;
}

.contact__item{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
}

.contact__iconBox{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(11,94,215,.10);
  color: #0b5ed7;
  display: grid;
  place-items: center;
}

.contact__iconBox svg{
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact__text{
  color: #475569;
  font-size: 14.5px;
  line-height: 1.5;
}
.contact__text a{ color: #475569; font-weight: 700; }
.contact__text a:hover{ color: #0f172a; }

/* Mobile kompakt */
@media (max-width: 980px){
  .contact__grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .form__row--2{
    grid-template-columns: 1fr;
  }
  .contact__card{ padding: 16px; }
}

/* =========================
   FOOTER
========================= */
.site-footer{
  margin-top: 56px;
  background:
    radial-gradient(900px 380px at 20% 20%, rgba(11,94,215,.10), transparent 60%),
    linear-gradient(180deg, #0b1b33 0%, #071225 100%);
  color: #cbd5e1;
  border-top: 1px solid rgba(148,163,184,.18);
}

.footer{
  padding: 34px 0 18px;
}

.footer__grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.footer__brand{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer__logo{
  width: 42px;
  height: 42px;
}

.footer__name{
  font-weight: 900;
  color: #ffffff;
  letter-spacing: .2px;
}

.footer__about{
  margin: 0 0 14px;
  color: rgba(226,232,240,.78);
  line-height: 1.7;
  font-size: 13.8px;
  max-width: 56ch;
}

.footer__title{
  margin: 0 0 12px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: .2px;
}

.footer__links{
  display: grid;
  gap: 10px;
}

.footer__links a{
  color: rgba(226,232,240,.78);
  font-weight: 700;
  font-size: 13.8px;
}
.footer__links a:hover{
  color: #ffffff;
  text-decoration: underline;
}

.footer__social{
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer__social a{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(148,163,184,.18);
  color: #e2e8f0;
  transition: transform .15s ease, background .15s ease;
}
.footer__social a:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
}
.footer__social svg{
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Bottom bar */
.footer__bottom{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(148,163,184,.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(226,232,240,.72);
  font-size: 13px;
}

.footer__meta{
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.footer__meta a{
  color: rgba(226,232,240,.78);
  font-weight: 800;
}
.footer__meta a:hover{ color: #ffffff; text-decoration: underline; }

.backtop{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(148,163,184,.22);
  background: rgba(255,255,255,.06);
  color: #ffffff;
  border-radius: 999px;
  padding: 10px 12px;
  cursor: pointer;
  font-weight: 900;
}
.backtop:hover{
  background: rgba(255,255,255,.10);
}
.backtop svg{
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Responsive */
@media (max-width: 980px){
  .footer__grid{
    grid-template-columns: 1fr 1fr;
  }
  .footer__bottom{
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 560px){
  .footer__grid{
    grid-template-columns: 1fr;
  }
}


/* =========================
   SERVICE PAGES (leistung.php)
========================= */
.page-hero{
  padding: 34px 0 18px;
  background:
    radial-gradient(900px 380px at 75% 35%, rgba(11,94,215,.12), transparent 60%),
    radial-gradient(700px 280px at 15% 35%, rgba(202,138,4,.08), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-bottom: 1px solid rgba(226,232,240,.8);
}

.breadcrumbs{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 10px;
}
.breadcrumbs a{ color: #0b5ed7; font-weight: 800; }
.breadcrumbs a:hover{ text-decoration: underline; }

.page-title{
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: -0.6px;
  line-height: 1.06;
  font-size: clamp(28px, 3vw, 46px);
  color: #0f172a;
}
.page-subtitle{
  margin: 0;
  color: #475569;
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 75ch;
}

.page{
  padding: 26px 0 56px;
  background: #ffffff;
}

.page-grid{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}

.content-card{
  background: #fff;
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(15,23,42,.06);
  padding: 18px;
}

.block-title{
  margin: 0 0 12px;
  font-weight: 900;
  color: #0f172a;
  font-size: 18px;
}

.feature-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.feature{
  background: #f8fafc;
  border: 1px solid rgba(148,163,184,.32);
  border-radius: 14px;
  padding: 12px;
}
.feature__t{
  margin: 0 0 6px;
  font-weight: 900;
  color: #0f172a;
  font-size: 14.5px;
}
.feature__d{
  margin: 0;
  color: #64748b;
  line-height: 1.65;
  font-size: 13.8px;
}

.bullets{
  margin: 0;
  padding-left: 18px;
  color: #475569;
  line-height: 1.8;
  font-size: 14.5px;
}
.bullets li{ margin: 4px 0; }

.aside{
  position: sticky;
  top: 16px;
  display: grid;
  gap: 12px;
}

.aside-card{
  background: #fff;
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(15,23,42,.06);
  padding: 16px;
}

.aside-cta{
  background: rgba(11,94,215,.06);
  border-color: rgba(11,94,215,.22);
}
.aside-cta p{
  margin: 0 0 12px;
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
}

.chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,.34);
  background: #f8fafc;
  color: #0f172a;
  font-weight: 800;
  font-size: 13px;
}
.chip:hover{
  border-color: rgba(11,94,215,.45);
}

@media (max-width: 980px){
  .page-grid{
    grid-template-columns: 1fr;
  }
  .aside{
    position: static;
  }
  .feature-grid{
    grid-template-columns: 1fr;
  }
}


/* =========================
   ZULASSUNGSSTELLE PAGE
========================= */
.reg-actions{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.reg-card{
  background: #fff;
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(15,23,42,.06);
  padding: 16px;
  display: grid;
  gap: 10px;
}

.reg-card__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.reg-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 900;
  background: rgba(11,94,215,.10);
  color: #0b5ed7;
}

.reg-badge--gold{
  background: rgba(202,138,4,.14);
  color: var(--accent);
}

.reg-icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(11,94,215,.10);
  color: #0b5ed7;
}
.reg-icon--gold{
  background: rgba(202,138,4,.14);
  color: var(--accent);
}
.reg-icon svg{ width: 22px; height: 22px; fill: currentColor; }

.reg-card__title{
  margin: 0;
  font-weight: 900;
  color: #0f172a;
  font-size: 16px;
}
.reg-card__desc{
  margin: 0;
  color: #475569;
  font-size: 14.2px;
  line-height: 1.7;
}

.reg-mini{
  margin: 0;
  padding-left: 18px;
  color: #475569;
  line-height: 1.75;
  font-size: 14px;
}
.reg-mini li{ margin: 4px 0; }

.reg-btns{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 2px;
}

/* Accordion (details/summary) */
.acc{
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
.acc details{
  border-top: 1px solid rgba(226,232,240,.95);
}
.acc details:first-child{ border-top: none; }

.acc summary{
  list-style: none;
  cursor: pointer;
  padding: 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 900;
  color: #0f172a;
}
.acc summary::-webkit-details-marker{ display: none; }

.acc summary .muted{
  font-weight: 800;
  color: #64748b;
  font-size: 12.5px;
}

.acc .acc-body{
  padding: 0 14px 14px;
  color: #475569;
  line-height: 1.75;
  font-size: 14.5px;
}

.acc-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.acc-item{
  background: #f8fafc;
  border: 1px solid rgba(148,163,184,.28);
  border-radius: 14px;
  padding: 10px 12px;
}
.acc-item b{ color: #0f172a; }

.cost-chip{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid rgba(148,163,184,.28);
  font-weight: 800;
  color: #0f172a;
}
.cost-chip span{
  color: #475569;
  font-weight: 900;
}

@media (max-width: 980px){
  .reg-actions{
    grid-template-columns: 1fr;
  }
  .acc-grid{
    grid-template-columns: 1fr;
  }
}

/* =========================
   FORMS PAGE (formulare.php)
========================= */
.forms-hero{
  padding: 34px 0 18px;
  background:
    radial-gradient(900px 380px at 70% 35%, rgba(11,94,215,.12), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-bottom: 1px solid rgba(226,232,240,.8);
}

.forms{
  padding: 22px 0 56px;
  background: #ffffff;
}

.forms__toolbar{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 12px;
  align-items: center;
  margin: 18px 0 18px;
}

.forms__search{
  display: flex;
  gap: 10px;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(148,163,184,.38);
  border-radius: 14px;
  padding: 12px 12px;
  box-shadow: 0 10px 26px rgba(15,23,42,.05);
}

.forms__search svg{
  width: 18px;
  height: 18px;
  fill: #64748b;
}

.forms__search input{
  width: 100%;
  border: none;
  outline: none;
  font-size: 14.5px;
  background: transparent;
  color: #0f172a;
}

.forms__cats{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.forms__cat{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,.34);
  background: #f8fafc;
  color: #0f172a;
  font-weight: 900;
  font-size: 13px;
  cursor: pointer;
  user-select: none;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.forms__cat:hover{
  border-color: rgba(11,94,215,.45);
  transform: translateY(-1px);
}
.forms__cat.is-active{
  background: rgba(11,94,215,.10);
  border-color: rgba(11,94,215,.35);
  color: #0b5ed7;
}

.forms__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.formdoc{
  background: #fff;
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(15,23,42,.06);
  padding: 16px;
  display: grid;
  gap: 10px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.formdoc:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15,23,42,.10);
  border-color: rgba(148,163,184,.55);
}

.formdoc__top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.formdoc__icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(11,94,215,.10);
  color: #0b5ed7;
}
.formdoc__icon svg{ width: 22px; height: 22px; fill: currentColor; }

.formdoc__badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 900;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(148,163,184,.16);
  color: #334155;
  white-space: nowrap;
}

.formdoc__title{
  margin: 0;
  font-weight: 900;
  color: #0f172a;
  font-size: 16px;
  line-height: 1.25;
}

.formdoc__desc{
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
  min-height: 44px;
}

.formdoc__meta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #475569;
  font-size: 12.8px;
  font-weight: 800;
}
.formdoc__meta span{
  padding: 6px 10px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid rgba(148,163,184,.28);
}

.formdoc__actions{
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-top: 2px;
}

.formdoc__download{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  padding: 10px 12px;
  background: #0b5ed7;
  color: #fff;
  font-weight: 900;
  border: 1px solid rgba(11,94,215,.35);
}
.formdoc__download:hover{
  background: #0a4fb5;
}

.forms__empty{
  margin-top: 16px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(226,232,240,.95);
  background: #f8fafc;
  color: #475569;
  font-weight: 800;
}

@media (max-width: 1100px){
  .forms__grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px){
  .forms__toolbar{
    grid-template-columns: 1fr;
  }
  .forms__cats{
    justify-content: flex-start;
  }
}
@media (max-width: 680px){
  .forms__grid{ grid-template-columns: 1fr; }
  .formdoc__desc{ min-height: unset; }
}


/* =========================
   KFZ AN/ABMELDUNG PAGES
========================= */
.steps{
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.step{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  background: #f8fafc;
  border: 1px solid rgba(148,163,184,.28);
  border-radius: 16px;
  padding: 12px;
}

.step__num{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(11,94,215,.10);
  color: #0b5ed7;
  font-weight: 900;
}

.step__t{
  margin: 0 0 4px;
  font-weight: 900;
  color: #0f172a;
}
.step__d{
  margin: 0;
  color: #475569;
  line-height: 1.7;
  font-size: 14.5px;
}

.notice{
  margin-top: 14px;
  background: rgba(202,138,4,.10);
  border: 1px solid rgba(202,138,4,.22);
  color: #0f172a;
  border-radius: 16px;
  padding: 12px;
  font-weight: 800;
  line-height: 1.6;
  font-size: 13.8px;
}


/* Language: Desktop vs Mobile placement */
.lang--mobile{ display: none; }

.nav__menuDivider{
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}

.nav__menuBottom{
  width: 100%;
}

/* Mobile: Sprache aus Header raus, unten im Menü aktiv */
@media (max-width: 980px){
  .lang--desktop{ display: none; }
  .lang--mobile{ display: block; width: 100%; }

  .lang--mobile .lang__button{
    width: 100%;
    justify-content: space-between;
  }

  .lang--mobile .lang__dropdown{
    left: 0;
    right: 0;
    width: 100%;
  }
}
