:root {
  --navy: #1b2f4e;
  --navy-dark: #111e30;
  --blue: #1a4fa0;
  --blue-hover: #143d80;
  --text: #000000;
  --muted: #5a6375;
  --bg-light: #eef1f7;
  --border: #d8dde8;
  --white: #ffffff;
  --max-w: 1500px;
  --pad: clamp(16px, 4vw, 80px);
}

/* montserrat-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/montserrat-v31-latin-regular.woff2') format('woff2');
}

/* montserrat-italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/montserrat-v31-latin-italic.woff2') format('woff2');
}

/* montserrat-500 - latin */
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/montserrat-v31-latin-500.woff2') format('woff2');
}

/* montserrat-500italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 500;
  src: url('../fonts/montserrat-v31-latin-500italic.woff2') format('woff2');
}

/* montserrat-600 - latin */
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/montserrat-v31-latin-600.woff2') format('woff2');
}

/* montserrat-600italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 600;
  src: url('../fonts/montserrat-v31-latin-600italic.woff2') format('woff2');
}

/* montserrat-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/montserrat-v31-latin-700.woff2') format('woff2');
}

/* montserrat-700italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/montserrat-v31-latin-700italic.woff2') format('woff2');
}


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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.cursor {
  cursor: pointer;
}

.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.eyebrow {
  display: block;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .4rem;
}

.link-arrow {
  display: inline-block;
  align-items: center;
  gap: .3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue);
}

.link-arrow:first-of-type {
  margin-top: 1rem;
}

.link-arrow::after {
  content: '›';
  font-size: 1.2em;
  line-height: 1;
}

.link-arrow:hover {
  text-decoration: underline;
}

.btn {
  display: inline-block;
  font-family: inherit;
  font-weight: 700;
  padding: .7rem 1.6rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background .2s;
  line-height: 1.4;
}

.btn-blue {
  background: var(--navy);
  color: var(--white);
}

.btn-blue:hover {
  background: var(--navy-dark);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
}

.btn-white:hover {
  background: #e8ecf3;
}

/* Einheitlicher navy Kreis — überall gleich */
.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-circle img {
  width: 20px;
  height: 20px;
}

/* ════ TOP BAR — scrollt mit ══════════════════ */
.topbar {
  background: var(--navy);
  padding: .45rem 0;
}

.topbar .wrap {
  font-size: 0.8rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: .25rem;
}

.topbar-text {
  font-weight: 700;
  color: #fff;
}

.topbar-text a {
  color: #fff;
  font-weight: 700;
}

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

.topbar-sep {
  color: rgba(255, 255, 255, .4);
  margin: 0 .25rem;
}

.topbar-reach {
  font-weight: 400;
  color: rgba(255, 255, 255, .75);
}

/* ════ HEADER ══════════════════════════════════ */
.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

.site-header .wrap.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.logo-main {
  font-weight: 700;
  color: var(--navy);
}

.logo-sub {
  font-weight: 400;
  color: var(--muted);
}

/* Nav: aktiv = 700, inaktiv = 400, immer schwarz, kein underline */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.main-nav a {
  font-weight: 400;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  transition: color .2s;
}

.main-nav a.active {
  font-weight: 700;
  color: #000;
}

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

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: .3s;
}

/* Mobile nav drawer */
.nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  max-width: 320px;
  height: 100vh;
  background: var(--white);
  box-shadow: -4px 0 24px rgba(0, 0, 0, .15);
  z-index: 500;
  transition: right .35s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.nav-drawer.open {
  right: 0;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  z-index: 499;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.drawer-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--navy);
  cursor: pointer;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.nav-drawer nav {
  display: flex;
  flex-direction: column;
}

.nav-drawer nav a {
  font-weight: 400;
  text-transform: uppercase;
  color: #000;
  padding: .85rem 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}

.nav-drawer nav a.active {
  font-weight: 700;
}

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

.drawer-phone {
  margin-top: auto;
  padding-top: 2rem;
  color: var(--muted);
}

.drawer-phone a {
  font-weight: 700;
  color: var(--navy);
}

/* ════ HERO ═══════════════════════════════════ */
.hero {
  position: relative;
  background: url('../images/bg.png') no-repeat top center/cover;
  padding-top: 5rem;
  padding-bottom: 160px;
  overflow: visible;
  min-height: 70vh;
  margin-top: 100px;
}

