:root {
  --navy-1: #0f172a;
  --navy-3: #1e293b;
  --navy-4: #334155;
  --navy-gradient: radial-gradient(
    140% 120% at 18% 0%,
    #334155 0%,
    #1e293b 48%,
    #0f172a 100%
  );
  --card-bg: #1e293b;
  --card-border: #334155;
  --text-primary: #f1f5f9;
  --text-muted: #94a3b8;
  --text-subtle: #64748b;
  --accent: #60a5fa;
  --accent-mid: #3b82f6;
  --accent-dim: rgba(96, 165, 250, 0.14);
  --danger: #f87171;
  --danger-bg: rgba(248, 113, 113, 0.1);
  --danger-border: rgba(248, 113, 113, 0.3);
  --good: #34d399;
  --good-bg: rgba(52, 211, 153, 0.1);
  --good-border: rgba(52, 211, 153, 0.3);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-height: 100vh;
  background: var(--navy-gradient) fixed;
  color: var(--text-muted);
  font-family: var(--font);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3 {
  color: var(--text-primary);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0;
}
p {
  margin: 0;
}
b {
  color: var(--text-primary);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  border: 0;
  border-radius: 12px;
  padding: 14px 26px;
  transition:
    transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    background-color 0.3s,
    box-shadow 0.3s;
}
.btn:hover {
  transform: translateY(-1px) scale(1.02);
}
.btn-white {
  background: #fff;
  color: var(--navy-1);
  box-shadow: 0 8px 24px #00000047;
}
.btn-white:hover {
  background: #eef2ff;
  box-shadow: 0 10px 28px #0000005c;
}
.btn-navy {
  background: #ffffff0f;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.btn-navy:hover {
  background: #ffffff1f;
}
.btn-ghost {
  background: none;
  border: 1px solid var(--card-border);
  color: var(--text-subtle);
  font-size: 15px;
  padding: 11px 18px;
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: none;
}
.btn-block {
  width: 100%;
}
.nav-btn {
  padding: 10px 20px;
  font-size: 15px;
}
.hidden {
  display: none !important;
}
.nav {
  display: flex;
  justify-content: center;
  padding: 18px 16px 0;
}
.nav-pill {
  display: flex;
  align-items: center;
  gap: 22px;
  background: #f0f4ffe6;
  -webkit-backdrop-filter: saturate(1.3) blur(10px);
  backdrop-filter: saturate(1.3) blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  padding: 8px 8px 8px 22px;
  box-shadow: 0 10px 30px #00000040;
}
.nav-pill .brand img {
  display: block;
}
.nav-pill .btn-white {
  box-shadow: none;
  color: var(--accent-mid);
}
.nav-pill .btn-white:hover {
  box-shadow: none;
}
.hero {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px 30px;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(34px, 7vw, 68px);
  font-weight: 800;
  line-height: 1.02;
  margin-bottom: 22px;
}
.hero .sub {
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.55;
  margin: 0 auto;
  max-width: 560px;
  color: var(--text-muted);
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hero-fine {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-subtle);
}
.wizard {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px 70px;
}
.steps {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 0 0 24px;
  flex-wrap: wrap;
}
.step-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-subtle);
}
.step-dot span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff12;
  color: var(--text-subtle);
  font-size: 12px;
  transition: 0.2s;
}
.step-dot.is-active {
  color: var(--text-primary);
}
.step-dot.is-active span {
  background: var(--accent);
  color: #fff;
}
.step-dot.is-done span {
  background: var(--good);
  color: var(--navy-1);
}
.step-dot:not(:last-child):after {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--card-border);
  margin-left: 2px;
}
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
}
.wizard-card {
  box-shadow: 0 24px 60px #0006;
  overflow: hidden;
}
.pane {
  padding: 32px 32px 28px;
}
.pane-head {
  margin-bottom: 22px;
}
.pane-head.center {
  text-align: center;
}
.pane-head h2 {
  font-size: clamp(22px, 3.4vw, 30px);
  margin-bottom: 8px;
}
.pane-head p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}
.calc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-subtle);
}
.field input {
  font: inherit;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  padding: 13px 15px;
  border: 1px solid var(--card-border);
  border-radius: 11px;
  background: #ffffff0a;
  transition: 0.15s;
}
.field input:focus {
  outline: none;
  border-color: var(--accent);
  background: #4f8ef714;
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.pane-foot {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.pane-foot small {
  font-size: 13px;
  color: var(--text-subtle);
}
.pane-foot--left {
  flex-direction: row;
  justify-content: flex-start;
}
.lead-wrap {
  border-radius: 14px;
  background: #0000002e;
  border: 1px solid var(--card-border);
  padding: 14px 18px;
  min-height: 300px;
}
.pipedriveWebForms {
  width: 100%;
}
.lead-hint {
  text-align: center;
  font-size: 13px;
  color: var(--text-subtle);
  margin-top: 12px;
}
.pd-debug {
  margin: 10px 0 0;
  padding: 10px 12px;
  border-radius: 8px;
  background: #000;
  color: #7dffa0;
  font:
    11px/1.5 ui-monospace,
    Menlo,
    monospace;
  white-space: pre-wrap;
  word-break: break-all;
  max-height: 180px;
  overflow: auto;
}
.pill-success {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--good);
  background: var(--good-bg);
  border: 1px solid var(--good-border);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.res-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.res-box {
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.res-box.danger {
  background: var(--danger-bg);
  border: 1px solid var(--danger-border);
}
.res-box.good {
  background: var(--good-bg);
  border: 1px solid var(--good-border);
}
.res-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.danger .res-label {
  color: var(--danger);
}
.good .res-label {
  color: var(--good);
}
.res-big {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
}
.res-sub {
  font-size: 14px;
  color: var(--text-muted);
}
.res-arrow {
  font-size: 22px;
  color: var(--text-subtle);
}
.res-hero {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 12px;
  background: linear-gradient(135deg, #1b2140, #0b0f19);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 14px;
}
.res-hero-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
}
.res-hero-item > span {
  font-size: 12px;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.res-hero-item strong {
  font-size: 21px;
  color: var(--text-primary);
  font-weight: 800;
}
.res-hero-item strong em {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-subtle);
  font-style: normal;
}
.res-hero-item small {
  font-size: 12px;
  color: var(--text-subtle);
}
.res-hero-item.main {
  background: var(--accent-dim);
  border-radius: 12px;
}
.res-hero-item.main strong {
  font-size: 30px;
  color: var(--accent);
}
.res-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}
.post-cta {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--card-border);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.post-cta p {
  font-size: 17px;
  color: var(--text-primary);
  font-weight: 600;
}
.post-cta small {
  font-size: 13px;
  color: var(--text-subtle);
}
.offer-cta,
.offer-done {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.offer-done .offer-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--good-bg);
  border: 1px solid var(--good-border);
  color: var(--good);
  font-size: 22px;
  font-weight: 800;
}
.offer-done p {
  color: var(--good);
}
.disclaimer {
  font-size: 12px;
  color: var(--text-subtle);
  text-align: center;
  margin: 18px auto 0;
  max-width: 560px;
  line-height: 1.5;
  opacity: 0.8;
}
.foot {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  max-width: 960px;
  margin: 0 auto;
  padding: 28px 24px 44px;
  font-size: 13px;
  color: var(--text-subtle);
  border-top: 1px solid var(--card-border);
}
.foot img {
  opacity: 0.8;
}
.foot nav {
  display: flex;
  gap: 16px;
}
.foot a {
  color: var(--text-subtle);
  text-decoration: none;
}
.foot a:hover {
  color: var(--accent);
}
@media (max-width: 560px) {
  .calc-grid,
  .res-compare {
    grid-template-columns: 1fr;
  }
  .res-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }
  .res-hero {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero-cta {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
}
.tms-strip {
  margin: 26px auto 0;
  max-width: 920px;
  text-align: center;
}

.tms-strip-label,
.tms-strip-note {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.4;
}

.tms-logos {
  margin: 16px auto 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.tms-logos img {
  width: 112px;
  height: 44px;
  object-fit: contain;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.customer-logo-slider {
  margin: 34px auto 0;
  max-width: 1080px;
  text-align: center;
}

.customer-logo-label {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 500;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 6px 0;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: customerMarquee 34s linear infinite;
}

.logo-track img {
  width: 138px;
  height: 58px;
  object-fit: contain;
  padding: 12px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  flex: 0 0 auto;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

@keyframes customerMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .logo-track {
    gap: 12px;
    animation-duration: 26s;
  }

  .logo-track img {
    width: 118px;
    height: 52px;
    padding: 10px 14px;
  }
}
.hero-premium {
  position: relative;
  max-width: 1180px;
  padding: 72px 24px 28px;
  overflow: hidden;
}

.hero-bg-orb {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.38;
}

.hero-bg-orb--one {
  width: 360px;
  height: 360px;
  top: 20px;
  left: -120px;
  background: radial-gradient(
    circle,
    rgba(96, 165, 250, 0.55),
    transparent 68%
  );
}

.hero-bg-orb--two {
  width: 320px;
  height: 320px;
  right: -90px;
  top: 110px;
  background: radial-gradient(
    circle,
    rgba(52, 211, 153, 0.34),
    transparent 68%
  );
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.8fr);
  gap: 42px;
  align-items: center;
  text-align: left;
}

.hero-copy {
  max-width: 690px;
}

.hero-premium .eyebrow {
  color: #93c5fd;
  background: rgba(96, 165, 250, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.24);
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero-premium h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  max-width: 760px;
}

.hero-premium .sub {
  margin: 22px 0 0;
  max-width: 620px;
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(226, 232, 240, 0.82);
}

.hero-premium .hero-cta {
  justify-content: flex-start;
  margin-top: 32px;
}

.btn-glow {
  position: relative;
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.35),
    0 0 42px rgba(96, 165, 250, 0.22);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  color: rgba(226, 232, 240, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.hero-proof span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-calculator-card {
  position: relative;
  padding: 22px;
  border-radius: 28px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.14),
      rgba(255, 255, 255, 0.055)
    ),
    rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transform: rotate(1deg);
}

.hero-calculator-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(96, 165, 250, 0.42),
    transparent 42%,
    rgba(52, 211, 153, 0.28)
  );
  z-index: -1;
}

