:root {
  --red: #ff2b4a;
  --red-dark: #c4001e;
  --ink: #17171b;
  --muted: #6b7280;
  --paper: #f8f8f6;
  --canvas: #edeff2;
  --white: #ffffff;
  --line: #d7d9dd;
  --success: #188b52;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

img {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(23, 23, 27, 0.1);
  background: rgba(237, 239, 242, 0.94);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(calc(100% - 40px), var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.brand-mark {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  overflow: hidden;
  font-size: 0;
  background:
    linear-gradient(var(--white), var(--white)) center / 10px 3px no-repeat,
    linear-gradient(var(--white), var(--white)) center / 3px 10px no-repeat,
    var(--red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--red-dark);
}

.language-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.language-switch a {
  min-width: 46px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-align: center;
  text-decoration: none;
}

.language-switch a:hover,
.language-switch a:focus-visible {
  border-color: var(--red);
  color: var(--red-dark);
}

.shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.hero {
  min-height: 690px;
  padding: 88px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.9fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.eyebrow,
.section-label,
.legal-kicker {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(52px, 7.4vw, 104px);
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.hero-copy {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--ink);
  border-radius: 9px;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.route-card {
  position: relative;
  min-height: 480px;
  padding: 32px;
  overflow: hidden;
  color: var(--white);
  background-color: #24252a;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 58px 58px;
  border-radius: 28px;
  border-left: 10px solid var(--red);
}

.route-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 420px;
  right: -80px;
  bottom: -170px;
  border: 7px solid var(--red);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-35deg);
}

.route-card::after {
  content: "";
  position: absolute;
  top: 118px;
  right: 70px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--red);
}

.route-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.route-card h2 {
  max-width: 350px;
  margin: 150px 0 10px;
  font-size: clamp(38px, 5vw, 60px);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.route-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.route-pill {
  position: absolute;
  left: 32px;
  bottom: 32px;
  padding: 12px 15px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.stats-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat {
  padding: 30px 24px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  font-size: clamp(26px, 4vw, 42px);
  letter-spacing: -0.04em;
}

.stat span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section {
  padding: 110px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}

.section h2 {
  margin: 0;
  font-size: clamp(38px, 6vw, 74px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.section-intro {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.feature-list {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.feature {
  min-height: 126px;
  padding: 28px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid var(--line);
}

.feature:last-child {
  border-bottom: 0;
}

.feature-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: 12px;
  font-weight: 900;
}

.feature h3 {
  margin: 0 0 4px;
  font-size: 20px;
}

.feature p {
  margin: 0;
  color: var(--muted);
}

.feature-arrow {
  color: var(--red);
  font-size: 26px;
}

.language-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.language-board span {
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  font-weight: 750;
}

.cta {
  margin-bottom: 100px;
  padding: clamp(34px, 6vw, 70px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  border-radius: 18px;
  color: var(--white);
  background: var(--ink);
}

.cta h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.cta p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 30px;
}

.footer-copy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 10px 28px;
  font-size: 13px;
  font-weight: 700;
}

.legal-hero {
  padding: 86px 0 54px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(48px, 8vw, 94px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.legal-summary {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.legal-layout {
  padding: 64px 0 100px;
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: 70px;
}

.legal-toc {
  position: sticky;
  top: 110px;
  align-self: start;
  display: grid;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
}

.legal-toc strong {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-toc a {
  text-decoration: none;
}

.legal-content section {
  padding: 0 0 38px;
  margin: 0 0 38px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 110px;
}

.legal-content section:last-child {
  border-bottom: 0;
}

.language-panel {
  display: none;
}

.language-panel#en {
  display: block;
}

.language-panel:target {
  display: block;
}

#de:target ~ #en,
#fr:target ~ #en,
#it:target ~ #en {
  display: none;
}

.legal-content h2 {
  margin: 0 0 14px;
  font-size: 25px;
  letter-spacing: -0.025em;
}

.legal-content h3 {
  margin: 26px 0 8px;
  font-size: 17px;
}

.legal-content p,
.legal-content li {
  color: #3f424a;
}

.legal-content ul {
  padding-left: 22px;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-note {
  padding: 18px 20px;
  border-left: 4px solid var(--red);
  background: var(--white);
}

.contact-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

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

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.faq-item h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

@media (max-width: 860px) {
  .nav {
    min-height: 68px;
  }

  .nav-links a:not(.nav-priority) {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 64px;
  }

  .route-card {
    min-height: 420px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .legal-toc {
    position: static;
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 32px;
    border-bottom: 1px solid var(--line);
  }

  .legal-toc strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .shell,
  .nav {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand {
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    padding: 52px 0 64px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 70px);
  }

  .route-card {
    min-height: 390px;
    padding: 24px;
    border-radius: 20px;
  }

  .route-card h2 {
    margin-top: 125px;
  }

  .route-pill {
    left: 24px;
    bottom: 24px;
  }

  .stats-strip,
  .language-board {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 76px 0;
  }

  .feature {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 22px 18px;
  }

  .feature-arrow {
    display: none;
  }

  .cta {
    grid-template-columns: 1fr;
    margin-bottom: 70px;
  }

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

  .footer-links {
    grid-template-columns: 1fr;
  }

  .legal-hero {
    padding-top: 56px;
  }

  .legal-layout {
    padding-top: 42px;
  }

  .legal-toc {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .legal-toc,
  .button {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .legal-layout {
    display: block;
    padding-top: 30px;
  }
}
