:root {
  --navy:    #f0f5fb;
  --blue:    #dce8f5;
  --sky:     #1a6bd4;
  --sky2:    #1558b8;
  --light:   #0d4fa0;
  --white:   #0a1e3a;
  --gray:    #4a6a8a;
  --card:    #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ─── NAV ─────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 48px;
  background: rgba(240,245,251,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,107,212,0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}

.nav-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  border-radius: 0;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.25s;
}

.nav-links a:hover { color: var(--sky); }

.nav-cta {
  background: var(--sky) !important;
  color: #ffffff !important;
  padding: 11px 26px !important;
  clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
  font-weight: 700 !important;
  transition: background 0.25s !important;
}
.nav-cta:hover { background: var(--light) !important; }

/* ─── HERO ────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 110px 60px 120px;
  background: linear-gradient(135deg, #ddeaf8 0%, #c5d9f0 50%, #e0edf8 100%);
}

/* subtle animated glow behind banner */
.hero::before {
  content: '';
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 46%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(26,107,212,0.15) 0%, transparent 70%);
  z-index: 0;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%,100% { opacity: 0.6; transform: translateY(-50%) scale(1); }
  50%      { opacity: 1;   transform: translateY(-50%) scale(1.06); }
}

.hero-banner {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  width: 44%;
  max-width: 620px;
  z-index: 2;
  opacity: 0;
  animation: heroDrop 1.2s 0.3s cubic-bezier(.22,.9,.36,1) forwards;
  filter: drop-shadow(0 0 40px rgba(40,120,255,0.45));
}

.hero-banner img { width: 100%; height: auto; display: block; }

@keyframes heroDrop {
  from { opacity:0; transform: translateY(-46%) scale(0.88); }
  to   { opacity:1; transform: translateY(-50%) scale(1); }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 520px;
}

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--sky);
  text-transform: uppercase;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp .8s .5s forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 36px; height: 2px;
  background: var(--sky);
  display: block;
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(58px, 7vw, 100px);
  line-height: .92;
  letter-spacing: 1px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .9s .65s forwards;
}

h1 em {
  font-style: normal;
  color: var(--sky);
  display: block;
}

.hero-desc {
  font-size: 15px;
  line-height: 1.85;
  color: var(--gray);
  max-width: 400px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp .9s .8s forwards;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  opacity: 0;
  animation: fadeUp .9s .95s forwards;
}

.btn-primary {
  background: var(--sky);
  color: var(--navy);
  padding: 15px 34px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%);
  transition: background .25s, transform .2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--light); transform: translateX(4px); }

.btn-ghost {
  color: var(--gray);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .25s;
}
.btn-ghost::after { content:'→'; transition: transform .3s; }
.btn-ghost:hover { color: #0a1e3a; }
.btn-ghost:hover::after { transform: translateX(5px); }

/* stats bar */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  background: rgba(220,235,250,0.92);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(91,201,240,0.15);
  z-index: 4;
  opacity: 0;
  animation: fadeUp .8s 1.1s forwards;
}

.stat {
  flex: 1;
  padding: 24px 36px;
  border-right: 1px solid rgba(91,201,240,0.1);
  display: flex;
  flex-direction: column;
}
.stat:last-child { border-right: none; }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--sky);
  line-height: 1;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gray);
  text-transform: uppercase;
  margin-top: 3px;
}

/* ─── SECTION SHARED ────────────────────── */
.section { padding: 90px 60px; }

.section-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--sky);
  text-transform: uppercase;
  margin-bottom: 10px;
}

h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px,4.5vw,68px);
  line-height: 1;
  letter-spacing: 1.5px;
}

/* ─── SECTION HEADER WITH BANNER ───────── */
.section-banner-header {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-bottom: 56px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(91,201,240,0.12);
}

.section-banner-header img {
  height: 120px;
  width: auto;
  object-fit: contain;
  border-radius: 0;
  flex-shrink: 0;
  filter: drop-shadow(0 0 14px rgba(26,107,212,0.35));
}

/* ─── SERVICES ──────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 3px;
}

.service-card {
  background: var(--card);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--sky2), var(--sky));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { background: #e8f0fa; }

.service-num {
  position: absolute;
  top: 16px; right: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 54px;
  color: rgba(26,107,212,0.08);
  line-height: 1;
}

.service-icon { font-size: 32px; margin-bottom: 18px; display: block; }

.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--gray);
}

/* ─── WHY US ─────────────────────────────── */
.why-section {
  background: var(--blue);
  padding: 90px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.why-badge {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(91,201,240,0.2);
  box-shadow: 0 0 60px rgba(30,100,220,0.3), inset 0 0 40px rgba(0,0,0,0.4);
  position: relative;
  animation: floatBadge 6s ease-in-out infinite;
}

.why-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
}

/* rotating ring */
.why-badge::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px dashed rgba(91,201,240,0.18);
  animation: spin 25s linear infinite;
  pointer-events: none;
}

@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.features { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }

.feature { display: flex; gap: 18px; align-items: flex-start; }

.feature-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: rgba(26,107,212,0.08);
  border: 1px solid rgba(91,201,240,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  clip-path: polygon(6px 0,100% 0,calc(100% - 6px) 100%,0 100%);
}

.feature h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 5px;
}

.feature p { font-size: 13px; line-height: 1.7; color: var(--gray); }

/* ─── CONTACT ─────────────────────────────── */
/* ── CONTACT SECTION ── */
.contact-section {
  padding: 90px 60px;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.85;
  max-width: 360px;
  margin: 16px 0 28px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--gray);
  font-size: 13px;
  margin-bottom: 16px;
  line-height: 1.6;
}
.contact-detail span:first-child { font-size: 16px; margin-top: 2px; }

/* ── BOOKING FORM ── */
.booking-form {
  background: #ffffff;
  border: 1px solid rgba(26,107,212,0.12);
  box-shadow: 0 8px 40px rgba(26,107,212,0.08);
  padding: 0;
  overflow: hidden;
}

.form-steps {
  display: flex;
  background: #1a3a6a;
}
.form-step-tab {
  flex: 1;
  padding: 14px 8px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  border-bottom: 3px solid transparent;
  cursor: default;
}
.form-step-tab.active {
  color: #5bc9f0;
  border-bottom-color: #5bc9f0;
}
.form-step-tab span {
  display: block;
  font-size: 18px;
  margin-bottom: 3px;
}

.form-body { padding: 32px 36px; display: flex; flex-direction: column; gap: 22px; }

.form-section-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a3a6a;
  margin-bottom: 4px;
  border-left: 3px solid #1a6bd4;
  padding-left: 10px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }

input, textarea, select {
  background: #f5f8fc;
  border: 1.5px solid #dce8f5;
  color: #0a1e3a;
  padding: 12px 14px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  width: 100%;
  outline: none;
  transition: border-color .2s, background .2s;
  border-radius: 2px;
}
input::placeholder, textarea::placeholder { color: #8aaacc; }
input:focus, textarea:focus, select:focus {
  border-color: #1a6bd4;
  background: #fff;
}
select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231a6bd4' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
textarea { height: 90px; resize: vertical; }

/* ── VEHICLE CARDS ── */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.vehicle-card {
  border: 2px solid #dce8f5;
  background: #f5f8fc;
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
  border-radius: 2px;
  user-select: none;
}
.vehicle-card:hover { border-color: #1a6bd4; background: #eef5ff; }
.vehicle-card.selected { border-color: #1a6bd4; background: #ddeaf8; box-shadow: 0 0 0 3px rgba(26,107,212,0.15); }
.vehicle-card svg { display: block; margin: 0 auto 6px; }
.vehicle-card .v-name { font-size: 11px; font-weight: 700; color: #0a1e3a; letter-spacing: .5px; }
.vehicle-card .v-load { font-size: 10px; color: #4a6a8a; margin-top: 2px; }

/* ── KM ROUTE ROW ── */
.route-row {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 120px;
  gap: 10px;
  align-items: center;
}
.route-arrow {
  text-align: center;
  font-size: 18px;
  color: #1a6bd4;
  font-weight: bold;
}
.km-field { position: relative; }
.km-field input { padding-right: 36px; }
.km-field::after {
  content: 'km';
  position: absolute;
  right: 12px; top: 50%; transform: translateY(-50%);
  font-size: 12px; color: #1a6bd4; font-weight: 600;
  pointer-events: none;
}

.form-submit {
  background: #1a6bd4;
  color: #ffffff;
  border: none;
  padding: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  cursor: pointer;
  transition: background .25s, transform .15s;
  width: 100%;
  border-radius: 2px;
  margin-top: 4px;
}
.form-submit:hover { background: #0d4fa0; transform: translateY(-1px); }

/* ── KONTAKT-SEKTION (finale Sektion der Startseite) ── */
.contact-section.contact-section--final {
  display: block;
  padding: 58px clamp(24px, 4vw, 56px) 64px;
  background:
    radial-gradient(circle at 26% 52%, rgba(247,251,255,.58) 0%, rgba(247,251,255,.38) 31%, rgba(247,251,255,.16) 54%, rgba(247,251,255,.04) 100%),
    linear-gradient(90deg, rgba(247,251,255,.38) 0%, rgba(247,251,255,.20) 42%, rgba(247,251,255,.08) 100%),
    url('/img/Back_Round.png') 38% center / cover no-repeat;
  border-top: 1px solid rgba(26,107,212,0.10);
}
.contact-section--final h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 4.8vw, 70px);
  line-height: .92;
  color: #081428;
  letter-spacing: 1px;
}
.kontakt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 32px auto 30px;
  max-width: 920px;
}
.kontakt-card {
  background: #ffffff;
  border: 1px solid rgba(26,107,212,0.12);
  box-shadow: 0 6px 24px rgba(26,107,212,0.06);
  padding: 22px 18px;
  border-radius: 3px;
  text-align: center;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.kontakt-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(26,107,212,0.14);
  border-color: rgba(26,107,212,0.35);
}
.kontakt-icon { font-size: 26px; margin-bottom: 8px; }
.kontakt-card-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #1a6bd4;
  margin-bottom: 8px;
}
.kontakt-card a {
  color: #0a1e3a;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
  word-break: break-word;
}
.kontakt-card a:hover { color: #1a6bd4; }
.kontakt-card-sub { font-size: 11px; color: #4a6a8a; margin-top: 6px; }
.kontakt-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}
.kontakt-cta {
  display: inline-block;
  padding: 14px 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background .2s, color .2s, transform .2s;
}
.kontakt-cta--primary { background: #1a6bd4; color: #ffffff; }
.kontakt-cta--primary:hover { background: #0d4fa0; transform: translateX(3px); }
.kontakt-cta--ghost { background: transparent; color: #1a6bd4; border: 1.5px solid #1a6bd4; }
.kontakt-cta--ghost:hover { background: #1a6bd4; color: #fff; }
.contact-section--final .contact-flow-bar {
  grid-column: 1;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 34px);
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.contact-section--final .contact-flow-bar .landing-flow-mark {
  width: clamp(118px, 11vw, 156px);
  max-width: 100%;
  height: auto;
  mix-blend-mode: normal;
  justify-self: auto;
  filter: drop-shadow(0 18px 30px rgba(91,201,240,0.14));
}
.contact-section--final .contact-flow-bar .landing-flow-copy {
  max-width: 100% !important;
}
.contact-section--final .contact-flow-bar .landing-flow-copy h2 {
  margin: 0;
  color: #081428 !important;
  font-size: clamp(40px, 4.1vw, 58px);
  overflow-wrap: normal;
  word-break: normal;
}
.contact-offer-card {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(460px, 1fr);
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: clamp(30px, 3.5vw, 46px);
  border: 1px solid rgba(26,107,212,0.14);
  border-radius: 28px;
  background: rgba(255,255,255,0.74);
  backdrop-filter: blur(2px);
  color: #081428;
  text-align: left;
  overflow: hidden;
  box-shadow: 0 20px 54px rgba(26,107,212,0.10);
}
.contact-offer-copy {
  grid-column: 2;
  padding: clamp(34px, 4vw, 48px);
  border-radius: 22px;
  background:
    radial-gradient(circle at 86% 10%, rgba(91,201,240,0.18) 0%, transparent 34%),
    linear-gradient(135deg, #081428 0%, #102845 100%);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(8,20,40,0.16);
}
.contact-offer-kicker {
  margin: 0 0 14px;
  color: #5bc9f0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.contact-offer-card h3 {
  margin: 0 0 18px;
  max-width: 680px;
  color: #ffffff;
  font-size: clamp(34px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.05;
}
.contact-offer-card p {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,0.80);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
}
.contact-offer-actions {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 26px;
}
.contact-offer-card .kontakt-cta {
  flex: 0 0 auto;
  min-width: 200px;
  border-radius: 999px !important;
  padding: 15px 26px;
  letter-spacing: 0;
  text-transform: none;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
}
.contact-offer-card .kontakt-cta--primary {
  background: #5bc9f0 !important;
  color: #081428 !important;
  box-shadow: 0 16px 30px rgba(91,201,240,0.22);
}
.contact-offer-card .kontakt-cta--ghost {
  border: 1.5px solid #5bc9f0 !important;
  background: transparent !important;
  color: #ffffff !important;
}
.contact-offer-card .kontakt-cta--ghost:hover {
  background: rgba(91,201,240,0.14) !important;
}
.contact-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(16px, 4vw, 40px);
  width: min(100%, 1210px);
  margin: 0 auto;
  padding: 18px clamp(20px, 4vw, 38px);
  border: 1px solid rgba(26,107,212,0.13);
  border-top: 0;
  border-radius: 0 0 22px 22px;
  background: rgba(255,255,255,0.92);
  color: #0a1e3a;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 18px 42px rgba(26,107,212,0.08);
}
.contact-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.contact-trust-row span::before {
  content: '';
  width: 9px;
  height: 9px;
  border: 2px solid #5bc9f0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px #ffffff;
}
@media (max-width: 900px) {
  .contact-section--final { padding: 60px 22px 70px; }
  .kontakt-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .contact-offer-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 22px 30px;
  }
  .contact-section--final .contact-flow-bar,
  .contact-offer-copy,
  .contact-offer-kicker,
  .contact-offer-card h3,
  .contact-offer-card p,
  .contact-offer-actions {
    grid-column: 1;
  }
  .contact-section--final .contact-flow-bar {
    align-items: center;
    text-align: center;
    padding: 0;
  }
  .contact-offer-copy {
    padding: 30px 22px;
  }
  .contact-trust-row {
    width: min(100%, calc(100% - 20px));
  }
}
@media (max-width: 500px) {
  .kontakt-grid { grid-template-columns: 1fr; }
  .contact-offer-actions { flex-direction: column; }
  .contact-offer-card .kontakt-cta { width: 100%; }
  .contact-section--final .contact-flow-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .contact-section--final .contact-flow-bar .landing-flow-mark {
    width: min(150px, 62vw);
  }
  .contact-offer-card,
  .contact-offer-kicker,
  .contact-offer-card h3,
  .contact-offer-card p,
  .contact-offer-actions {
    text-align: center;
  }
  .contact-offer-actions {
    justify-content: center;
  }
  .contact-trust-row { justify-content: flex-start; gap: 14px; }
}

/* ── PREIS-ERGEBNIS ── */
.price-result {
  margin-top: 18px;
  padding: 26px 28px 24px;
  background: linear-gradient(135deg, #0d4fa0 0%, #1a6bd4 60%, #1a3a6a 100%);
  color: #ffffff;
  border-radius: 3px;
  box-shadow: 0 12px 40px rgba(26,107,212,0.25);
  position: relative;
  overflow: hidden;
  animation: priceFadeIn .45s ease;
}
.price-result::before {
  content: '';
  position: absolute;
  right: -40px; top: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(91,201,240,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.price-result-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #5bc9f0;
  margin-bottom: 6px;
  position: relative;
}
.price-result-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 54px;
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 8px;
  position: relative;
}
.price-result-range {
  font-size: 13px;
  color: #d7e7fa;
  margin-bottom: 14px;
  position: relative;
}
.price-result-range strong { color: #ffffff; font-weight: 600; }
.price-result-note {
  font-size: 12px;
  line-height: 1.6;
  color: #b0c8e0;
  margin-bottom: 18px;
  position: relative;
}
.price-result-cta {
  display: inline-block;
  background: #5bc9f0;
  color: #0a1e3a !important;
  padding: 13px 26px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background .2s, transform .2s;
  position: relative;
}
.price-result-cta:hover { background: #ffffff; transform: translateX(4px); }
@keyframes priceFadeIn {
  from { opacity:0; transform: translateY(10px); }
  to   { opacity:1; transform: translateY(0); }
}

/* ─── FOOTER ────────────────────────────── */
footer {
  background: #1a3a6a;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding: 56px 64px 40px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-tagline {
  font-size: 13px;
  color: #a0c0e0;
  letter-spacing: 1px;
}
.footer-info h4, .footer-legal h4 {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #5bc9f0;
  margin-bottom: 12px;
  font-weight: 600;
}
.footer-info p, .footer-legal p {
  font-size: 13px;
  color: #b0c8e0;
  line-height: 1.8;
}
.footer-info a, .footer-legal a {
  color: #b0c8e0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-info a:hover, .footer-legal a:hover { color: #5bc9f0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 64px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  gap: 12px;
}
footer {
  background: #1a3a6a;
  padding: 32px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(91,201,240,0.07);
}

.footer-logo img {
  height: 90px; width: auto;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 0 8px rgba(26,107,212,0.3));
}

.footer-copy { font-size: 11px; color: #c8d8e8; letter-spacing: 1px; }

.footer-links {
  display: flex; gap: 24px; list-style: none;
}
.footer-links a {
  color: #b0c8e0; text-decoration: none;
  font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 600;
  transition: color .25s;
}
.footer-links a:hover { color: var(--sky); }

/* ─── ANIMATIONS ────────────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform: translateY(28px); }
  to   { opacity:1; transform: translateY(0); }
}

/* ─── SCROLL REVEAL ─────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity:1; transform: translateY(0); }

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 10px 20px; }
  .nav-links { display: none; }
  .hero { padding: 90px 24px 80px; }
  .hero-banner { display: none; }
  .hero-stats { position: static; flex-wrap: wrap; margin-top: 40px; }
  .stat { min-width: 50%; }
  .section { padding: 60px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-section, .contact-section { padding: 60px 24px; grid-template-columns: 1fr; gap: 40px; }
  .vehicle-grid { grid-template-columns: repeat(3, 1fr); }
  .route-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .route-arrow { display: none; }
  .form-row-3 { grid-template-columns: 1fr 1fr; }
  .why-visual { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 32px; padding: 40px 24px 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; padding: 20px 24px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

/* ─── IMPRESSUM MODAL ───────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,20,40,0.75);
  backdrop-filter: blur(6px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }

.modal-box {
  background: #ffffff;
  max-width: 780px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  border-radius: 3px;
  box-shadow: 0 24px 80px rgba(10,30,80,0.25);
  position: relative;
}
.modal-header {
  background: #1a3a6a;
  padding: 24px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
}
.modal-header h2 {
  color: #ffffff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0;
}
.modal-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
  transition: color .2s;
}
.modal-close:hover { color: #fff; }
.modal-content {
  padding: 36px 40px 48px;
  color: #1a2a40;
  font-family: 'Barlow', sans-serif;
  font-size: 13.5px;
  line-height: 1.85;
}
.modal-content h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  color: #1a3a6a;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
  margin-top: 0;
}
.modal-content p {
  color: #3a5a7a;
  margin-bottom: 16px;
}
.modal-content strong { color: #0a1e3a; }
.modal-content a { color: #1a6bd4; }
.modal-divider {
  border: none;
  border-top: 1px solid #dce8f5;
  margin: 24px 0;
}
@media (max-width: 600px) {
  .modal-content { padding: 24px 20px 36px; }
  .modal-header { padding: 18px 20px; }
}

/* ─── DATENSCHUTZ MODAL ─────────────────── */
#datenschutzModal .modal-content h1 { font-size: 24px; }
#datenschutzModal .modal-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  color: #1a3a6a;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 28px 0 8px;
  padding-bottom: 6px;
  border-bottom: 2px solid #dce8f5;
}
#datenschutzModal .modal-content h3 {
  font-size: 14px;
  color: #0a1e3a;
  margin: 18px 0 6px;
  font-weight: 700;
}
#datenschutzModal .modal-content ul {
  padding-left: 20px;
  color: #3a5a7a;
  margin-bottom: 14px;
}
#datenschutzModal .modal-content ul.index {
  list-style: none;
  padding-left: 0;
  background: #f0f5fb;
  border: 1px solid #dce8f5;
  padding: 16px 20px;
  margin-bottom: 24px;
  border-radius: 2px;
}
#datenschutzModal .modal-content ul.index li {
  padding: 3px 0;
  border-bottom: 1px solid #e8f0f8;
}
#datenschutzModal .modal-content ul.index li:last-child { border-bottom: none; }
#datenschutzModal .modal-content .index-link {
  color: #1a6bd4;
  font-size: 13px;
}
#datenschutzModal .modal-content strong { color: #0a1e3a; }

/* ─── AUTH BUTTON ───────────────────────── */
.nav-login-btn {
  background: transparent !important;
  border: 1.5px solid rgba(26,107,212,0.4) !important;
  color: #1a6bd4 !important;
  padding: 9px 20px !important;
  border-radius: 2px;
  font-weight: 600 !important;
  font-size: 12px !important;
  letter-spacing: 1.5px !important;
  transition: all .2s !important;
  white-space: nowrap;
}
.nav-login-btn:hover { background: #1a6bd4 !important; color: #fff !important; border-color: #1a6bd4 !important; }
.nav-user-btn {
  display: none;
  align-items: center;
  gap: 8px;
  background: #1a6bd4;
  color: #fff;
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  font-family: 'Barlow', sans-serif;
}

/* ─── AUTH MODAL TABS ───────────────────── */
.auth-tabs {
  display: flex;
  border-bottom: 2px solid #dce8f5;
  margin-bottom: 28px;
}
.auth-tab {
  flex: 1;
  padding: 14px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #7a96aa;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color .2s, border-color .2s;
}
.auth-tab.active { color: #1a3a6a; border-bottom-color: #1a6bd4; }
.auth-panel { display: none; flex-direction: column; gap: 12px; }
.auth-panel.active { display: flex; }
.auth-panel input {
  background: #f5f8fc;
  border: 1.5px solid #dce8f5;
  color: #0a1e3a;
  padding: 13px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  width: 100%;
  outline: none;
  border-radius: 2px;
  transition: border-color .2s;
}
.auth-panel input:focus { border-color: #1a6bd4; }
.auth-btn {
  background: #1a6bd4;
  color: #fff;
  border: none;
  padding: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background .2s;
  width: 100%;
  margin-top: 4px;
}
.auth-btn:hover { background: #0d4fa0; }
.auth-hint { font-size: 12px; color: #7a96aa; text-align: center; margin-top: 4px; }
.auth-hint a { color: #1a6bd4; cursor: pointer; text-decoration: underline; }

/* Registration modal fields */
.register-panel-title {
  color: #06364f;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .5px;
}
.role-switch,
.split-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.role-switch {
  width: min(340px, 100%);
  margin: 4px auto 8px;
}
.role-choice-icon {
  font-size: 22px;
  line-height: 1;
}
.auth-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.auth-field > span,
.invoice-email-check span {
  color: #1a6bd4;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.auth-field > span {
  text-transform: uppercase;
}
.auth-field input,
.auth-field select,
.phone-field select,
.country-picker select {
  background: #f5f8fc;
  border: 1.5px solid #dce8f5;
  color: #0a1e3a;
  padding: 13px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  width: 100%;
  outline: none;
  border-radius: 2px;
}
.auth-field .auth-select {
  display: block;
  margin: 0;
}
.phone-field {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 8px;
}
.invoice-email-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #4a6a8a;
  font-size: 12px;
  line-height: 1.35;
}
.invoice-email-check input {
  width: auto;
  min-width: 16px;
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  margin-top: 2px;
  accent-color: #1a6bd4;
}
.country-picker {
  display: grid;
  gap: 8px;
}
.country-pill {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1.5px solid #dce8f5;
  background: #f5f8fc;
  color: #0a1e3a;
  font-size: 12px;
}
.country-pill input {
  width: auto;
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  accent-color: #1a6bd4;
}
@media (max-width: 480px) {
  .role-switch,
  .split-fields,
  .phone-field {
    grid-template-columns: 1fr;
  }
}

/* ─── DASHBOARD ─────────────────────────── */
#dashboard {
  display: none;
  background: #f0f5fb;
  min-height: 100vh;
  padding: 110px 60px 80px;
}
.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.dashboard-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  color: #1a3a6a;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.dashboard-greeting { font-size: 14px; color: #4a6a8a; margin-top: 4px; }
.dash-logout {
  background: none;
  border: 1.5px solid #dce8f5;
  color: #4a6a8a;
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 2px;
  font-family: 'Barlow', sans-serif;
  transition: all .2s;
}
.dash-logout:hover { border-color: #c0392b; color: #c0392b; }

.logout-notice {
  position: fixed;
  top: 104px;
  right: 28px;
  z-index: 1600;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 280px;
  max-width: min(360px, calc(100vw - 32px));
  padding: 15px 18px;
  border-radius: 18px;
  border: 1px solid rgba(26,107,212,0.2);
  background: rgba(10,30,58,0.96);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(10,30,58,0.22);
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity .28s ease, transform .28s ease;
}

.logout-notice.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.logout-notice-badge {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2b69f6 0%, #1a57d8 100%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.logout-notice-copy strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.logout-notice-copy span {
  display: block;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
}

@media (max-width: 640px) {
  .logout-notice {
    top: 88px;
    left: 16px;
    right: 16px;
    max-width: none;
    min-width: 0;
  }
}

/* Process Steps */
.process-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #dce8f5;
  border-radius: 3px;
  padding: 20px 32px;
  margin-bottom: 40px;
  gap: 0;
  overflow-x: auto;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 100px;
  flex: 1;
}
.process-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  background: #dce8f5;
  color: #4a6a8a;
  font-weight: 700;
  border: 2px solid #dce8f5;
  transition: all .3s;
}
.process-step.done .process-icon { background: #1a6bd4; color: #fff; border-color: #1a6bd4; }
.process-step.active .process-icon { background: #fff; color: #1a6bd4; border-color: #1a6bd4; box-shadow: 0 0 0 4px rgba(26,107,212,0.15); }
.process-label { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #7a96aa; text-align: center; }
.process-step.done .process-label, .process-step.active .process-label { color: #1a3a6a; }
.process-connector { flex: 0.5; height: 2px; background: #dce8f5; margin-top: -24px; }
.process-connector.done { background: #1a6bd4; }

/* Dashboard Grid */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}
.dash-card {
  background: #fff;
  border: 1px solid #dce8f5;
  border-radius: 3px;
  overflow: hidden;
}
.dash-card-header {
  background: #1a3a6a;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dash-card-header h3 {
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}
.dash-badge {
  background: #5bc9f0;
  color: #1a3a6a;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
}
.dash-card-body { padding: 24px; }

/* Order Table */
.order-row {
  display: grid;
  grid-template-columns: 60px 1fr 1fr 90px 100px;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #f0f5fb;
  font-size: 13px;
}
.order-row:last-child { border-bottom: none; }
.order-row.header { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #7a96aa; padding-bottom: 8px; border-bottom: 2px solid #dce8f5; }
.order-id { font-weight: 700; color: #1a6bd4; font-size: 11px; }
.order-route { color: #0a1e3a; font-weight: 600; }
.order-car { color: #4a6a8a; }
.status-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: .5px;
  text-align: center;
  white-space: nowrap;
}
.status-new { background: #ddeaf8; color: #1a6bd4; }
.status-offer { background: #fff3cd; color: #856404; }
.status-accepted { background: #d4edda; color: #155724; }
.status-rejected { background: #f8d7da; color: #721c24; }

/* Offer Panel */
.offer-card {
  border: 1px solid #dce8f5;
  border-radius: 2px;
  padding: 16px;
  margin-bottom: 12px;
  background: #f8fbff;
}
.offer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.offer-company { font-weight: 700; font-size: 13px; color: #0a1e3a; }
.offer-price { font-size: 20px; font-weight: 700; color: #1a6bd4; }
.offer-price span { font-size: 11px; color: #7a96aa; font-weight: 400; }
.offer-detail { font-size: 12px; color: #4a6a8a; margin-bottom: 12px; }
.offer-actions { display: flex; gap: 8px; }
.btn-accept {
  background: #1a6bd4; color: #fff; border: none;
  padding: 9px 16px; font-size: 12px; font-weight: 700;
  letter-spacing: 1px; cursor: pointer; border-radius: 2px;
  font-family: 'Barlow', sans-serif; flex: 1; transition: background .2s;
}
.btn-accept:hover { background: #0d4fa0; }
.btn-reject {
  background: #fff; color: #c0392b; border: 1.5px solid #f8d7da;
  padding: 9px 16px; font-size: 12px; font-weight: 700;
  letter-spacing: 1px; cursor: pointer; border-radius: 2px;
  font-family: 'Barlow', sans-serif; flex: 1; transition: all .2s;
}
.btn-reject:hover { background: #f8d7da; }
.new-request-btn {
  background: #1a6bd4; color: #fff; border: none;
  padding: 13px 24px; font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; cursor: pointer; border-radius: 2px;
  transition: background .2s; width: 100%; margin-top: 16px;
}
.new-request-btn:hover { background: #0d4fa0; }

@media (max-width: 900px) {
  #dashboard { padding: 90px 20px 60px; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .process-bar { padding: 16px; }
  .order-row { grid-template-columns: 50px 1fr 80px; }
  .order-row .order-car, .order-row .order-date { display: none; }
}
.role-choice {
  cursor:pointer; padding:12px 10px; border:2px solid #dce8f5; border-radius:2px;
  background:#f5f8fc; text-align:center; transition:all .2s;
  display:flex; flex-direction:column; align-items:center; gap:2px;
}
.role-choice strong { font-size:13px; color:#0a1e3a; }
.role-choice span   { font-size:11px; color:#4a6a8a; }
.role-choice:hover  { border-color:#1a6bd4; background:#eef5ff; }
.role-choice.selected { border-color:#1a6bd4; background:#ddeaf8; box-shadow:0 0 0 3px rgba(26,107,212,0.15); }

/* Layout refresh aligned with Dash_Auft.php */
:root {
  --line:#d7e3f0;
  --surface:#ffffff;
  --surface-soft:#f7fbff;
  --shadow-soft:0 10px 30px rgba(26,107,212,0.08);
  --shadow-card:0 18px 42px rgba(26,107,212,0.10);
}

body {
  background:
    radial-gradient(circle at top left, rgba(43,105,246,0.07), transparent 28%),
    linear-gradient(180deg,#f8fbff 0%,#edf4fb 42%,#eef5fc 100%);
  color:#0a1e3a;
  font-weight:400;
}

nav {
  top:18px;
  left:28px;
  right:28px;
  padding:12px 28px;
  background:rgba(255,255,255,0.92);
  border:1px solid rgba(26,107,212,0.12);
  border-radius:24px;
  box-shadow:var(--shadow-soft);
  z-index:1000;
}
nav.is-scrolled {
  top:0;
  left:0;
  right:0;
  padding:14px 32px;
  border-radius:0 0 22px 22px;
  background:#ffffff;
}
.nav-logo img {
  height:52px;
  mix-blend-mode:multiply;
}
.nav-links { gap:28px; }
.nav-cta,
.btn-primary,
.kontakt-cta--primary,
.auth-btn,
.new-request-btn {
  clip-path:none !important;
  border-radius:18px !important;
  background:linear-gradient(135deg,#2b69f6 0%,#1a57d8 100%) !important;
  box-shadow:0 12px 26px rgba(26,87,216,0.16);
}
.nav-login-btn,
.btn-ghost,
.kontakt-cta--ghost {
  border-radius:18px !important;
  border-color:rgba(26,107,212,0.34) !important;
  background:#ffffff !important;
}
body > nav .logout-btn.nav-carrier-link {
  gap:7px !important;
  min-height:34px !important;
  padding:7px 8px !important;
  background:transparent !important;
  border:0 !important;
  border-radius:0 !important;
  color:#1a6bd4 !important;
  box-shadow:none !important;
  font-family:'Barlow',sans-serif !important;
  font-size:11px !important;
  font-weight:700 !important;
  letter-spacing:1.8px !important;
  text-transform:uppercase !important;
  text-decoration-line:underline !important;
  text-decoration-style:solid !important;
  text-decoration-thickness:1.5px !important;
  text-underline-offset:4px !important;
}
body > nav .logout-btn.nav-carrier-link::before {
  content:'↗';
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:14px;
  height:14px;
  border:1.5px solid currentColor;
  font-family:'Barlow',sans-serif;
  font-size:11px;
  line-height:1;
  text-decoration:none;
}
body > nav .logout-btn.nav-carrier-link:hover {
  background:transparent !important;
  color:#0d4fa0 !important;
}

.hero {
  min-height:auto;
  margin:118px 32px 34px;
  padding:78px 56px 58px;
  border:1px solid rgba(26,107,212,0.12);
  border-radius:30px;
  background:linear-gradient(135deg,#ffffff 0%,#f4f9ff 55%,#edf5fc 100%);
  box-shadow:var(--shadow-card);
  isolation:isolate;
}
.hero::before { display:none; }
.hero.hero--visual-bg {
  background:
    linear-gradient(90deg, rgba(6,21,45,0.42) 0%, rgba(6,21,45,0.22) 36%, rgba(6,21,45,0.10) 62%, rgba(6,21,45,0.04) 100%),
    url('/img/Hero%20Header%20Transport.jpeg') center center / cover no-repeat !important;
}
.hero.hero--visual-bg::before {
  display:none;
}
.hero::after {
  content:'';
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.10) 48%, rgba(255,255,255,0.28) 72%, rgba(255,255,255,0.58) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.00) 0%, rgba(255,255,255,0.02) 62%, rgba(255,255,255,0.18) 100%);
}
.hero-content { max-width:620px; z-index:3; }
.hero.hero--visual-bg .hero-content {
  padding: 18px 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.58) 0%, rgba(255,255,255,0.26) 100%);
  backdrop-filter: blur(4px);
  box-shadow: 0 18px 34px rgba(6,21,45,0.10);
}
.hero.hero--visual-bg h1,
.hero.hero--visual-bg .hero-desc {
  text-shadow: 0 8px 22px rgba(255,255,255,0.42);
}
.hero-banner {
  right:6%;
  width:34%;
  opacity:1;
  animation:none;
  filter:drop-shadow(0 18px 30px rgba(26,107,212,0.16));
}
.hero-stats {
  left:56px;
  right:56px;
  bottom:20px;
  border:1px solid rgba(26,107,212,0.12);
  border-radius:22px;
  background:rgba(255,255,255,0.92);
  box-shadow:var(--shadow-soft);
}
.stat {
  padding: 18px 28px;
  border-right:1px solid rgba(26,107,212,0.10);
}
.stat-num { font-size: 34px; }
.stat-label {
  font-size: 9px;
  letter-spacing: 1.8px;
}

.section,
.why-section,
.contact-section {
  margin:0 32px 34px;
  padding:54px 48px;
  border:1px solid rgba(26,107,212,0.12);
  border-radius:28px;
  background:rgba(255,255,255,0.92);
  box-shadow:var(--shadow-soft);
}
.section-banner-header,
.service-card,
.feature,
.kontakt-card,
.dash-card,
.offer-card,
.process-bar {
  border-color:rgba(26,107,212,0.12) !important;
  border-radius:22px !important;
  background:#ffffff !important;
  box-shadow:var(--shadow-soft);
}
.service-card,
.kontakt-card,
.dash-card,
.offer-card {
  transition:transform .2s, border-color .2s, box-shadow .2s;
}
.service-card:hover,
.kontakt-card:hover,
.offer-card:hover {
  transform:translateY(-2px);
  border-color:rgba(26,107,212,0.26) !important;
  box-shadow:var(--shadow-card);
}

footer {
  margin:0 32px 28px;
  padding:24px 32px;
  display:grid;
  gap:22px;
  color:#4a6a8a;
  background:rgba(255,255,255,0.92);
  border:1px solid rgba(26,107,212,0.12);
  border-radius:24px;
  box-shadow:var(--shadow-soft);
}
.footer-top {
  display:grid;
  grid-template-columns:1.1fr 0.8fr 1fr;
  gap:28px;
  padding:0;
}
.footer-bottom {
  padding:18px 0 0;
  border-top:1px solid rgba(26,107,212,0.12);
}
.footer-logo img { height:58px; mix-blend-mode:multiply; }
.footer-tagline,
.footer-copy,
.footer-info p,
.footer-legal p,
.footer-info a,
.footer-legal a,
.footer-links a {
  color:#4a6a8a;
}
.footer-info h4,
.footer-legal h4 { color:#1a57d8; }
.footer-links a:hover,
.footer-info a:hover,
.footer-legal a:hover { color:#1a6bd4; }

.modal-overlay {
  background:rgba(7,27,53,0.42);
  backdrop-filter:blur(10px);
  z-index:1200;
}
body.modal-open { overflow:hidden; }
.modal-box {
  border:1px solid rgba(26,107,212,0.14);
  border-radius:24px;
  box-shadow:0 28px 80px rgba(10,30,80,0.22);
}
.modal-header {
  background:#ffffff;
  border-bottom:1px solid #eaf1f9;
}
.modal-header h2 { color:#0a1e3a; }
.modal-close { color:#4a6a8a; }
.modal-close:hover { color:#1a6bd4; }
.modal-content { background:#ffffff; }
.legal-modal { max-width:940px; }
.legal-content { max-height:72vh; overflow:auto; }

@media (max-width: 1100px) {
  nav { left:16px; right:16px; top:14px; padding:12px 18px; }
  .nav-logo img { height:42px; }
  .nav-links { gap:16px; }
  .hero,
  .section,
  .why-section,
  .contact-section,
  footer { margin-left:16px; margin-right:16px; border-radius:22px; }
  .hero { margin-top:96px; padding:46px 28px 38px; }
  .hero.hero--visual-bg .hero-content {
    max-width: min(100%, 380px);
    padding: 16px 18px;
  }
  .hero-banner { position:relative; right:auto; top:auto; transform:none; width:min(280px,70%); margin:28px auto 0; }
  .hero-stats { position:relative; left:auto; right:auto; bottom:auto; margin-top:28px; }
  .footer-top { grid-template-columns:1fr; }
}

@media (max-width: 760px) {
  .section,
  .why-section,
  .contact-section { padding:34px 22px; }
  .calculator-copy {
    padding: 18px 14px 22px;
    border-radius: 20px;
  }
}

/* Four service cards inside the existing Leistungen layout */
.services-subtitle {
  margin: -18px 0 30px;
  color: #081428;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

#leistungen {
  scroll-margin-top: 132px;
}

.services-grid--four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.services-grid--four .service-card {
  min-height: 300px;
  padding: 30px 28px 28px;
}

.services-grid--four .service-card--autohand-bg {
  isolation:isolate;
  background:
    radial-gradient(circle at 26% 58%, rgba(247,251,255,.96) 0%, rgba(247,251,255,.86) 34%, rgba(247,251,255,.42) 58%, rgba(247,251,255,.12) 100%),
    linear-gradient(90deg, rgba(247,251,255,.82) 0%, rgba(247,251,255,.46) 44%, rgba(247,251,255,.16) 100%),
    url('/img/Back_AutoHand.png') 58% center / cover no-repeat !important;
}

.services-grid--four .service-card--autohand-bg h3,
.services-grid--four .service-card--autohand-bg p,
.services-grid--four .service-card--autohand-bg .service-tags {
  position:relative;
  z-index:1;
}

.services-grid--four .service-card--autohand-bg h3 {
  color:#001a3d !important;
  text-shadow:0 1px 2px rgba(255,255,255,.88);
}

.services-grid--four .service-card--autohand-bg p {
  color:#08213f !important;
  font-weight:600;
  text-shadow:0 1px 2px rgba(255,255,255,.82);
}

.services-grid--four .service-card--autohand-bg .service-tags span {
  color:#003f86 !important;
  background:rgba(255,255,255,.92) !important;
  border-color:#9fc5f2 !important;
}

.services-grid--four .service-card--elektro-bg {
  isolation:isolate;
  background:
    radial-gradient(circle at 26% 52%, rgba(247,251,255,.94) 0%, rgba(247,251,255,.78) 31%, rgba(247,251,255,.34) 54%, rgba(247,251,255,.08) 100%),
    linear-gradient(90deg, rgba(247,251,255,.72) 0%, rgba(247,251,255,.34) 42%, rgba(247,251,255,.10) 100%),
    url('/img/Back_E2.png') 24% center / cover no-repeat !important;
}

.services-grid--four .service-card--elektro-bg h3,
.services-grid--four .service-card--elektro-bg p,
.services-grid--four .service-card--elektro-bg .service-tags {
  position:relative;
  z-index:1;
}

.services-grid--four .service-card--elektro-bg h3 {
  color:#001a3d !important;
  text-shadow:0 1px 2px rgba(255,255,255,.88);
}

.services-grid--four .service-card--elektro-bg p {
  color:#08213f !important;
  font-weight:600;
  text-shadow:0 1px 2px rgba(255,255,255,.82);
}

.services-grid--four .service-card--elektro-bg .service-tags span {
  color:#003f86 !important;
  background:rgba(255,255,255,.92) !important;
  border-color:#9fc5f2 !important;
}

.services-grid--four .service-card--premium-bg {
  isolation:isolate;
  background:
    radial-gradient(circle at 26% 52%, rgba(247,251,255,.94) 0%, rgba(247,251,255,.78) 31%, rgba(247,251,255,.34) 54%, rgba(247,251,255,.08) 100%),
    linear-gradient(90deg, rgba(247,251,255,.72) 0%, rgba(247,251,255,.34) 42%, rgba(247,251,255,.10) 100%),
    url('/img/Back_Prem3.png') 42% 64% / cover no-repeat !important;
}

.services-grid--four .service-card--premium-bg h3,
.services-grid--four .service-card--premium-bg p,
.services-grid--four .service-card--premium-bg .service-tags {
  position:relative;
  z-index:1;
}

.services-grid--four .service-card--premium-bg h3 {
  color:#001a3d !important;
  text-shadow:0 1px 2px rgba(255,255,255,.88);
}

.services-grid--four .service-card--premium-bg p {
  color:#08213f !important;
  font-weight:600;
  text-shadow:0 1px 2px rgba(255,255,255,.82);
}

.services-grid--four .service-card--premium-bg .service-tags span {
  color:#003f86 !important;
  background:rgba(255,255,255,.92) !important;
  border-color:#9fc5f2 !important;
}

.services-grid--four .service-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 0 26px;
  border-radius: 20px;
  background: #edf4ff;
  color: #1a6bd4;
  font-size: 31px;
  line-height: 1;
}

.services-grid--four .service-icon.accent {
  color: #ff7a32;
}

.services-grid--four .service-card h3 {
  max-width: 560px;
  margin-bottom: 16px;
  color: #05265f;
  font-size: clamp(28px, 3vw, 34px);
  letter-spacing: 0;
  line-height: 0.98;
}

.services-grid--four .service-card p {
  color: #526783;
  font-size: 16px;
  line-height: 1.65;
}

.services-grid--four .service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.services-grid--four .service-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #d6e4f5;
  border-radius: 999px;
  background: #f8fbff;
  color: #081428;
  font-size: 13px;
  font-weight: 700;
}

.services-grid--four .service-note {
  margin-top: 22px;
  padding: 15px 16px;
  border: 1px solid #bcd7ff;
  border-radius: 16px;
  background: #f7fbff;
  color: #17345e;
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .services-grid--four {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .services-subtitle {
    margin-top: -8px;
    font-size: 38px;
  }

  .services-grid--four .service-card {
    min-height: 0;
    padding: 26px 22px 22px;
  }
}

/* Modern logistics services */
.logistics-section.section {
  margin: 0 32px 34px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  scroll-margin-top: 112px;
}

.logistics-header {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 46px;
  align-items: center;
  padding: 62px 64px 54px;
  border: 1px solid rgba(26, 107, 212, 0.1);
  border-radius: 0 0 30px 30px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.logistics-mark {
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  border-radius: 24px;
  background: linear-gradient(145deg, #173f8c 0%, #2b66e6 100%);
  color: #ffffff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 46px;
  font-weight: 700;
  letter-spacing: 0;
}

.logistics-header .section-tag {
  color: #1f63e7;
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 700;
}

.logistics-header h2 {
  margin: 0 0 18px;
  color: #081428;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.88;
  text-transform: uppercase;
}

.logistics-header p {
  max-width: 1180px;
  color: #526783;
  font-size: 18px;
  line-height: 1.6;
}

.services-grid.logistics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.logistics-card.service-card {
  min-height: 282px;
  padding: 30px 28px 28px;
  border: 1px solid rgba(26, 107, 212, 0.1) !important;
  border-radius: 26px !important;
  background: #ffffff !important;
  box-shadow: var(--shadow-soft);
}

.logistics-card.service-card::after {
  display: none;
}

.logistics-card.service-card:hover {
  background: #ffffff !important;
  transform: translateY(-2px);
}

.logistics-card .service-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 0 28px;
  border-radius: 20px;
  background: #edf4ff;
  color: #1f63e7;
  font-size: 31px;
  line-height: 1;
}

.logistics-card .service-icon.accent {
  color: #ff7a32;
}

.logistics-card .service-num {
  top: 32px;
  right: 28px;
  color: #edf3ff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 58px;
  font-weight: 700;
}

.logistics-card h3 {
  max-width: 520px;
  margin: 0 0 16px;
  color: #05265f;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: uppercase;
}

.logistics-card p {
  max-width: 650px;
  color: #526783;
  font-size: 16px;
  line-height: 1.65;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.service-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #d6e4f5;
  border-radius: 999px;
  background: #f8fbff;
  color: #081428;
  font-size: 13px;
  font-weight: 700;
}

.service-note {
  margin-top: 22px;
  padding: 15px 16px;
  border: 1px solid #bcd7ff;
  border-radius: 16px;
  background: #f7fbff;
  color: #17345e;
  font-size: 14px;
  line-height: 1.45;
}

.logistics-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.logistics-cta .kontakt-cta {
  min-height: 58px;
  padding: 0 30px;
}

@media (max-width: 1100px) {
  .logistics-section.section {
    margin-left: 16px;
    margin-right: 16px;
  }

  .logistics-header {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 28px;
    padding: 42px 30px;
  }

  .logistics-mark {
    width: 92px;
    height: 92px;
    border-radius: 20px;
    font-size: 38px;
  }
}

@media (max-width: 900px) {
  .services-grid.logistics-grid {
    grid-template-columns: 1fr;
  }

  .logistics-header {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 760px) {
  .logistics-header {
    padding: 34px 22px;
    border-radius: 24px;
  }

  .logistics-header h2 {
    font-size: clamp(40px, 13vw, 52px);
    line-height: 0.94;
  }

  .logistics-header p {
    font-size: 16px;
  }

  .logistics-card.service-card {
    min-height: 0;
    padding: 26px 22px 22px;
  }

  .logistics-card h3 {
    font-size: 28px;
  }
}

/* Landing calculator and process */
#preisrechner,
#so-laeuft-es,
#warum-tf-anders,
#leistungen,
#fuer-transportpartner {
  scroll-margin-top: 118px;
}

.calculator-section,
.process-section,
.services-section,
.partner-section {
  position: relative;
  overflow: visible;
}

.calculator-section,
.process-section,
.services-section {
  padding: 0 48px 54px;
}

.calculator-section::after,
.process-section::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -35px;
  width: 2px;
  height: 35px;
  background: linear-gradient(180deg, rgba(47,102,238,0.55), rgba(47,102,238,0));
  transform: translateX(-50%);
  pointer-events: none;
}

.landing-flow-bar {
  display: grid;
  grid-template-columns: 172px minmax(0, 1fr);
  align-items: center;
  min-height: 132px;
  column-gap: 48px;
  margin: 0 -48px 36px;
  padding: 22px 58px;
  border: 1px solid rgba(26,107,212,0.08) !important;
  border-radius: 26px !important;
  background: #ffffff !important;
  box-shadow: 0 16px 38px rgba(26,107,212,0.06) !important;
}

.landing-flow-copy {
  min-width: 0;
}

.landing-flow-bar .landing-flow-mark {
  display: block;
  width: 158px;
  height: 94px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: none;
}

.landing-flow-bar .section-tag {
  margin-bottom: 5px;
}

.landing-flow-bar h2 {
  color: #081428;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: 1px;
  line-height: .95;
}

@media (min-width: 1201px) {
  .calculator-section > .landing-flow-bar {
    grid-template-columns: 232px minmax(0, 1fr);
    min-height: 156px;
    column-gap: 38px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .calculator-section > .landing-flow-bar .landing-flow-mark {
    width: 220px;
    height: 116px;
    max-width: 100%;
  }
}

.landing-calculator {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(560px, 1fr);
  align-items: stretch;
  gap: 24px;
  min-height: 500px;
  margin-top: 0;
  padding: 18px 18px 18px 22px;
  border: 1px solid rgba(26,107,212,0.12);
  border-radius: 30px;
  background-color: #edf5fc;
  background-image: url('/img/Preisrechner%20Background.jpeg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  isolation: isolate;
  box-shadow: 0 18px 48px rgba(26,107,212,0.08);
  overflow: hidden;
}

.landing-calculator::before,
.landing-calculator::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.landing-calculator::before {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(8,20,40,0.72) 0%, rgba(8,20,40,0.56) 22%, rgba(8,20,40,0.26) 44%, rgba(8,20,40,0.12) 62%, rgba(8,20,40,0.08) 100%);
}

.landing-calculator::after {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.00) 0%, rgba(255,255,255,0.06) 52%, rgba(255,255,255,0.16) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.00) 0%, rgba(255,255,255,0.10) 100%);
}

.calculator-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  width: min(100%, 400px);
  min-height: 100%;
  padding: 20px 16px 24px 16px;
  transform: translateY(-4px);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(8,20,40,0.34) 0%, rgba(8,20,40,0.16) 100%);
  backdrop-filter: blur(4px);
}

.calculator-copy::before {
  display: none;
}

.calculator-copy h3 {
  max-width: 430px;
  margin: 0 0 12px;
  color: #ffffff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  line-height: .95;
  text-shadow: 0 10px 28px rgba(4,15,34,0.58);
}

.calculator-copy .section-tag {
  color: #dce8f5;
  text-shadow: 0 5px 18px rgba(4,15,34,0.38);
}

.calculator-copy p {
  max-width: 390px;
  color: #edf5ff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  text-shadow: 0 8px 22px rgba(4,15,34,0.54);
}

.calculator-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.calculator-points span,
.benefit-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid #d6e4f5;
  border-radius: 999px;
  background: rgba(255,255,255,0.94);
  color: #081428;
  font-size: 12px;
  font-weight: 700;
}

.landing-calculator .calc-wrap,
.landing-calculator .booking-form {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
}

.landing-calculator .booking-form {
  overflow: hidden;
  border: 1px solid rgba(214,228,245,0.95);
  border-radius: 22px;
  background: rgba(255,255,255,0.90);
  box-shadow: 0 16px 42px rgba(20,47,91,0.10);
  backdrop-filter: blur(5px);
}

.landing-calculator .form-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 18px 16px;
}

.landing-calculator .form-card-intro h2 {
  margin: 0 0 8px;
  color: #081428;
  font-family: 'Barlow', sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
}

.landing-calculator .form-card-intro p {
  margin: 0;
  color: #526783;
  font-size: 13px;
}

.landing-calculator .form-section-title {
  margin: 0 0 10px;
  color: #081428;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  border: 0;
  padding-left: 0;
}

.landing-calculator .form-row,
.landing-calculator .route-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.landing-calculator .route-row {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 150px;
}

.landing-calculator .route-row.route-row--detailed {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 150px;
  align-items: end;
}

.landing-calculator .route-address-group {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.landing-calculator .route-address-label {
  color: #526783;
  font-size: 12px;
  font-weight: 700;
}

.landing-calculator .route-address-fields {
  display: grid;
  grid-template-columns: minmax(82px, .45fr) minmax(0, 1fr);
  gap: 8px;
  min-width: 0;
}

.landing-calculator .route-address-fields input:first-child {
  grid-column: 1 / -1;
}

.landing-calculator input,
.landing-calculator select {
  width: 100%;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid #d6e4f5;
  border-radius: 15px;
  outline: none;
  background: #ffffff;
  color: #081428;
  font-size: 14px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.landing-calculator input::placeholder {
  color: #6b7890;
}

.landing-calculator input:focus,
.landing-calculator select:focus {
  border-color: #2f66ee;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(47,102,238,0.10);
}

.landing-calculator select {
  cursor: pointer;
  appearance: none;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1.25l6 6 6-6' stroke='%23081428' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.landing-calculator .field-note {
  display: block;
  margin-top: 8px;
  color: #526783;
  font-size: 12px;
  line-height: 1.45;
}

.landing-calculator .vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.landing-calculator .vehicle-card {
  display: grid;
  min-height: 116px;
  place-items: center;
  align-content: center;
  gap: 6px;
  padding: 10px 10px 12px;
  border: 1px solid #d6e4f5;
  border-radius: 17px;
  background: #ffffff;
  text-align: center;
  cursor: pointer;
  user-select: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.landing-calculator .vehicle-card:hover {
  border-color: rgba(47,102,238,0.45);
  background: #f8fbff;
  transform: translateY(-1px);
}

.landing-calculator .vehicle-card.selected {
  border: 2px solid #2f66ee;
  background: #e8f1ff;
  box-shadow: inset 0 0 0 1px rgba(47,102,238,0.08);
}

.landing-calculator .vehicle-image {
  display: block;
  width: min(100%, 142px);
  height: 54px;
  margin: -2px auto 0;
  object-fit: cover;
  object-position: center 60%;
  mix-blend-mode: multiply;
}

.landing-calculator .v-name {
  color: #081428;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.landing-calculator .v-load {
  max-width: 132px;
  color: #081428;
  font-size: 13px;
  line-height: 1.25;
}

.landing-calculator .km-field {
  position: relative;
}

.landing-calculator .km-field input {
  padding-right: 42px;
}

.landing-calculator .km-field::after {
  content: 'km';
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  color: #2f66ee;
  font-size: 12px;
  font-weight: 700;
  pointer-events: none;
}

.landing-calculator .service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid #bfd2ea;
  border-radius: 16px;
  background: #e9f2fb;
}

.landing-calculator .service-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  color: #081428;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.landing-calculator .service-pill-feature {
  cursor: default;
  box-shadow: inset 0 0 0 1px rgba(180,204,232,0.95);
}

.landing-calculator .service-pill-info {
  border: 1px dashed rgba(47,102,238,0.48);
  background: rgba(255,255,255,0.58);
  color: #526783;
  cursor: help;
}

.landing-calculator .service-pill-info[aria-expanded="true"] {
  border-style: solid;
  background: #ffffff;
  color: #1958df;
}

.landing-calculator .info-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #2f66ee;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
}

.landing-calculator .vdi-info-bubble {
  position: relative;
  margin-top: -4px;
  padding: 13px 15px;
  border: 1px solid rgba(47,102,238,0.24);
  border-radius: 16px;
  background: #ffffff;
  color: #526783;
  font-size: 13px;
  line-height: 1.45;
  box-shadow: 0 16px 34px rgba(20,47,91,0.10);
}

.landing-calculator .request-note {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid #d6e4f5;
  border-radius: 20px;
  background: linear-gradient(180deg, #f7fbff 0%, #eef5fc 100%);
}

.landing-calculator .request-note strong {
  color: #081428;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.landing-calculator .request-register-btn {
  width: fit-content;
  min-height: 38px;
  padding: 0 18px;
  border: 0;
  border-radius: 13px;
  background: #2f66ee;
  color: #ffffff;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.landing-calculator .request-register-btn:hover {
  background: #1958df;
  box-shadow: 0 12px 24px rgba(47,102,238,0.20);
  transform: translateY(-1px);
}

.landing-calculator .request-note span {
  color: #526783;
  font-size: 13px;
  line-height: 1.45;
}

.landing-calculator .form-submit {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 16px;
  background: #2f66ee;
  color: #ffffff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.landing-calculator .form-submit:hover {
  background: #1958df;
  box-shadow: 0 14px 28px rgba(47,102,238,0.22);
  transform: translateY(-1px);
}

.landing-calculator .form-submit.is-warning {
  background: #e05a2b;
  box-shadow: none;
  transform: none;
}

.process-section {
  background: linear-gradient(180deg, #eef5fc 0%, #e6f0fb 100%);
  border-top: 1px solid rgba(26,107,212,0.10);
}

.process-head {
  display: block;
  margin-bottom: 28px;
}

.process-head h2 {
  color: #081428;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: .98;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-top: 22px;
}

.process-benefit,
.partner-panel {
  border: 1px solid #d6e4f5;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(20,47,91,0.08);
}

.process-benefit--wrm-bg {
  position:relative;
  isolation:isolate;
  overflow:hidden;
  background:#f7fbff !important;
}

.process-benefit--wrm-bg::before,
.process-benefit--wrm-bg::after {
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
}

.process-benefit--wrm-bg::before {
  z-index:0;
  background:url('/img/Backround_Wrm.png') center / cover no-repeat;
  filter:saturate(1.55) contrast(1.12);
  transform:scale(1.02);
}

.process-benefit--wrm-bg::after {
  z-index:0;
  background:
    radial-gradient(ellipse at 50% 16%, rgba(247,251,255,.94) 0%, rgba(247,251,255,.76) 30%, rgba(247,251,255,.36) 56%, rgba(247,251,255,.12) 100%),
    linear-gradient(180deg, rgba(247,251,255,.68) 0%, rgba(247,251,255,.36) 48%, rgba(247,251,255,.16) 100%);
}

.process-benefit--wrm-bg > * {
  position:relative;
  z-index:1;
}

.process-benefit--wrm-bg h3 {
  text-shadow:0 1px 2px rgba(255,255,255,.88);
}

.process-benefit--wrm-bg p,
.process-benefit--wrm-bg li {
  text-shadow:0 1px 2px rgba(255,255,255,.78);
}

.process-benefit--wrm-bg > ul {
  gap:14px !important;
  padding-top:0 !important;
  border-top:0 !important;
}

.process-benefit--wrm-bg > ul li {
  min-height:58px;
  padding:17px 18px 17px 46px !important;
  border:1px solid rgba(26,107,212,.22);
  border-radius:18px;
  background:rgba(255,255,255,.92);
  color:#06172b !important;
  font-weight:700;
  box-shadow:0 12px 28px rgba(20,47,91,.10);
}

.process-benefit--wrm-bg > ul li::before {
  left:20px;
  top:50%;
  transform:translateY(-50%);
  color:#0ca35a;
}

.process-card {
  position: relative;
  z-index: 0;
  min-height: 232px;
  padding: 24px 24px 62px;
  border: 0;
  background: transparent;
  filter: drop-shadow(0 16px 30px rgba(20,47,91,0.08));
}

.process-card::before,
.process-card::after {
  content: '';
  position: absolute;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 58px), 50% 100%, 0 calc(100% - 58px));
  pointer-events: none;
}

.process-card::before {
  inset: 0;
  z-index: -2;
  background: #d6e4f5;
}

.process-card::after {
  inset: 1px;
  z-index: -1;
  background: #ffffff;
}

.process-card--dark,
.process-benefit--dark {
  border-color: rgba(10,30,58,0.10);
  color: #ffffff;
}

.process-benefit--dark {
  background: linear-gradient(135deg, #06172b 0%, #0c315f 100%);
}

.process-card--dark::before {
  background: rgba(37,112,178,0.22);
}

.process-card--dark::after {
  background: linear-gradient(135deg, #0f4f86 0%, #1773b4 100%);
}

.process-card--dark .process-kicker {
  color: #ffffff;
}

.process-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  color: #1f6dff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2.6px;
  line-height: 1;
  text-transform: uppercase;
}

.process-kicker-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 44px;
  padding: 0;
  border: 1.5px solid #1f6dff;
  border-radius: 10px;
  background: #ffffff;
  color: #1f6dff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.6px;
  line-height: 1;
}

.process-card--dark .process-kicker-badge {
  border-color: #ffffff;
  background: #ffffff;
  color: #1f6dff;
}

.process-kicker-label {
  color: inherit;
}

.process-card h3 {
  margin: 0 0 14px;
  color: #081428;
  font-size: clamp(23px, 1.9vw, 30px);
  font-weight: 700;
  line-height: 1.08;
}

.process-benefit h3 {
  margin: 0 0 14px;
  color: #081428;
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 700;
  line-height: 1.08;
}

.process-card--dark h3,
.process-benefit--dark h3 {
  color: #ffffff;
}

.process-card p,
.process-benefit p,
.partner-panel p {
  color: #526783;
  font-size: 16px;
  line-height: 1.55;
}

.process-card p {
  max-width: 260px;
  font-size: 14px;
  line-height: 1.45;
}

.process-card--dark p,
.process-benefit--dark p {
  color: #eef5ff;
}

.process-route {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin: 8px 64px 48px 24px;
  padding: 0 128px;
  border: 2px solid #08304b;
  border-right: 0;
  background:
    repeating-linear-gradient(90deg,#1a6bd4 0 18px,#ffffff 18px 36px) top left / 100% 7px no-repeat,
    repeating-linear-gradient(90deg,#1a6bd4 0 18px,#ffffff 18px 36px) bottom left / 100% 7px no-repeat,
    linear-gradient(180deg,#3b4144 0%,#24292c 100%);
  color: #ffffff;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  box-shadow: 0 14px 34px rgba(8,48,75,0.15);
  overflow: visible;
}

.process-route::before {
  display:none;
}

.process-route::after {
  content: '';
  position: absolute;
  right: -56px;
  top: -2px;
  bottom: -2px;
  width: 58px;
  height: auto;
  border: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 58 52' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='r' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%233b4144'/%3E%3Cstop offset='1' stop-color='%2324292c'/%3E%3C/linearGradient%3E%3Cpattern id='edge' width='20' height='7' patternUnits='userSpaceOnUse'%3E%3Crect width='10' height='7' fill='%231a6bd4'/%3E%3Crect x='10' width='10' height='7' fill='%23ffffff'/%3E%3C/pattern%3E%3C/defs%3E%3Cpolygon points='0,1 32,1 57,26 32,51 0,51' fill='url(%23r)'/%3E%3Cpath d='M0 5H34L53 26L34 47H0' fill='none' stroke='url(%23edge)' stroke-width='7' stroke-linejoin='miter'/%3E%3Cpath d='M0 1H32L57 26L32 51H0' fill='none' stroke='%2308304b' stroke-width='2' stroke-linejoin='miter' stroke-linecap='square'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  transform: none;
  transform-origin: center;
}

.process-route span {
  position: relative;
  z-index: 1;
}

.process-route-title {
  position: relative;
  z-index: 2;
  padding: 0 22px;
  background: linear-gradient(180deg,#3b4144 0%,#24292c 100%);
  border-radius: 6px;
  text-align: center;
  color:#ffffff;
  text-shadow:0 2px 5px rgba(0,0,0,.45);
}

.process-route-title::before,
.process-route-title::after {
  content:'';
  position:absolute;
  top:50%;
  width:min(27vw, 430px);
  height:3px;
  background:repeating-linear-gradient(90deg,rgba(255,255,255,.88) 0 22px,transparent 22px 44px);
  transform:translateY(-50%);
  pointer-events:none;
  z-index:-1;
}

.process-route-title::before {
  right:calc(100% + 26px);
}

.process-route-title::after {
  left:calc(100% + 26px);
}

.process-route-marker {
  position: absolute !important;
  top: 50%;
  z-index: 3 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: transparent;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: none;
  transform: translate(-50%,-50%);
}

.process-route-marker::before {
  content: '';
  width: 34px;
  height: 46px;
  margin: 0;
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 0;
  background:
    linear-gradient(90deg,rgba(8,20,40,.75) 0 4px,transparent 4px 100%),
    repeating-conic-gradient(#ffffff 0 25%,#111820 0 50%) 4px 0 / 14px 14px;
  box-shadow:0 0 0 1px rgba(8,48,75,.24), 0 10px 20px rgba(0,0,0,.22);
}

.process-route-marker::after {
  position:absolute;
  left:50%;
  top:-22px;
  min-width:54px;
  padding:5px 9px 5px 10px;
  clip-path:polygon(0 0,100% 0,88% 50%,100% 100%,0 100%);
  background:#081428;
  color:#ffffff;
  font-size:11px;
  font-weight:700;
  letter-spacing:1.4px;
  line-height:1;
  text-align:center;
  box-shadow:0 7px 16px rgba(8,48,75,.20);
  transform:translateX(-50%);
}

.process-route-marker--start {
  left: 10.55%;
}

.process-route-marker--start::after {
  content:'START';
}

.process-route-marker--start::before {
  background:
    linear-gradient(90deg,rgba(8,20,40,.75) 0 4px,transparent 4px 100%),
    repeating-conic-gradient(#ffffff 0 25%,#111820 0 50%) 4px 0 / 14px 14px;
}

.process-route-marker--finish {
  left: 93.39%;
}

.process-route-marker--finish::after {
  content:'ZIEL';
}

.process-route-marker--finish::before {
  width: 38px;
  background:
    repeating-conic-gradient(#ffffff 0 25%,#111820 0 50%) 0 0 / 14px 14px;
  border-color:rgba(255,255,255,.95);
}

.process-benefits {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.1fr);
  gap: 20px;
  margin-top: 46px;
}

.process-benefit {
  padding: 32px 30px;
}

.process-benefit ul {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.process-benefit li {
  position: relative;
  padding-left: 22px;
  color: #17345e;
  font-size: 15px;
  line-height: 1.4;
}

.process-benefit li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #12a05c;
  font-weight: 700;
}

.process-benefit--dark li {
  color: #ffffff;
}

.benefit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.process-benefit--dark .benefit-tags span {
  border-color: rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.10);
  color: #ffffff;
}

.partner-section {
  padding: 0;
  background: #e6f0fb;
}

.partner-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 30px 28px;
}

.partner-panel h2 {
  max-width: 860px;
  color: #081428;
  font-family: 'Barlow', sans-serif;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
}

.partner-eyebrow {
  margin: 0 0 8px;
  color: #1a6bd4;
  font-family: 'Barlow', sans-serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
}

.partner-panel p {
  max-width: 780px;
  margin-top: 12px;
}

.partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.partner-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid #d6e4f5;
  border-radius: 999px;
  background: #f8fbff;
  color: #081428;
  font-size: 13px;
  font-weight: 700;
}

.partner-actions {
  display: grid;
  gap: 10px;
  min-width: 248px;
}

.partner-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 16px;
  background: #2f66ee;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.partner-cta--secondary {
  border: 1px solid #d6e4f5;
  background: #ffffff;
  color: #081428;
}

.partner-cta:hover {
  background: #1958df;
  box-shadow: 0 14px 28px rgba(47,102,238,0.22);
  transform: translateY(-1px);
}

.partner-cta--secondary:hover {
  border-color: rgba(26,107,212,0.28);
  background: #f8fbff;
  color: #1a6bd4;
}

@media (max-width: 1180px) {
  .landing-calculator,
  .process-head,
  .process-benefits,
  .partner-panel {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-cta {
    width: fit-content;
  }
}

@media (max-width: 760px) {
  .calculator-section,
  .process-section,
  .services-section {
    padding: 0 22px 34px;
  }

  .landing-flow-bar {
    grid-template-columns: 92px minmax(0, 1fr);
    min-height: 104px;
    margin: 0 -22px 26px;
    padding: 18px 22px;
    column-gap: 18px;
  }

  .landing-flow-bar .landing-flow-mark {
    width: 88px;
    height: 64px;
  }

  .landing-calculator {
    margin-top: 0;
    padding: 14px;
    border-radius: 22px;
  }

  .calculator-copy {
    width: 100%;
    padding: 26px 16px 28px;
    transform: none;
  }

  .calculator-copy::before {
    display: none;
  }

  .landing-calculator .form-body {
    padding: 22px 16px 18px;
  }

  .landing-calculator .vehicle-grid,
  .landing-calculator .form-row,
  .landing-calculator .route-row,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-head {
    gap: 18px;
  }

  .process-card {
    min-height: 220px;
    padding: 24px 22px 64px;
  }

  .process-card::before,
  .process-card::after {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 44px), 50% 100%, 0 calc(100% - 44px));
  }

  .process-route {
    min-height: 74px;
    margin: 8px 38px 34px 16px;
    padding: 38px 18px 14px;
    font-size: 16px;
    line-height: 1.25;
  }

  .process-route::after {
    right: -46px;
    width: 48px;
    height: auto;
  }

  .process-route-marker {
    top: 50%;
    min-width: 0;
    min-height: 0;
    padding: 0;
    font-size: 0;
    letter-spacing: 0;
    transform: translate(-50%,-50%);
  }

  .process-route-marker::before {
    width: 28px;
    height: 44px;
    margin: 0;
  }

  .process-route-marker::after {
    top:-20px;
    min-width:46px;
    padding:4px 8px;
    font-size:10px;
    letter-spacing:1px;
  }

  .process-route-marker--start {
    left: 14%;
  }

  .process-route-marker--finish {
    left: auto;
    right: 8%;
    transform: translate(50%,-50%);
  }

  .process-benefit,
  .partner-panel {
    padding: 26px 22px;
  }

  .partner-cta {
    width: 100%;
  }
}

/* Responsive Fixes – Mobile */
@media (max-width: 1200px) {
  .landing-calculator {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .services-grid--four,
  .process-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .calculator-section,
  .process-section,
  .services-section,
  .partner-section,
  .contact-section {
    max-width: 100%;
    overflow: visible;
  }

  .landing-calculator,
  .process-head,
  .partner-panel {
    grid-template-columns: 1fr !important;
  }

  .landing-calculator,
  .process-card,
  .service-card,
  .process-benefit,
  .partner-panel,
  .kontakt-card {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .process-route {
    margin-right: 22px;
    overflow: visible;
  }
}

@media (max-width: 768px) {
  img {
    max-width: 100%;
    height: auto;
  }

  .section,
  .why-section,
  .contact-section,
  .calculator-section,
  .process-section,
  .services-section,
  .partner-section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .landing-flow-bar {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-left: -16px !important;
    margin-right: -16px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .landing-flow-copy,
  .section-banner-header,
  .contact-info {
    max-width: 100% !important;
  }

  .contact-section--final .section-banner-header {
    flex-wrap: wrap;
    gap: 14px;
  }

  .contact-section--final .section-banner-header img {
    max-width: min(170px, 78vw);
    height: auto;
  }

  .contact-section--final .contact-flow-bar {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 22px !important;
  }

  .landing-flow-bar h2,
  h2 {
    font-size: clamp(34px, 11vw, 52px);
    overflow-wrap: break-word;
  }

  .landing-calculator {
    width: 100%;
    padding: 14px !important;
    min-height: 0 !important;
  }

  .landing-calculator .vehicle-grid,
  .landing-calculator .form-row,
  .landing-calculator .route-row,
  .services-grid,
  .services-grid--four,
  .process-grid,
  .process-benefits,
  .kontakt-grid {
    grid-template-columns: 1fr !important;
  }

  .landing-calculator .vehicle-card {
    min-height: 116px;
  }

  .landing-calculator .route-address-fields {
    grid-template-columns: 1fr;
  }

  .landing-calculator .route-address-fields input:first-child {
    grid-column: auto;
  }

  .process-route {
    margin: 8px 0 34px;
    border-right: 2px solid #08304b;
  }

  .process-route::after {
    display: none;
  }

  .process-benefit ul {
    grid-template-columns: 1fr !important;
  }

  .partner-panel {
    grid-template-columns: 1fr !important;
  }

  .partner-section {
    padding: 0 !important;
  }

  .kontakt-cta-row {
    flex-direction: column;
  }

  .kontakt-cta,
  .partner-cta,
  .landing-calculator .form-submit,
  .auth-btn {
    width: 100%;
  }

  .kontakt-cta-row,
  .partner-actions {
    width: 100%;
    min-width: 0;
  }

  .kontakt-cta {
    max-width: 100%;
    white-space: normal;
  }

  .modal-overlay {
    padding: 12px;
  }

  .modal-box {
    width: 100%;
    max-width: calc(100vw - 24px) !important;
  }

  .modal-content {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

@media (max-width: 480px) {
  .landing-calculator .form-body,
  .booking-form .form-body {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .service-card,
  .services-grid--four .service-card,
  .process-benefit,
  .partner-panel {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  #authModal .auth-panel > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  .contact-section--final .contact-flow-bar {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .contact-section--final .contact-flow-bar .landing-flow-mark {
    justify-self: center;
  }
}

/* Landing mobile polish */
@media (max-width: 768px) {
  html body > nav {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) !important;
    grid-template-areas:
      "brand actions"
      "links links";
    align-items: center !important;
    justify-content: normal !important;
    left: clamp(10px, 2.8vw, 16px) !important;
    right: clamp(10px, 2.8vw, 16px) !important;
    top: clamp(8px, 2.2vw, 14px) !important;
    max-width: calc(100vw - clamp(20px, 5.6vw, 32px)) !important;
    column-gap: clamp(12px, 3.4vw, 20px) !important;
    row-gap: clamp(8px, 2.3vw, 12px) !important;
    padding: clamp(10px, 2.8vw, 14px) clamp(12px, 3.6vw, 18px) !important;
    border-radius: clamp(18px, 4.8vw, 24px) !important;
  }

  html body > nav.is-scrolled {
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    max-width: 100vw !important;
    border-radius: 0 0 18px 18px !important;
    padding-inline: clamp(14px, 4vw, 22px) !important;
  }

  html body > nav .nav-logo,
  html body > nav .nav-brand {
    grid-area: brand;
    width: auto !important;
    min-width: 0 !important;
  }

  html body > nav .nav-logo img {
    height: clamp(34px, 7vw, 44px) !important;
    max-width: clamp(50px, 12vw, 70px) !important;
  }

  html body > nav .nav-actions {
    grid-area: actions;
    display: grid !important;
    grid-template-columns: auto auto auto;
    align-items: center !important;
    justify-content: flex-end !important;
    justify-self: end !important;
    min-width: 0 !important;
    width: 100%;
    max-width: min(100%, 520px) !important;
    gap: clamp(6px, 1.8vw, 10px) !important;
  }

  html body > nav .logout-btn,
  html body > nav .tf-btn {
    justify-self: end !important;
    min-width: 0 !important;
    min-height: clamp(32px, 6vw, 38px) !important;
    padding: clamp(7px, 1.8vw, 9px) clamp(11px, 2.5vw, 16px) !important;
    border-radius: 12px !important;
    font-size: clamp(10px, 1.8vw, 11px) !important;
    letter-spacing: .45px !important;
    white-space: nowrap !important;
    text-align: center !important;
  }

  html body > nav .nav-carrier-link {
    justify-self: end !important;
    max-width: 100% !important;
    min-height: 24px !important;
    padding: 0 4px !important;
    font-size: clamp(10px, 1.9vw, 11px) !important;
    letter-spacing: .8px !important;
    white-space: nowrap !important;
  }

  html body > nav .nav-links {
    grid-area: links;
    grid-column: 1 / -1 !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    justify-content: center !important;
    align-items: center !important;
    column-gap: clamp(10px, 2.6vw, 18px) !important;
    row-gap: 7px !important;
    overflow: visible !important;
    padding-top: clamp(2px, 1vw, 5px) !important;
    width: 100% !important;
  }

  /* Alle Menuepunkte sichtbar halten und horizontales Scroll-Layout
     aus global.css (max-width:760px) konsistent ueberschreiben. */
  html body > nav .nav-links li {
    display: list-item !important;
    min-width: 0 !important;
    text-align: center !important;
  }

  html body > nav .nav-links a {
    display: block !important;
    font-size: clamp(10px, 1.65vw, 11px) !important;
    letter-spacing: .45px !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
  }

  .hero {
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-end !important;
    min-height: 0 !important;
    gap: clamp(12px, 3vw, 18px) !important;
    margin: clamp(134px, 24vw, 158px) clamp(12px, 3.4vw, 18px) clamp(24px, 5vw, 34px) !important;
    padding: clamp(128px, 28vw, 180px) clamp(14px, 4vw, 24px) clamp(16px, 4.4vw, 26px) !important;
    border-radius: clamp(20px, 4.6vw, 26px) !important;
    background-position: 54% top !important;
    background-size: cover !important;
    overflow: visible !important;
  }

  .hero.hero--visual-bg .hero-content {
    align-self: flex-start !important;
    width: min(100%, clamp(248px, 72vw, 340px)) !important;
    max-width: min(100%, clamp(248px, 72vw, 340px)) !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    padding: clamp(14px, 3.6vw, 22px) clamp(14px, 4vw, 24px) !important;
    border-radius: clamp(18px, 4vw, 22px) !important;
    background: linear-gradient(135deg, rgba(255,255,255,0.84) 0%, rgba(255,255,255,0.62) 100%) !important;
    backdrop-filter: blur(5px);
    box-shadow: 0 18px 36px rgba(6,21,45,0.14) !important;
    transform: none !important;
  }

  .hero-content h1 {
    max-width: 8.8em !important;
    margin-bottom: clamp(10px, 2.4vw, 14px) !important;
    font-size: clamp(36px, 10.2vw, 52px) !important;
    line-height: 1.02 !important;
    letter-spacing: .2px !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
  }

  .hero-desc {
    max-width: 100% !important;
    margin-bottom: 0 !important;
    font-size: clamp(12.5px, 3vw, 14px) !important;
    line-height: 1.48 !important;
  }

  .hero-stats {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    order: 2 !important;
    align-self: stretch !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: 100% !important;
    margin: 0 !important;
    padding: clamp(8px, 2vw, 12px) !important;
    border: 1px solid rgba(26,107,212,0.12) !important;
    border-radius: clamp(18px, 4vw, 22px) !important;
    background: rgba(255,255,255,0.96) !important;
    box-shadow: 0 16px 34px rgba(6,21,45,0.12) !important;
    overflow: visible !important;
  }

  .hero-stats .stat {
    min-width: 0 !important;
    min-height: 0 !important;
    padding: clamp(10px, 2.4vw, 14px) clamp(9px, 2.5vw, 14px) !important;
    border-right: 0 !important;
  }

  .hero-stats .stat:nth-child(odd) {
    border-right: 1px solid rgba(26,107,212,0.10) !important;
  }

  .hero-stats .stat:nth-child(n+3) {
    border-top: 1px solid rgba(26,107,212,0.10) !important;
  }

  .hero-stats .stat-num {
    font-size: clamp(30px, 7.5vw, 42px) !important;
    line-height: 1.05 !important;
  }

  .hero-stats .stat-label {
    font-size: clamp(9px, 2vw, 10.5px) !important;
    letter-spacing: .28px !important;
    line-height: 1.2 !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
  }

  .services-section > .landing-flow-bar {
    margin-bottom: 28px !important;
  }

  .services-section > .landing-flow-bar .landing-flow-copy h2 {
    max-width: 10.8em !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: clamp(34px, 8.8vw, 42px) !important;
    line-height: 1.03 !important;
    letter-spacing: .35px !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
  }

  .services-section > .landing-flow-bar .landing-flow-copy p {
    margin-top: 16px !important;
    font-size: 15px !important;
    line-height: 1.58 !important;
  }

  .services-section .services-grid--four {
    gap: 16px !important;
  }

  .services-section .services-grid--four .service-card {
    min-height: 0 !important;
    padding: 24px 20px 22px !important;
  }

  .services-section .services-grid--four .service-card h3 {
    font-size: clamp(25px, 7.4vw, 31px) !important;
    line-height: 1.02 !important;
  }

  .services-section .services-grid--four .service-card p {
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  .services-section .service-tags span {
    max-width: 100% !important;
    white-space: normal !important;
  }

  .process-section .landing-flow-bar h2 {
    font-size: clamp(32px, 8.6vw, 44px) !important;
    line-height: 1.04 !important;
    letter-spacing: .4px !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
  }

  .process-card {
    min-height: 0 !important;
    padding: 22px 20px 54px !important;
  }

  .process-benefit--wrm-bg {
    overflow: visible !important;
  }

  .process-card p {
    max-width: none !important;
  }

  .process-kicker {
    gap: 12px !important;
    margin-bottom: 22px !important;
    font-size: 14px !important;
    letter-spacing: 1.8px !important;
  }

  .process-kicker-badge {
    width: 46px !important;
    min-width: 46px !important;
    height: 40px !important;
  }

  .process-route {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 72px !important;
    margin: 10px 0 34px !important;
    padding: 34px 42px 12px !important;
    font-size: clamp(13px, 3.8vw, 16px) !important;
    line-height: 1.18 !important;
  }

  .process-route-title {
    max-width: 100% !important;
    padding: 0 4px !important;
    line-height: 1.18 !important;
  }

  .process-route-title::before,
  .process-route-title::after {
    display: none !important;
  }

  .process-route-marker::before {
    width: 24px !important;
    height: 36px !important;
    background-size: 12px 12px !important;
  }

  .process-route-marker::after {
    top: -17px !important;
    min-width: 42px !important;
    padding: 4px 7px !important;
    font-size: 9px !important;
    letter-spacing: .8px !important;
  }

  .process-route-marker--start {
    left: 10.5% !important;
  }

  .process-route-marker--finish {
    right: 4.5% !important;
  }
}

@media (max-width: 500px) {
  html body > nav .nav-actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, max-content)) !important;
    max-width: min(100%, calc(100vw - 82px)) !important;
  }

  html body > nav .nav-carrier-link {
    grid-column: 1 / -1 !important;
    justify-self: end !important;
  }

  html body > nav .nav-links {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    justify-content: center !important;
  }

  .hero {
    margin-top: clamp(150px, 34vw, 174px) !important;
  }
}

@media (max-width: 480px) {
  html body > nav {
    grid-template-columns: auto minmax(0, 1fr) !important;
    row-gap: 8px !important;
    left: 8px !important;
    right: 8px !important;
    max-width: calc(100vw - 16px) !important;
    padding: 10px 11px !important;
    border-radius: 18px !important;
  }

  html body > nav .nav-logo img {
    height: clamp(32px, 9vw, 36px) !important;
    max-width: clamp(48px, 14vw, 58px) !important;
  }

  html body > nav .nav-actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(74px, max-content)) !important;
    max-width: calc(100vw - 78px) !important;
    gap: 6px !important;
  }

  html body > nav .logout-btn,
  html body > nav .tf-btn {
    min-height: clamp(31px, 8.5vw, 34px) !important;
    padding: 7px clamp(9px, 2.8vw, 11px) !important;
    border-radius: 10px !important;
    font-size: clamp(9.5px, 2.75vw, 10.5px) !important;
    letter-spacing: .25px !important;
  }

  html body > nav .nav-carrier-link {
    font-size: clamp(9.6px, 2.8vw, 10.5px) !important;
    letter-spacing: .45px !important;
    gap: 4px !important;
    text-underline-offset: 3px !important;
  }

  html body > nav .nav-carrier-link::before {
    width: 11px !important;
    height: 11px !important;
    font-size: 9px !important;
  }

  html body > nav .nav-links {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    justify-content: center !important;
    column-gap: clamp(16px, 6vw, 28px) !important;
    row-gap: 5px !important;
    padding-top: 2px !important;
  }

  html body > nav .nav-links a {
    font-size: clamp(9.5px, 2.65vw, 10.2px) !important;
    letter-spacing: .2px !important;
  }

  .hero {
    margin-top: clamp(142px, 38vw, 164px) !important;
    padding: clamp(128px, 36vw, 162px) 12px 16px !important;
  }

  .hero-content h1 {
    font-size: clamp(34px, 10.4vw, 40px) !important;
  }

  .hero-desc {
    font-size: clamp(12.2px, 3.2vw, 13px) !important;
    line-height: 1.44 !important;
  }

  .hero-stats {
    gap: 0 !important;
  }

  .hero-stats .stat {
    padding: clamp(9px, 2.6vw, 11px) clamp(8px, 2.7vw, 10px) !important;
  }

  .hero-stats .stat-num {
    font-size: clamp(28px, 8vw, 34px) !important;
  }

  .hero-stats .stat-label {
    font-size: clamp(9px, 2.35vw, 9.5px) !important;
    letter-spacing: .12px !important;
    line-height: 1.17 !important;
  }

  .services-section > .landing-flow-bar .landing-flow-copy h2 {
    max-width: 10.4em !important;
    font-size: clamp(31px, 8.6vw, 36px) !important;
  }

  .services-section > .landing-flow-bar .landing-flow-copy p {
    font-size: 14px !important;
    line-height: 1.52 !important;
  }

  .services-section .services-grid--four .service-card {
    padding: 22px 18px 20px !important;
    border-radius: 18px !important;
  }

  .process-card {
    padding: 20px 18px 50px !important;
  }

  .process-route {
    min-height: 70px !important;
    padding: 33px 34px 11px !important;
    font-size: 13px !important;
  }

  .process-route-marker::before {
    width: 22px !important;
    height: 34px !important;
  }

  .process-route-marker--start {
    left: 9% !important;
  }

  .process-route-marker--finish {
    right: 3.5% !important;
  }
}