.calc-card-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.calc-card-top span {
  color: rgba(226, 232, 240, 0.62);
  font-size: 13px;
  font-weight: 700;
}

.calc-card-top strong {
  color: #34d399;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.22);
}

.fake-input-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 15px;
  margin-bottom: 10px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.fake-input-row span {
  color: rgba(226, 232, 240, 0.68);
  font-size: 14px;
}

.fake-input-row b {
  color: #fff;
  font-size: 18px;
}

.fake-result {
  margin-top: 16px;
  padding: 20px;
  border-radius: 20px;
  background:
    radial-gradient(
      120% 120% at 0% 0%,
      rgba(96, 165, 250, 0.28),
      transparent 52%
    ),
    rgba(96, 165, 250, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.22);
}

.fake-result span {
  display: block;
  color: rgba(226, 232, 240, 0.68);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}

.fake-result strong {
  display: block;
  color: #fff;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  filter: blur(3.5px);
  -webkit-user-select: none;
  user-select: none;
}

.fake-result small {
  display: block;
  margin-top: 10px;
  color: rgba(226, 232, 240, 0.58);
  font-size: 12px;
}

.premium-trust {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin-top: 38px;
  padding: 18px;
}

.premium-trust-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.premium-trust-points li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 14px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: normal;
}

.premium-trust-points strong {
  color: #fff;
  font-size: 15px;
}