.hero .wrap::before {
  content: '';
  display: block;
  aspect-ratio: 12/1;
  width: 100%;
}

.hero-img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      #f0f3f8 40%,
      rgba(240, 243, 248, .6) 65%,
      rgba(240, 243, 248, 0) 100%);
}

.hero-body {
  position: relative;
  z-index: 1;
  max-width: 580px;
}

.hero-body .eyebrow {
  color: var(--blue);
  margin-bottom: .5rem;
}

.hero-body h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: .6rem;
}

.hero-sub {
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}

/* ════ STEPS ════════════════════════════════ */
.steps {
  position: relative;
  z-index: 10;
  margin-top: -130px;
  padding-bottom: 4rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .09);
  text-align: center;
}

.step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .9rem;
  margin-inline: auto;
}

.step-card strong {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
  line-height: 1.3;
}

.step-card p {
  color: var(--muted);
  line-height: 1.6;
}

/* ════ ABOUT ════════════════════════════════ */
.about {
  padding: 5rem 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-bottom: 1.5rem;
}

/* Über-uns-Bilder: großes Bild im Hintergrund, kleines oben drüber rechts unten */
.about-imgs {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.about-img-a {
  inset: 0;
  width: 100%;
  aspect-ratio: 1;
}

.about-img-a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.about-img-b {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 55%;
  aspect-ratio: 1;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .18);
  border: 4px solid var(--white);
  border-radius: 6px;
  overflow: hidden;
}

.about-img-b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text .lead {
  font-weight: 600;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: .9rem;
}

.about-text p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: .8rem;
}

.about-text .link-arrow {
  display: inline-flex;
  margin-bottom: 1.75rem;
}

/* Badges: Linie oben, icon links + text rechts, space-between */
.about-badges {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: .5rem;
}

.about-badge {
  display: flex;
  align-items: center;
  gap: .65rem;
  width: 32%;
}

.about-badge-label {
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

/* ════ SERVICES ══════════════════════════════ */
.services {
  padding: 5rem 0;
  background: url('../images/bg.png') no-repeat center/cover;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.services-text::before {
  content: '';
  display: block;
  width: 100%;
  aspect-ratio: 10/1;
}

/*
  .eyebrow-bar: blaue Linie durchgehend links neben Eyebrow + H2.
  Kein border-radius.
*/
.eyebrow-bar {
  display: flex;
  align-items: stretch;
  gap: .75rem;
  margin-bottom: .9rem;
}

.eyebrow-bar::before {
  content: '';
  display: block;
  width: 3px;
  flex-shrink: 0;
  background: var(--blue);
  border-radius: 0;
}

.eyebrow-bar-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .2rem;
}

.eyebrow-bar-text .eyebrow {
  margin-bottom: 0;
}

.eyebrow-bar-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0;
}

.about-text .eyebrow-bar-text h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.contact-left .eyebrow-bar-text h2 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.services-text>p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.services-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* Linie über dem Icon-Bereich der Services */
.srv-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.srv-item {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
}

.srv-item strong {
  display: block;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  padding-top: .3rem;
}

/* Leistungen-Bildcollage */
.srv-imgs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.srv-imgs:after {
  content: '';
  display: block;
  width: 100%;
  aspect-ratio: 4/1;
}

.srv-img-wrap {
  flex: 1 1 calc(50% - 4px);
  aspect-ratio: 1;
  min-width: 0;
  border-radius: 8px;
  overflow: hidden;
}

.srv-img-wrap.offset {
  transform: translateY(50%);
}

.srv-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ════ TESTIMONIALS ══════════════════════════ */
.testimonials {
  background: var(--navy);
  padding: 5rem 0;
}

.testi-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.testi-head .eyebrow {
  color: rgba(255, 255, 255, .55);
}

.testi-head h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.testi-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  padding: 1.25rem;
}

.testi-quote {
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .25);
  line-height: 1;
  margin-bottom: .5rem;
}

.testi-card p {
  color: rgba(255, 255, 255, .75);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: .65rem;
}

.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 700;
  color: #fff;
}

.testi-since {
  color: rgba(255, 255, 255, .4);
}

