:root {
  --blue: #0B8ED8;
  --blue-deep: #123A63;
  --blue-mid: #1B5EA4;
  --red: #B71C2D;
  --bg: #F5F8FB;
  --bg-alt: #E9F1F9;
  --ink: #1C2530;
  --ink-soft: #4B5A6B;
  --white: #FFFFFF;
  --line: #D7E2EC;
  --radius: 10px;
  --shadow: 0 8px 24px rgba(18, 58, 99, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .eyebrow, .big-number {
  font-family: 'Barlow Semi Condensed', sans-serif;
  letter-spacing: 0.01em;
}

h1, h2, h3 {
  color: var(--blue-deep);
  margin: 0 0 0.5em;
  font-weight: 800;
}

h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.08;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.15;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4em;
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
}

a {
  color: var(--blue);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(11, 142, 216, 0.35);
}

.btn-primary:hover {
  background: #0a7bbd;
}

.btn-outline {
  background: transparent;
  color: var(--blue-deep);
  border-color: var(--blue-deep);
}

.btn-outline:hover {
  background: var(--blue-deep);
  color: var(--white);
}

.btn svg {
  width: 20px;
  height: 20px;
  flex: none;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #1EBE59;
}

.btn-mobile {
  color: var(--red);
  border-color: var(--red);
}

.btn-mobile:hover {
  background: var(--red);
  color: var(--white);
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 24px;
}

.logo-link {
  display: flex;
  align-items: center;
  flex: none;
}

.logo-link img {
  height: 52px;
  width: auto;
}

nav.main-nav {
  display: flex;
  gap: 26px;
}

nav.main-nav a {
  color: var(--blue-deep);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

nav.main-nav a:hover {
  border-color: var(--blue);
}

.header-call {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--blue-deep);
  transition: background .15s ease, color .15s ease;
  flex: none;
}

.social-icon:hover {
  background: var(--blue);
  color: #fff;
}

.social-icon.whatsapp-icon:hover {
  background: #25D366;
  color: #fff;
}

.social-icon svg {
  width: 19px;
  height: 19px;
}

.call-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-alt);
  color: var(--blue-deep);
  padding: 9px 14px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 1.02rem;
  white-space: nowrap;
}

.call-chip svg {
  width: 17px;
  height: 17px;
  flex: none;
  color: var(--blue);
}

.call-chip.primary {
  background: var(--blue);
  color: #fff;
}

.call-chip.primary svg {
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  cursor: pointer;
  flex: none;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 3px;
  background: var(--blue-deep);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(155deg, var(--bg-alt) 0%, var(--bg-alt) 58%, var(--bg) 58%);
  overflow: hidden;
  padding: 64px 0 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 56px;
}

.eyebrow {
  display: inline-block;
  font-weight: 700;
  color: var(--blue);
  background: rgba(11, 142, 216, 0.1);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.95rem;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.hero p.lead {
  font-size: 1.12rem;
  max-width: 46ch;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-fineprint {
  margin-top: 18px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-fineprint svg {
  width: 16px;
  height: 16px;
  color: var(--blue);
  flex: none;
}

.hero-media {
  position: relative;
}

.hero-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
  aspect-ratio: 6/5;
  object-fit: cover;
  object-position: top center;
}

.hero-media .tag {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 14px 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 700;
  color: var(--blue-deep);
  max-width: 250px;
  font-size: 0.95rem;
  line-height: 1.25;
}

.hero-media .tag svg {
  width: 26px;
  height: 26px;
  color: var(--red);
  flex: none;
}

/* Trust bar */
.trust-bar {
  background: var(--blue-deep);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 22px 0;
}

.trust-list li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #EAF2FB;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-list li:first-child {
  border-left: none;
}

.trust-list svg {
  width: 22px;
  height: 22px;
  flex: none;
  color: #7FCBF0;
}

/* Section generic */
section {
  padding: 76px 0;
}

section.alt {
  background: var(--white);
}

.section-head {
  max-width: 680px;
  margin-bottom: 44px;
}

.section-head p {
  font-size: 1.05rem;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: box-shadow .15s ease, transform .15s ease, border-color .15s ease;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: var(--blue);
}

.service-card .icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.service-card svg {
  width: 24px;
  height: 24px;
  color: var(--blue);
}

.service-card h3 {
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.service-card p {
  font-size: 0.93rem;
  margin: 0;
}

/* Fahrzeuge / Ausstattung */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-collage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.media-collage img.secondary {
  aspect-ratio: 16/10;
  object-fit: cover;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-list li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
  flex: none;
  margin-top: 2px;
}

.feature-list strong {
  color: var(--blue-deep);
  display: block;
  font-size: 1rem;
}

.feature-list span {
  color: var(--ink-soft);
  font-size: 0.93rem;
}

/* Abrechnung / Process */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-step {
  position: relative;
  padding: 0 20px 0 0;
}

.process-step .num {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 800;
  color: var(--blue);
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

.process-step h3 {
  font-size: 1.05rem;
}

.process-step p {
  font-size: 0.92rem;
  margin: 0;
}

.process-connector {
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 14px);
  z-index: 0;
}

.process {
  position: relative;
}

.insurance-box {
  margin-top: 40px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 28px 30px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.insurance-box .text {
  max-width: 560px;
}

.insurance-box h3 {
  margin-bottom: 6px;
}

.insurance-box p {
  margin: 0;
  font-size: 0.95rem;
}

/* Coverage / Einsatzgebiet */
.coverage {
  background: var(--blue-deep);
  color: #fff;
}

.coverage .section-head h2 {
  color: #fff;
}

.coverage .section-head p {
  color: #C4D8EC;
}

.route-wrap {
  position: relative;
  padding: 20px 0 6px;
}

.route-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.35) 0 10px, transparent 10px 20px);
  transform: translateY(-50%);
  z-index: 0;
  display: none;
}

