:root {
  --petrol: #006e7f;
  --petrol-dark: #064b58;
  --aqua: #00a8a8;
  --mint: #f3fbfa;
  --ink: #102a2d;
  --muted: #5f7377;
  --line: rgba(16, 42, 45, .12);
  --paper: #ffffff;
  --accent: #ffb020;
  --shadow: 0 24px 70px rgba(0, 51, 62, .16);
  color-scheme: light;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(255, 255, 255, .82);
  border-bottom: 1px solid rgba(255, 255, 255, .7);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--petrol), var(--aqua));
  font-weight: 800;
}

.brand strong {
  display: block;
  font-size: 18px;
  line-height: 1.05;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.top-nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
  font-weight: 700;
  color: var(--muted);
}

.top-nav a,
.header-call {
  text-decoration: none;
}

.header-call {
  border: 1px solid rgba(0, 110, 127, .2);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--petrol-dark);
  background: rgba(243, 251, 250, .82);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 112px clamp(20px, 6vw, 76px) 62px;
  isolation: isolate;
}

#rideScene {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  background: #eef9f8;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .9) 38%, rgba(255, 255, 255, .28) 72%, rgba(255, 255, 255, .08) 100%),
    linear-gradient(180deg, rgba(243, 251, 250, .92) 0%, rgba(243, 251, 250, .28) 48%, rgba(255, 255, 255, .96) 100%);
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--petrol);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  line-height: .98;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  font-size: clamp(48px, 7.4vw, 94px);
  font-weight: 800;
}

h2 {
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 800;
}

h3 {
  margin: 0 0 10px;
  line-height: 1.15;
  font-size: 21px;
}

.hero-copy {
  max-width: 610px;
  margin: 26px 0 0;
  color: #2c4b50;
  font-size: clamp(19px, 2.1vw, 25px);
  font-weight: 650;
}

.hero-actions,
.final-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 15px 22px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--petrol);
  box-shadow: 0 16px 36px rgba(0, 110, 127, .26);
}

.btn-secondary {
  color: var(--petrol-dark);
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(0, 110, 127, .18);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
  margin: 34px 0 0;
}

.hero-facts div {
  min-width: 0;
  border: 1px solid rgba(0, 110, 127, .12);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 12px 34px rgba(0, 51, 62, .08);
}

.hero-facts dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 3px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.operator-note {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.intent-band {
  background: var(--petrol-dark);
  color: #fff;
}

.band-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px clamp(20px, 5vw, 40px);
}

.band-inner p {
  margin: 0;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 800;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 116px) clamp(20px, 5vw, 40px);
}

.section.compact {
  padding-top: clamp(56px, 7vw, 84px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading h2 + p {
  margin-top: 18px;
}

.steps,
.service-grid,
.trust-list {
  display: grid;
  gap: 14px;
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps article,
.service-grid article,
.trust-list article,
.price-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(0, 51, 62, .07);
}

.steps article {
  padding: 24px;
}

.step-number {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--petrol-dark);
  background: #dff6f3;
  font-weight: 800;
}

.steps p,
.service-grid p,
.trust-list p,
.split p,
.area p,
.faq p {
  color: var(--muted);
  font-weight: 650;
}

.split,
.area,
.trust {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
}

.price-panel {
  position: relative;
  padding: clamp(24px, 5vw, 42px);
  background: linear-gradient(145deg, #f4fbfa, #ffffff);
}

.price-panel::before {
  content: "Festpreis";
  display: inline-flex;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 8px 12px;
  color: #332100;
  background: var(--accent);
  font-weight: 900;
}

.price-panel strong {
  display: block;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.02;
}

.price-panel a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--petrol);
  font-weight: 900;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid article {
  min-height: 230px;
  padding: 24px;
}

.service-grid span {
  display: block;
  margin-bottom: 54px;
  color: var(--aqua);
  font-weight: 900;
}

.area {
  max-width: none;
  background: var(--mint);
}

.area > * {
  max-width: 580px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.chips li {
  border: 1px solid rgba(0, 110, 127, .15);
  border-radius: 999px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, .82);
  color: var(--petrol-dark);
  font-weight: 800;
}

.trust-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-list article {
  padding: 22px;
}

.trust-list strong {
  display: block;
  font-size: 19px;
}

.faq {
  max-width: 940px;
}

details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 850;
}

.final-cta {
  display: grid;
  place-items: center;
  padding: clamp(70px, 10vw, 120px) 20px;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 110, 127, .98), rgba(0, 168, 168, .92));
}

.final-cta h2 {
  max-width: 900px;
  margin-bottom: 26px;
}

.final-cta .eyebrow {
  color: #d8fffa;
}

.final-cta .btn-primary {
  color: var(--petrol-dark);
  background: #fff;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr auto;
  gap: 26px;
  padding: 34px clamp(20px, 5vw, 48px) 110px;
  color: #d7eeee;
  background: #09292f;
}

.site-footer p,
.site-footer address {
  color: #b8d0d4;
  font-style: normal;
}

.site-footer nav {
  display: flex;
  gap: 14px;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
}

.legal-drawer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px clamp(20px, 5vw, 40px);
  border-top: 1px solid var(--line);
}

.legal-drawer h2 {
  font-size: 28px;
}

.legal-drawer p {
  color: var(--muted);
}

.mobile-call {
  position: fixed;
  z-index: 40;
  right: 16px;
  bottom: 16px;
  display: none;
  min-width: calc(100vw - 32px);
  justify-content: space-between;
  gap: 18px;
  border-radius: 999px;
  padding: 13px 18px;
  color: #fff;
  background: var(--petrol);
  box-shadow: 0 18px 44px rgba(0, 51, 62, .28);
  text-decoration: none;
}

.mobile-call span {
  font-weight: 700;
}

.mobile-call strong {
  font-weight: 900;
}

@media (max-width: 920px) {
  .top-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 102px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .92) 48%, rgba(255, 255, 255, .55) 100%);
  }

  .hero-facts,
  .steps,
  .service-grid,
  .trust-list,
  .split,
  .area,
  .trust,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-grid article {
    min-height: 0;
  }

  .service-grid span {
    margin-bottom: 20px;
  }

  .mobile-call {
    display: flex;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand small,
  .header-call {
    display: none;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }
}