.testi-cta {
  text-align: center;
  margin-top: 2rem;
}

.testi-cta .cta-line {
  font-weight: 700;
  color: #fff;
  margin-bottom: .25rem;
}

.testi-cta .cta-line a {
  color: #fff;
}

.testi-cta .cta-sub {
  color: rgba(255, 255, 255, .5);
}

/* ════ CONTACT ═══════════════════════════════ */
.contact {
  padding: 5rem 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-firm {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* Kontakt-Icons: Linie oben, 2×2-Grid */
.contact-details {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
}

.cd-text {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}

.cd-label {
  font-weight: 700;
  color: var(--navy);
}

.cd-value {
  font-size: 0.8rem;
  color: var(--navy);
  line-height: 1.55;
}

.cd-value a {
  color: var(--navy);
}

.contact-form {
  background: var(--navy);
  border-radius: 8px;
  padding: 2rem;
}

.kontaktformular {
  width: 100%;
  height: 750px;
  border: none;
}

/* ════ FOOTER ════════════════════════════════ */
.site-footer {
  background: var(--navy-dark);
  padding: 3.5rem 0 1.75rem;
}

.site-footer ul {
  font-size: 0.8rem;
}

/* Firmenname als Headline über volle Breite */
.footer-brand {
  margin-bottom: 2rem;
}

.footer-brand .logo-main {
  color: #fff;
}

.footer-brand .logo-sub {
  color: rgba(255, 255, 255, .5);
}

/* 4 gleichmäßige Spalten darunter */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  margin-bottom: 1.25rem;
}

.footer-col strong {
  display: block;
  font-weight: 700;
  color: #fff;
  margin-bottom: .85rem;
}

.footer-col li {
  margin-bottom: .35rem;
  line-height: 1.5;
}

.footer-col li,
.footer-col li a {
  color: rgba(255, 255, 255, .55);
}

.footer-col li a:hover {
  color: #fff;
}

.footer-copy {
  color: rgba(255, 255, 255, .3);
  text-align: center;
}

/* ════ RESPONSIVE ════════════════════════════ */
@media (max-width: 1024px) {
  body {
    hyphens: auto;
  }

  .main-nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-bottom: 80px;
    padding-top: 400px;
  }

  .steps {
    margin-top: 0;
    padding-top: 4rem;
  }

  .hero-img {
    width: 100%;
  }

  .hero .wrap {
    position: absolute;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .hero .wrap::before {
    display: none;
  }

  .hero-fade {
    display: none;
  }

  .about-grid,
  .services-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-imgs {
    grid-template-rows: 170px 170px;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .srv-img-wrap.offset {
    transform: none;
  }

  .services-text::before,
  .srv-imgs::after {
    display: none;
  }

  .about {
    padding-top: 2rem;
  }

  .about-text {
    margin-top: 2rem;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-bottom: 50px;
  }

  .steps {
    margin-top: -40px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .srv-items {
    grid-template-columns: 1fr;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .about-badges {
    flex-direction: column;
  }

  .about-badge {
    width: 100%;
  }
}

.WidgetTitle__Container-sc-b66386bb-0.ecaxC.es-widget-title-container {
  display: none !important;
}




.page-hero {
  position: relative;
  background: #f0f3f8;
  padding-top: 10rem;
  padding-bottom: 10rem;
  margin-top: 100px;
  overflow: hidden;
}

.page-hero-img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.page-hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      #f0f3f8 42%,
      rgba(240, 243, 248, .65) 65%,
      rgba(240, 243, 248, 0) 100%);
}

.page-hero-body {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.page-hero-body h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: .6rem;
}

.page-hero-body p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Kostenlos-Banner */
.free-banner {
  background: var(--navy);
  padding: 1.5rem 0;
}

.free-banner .wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.free-banner-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.free-banner-text strong {
  display: block;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.free-banner-text span {
  color: rgba(255, 255, 255, .7);
}

/* Inhalts-Sektionen */
.content-section {
  padding: 5rem 0;
}

.content-section.bg-light {
  background: var(--bg-light);
}

.content-section.bg-white {
  background: var(--white);
}

.content-section.bg-navy {
  background: var(--navy);
}

.content-section.bg-navy .eyebrow,
.content-section.bg-navy h2{
  color: #fff;
}

/* Zweispaltiges Layout Text + Bild */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-grid.reverse {
  direction: rtl;
}

.split-grid.reverse>* {
  direction: ltr;
}

.split-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
}

.split-text>p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.split-text>p:last-child {
  margin-bottom: 0;
}

/* Nummerierte Ablauf-Steps */
.ablauf-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.ablauf-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.ablauf-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ablauf-step-text strong {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .25rem;
}

.ablauf-step-text p {
  color: var(--muted);
  line-height: 1.65;
}

/* Vorteile-Grid */
.vorteile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.vorteil-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
}

.vorteil-card .icon-circle {
  margin-bottom: 1rem;
}

.vorteil-card strong {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
  line-height: 1.3;
}

.vorteil-card p {
  color: var(--muted);
  line-height: 1.65;
}

/* Versicherungs- & Anwalts-Section (dunkel) */
.dark-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.dark-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  padding: 2rem;
}

