:root {
  --navy-950: #020d1d;
  --navy-900: #06172d;
  --navy-800: #0a2544;
  --navy-700: #123b64;
  --blue: #079bf1;
  --blue-dark: #0077c8;
  --ice: #eaf7ff;
  --line: #d7e2ec;
  --ink: #102033;
  --muted: #5e6d7d;
  --white: #ffffff;
  --offwhite: #f6f9fc;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(2, 13, 29, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 86px;
  background: rgba(2, 13, 29, .94);
  border-bottom: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(16px);
}
.nav-wrap {
  width: min(1220px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand { display: flex; align-items: center; gap: 12px; color: white; }
.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(79,190,255,.55);
  background: #071525;
  box-shadow: 0 8px 20px rgba(0,119,200,.3);
}
.brand-mark img { width: 100%; height: 100%; display: block; object-fit: cover; }
.brand strong { display: block; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; }
.brand small { display: block; margin-top: 3px; color: #91a8bf; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
nav { display: flex; align-items: center; gap: 28px; color: #c5d3e0; font-size: 14px; }
nav a { transition: color .2s ease; }
nav a:hover { color: white; }
.nav-cta {
  padding: 13px 18px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  color: white;
}
.nav-cta:hover { background: white; color: var(--navy-950); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: grid;
  align-items: center;
  background: var(--navy-950);
  color: white;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 45%, rgba(0, 150, 255, .22), transparent 32%),
    linear-gradient(110deg, rgba(2,13,29,.99) 0%, rgba(2,13,29,.94) 50%, rgba(3,24,49,.78) 100%),
    url("/assets/hero-fahrzeugtransfer.png") center/cover no-repeat;
}
.hero-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, black, transparent 75%);
}
.hero-grid {
  position: relative;
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  padding: 90px 0 84px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 46px;
}
.eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #88d4ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow span { width: 30px; height: 2px; background: var(--blue); }
.eyebrow.dark { color: var(--blue-dark); }
.eyebrow.light { color: #88d4ff; }
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 5.4vw, 82px);
  line-height: .98;
  letter-spacing: -.055em;
}
.hero h1 em { color: var(--blue); font-style: normal; }
.hero-lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: #b7c6d4;
  font-size: 19px;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--blue); color: #001426; box-shadow: 0 14px 36px rgba(7,155,241,.25); }