.premium-trust-points span {
  color: rgba(226, 232, 240, 0.62);
  font-size: 12px;
  font-weight: 600;
}

.premium-tms-logos img {
  width: 116px;
  height: 48px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.customer-logo-slider {
  margin-top: 26px;
}

.wizard {
  padding-top: 34px;
}

.wizard-card {
  border-radius: 28px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.02)
    ),
    var(--card-bg);
}

.card {
  border-color: rgba(255, 255, 255, 0.1);
}

.pane {
  padding: 36px;
}

.field input {
  min-height: 54px;
  border-radius: 15px;
}

.lead-preview-box {
  background:
    radial-gradient(
      120% 100% at 0% 0%,
      rgba(96, 165, 250, 0.18),
      transparent 60%
    ),
    rgba(255, 255, 255, 0.055);
}

.res-hero {
  background:
    radial-gradient(
      130% 140% at 50% 0%,
      rgba(96, 165, 250, 0.24),
      transparent 52%
    ),
    linear-gradient(135deg, #1b2140, #0b0f19);
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-premium .sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-premium .hero-cta {
    justify-content: center;
  }

  .hero-proof {
    justify-content: center;
  }

  .hero-calculator-card {
    max-width: 460px;
    margin: 0 auto;
    transform: none;
  }

  .premium-trust-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero-premium {
    padding-top: 46px;
  }

  .hero-premium h1 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .hero-calculator-card {
    padding: 18px;
    border-radius: 24px;
  }

  .fake-result strong {
    font-size: 24px;
  }

  .premium-tms-logos img {
    width: 104px;
    height: 44px;
  }

  .pane {
    padding: 28px 22px;
  }
}
/* Desktop Hero Fix */
@media (min-width: 921px) {
  .hero-premium {
    max-width: 1180px;
    padding-top: 64px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.68fr);
    gap: 52px;
  }

  .hero-premium h1 {
    font-size: clamp(46px, 5.1vw, 68px);
    max-width: 680px;
    line-height: 0.98;
    letter-spacing: -0.055em;
  }

  .hero-calculator-card {
    justify-self: end;
    max-width: 470px;
    width: 100%;
    transform: rotate(1deg) translateX(0);
  }
}

/* Rand / abgeschnittener Hero-Bereich entfernen */
.hero-premium {
  overflow: visible;
}