.dark-card .icon-circle {
  background: rgba(255, 255, 255, .15);
  margin-bottom: 1.25rem;
}

.dark-card h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: .75rem;
}

.dark-card p {
  color: rgba(255, 255, 255, .75);
  line-height: 1.7;
  margin-bottom: .75rem;
}

.dark-card p:last-child {
  margin-bottom: 0;
}

.dark-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: .75rem;
}

.dark-card ul li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.55;
}

.dark-card ul li::before {
  content: '✓';
  color: #5b9cf6;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .05em;
}

/* CTA-Banner */
.cta-banner {
  background: var(--bg-light);
  padding: 4rem 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .75rem;
}

.cta-banner p {
  color: var(--muted);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-banner-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
  .vorteile-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    margin-top: 50px;
  }

  .page-hero-img {
    width: 100%;
    opacity: 1;
    position: static;
    margin-bottom: 2rem;
  }

  .page-hero-fade {
    display: none;
  }

  .split-grid,
  .split-grid.reverse,
  .dark-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    direction: ltr;
  }

  .vorteile-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════
   wertgutachten.css
   Seitenspezifische Styles für wertgutachten.html
════════════════════════════════════════════ */

/* ── Fahrzeugtypen-Grid ──────────────────── */
.fahrzeug-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.fahrzeug-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.fahrzeug-card-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.fahrzeug-card-body {
  padding: 1.5rem;
}

.fahrzeug-card-body .icon-circle {
  margin-bottom: 1rem;
}

.fahrzeug-card-body strong {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
  line-height: 1.3;
}

.fahrzeug-card-body p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.fahrzeug-card-body p:last-child {
  margin-bottom: 0;
}

/* ── Einsatzbereiche ─────────────────────── */
.einsatz-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.einsatz-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: 8px;
}

.einsatz-card-text strong {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .4rem;
  line-height: 1.3;
}

.einsatz-card-text p {
  color: var(--muted);
  line-height: 1.65;
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 1024px) {
  .fahrzeug-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .fahrzeug-grid  { grid-template-columns: 1fr; }
  .einsatz-grid   { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════
   ueber-uns.css
   Seitenspezifische Styles für ueber-uns.html
════════════════════════════════════════════ */

/* ── Portrait-Sektion ────────────────────── */
.portrait-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.portrait-img-wrap {
  position: relative;
}

.portrait-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
}

.portrait-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  min-width: 110px;
}

.portrait-badge-num {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: .2rem;
}

.portrait-badge-label {
  display: block;
  font-weight: 400;
  color: rgba(255,255,255,.75);
  line-height: 1.3;
}

.portrait-text p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.portrait-text p:last-child {
  margin-bottom: 0;
}

/* ── Qualifikations-Liste ────────────────── */
.quali-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.25rem;
}

.quali-list li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
}

.quali-list li .icon-circle {
  flex-shrink: 0;
  margin-top: .1rem;
}

.quali-list-text strong {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .15rem;
}

.quali-list-text span {
  color: var(--muted);
  line-height: 1.55;
}

/* ── Werte-Grid ──────────────────────────── */
.werte-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.wert-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.wert-card .icon-circle {
  background: rgba(255,255,255,.15);
  margin-inline: auto;
  margin-bottom: 1rem;
}

.wert-card strong {
  display: block;
  font-weight: 700;
  color: #fff;
  margin-bottom: .5rem;
  line-height: 1.3;
}