.town-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.town-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  padding: 10px 18px;
  border-radius: 100px;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.town-pill.hub {
  background: var(--blue);
  border-color: var(--blue);
}

.town-pill svg {
  width: 15px;
  height: 15px;
  color: #7FCBF0;
  flex: none;
}

.town-pill.hub svg {
  color: #fff;
}

.coverage-note {
  margin-top: 26px;
  color: #C4D8EC;
  font-size: 0.94rem;
  max-width: 66ch;
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.coverage-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

.coverage-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.coverage-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(185deg, rgba(18, 58, 99, 0.05) 45%, rgba(18, 58, 99, 0.85) 100%);
}

.coverage-photo .caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  z-index: 1;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.3;
}

.coverage-photo .caption span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  color: #B9D6EE;
  margin-top: 4px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.about-card {
  padding: 0;
}

.about-card .num {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 800;
  color: var(--blue);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  display: block;
}

/* Contact CTA banner */
.cta-banner {
  background: linear-gradient(120deg, var(--blue) 0%, #0C74B0 100%);
  color: #fff;
}

.cta-banner .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 8px;
}

.cta-banner p {
  color: #DCEFFB;
  margin: 0;
  max-width: 50ch;
}

.cta-banner .ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--blue-deep);
  box-shadow: none;
}

.cta-banner .btn-primary:hover {
  background: #EAF6FF;
}

.cta-banner .btn-outline {
  border-color: #fff;
  color: #fff;
}

.cta-banner .btn-outline:hover {
  background: #fff;
  color: var(--blue-deep);
}

/* Footer */
footer {
  background: #0E2C4C;
  color: #B9CBDF;
  padding: 48px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 32px;
}

footer h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 14px;
  font-family: 'Barlow Semi Condensed', sans-serif;
}

footer p {
  color: #9FB4CB;
  font-size: 0.92rem;
}

footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

footer li {
  margin-bottom: 9px;
}

footer a {
  color: #B9CBDF;
  text-decoration: none;
  font-size: 0.93rem;
}

footer a:hover {
  color: #fff;
}

footer .logo-link img {
  height: 38px;
  margin-bottom: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: #7E93AC;
}

.footer-bottom a {
  color: #7E93AC;
}

/* Sticky mobile call bar */
.mobile-call-bar {
  display: none;
}

@media (max-width:920px) {
  .nav-toggle {
    display: flex;
    order: 2;
  }

  .header-call {
    order: 3;
  }

  nav.main-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height .25s ease, opacity .2s ease;
  }

  nav.main-nav.is-open {
    max-height: 420px;
    opacity: 1;
    visibility: visible;
  }

  nav.main-nav a {
    padding: 14px 24px;
    border-bottom: 1px solid var(--line);
    border-bottom-width: 1px;
  }

  nav.main-nav a:last-child {
    border-bottom: none;
  }

  nav.main-nav a:hover {
    border-bottom-color: var(--line);
  }

  .header-call .call-chip:not(.primary) {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-bottom: 40px;
  }

  .hero-media {
    order: -1;
  }

  .hero {
    padding-top: 36px;
  }

  .trust-list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 14px;
  }

  .trust-list li {
    border-left: none;
    padding: 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split {
    grid-template-columns: 1fr;
  }

  .split .split-media {
    order: -1;
  }

  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .coverage-photo {
    order: -1;
  }

  .coverage-photo img {
    aspect-ratio: 16/9;
  }

  .process {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
  }

  .process-connector {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  section {
    padding: 56px 0;
  }

  body {
    padding-bottom: 64px;
  }

  .mobile-call-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 60;
    background: var(--blue-deep);
    padding: 10px 16px;
    box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.15);
    gap: 10px;
  }

  .mobile-call-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 700;
    padding: 10px 8px;
    border-radius: 8px;
    font-size: 0.98rem;
  }

  .mobile-call-bar a.primary {
    background: var(--blue);
  }

  .mobile-call-bar a.secondary {
    background: rgba(255, 255, 255, 0.12);
  }

  .mobile-call-bar a.whatsapp {
    flex: 0 0 52px;
    background: #25D366;
    padding: 10px;
  }

  .mobile-call-bar svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width:640px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner .inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

@media (prefers-reduced-motion:reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}