.button-ghost { border: 1px solid rgba(255,255,255,.28); color: white; }
.button-ghost:hover { background: rgba(255,255,255,.08); }
.hero-facts {
  margin-top: 54px;
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero-facts div { padding: 22px 28px 0 0; margin-right: 28px; border-right: 1px solid rgba(255,255,255,.12); }
.hero-facts div:last-child { border-right: 0; }
.hero-facts strong { display: block; font-size: 16px; }
.hero-facts span { display: block; margin-top: 5px; color: #8298ad; font-size: 11px; }
.hero-visual { position: relative; min-height: 470px; display: grid; place-items: center; }
.hero-visual img { width: 112%; height: auto; filter: drop-shadow(0 34px 50px rgba(0,0,0,.35)); }
.hero-note {
  position: absolute;
  right: 2%;
  bottom: 5%;
  min-width: 250px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 15px;
  background: rgba(5,23,45,.86);
  box-shadow: 0 20px 45px rgba(0,0,0,.25);
  backdrop-filter: blur(12px);
}
.status-dot { width: 11px; height: 11px; border-radius: 50%; background: #42d49e; box-shadow: 0 0 0 6px rgba(66,212,158,.12); }
.hero-note strong, .hero-note small { display: block; }
.hero-note strong { font-size: 13px; }
.hero-note small { margin-top: 4px; color: #93a7b9; }

.trust-strip {
  min-height: 84px;
  padding: 20px max(24px, calc((100% - 1220px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  color: #607284;
  font-size: 13px;
  letter-spacing: .04em;
}
.trust-strip span { color: var(--blue-dark); font-weight: 800; text-transform: uppercase; }
.trust-strip strong { color: #3b4f63; font-weight: 650; }

.section { width: min(1220px, calc(100% - 48px)); margin: 0 auto; padding: 112px 0; }
.section-tint { width: 100%; padding-left: max(24px, calc((100% - 1220px) / 2)); padding-right: max(24px, calc((100% - 1220px) / 2)); background: var(--offwhite); }
.section-heading { display: grid; grid-template-columns: 1.05fr .75fr; gap: 90px; align-items: end; margin-bottom: 54px; }
.section-heading h2, .company-copy h2, .inquiry h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1.03;
  letter-spacing: -.045em;
}
.section-heading > p {
  max-width: 520px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.service-card { min-height: 330px; padding: 30px; display: flex; flex-direction: column; background: white; border-right: 1px solid var(--line); transition: background .25s, transform .25s; }
.service-card:last-child { border-right: 0; }
.service-card:hover { background: var(--ice); transform: translateY(-4px); }
.service-card > span { color: var(--blue-dark); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.service-card h3 { margin: 50px 0 14px; color: var(--navy-900); font-size: 21px; letter-spacing: -.02em; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.service-card a { margin-top: auto; color: var(--navy-800); font-size: 13px; font-weight: 800; }
.service-card a b { color: var(--blue); margin-left: 6px; }
.included-box {
  margin-top: 26px;
  padding: 42px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 60px;
  border-radius: var(--radius);
  background: var(--navy-900);
  color: white;
}
.included-box h3 { margin: 0; font-size: 32px; letter-spacing: -.03em; }
.included-box ul { margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 28px; list-style: none; }
.included-box li { position: relative; padding-left: 22px; color: #c2d0dc; font-size: 14px; }
.included-box li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 900; }

.price-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 26px; align-items: start; }
.price-table-wrap, .calculator { border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 12px 38px rgba(8,31,56,.055); overflow: hidden; }
.price-table-head, .price-row { padding: 17px 24px; display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; }
.price-table-head { background: var(--navy-900); color: #9eb3c7; font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.price-row { min-height: 58px; border-bottom: 1px solid var(--line); font-size: 14px; }
.price-row strong { color: var(--navy-900); font-size: 17px; }
.price-row.special { background: var(--ice); }
.price-row.special strong { color: var(--blue-dark); font-size: 13px; text-transform: uppercase; }
.download-link { min-height: 62px; padding: 18px 24px; display: flex; justify-content: space-between; align-items: center; color: var(--navy-800); font-size: 13px; font-weight: 800; }
.download-link:hover { color: var(--blue-dark); }
.calculator { padding: 28px; overflow: visible; }
.calculator-head { display: flex; align-items: start; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.calculator-head span { color: var(--blue-dark); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.calculator-head h3 { margin: 5px 0 0; color: var(--navy-900); font-size: 25px; letter-spacing: -.03em; }
.calculator-head > b { padding: 7px 10px; border-radius: 7px; background: var(--ice); color: var(--blue-dark); font-size: 10px; letter-spacing: .12em; }
.calculator label:not(.check) { display: grid; gap: 8px; color: #495b6d; font-size: 12px; font-weight: 750; }
.calculator select, .quote-form input, .quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #cbd8e3;
  border-radius: 11px;
  outline: 0;
  background: white;
  color: var(--ink);
  transition: border .2s, box-shadow .2s;
}
.calculator select:focus, .quote-form input:focus, .quote-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(7,155,241,.12); }
.calculator-columns { margin-top: 15px; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.calculator fieldset { margin: 24px 0 0; padding: 0; border: 0; }
.calculator legend { margin-bottom: 9px; color: #495b6d; font-size: 12px; font-weight: 750; }
.check { min-height: 44px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; border-bottom: 1px solid #e8eef3; color: #3d5063; font-size: 13px; cursor: pointer; }
.check input { width: 17px; height: 17px; accent-color: var(--blue-dark); }
.check b { color: var(--navy-800); font-size: 12px; }
.calculator-result {
  margin-top: 22px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 15px;
  background: var(--navy-900);
  color: white;
}
.calculator-result span, .calculator-result small { display: block; color: #9db1c4; font-size: 10px; }
.calculator-result strong { display: block; margin: 3px 0; font-size: 27px; letter-spacing: -.035em; }
.calculator-result a { padding: 12px 15px; border-radius: 999px; background: var(--blue); color: var(--navy-950); font-size: 11px; font-weight: 900; white-space: nowrap; }
.calculator-fine { margin: 13px 2px 0; color: #7b8997; font-size: 10px; line-height: 1.55; }
.condition-grid { margin-top: 26px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.condition-grid article { padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.condition-grid span { color: var(--blue-dark); font-size: 18px; font-weight: 850; }
.condition-grid h3 { margin: 14px 0 7px; color: var(--navy-900); font-size: 15px; }
.condition-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.price-notice { margin-top: 16px; padding: 20px 24px; display: grid; grid-template-columns: 220px 1fr; gap: 24px; border: 1px dashed #abc3d7; border-radius: 14px; background: #f9fcff; }
.price-notice strong { color: var(--navy-800); font-size: 13px; }
.price-notice p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }

.process-section { padding-bottom: 126px; }
.steps { border-top: 1px solid var(--line); }
.steps article { padding: 25px 0; display: grid; grid-template-columns: 85px 1fr; align-items: start; border-bottom: 1px solid var(--line); }
.steps article > span { color: var(--blue-dark); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.steps article div { display: grid; grid-template-columns: 230px 1fr; gap: 40px; }
.steps h3 { margin: 0; color: var(--navy-900); font-size: 20px; }
.steps p { max-width: 670px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.company { display: grid; grid-template-columns: 1fr 1fr; min-height: 640px; background: var(--navy-900); color: white; }
.company-image { position: relative; overflow: hidden; display: grid; place-items: center; background: radial-gradient(circle, #123a65 0%, #06172d 68%); }
.company-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,13,29,.02), rgba(6,23,45,.42)); }
.company-image img { width: 100%; height: 100%; padding: 36px; object-fit: contain; object-position: center; }
.company-copy { padding: 88px max(48px, calc((100vw - 1220px) / 2)) 88px 72px; display: flex; flex-direction: column; justify-content: center; }
.company-copy h2 { color: white; }
.company-copy > p:not(.eyebrow) { margin: 25px 0 0; color: #b6c6d5; font-size: 16px; line-height: 1.75; }
.company-copy ul { margin: 28px 0 0; padding: 0; list-style: none; }
.company-copy li { padding: 10px 0 10px 24px; position: relative; border-bottom: 1px solid rgba(255,255,255,.1); color: #d4dee7; font-size: 13px; }
.company-copy li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); }
.text-link { margin-top: 30px; color: #8dd8ff; font-size: 13px; font-weight: 850; }
.text-link b { margin-left: 8px; }

.inquiry {
  width: 100%;
  padding: 112px max(24px, calc((100% - 1220px) / 2));
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
  background:
    linear-gradient(120deg, rgba(7,24,46,.97), rgba(10,41,75,.86)),
    url("/assets/hero-fahrzeugtransfer.png") center / cover no-repeat;
  color: white;
}
.inquiry h2 { color: white; }
.inquiry-copy > p:not(.eyebrow) { max-width: 470px; margin: 24px 0 0; color: #afc0cf; line-height: 1.75; }
.contact-lines { margin-top: 38px; display: grid; gap: 12px; }
.contact-lines a { padding: 14px 0; display: grid; grid-template-columns: 74px 1fr; border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-lines span { color: #7f96ab; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.contact-lines strong { font-size: 14px; font-weight: 650; }
.quote-form { padding: 30px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); background: white; color: var(--ink); box-shadow: var(--shadow); }
.quote-form label { display: grid; gap: 7px; margin-bottom: 15px; color: #4f6173; font-size: 11px; font-weight: 800; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.quote-form textarea { min-height: 104px; padding-top: 12px; resize: vertical; }
.quote-form .consent { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; color: #657586; font-size: 10px; line-height: 1.45; font-weight: 500; }
.consent input { width: 16px; height: 16px; accent-color: var(--blue-dark); }
.consent a { color: var(--blue-dark); text-decoration: underline; }
.quote-form button { width: 100%; min-height: 52px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; border: 0; border-radius: 999px; background: var(--blue); color: var(--navy-950); font-weight: 900; cursor: pointer; }
.quote-form > small { display: block; margin-top: 10px; color: #8190a0; font-size: 9px; text-align: center; }

footer { background: var(--navy-950); color: white; }
.footer-main {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  padding: 62px 0;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr .8fr;
  gap: 48px;
}
.footer-main > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; color: #9fb0c0; font-size: 12px; line-height: 1.6; }
.footer-main > div > strong { margin-bottom: 8px; color: white; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.footer-main p { margin: 0; }
.footer-main a:hover { color: var(--blue); }
.footer-brand { display: flex; align-items: flex-start; gap: 14px; }
.footer-brand strong { display: block; margin-top: 4px; font-size: 16px; text-transform: uppercase; }
.footer-brand p { max-width: 290px; margin-top: 7px; color: #7f94a7; font-size: 11px; line-height: 1.5; }
.footer-bottom {
  width: min(1220px, calc(100% - 48px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #71869a;
  font-size: 9px;
}

.legal-page { min-height: 100vh; background: var(--offwhite); }
.legal-header { min-height: 92px; padding: 18px max(24px, calc((100% - 980px) / 2)); display: flex; align-items: center; justify-content: space-between; background: var(--navy-950); color: white; }
.legal-back { color: #9ddcff; font-size: 13px; font-weight: 800; }
.legal-content { width: min(980px, calc(100% - 48px)); margin: 0 auto; padding: 80px 0 100px; }
.legal-content h1 { margin: 0 0 42px; color: var(--navy-900); font-size: clamp(42px, 6vw, 70px); letter-spacing: -.05em; }
.legal-content h2 { margin: 36px 0 12px; color: var(--navy-800); font-size: 20px; }
.legal-content h3 { margin: 26px 0 8px; color: var(--navy-800); font-size: 16px; }
.legal-content p, .legal-content li { color: var(--muted); font-size: 14px; line-height: 1.75; }
.legal-content ul { padding-left: 20px; }
.legal-note { margin-top: 40px; padding: 20px; border-left: 3px solid var(--blue); background: var(--ice); }

@media (max-width: 1050px) {
  nav a:not(.nav-cta) { display: none; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 74px; }
  .hero-visual { min-height: 320px; }
  .hero-visual img { width: min(760px, 100%); }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:nth-child(2) { border-right: 0; }
  .service-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .price-layout { grid-template-columns: 1fr; }
  .condition-grid { grid-template-columns: 1fr 1fr; }
  .company { grid-template-columns: .8fr 1.2fr; }
  .company-copy { padding-left: 48px; }
  .inquiry { grid-template-columns: 1fr; gap: 46px; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-main > div:last-child { grid-column: 2; }
}

@media (max-width: 760px) {
  .nav-wrap, .hero-grid, .section, .footer-main, .footer-bottom { width: min(100% - 32px, 1220px); }
  .site-header { height: 74px; }
  .brand strong { font-size: 12px; }
  .brand small { display: none; }
  .nav-cta { padding: 10px 13px; font-size: 11px; }
  .hero { min-height: auto; }
  .hero-grid { padding: 64px 0 54px; }
  .hero h1 { font-size: 47px; }
  .hero-lead { font-size: 16px; }
  .hero-facts { flex-direction: column; margin-top: 38px; }
  .hero-facts div { padding: 14px 0; margin: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .hero-visual { min-height: 250px; }
  .hero-note { right: 0; bottom: -5px; min-width: 220px; }
  .trust-strip { justify-content: flex-start; overflow-x: auto; white-space: nowrap; }
  .section, .section-tint { padding-top: 78px; padding-bottom: 78px; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 38px; }
  .section-heading h2, .company-copy h2, .inquiry h2 { font-size: 42px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 285px; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card:last-child { border-bottom: 0; }
  .included-box { grid-template-columns: 1fr; gap: 32px; padding: 30px 24px; }
  .included-box ul { grid-template-columns: 1fr; }
  .calculator-columns, .condition-grid, .form-row { grid-template-columns: 1fr; }
  .calculator-result { align-items: flex-start; flex-direction: column; }
  .price-notice { grid-template-columns: 1fr; gap: 7px; }
  .steps article { grid-template-columns: 46px 1fr; }
  .steps article div { grid-template-columns: 1fr; gap: 8px; }
  .company { grid-template-columns: 1fr; }
  .company-image { min-height: 300px; }
  .company-copy { padding: 68px 24px; }
  .inquiry { padding-top: 78px; padding-bottom: 78px; }
  .quote-form { padding: 22px 18px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main > div:last-child { grid-column: auto; }
  .footer-bottom { padding: 20px 0; flex-direction: column; align-items: flex-start; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