.wert-card p {
  color: rgba(255,255,255,.7);
  line-height: 1.65;
}

/* ── Regionale Karte / Einzugsgebiet ─────── */
.region-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.region-map {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.region-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.region-text p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.region-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.25rem;
}

.region-tag {
  background: var(--bg-light);
  border-radius: 100px;
  padding: .3rem .9rem;
  font-weight: 600;
  color: var(--navy);
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 1024px) {
  .werte-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .portrait-grid { grid-template-columns: 1fr; gap: 3rem; }
  .portrait-img  { aspect-ratio: 4/3; }
  .portrait-badge { right: 1rem; }
  .region-grid   { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 600px) {
  .werte-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════
   kontakt.css
   Seitenspezifische Styles für kontakt.html
════════════════════════════════════════════ */

/* ── Telefon-Banner ──────────────────────── */
.phone-banner {
  background: var(--navy);
  padding: 3rem 0;
  text-align: center;
}

.phone-banner-label {
  display: block;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 400;
  margin-bottom: .5rem;
}

.phone-banner-number {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: .75rem;
}

.phone-banner-number svg {
  flex-shrink: 0;
}

.phone-banner-hint {
  color: rgba(255,255,255,.6);
}

/* ── Terminhinweis-Streifen ──────────────── */
.termin-strip {
  background: var(--blue);
  padding: .9rem 0;
}

.termin-strip .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
  text-align: center;
}

.termin-strip span {
  color: #fff;
  font-weight: 600;
}

/* ── Kontakt-Haupt-Grid ──────────────────── */
.kontakt-main {
  padding: 5rem 0;
  background: var(--bg-light);
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

/* ── Kontakt-Infos (links) ───────────────── */
.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.kontakt-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.kontakt-info-text strong {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .35rem;
}

.kontakt-info-text span,
.kontakt-info-text a {
  color: var(--muted);
  line-height: 1.6;
}

.kontakt-info-text a {
  color: var(--navy);
  font-weight: 600;
}

.kontakt-info-text a:hover {
  text-decoration: underline;
}

/* ── Formular-Box (rechts) ───────────────── */
.kontakt-form-box {
  background: var(--navy);
  border-radius: 8px;
  padding: 2rem;
}

.kontakt-form-box h2 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: .4rem;
}

.kontakt-form-box .form-sub {
  color: rgba(255,255,255,.6);
  margin-bottom: 1.5rem;
}

/* ── Karte ───────────────────────────────── */
.karte-section {
  padding: 0 0 5rem;
  background: var(--bg-light);
}

.karte-wrap {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/5;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.karte-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  text-align: center;
  padding: 2rem;
}

.karte-placeholder .icon-circle {
  width: 56px;
  height: 56px;
  background: var(--border);
}

.karte-placeholder .icon-circle svg {
  color: var(--muted);
}

.karte-placeholder p {
  color: var(--muted);
}

.karte-address {
  margin-top: 1.25rem;
  text-align: center;
  color: var(--muted);
}

.karte-address strong {
  color: var(--navy);
  font-weight: 700;
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 768px) {
  .kontakt-grid { grid-template-columns: 1fr; }
  .karte-wrap   { aspect-ratio: 4/3; }
  .phone-banner-number { font-size: clamp(1.6rem, 7vw, 2.5rem); }
}

/* Header-Abstand */
.phone-banner { margin-top: 100px; }


/* ════════════════════════════════════════════
   impressum.css
   Seitenspezifische Styles für impressum.html
════════════════════════════════════════════ */

.legal-main {
  margin-top: 100px;
  padding: 5rem 0;
  background: var(--white);
}

.legal-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .75rem;
}

.legal-section p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: .75rem;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section a {
  color: var(--blue);
}

.legal-section a:hover {
  text-decoration: underline;
}

/* ════════════════════════════════════════════
   404.css
   Seitenspezifische Styles für 404.html
════════════════════════════════════════════ */

.error-main {
  margin-top: 100px;
  padding: 6rem 0;
  background: var(--bg-light);
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.error-body {
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
}

.error-code {
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1rem;
}

.error-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.error-text {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.error-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.error-links .btn-white {
  border: 1px solid var(--border);
}

.error-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