.hero-grid,
.hero-copy,
.hero-calculator-card {
  min-width: 0;
}

/* Trust-Box sauberer */
.premium-trust {
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.premium-trust-points li {
  background: rgba(255, 255, 255, 0.075);
}

.premium-trust-points strong {
  font-size: 16px;
}

/* TMS Logos ruhiger, grau/schwarz, klar lesbar */
.premium-tms-logos {
  gap: 10px;
}

.premium-tms-logos img {
  width: 118px;
  height: 48px;
  object-fit: contain;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(245, 247, 250, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
  filter: grayscale(1) contrast(1.12) brightness(0.72);
  opacity: 0.95;
}

/* Soloplan nicht alleine komisch mittig wirken lassen */
.premium-tms-logos {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile bleibt kompakt */
@media (max-width: 560px) {
  .premium-tms-logos img {
    width: 104px;
    height: 44px;
  }
}
/* TMS Logos clean & readable */
.premium-tms-logos {
  max-width: 900px;
  margin: 16px auto 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.premium-tms-logos img {
  width: 118px;
  height: 48px;
  object-fit: contain;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
  filter: grayscale(1) contrast(1.05);
  opacity: 1;
}

/* falls einzelne Logos optisch kleiner wirken */
.premium-tms-logos img[alt="CargoSoft"],
.premium-tms-logos img[alt="CargoSupport"],
.premium-tms-logos img[alt="Ecovium"] {
  padding: 8px 12px;
}

@media (max-width: 560px) {
  .premium-tms-logos img {
    width: 104px;
    height: 44px;
    padding: 9px 12px;
  }
}
.premium-tms-logos {
  max-width: 760px; /* 4 + 4 Layout */
  margin: 16px auto 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.premium-tms-logos img {
  width: 118px;
  height: 48px;
  object-fit: contain;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
  filter: grayscale(1) contrast(1.05);
  opacity: 1;
}

@media (max-width: 560px) {
  .premium-tms-logos {
    max-width: 260px; /* mobil: 2 + 2 + 2 + 2 */
    gap: 9px;
  }

  .premium-tms-logos img {
    width: 118px;
    height: 46px;
    padding: 9px 12px;
  }
}
.premium-tms-logos {
  max-width: 500px; /* 4 Logos pro Reihe */
  margin: 16px auto 12px;
  display: grid;
  grid-template-columns: repeat(4, 118px);
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.premium-tms-logos img {
  width: 118px;
  height: 48px;
  object-fit: contain;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
  filter: grayscale(1) contrast(1.05);
  opacity: 1;
}

@media (max-width: 560px) {
  .premium-tms-logos {
    max-width: 260px;
    grid-template-columns: repeat(2, 118px);
    gap: 9px;
  }

  .premium-tms-logos img {
    width: 118px;
    height: 46px;
    padding: 9px 12px;
  }
}
@media (max-width: 560px) {
  .premium-trust {
    width: calc(100% - 32px);
    margin-left: auto;
    margin-right: auto;
    padding: 18px;
  }

  .premium-trust-points {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }

  .premium-trust-points li {
    width: 100%;
    max-width: 260px;
    align-items: center;
    text-align: center;
    justify-content: center;
  }

  .premium-trust-points strong,
  .premium-trust-points span {
    text-align: center;
  }
}
@media (min-width: 561px) {
  .field span {
    min-height: 38px;
    display: flex;
    align-items: flex-end;
  }
}
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 560px) {
  .nav {
    padding-left: 14px;
    padding-right: 14px;
  }

  .nav-pill {
    width: 100%;
    max-width: 100%;
    gap: 10px;
    padding: 8px;
  }

  .nav-pill .brand {
    flex: 0 0 auto;
  }

  .nav-pill .brand img {
    max-width: 120px;
    height: auto;
  }

  .nav-pill .nav-btn {
    flex: 1 1 auto;
    min-width: 0;
    white-space: normal;
    text-align: center;
  }

  .hero-premium {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-grid {
    width: 100%;
  }

  .hero-calculator-card {
    width: 100%;
    max-width: 100%;
  }

  .premium-trust {
    width: 100%;
    max-width: 100%;
  }

  .customer-logo-slider {
    width: 100%;
  }

  .logo-track {
    max-width: none;
  }
}
@media (max-width: 560px) {
  .hero-premium h1 {
    max-width: 100%;
    font-size: clamp(42px, 10.4vw, 56px);
    line-height: 1.04;
    letter-spacing: -0.055em;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  .hero-premium {
    overflow: hidden;
  }
}
@media (max-width: 560px) {
  .hero-premium h1 {
    font-size: clamp(40px, 9.8vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.045em;
  }
}
