/* Renovierungspass Landing – v2 (GEQ visual language, discreet branding) */

@font-face {
  font-family: "Montserrat";
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  src: url("fonts/Montserrat-Variable-Latin.woff2") format("woff2");
}

:root {
  --WIH: 100vh;
  --font-size-default: 16px;
  --line-height-default: 1.5;
  --font-size-small: 14px;
  --line-height-small: 1.2;
  --font-size-smaller: 12px;
  --line-height-smaller: 14px;
  --font-size-h1-big: 9.8vw;
  --line-height-h1-big: 1.2;
  --font-size-h1: 6.8vw;
  --line-height-h1: 1.2;
  --font-size-h4: 5vw;
  --line-height-h4: 1.2;
  --color-default: #000000;
  --color-primary: #01abff;
  --color-primary-light: #eaf8ff;
  --color-secondary: #002a4f;
  --color-gradient-fallback: #01abff;
  --color-gradient: linear-gradient(135deg, #01abff 0%, #0262ff 100%);
  --color-gradient-hover: linear-gradient(135deg, #0262ff 0%, #0262ff 100%);
  --color-grey: #aaaaaa;
  --color-line: #dddddd;
  --color-bg: #fafafa;
  --font-family-default: "Montserrat", "Segoe UI", sans-serif;
  --font-family-headline: "Montserrat", "Segoe UI", sans-serif;
  --border-radius: 10px;
  --border-radius-button: 10px;
}

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

html {
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

html.menu-open {
  overflow: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family-default);
  font-size: var(--font-size-default);
  line-height: var(--line-height-default);
  font-weight: 400;
  color: var(--color-default);
  background: #ffffff;
  text-align: left;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  border: 0;
  object-fit: cover;
}

/* Brand wordmark: the real text stays in the DOM for copy, search and assistive tech. */
.geq-wordmark {
  position: relative;
  display: inline-block;
  width: 2.7em;
  height: 0.84em;
  margin: 0 0.08em;
  vertical-align: -0.13em;
  flex: 0 0 auto;
  line-height: 1;
  white-space: nowrap;
}

.geq-wordmark__text {
  color: transparent;
  -webkit-text-fill-color: transparent;
  user-select: text;
}

.geq-wordmark img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
}

a,
a:link,
a:visited {
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.5s;
  outline: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 3px;
}

p {
  margin: 0 0 30px;
}

p:last-child {
  margin-bottom: 0;
}

.h1 {
  font-family: var(--font-family-headline);
  font-size: var(--font-size-h1);
  line-height: var(--line-height-h1);
  color: var(--color-primary);
  font-weight: 700;
  margin: 0 0 50px;
}

h2.h1 {
  font-weight: 400;
}

.h1.big {
  font-size: var(--font-size-h1-big);
  line-height: var(--line-height-h1-big);
}

.h4 {
  font-family: var(--font-family-headline);
  font-size: var(--font-size-h4);
  line-height: var(--line-height-h4);
  color: var(--color-primary);
  font-weight: 600;
  margin: 0 0 30px;
}

.section {
  position: relative;
  margin-left: 7vw;
  margin-right: 7vw;
}

.color-primary {
  color: var(--color-primary);
}

.color-secondary {
  color: var(--color-secondary);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 10000;
  background: #fff;
  color: var(--color-primary);
  padding: 0.65rem 1rem;
  font-weight: 600;
  border-radius: var(--border-radius);
}

.skip-link:focus {
  top: 1rem;
}

/* Buttons – GEQ gradient system */
a.button,
button.button {
  --color-gradient-button-color-1: #01abff;
  --color-gradient-button-color-2: #0262ff;
  --color-gradient-button: linear-gradient(
    135deg,
    var(--color-gradient-button-color-1) 0%,
    var(--color-gradient-button-color-2) 100%
  );
  font-family: var(--font-family-default);
  font-weight: 600;
  font-size: var(--font-size-small);
  line-height: var(--line-height-small);
  color: #ffffff;
  background: var(--color-gradient-fallback);
  background: var(--color-gradient-button);
  background-size: 100% 100%;
  cursor: pointer;
  text-align: center;
  padding: 9px 15px;
  border: 0 !important;
  border-radius: var(--border-radius-button);
  text-decoration: none;
  display: inline-block;
  transition: background 0.5s ease, color 0.5s;
  -webkit-appearance: none;
  margin: 0;
  outline: none;
  position: relative;
  overflow: hidden;
  z-index: 19;
}

a.button.white,
button.button.white {
  background: #ffffff;
  color: var(--color-primary);
}

a.button.white.light,
button.button.white.light {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff !important;
}

a.button.light,
button.button.light {
  background: transparent;
  border: 1px solid var(--color-primary) !important;
  color: var(--color-primary);
}

@media (hover: hover) {
  a.button:hover,
  button.button:hover {
    background-size: 200% 100% !important;
  }

  a.button.white:hover,
  button.button.white:hover {
    background-color: var(--color-secondary) !important;
    color: #ffffff !important;
  }

  a.button.white.light:hover,
  button.button.white.light:hover {
    background-color: #ffffff !important;
    color: var(--color-primary) !important;
  }

  a.button.light:hover,
  button.button.light:hover {
    background-color: var(--color-primary) !important;
    color: #ffffff !important;
  }
}

.button-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1999;
  margin-top: 7vw;
  padding-top: 0;
  padding-bottom: 0;
  background-color: transparent;
  box-shadow: none;
  pointer-events: none;
  transition:
    background-color 0.45s ease,
    box-shadow 0.45s ease,
    margin-top 0.45s ease,
    padding 0.45s ease;
}

#header > .section {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  pointer-events: none;
}

#header > .section > * {
  pointer-events: auto;
}

#logo {
  margin-right: auto;
  height: 40px;
  width: auto;
  max-width: min(220px, 56vw);
  z-index: 109;
  position: relative;
  display: flex;
  align-items: center;
  transition: height 0.5s, max-width 0.5s;
  text-decoration: none;
  background: transparent;
}

#logo > img {
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

#logo .geq-wordmark--header {
  width: 128px;
  height: 40px;
  margin: 0;
  vertical-align: middle;
}

/* After hero: compact navy bar so the white logo stays readable on light sections */
#header.color {
  margin-top: 0;
  padding-top: 14px;
  padding-bottom: 14px;
  background-color: var(--color-secondary);
  box-shadow: 0 8px 28px rgba(0, 42, 79, 0.22);
  pointer-events: auto;
}

#region-header {
  background-color: var(--color-primary);
  border-radius: var(--border-radius);
  align-self: flex-start;
  margin-right: 10px;
  display: none;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.2);
  padding: 0 30px;
}

#region-header ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

#region-header a {
  color: #ffffff;
  font-size: var(--font-size-smaller);
  line-height: 30px;
  font-weight: 600;
}

#menu-icon {
  display: block;
  z-index: 1019;
  cursor: pointer;
  position: relative;
  height: 30px;
  width: 30px;
  background-color: var(--color-primary);
  border-radius: var(--border-radius);
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.2);
  border: 0;
  padding: 0;
}

#menu-icon .line {
  width: 20px;
  height: 3px;
  position: absolute;
  left: 5px;
  top: 10px;
  background-color: #ffffff;
  transition: transform 0.3s, top 0s, bottom 0s;
  border-radius: 3px;
}

#menu-icon .line.second {
  top: auto;
  bottom: 10px;
}

#menu-icon.is-active .line.first {
  transform: rotate(45deg);
  top: 13.5px;
}

#menu-icon.is-active .line.second {
  transform: rotate(-45deg);
  top: 13.5px;
  bottom: auto;
}

#navigation {
  height: 100%;
  width: 100%;
  left: 100%;
  top: 0;
  position: fixed;
  z-index: 999;
  background-color: var(--color-secondary);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

html.menu-open #navigation {
  transform: translateX(-100%);
}

#navigation .nav-inner {
  min-height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
}

#navigation .main {
  padding: 100px 7vw 50px;
}

#navigation .main ul {
  margin: 0 0 50px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#navigation .main a {
  font-size: var(--font-size-h1);
  line-height: var(--line-height-h1);
  color: var(--color-primary);
  font-weight: 400;
}

#navigation .main a:hover,
#navigation .main a.is-active {
  color: #ffffff;
}

#navigation .nav-site-name {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--font-size-small);
  font-weight: 500;
}

#navigation .secondary {
  background-color: var(--color-primary);
  padding: 50px 7vw;
}

#navigation .secondary .label {
  color: #ffffff;
  font-size: var(--font-size-h1);
  line-height: var(--line-height-h1);
  margin-bottom: 30px;
}

#header.color #menu-icon {
  background-color: #ffffff;
}

#header.color #menu-icon .line {
  background-color: var(--color-primary);
}

#header.color #region-header {
  background-color: #ffffff;
}

#header.color #region-header a {
  color: var(--color-primary);
}

/* Hero / Einleitung */
#einleitung {
  height: 100vh;
  height: var(--WIH);
  min-height: 500px;
  position: relative;
}

#einleitung .image {
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
}

#einleitung .image::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 22, 42, 0.58) 0%,
    rgba(0, 22, 42, 0.36) 42%,
    rgba(0, 22, 42, 0.06) 74%,
    rgba(0, 22, 42, 0.12) 100%
  );
  position: absolute;
  inset: 0;
  z-index: 1;
}

#einleitung .image picture,
#einleitung .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

#einleitung .section {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 100px;
  z-index: 10;
}

#einleitung .hero-kicker {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--font-size-small);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

#einleitung .h1 {
  color: #ffffff;
  margin-bottom: 30px;
}

#einleitung .text {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 30px;
}

#einleitung .intro-bar-wrapper {
  position: absolute;
  left: 7vw;
  bottom: 0;
}

#einleitung .intro-bar {
  height: 60px;
  width: 1px;
  position: relative;
  overflow: hidden;
}

#einleitung .intro-bar .bar-inner {
  width: 1px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  animation: line 1.5s infinite ease;
}

@keyframes line {
  0% {
    top: -100%;
    opacity: 0;
  }
  1% {
    top: -100%;
    opacity: 1;
  }
  99% {
    top: 100%;
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

/* Intro */
#intro {
  padding: 100px 0;
}

#intro .text {
  max-width: 48rem;
}

#intro .text a {
  font-weight: 600;
}

#intro .text ul {
  list-style: none;
  margin: 0 0 1.4em;
  padding: 0;
  max-width: 40rem;
}

#intro .text ul li {
  position: relative;
  padding: 0 0 0 1.6em;
  margin-bottom: 0.5em;
}

#intro .text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.lead-copy {
  margin: 0 0 50px;
  max-width: 40rem;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--color-primary);
  font-size: var(--font-size-smaller);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Nutzen (general benefits) */
#nutzen {
  padding: 100px 0;
  background-color: var(--color-secondary);
  color: #ffffff;
}

#nutzen .h1 {
  color: var(--color-primary);
}

#nutzen .vorteile {
  display: grid;
  grid-template-columns: 1fr;
  gap: 70px;
}

#nutzen .vorteil .titel {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

#nutzen .vorteil .icon {
  flex-shrink: 0;
  height: 30px;
  width: 30px;
  border-radius: 8px;
  background: var(--color-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
}

#nutzen .vorteil .h4 {
  margin-bottom: 0;
}

#nutzen .vorteil .text {
  color: rgba(255, 255, 255, 0.9);
}

/* Workflow comparison */
#workflow {
  padding: 100px 0;
  background: #ffffff;
}

#workflow .h1 {
  max-width: 18ch;
  margin-bottom: 28px;
}

#workflow .workflow-lead {
  max-width: 46rem;
  margin: 0 0 50px;
  color: var(--color-secondary);
}

#workflow .workflow-foundation {
  margin-bottom: 18px;
  padding: 22px 24px;
  border-radius: var(--border-radius);
  background: var(--color-secondary);
  color: #ffffff;
  display: grid;
  gap: 4px;
}

#workflow .workflow-foundation p {
  margin: 0;
  color: var(--color-primary);
  font-size: var(--font-size-smaller);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

#workflow .workflow-foundation strong {
  font-size: 1.15rem;
  font-weight: 600;
}

#workflow .workflow-foundation span {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-small);
}

#workflow .workflow-column-heads {
  display: none;
}

#workflow .workflow-stages {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: workflow-stage;
  display: grid;
  gap: 18px;
}

#workflow .workflow-stage {
  counter-increment: workflow-stage;
  display: grid;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-line);
}

#workflow .workflow-stage-title {
  position: relative;
  min-height: 34px;
  padding: 5px 0 0 44px;
  display: flex;
  align-items: flex-start;
}

#workflow .workflow-stage-title::before {
  content: counter(workflow-stage, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--color-secondary);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: var(--font-size-smaller);
  font-weight: 700;
}

#workflow .workflow-stage-title h3 {
  margin: 0;
  color: var(--color-secondary);
  font-size: 1.1rem;
  line-height: 1.25;
  font-weight: 600;
}

#workflow .workflow-path {
  padding: 18px 20px;
  display: grid;
  gap: 5px;
  background: var(--color-bg);
}

#workflow .workflow-path--geq {
  border-left: 3px solid var(--color-primary);
  background: var(--color-primary-light);
}

#workflow .workflow-mobile-label {
  margin: 0 0 5px;
  color: var(--color-grey);
  font-size: var(--font-size-smaller);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

#workflow .workflow-path-stage {
  display: none;
}

#workflow .workflow-path--geq .workflow-mobile-label {
  color: var(--color-primary);
}

#workflow .workflow-path strong {
  color: var(--color-secondary);
  font-weight: 600;
}

#workflow .workflow-path span {
  color: #4d5963;
  font-size: var(--font-size-small);
}

#workflow .workflow-result {
  margin-top: 24px;
  padding: 22px 24px;
  border-radius: var(--border-radius);
  background: var(--color-gradient-fallback);
  background: var(--color-gradient);
  color: #ffffff;
  display: grid;
  gap: 5px;
}

#workflow .workflow-result span {
  font-size: var(--font-size-smaller);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

#workflow .workflow-result strong {
  max-width: 48rem;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  line-height: 1.3;
  font-weight: 600;
}

/* Features / Inhalt */
#inhalt {
  padding: 100px 0;
  background-color: var(--color-primary-light);
}

#inhalt .feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

#inhalt .feature {
  display: grid;
  gap: 10px;
}

#inhalt .feature-num {
  color: var(--color-primary);
  font-weight: 600;
  font-size: var(--font-size-small);
}

#inhalt .feature h3 {
  margin: 0;
  color: var(--color-secondary);
  font-size: var(--font-size-h4);
  line-height: var(--line-height-h4);
  font-weight: 600;
}

#inhalt .feature p {
  margin: 0;
}

/* Timeline */
#zeitplan {
  padding: 100px 0;
}

#zeitplan .timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 28px;
}

#zeitplan .timeline li {
  display: grid;
  gap: 8px;
  padding-left: 28px;
  position: relative;
}

#zeitplan .timeline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-primary);
}

#zeitplan .timeline time {
  font-weight: 600;
  color: var(--color-primary);
}

#zeitplan .timeline p {
  margin: 0;
}

/* Videos */
#videos {
  padding: 100px 0;
  background: var(--color-bg);
}

#videos .h1 {
  margin-bottom: 40px;
}

#videos .video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

#videos .video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--border-radius);
  overflow: hidden;
  background: var(--color-secondary);
}

#videos .video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Dual audience paths */
#wege {
  padding: 100px 0;
}

#wege .path-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

#wege .path-card {
  border-radius: var(--border-radius);
  padding: 28px 24px;
  background: var(--color-primary-light);
  border: 1px solid rgba(1, 171, 255, 0.18);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#wege .path-card--alt {
  background: #ffffff;
  border-color: var(--color-line);
}

#wege .path-card--cta {
  background: var(--color-gradient-fallback);
  background: var(--color-gradient);
  border-color: transparent;
}

#wege .path-label {
  margin: 0;
  font-size: var(--font-size-smaller);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-primary);
}

#wege .path-card .h4 {
  margin: 0;
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  color: var(--color-secondary);
}

#wege .path-card > p {
  margin: 0;
  color: var(--color-default);
}

#wege .path-points {
  margin: 0;
  padding: 0 0 0 1.1rem;
  display: grid;
  gap: 6px;
  color: var(--color-secondary);
  font-size: var(--font-size-small);
}

#wege .path-card > p.pricing-inline {
  color: var(--color-grey);
  font-size: var(--font-size-smaller);
  line-height: var(--line-height-small);
}

#wege .path-card .button-wrapper {
  margin-top: auto;
  padding-top: 8px;
}

#wege .path-card .button {
  width: 100%;
  text-align: center;
}

#wege .menu-path {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: var(--border-radius-button);
  background: var(--color-primary-light);
  color: var(--color-secondary);
  font-size: var(--font-size-small);
  font-weight: 600;
}

#wege .menu-path span:not(:last-child)::after {
  content: "›";
  margin-left: 8px;
  color: var(--color-primary);
}

#wege .path-card.path-card--cta .path-label,
#wege .path-card.path-card--cta .h4,
#wege .path-card.path-card--cta > p,
#wege .path-card.path-card--cta .path-points {
  color: #ffffff;
}

#wege .path-card.path-card--cta .path-points li::marker {
  color: rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 767px) {
  #menu-icon {
    width: 44px;
    height: 44px;
  }

  #menu-icon .line {
    width: 22px;
    left: 11px;
    top: 15px;
  }

  #menu-icon .line.second {
    bottom: 15px;
  }

  #menu-icon.is-active .line.first,
  #menu-icon.is-active .line.second {
    top: 20.5px;
  }

  #navigation .main ul {
    gap: 0;
  }

  #navigation .main a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  #workflow .workflow-stages {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  #workflow .workflow-stage {
    display: contents;
    opacity: 1 !important;
    transform: none !important;
  }

  #workflow .workflow-stage-title {
    display: none;
  }

  #workflow .workflow-path--manual {
    order: 1;
  }

  #workflow .workflow-path--geq {
    order: 2;
  }

  #workflow .workflow-mobile-label {
    display: none;
  }

  #workflow .workflow-stage:first-child .workflow-mobile-label {
    display: block;
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.2;
  }

  #workflow .workflow-stage:first-child .workflow-path--geq {
    margin-top: 28px;
  }

  #workflow .workflow-path-stage {
    display: block;
    color: var(--color-grey);
    font-size: var(--font-size-smaller);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  #workflow .workflow-path--geq .workflow-path-stage {
    color: var(--color-primary);
  }

  a.button,
  button.button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  #einleitung {
    min-height: 640px;
  }

  #einleitung .h1.big {
    font-size: clamp(1.75rem, 8.4vw, 2.2rem);
  }

  #einleitung .hero-kicker {
    font-size: var(--font-size-smaller);
  }

  #einleitung .button-wrapper .button {
    width: 100%;
    text-align: center;
  }

  #wege .path-card {
    padding: 24px 20px;
  }

  #cta .h1 {
    font-size: clamp(1.75rem, 8vw, 2.4rem);
  }
}

/* Coming soon banner */
#coming-soon {
  padding: 0 0 100px;
}

#coming-soon .banner {
  background: var(--color-gradient-fallback);
  background: var(--color-gradient);
  border-radius: var(--border-radius);
  padding: 40px 20px 20px;
  position: relative;
}

#coming-soon .banner .label {
  position: absolute;
  bottom: 100%;
  left: 20px;
  background-color: var(--color-primary-light);
  padding: 5px 15px;
  font-size: var(--font-size-smaller);
  line-height: var(--line-height-smaller);
  font-weight: 600;
  color: var(--color-primary);
  border-top-right-radius: var(--border-radius);
  border-top-left-radius: var(--border-radius);
}

#coming-soon .banner .h1 {
  color: #ffffff;
  margin: 20px 0 30px;
}

#coming-soon .banner .text {
  color: #ffffff;
  margin-bottom: 30px;
  font-weight: 500;
}

#coming-soon .banner .button-wrapper {
  margin-bottom: 20px;
}

/* CTA + form */
#cta {
  padding: 100px 0;
  background: var(--color-gradient-fallback);
  background: var(--color-gradient);
}

#cta .h1 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
}

#cta .cta-sub {
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 40px;
  font-size: var(--font-size-small);
}

#cta .cta-sub a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: underline;
}

#cta .cta-grid {
  display: grid;
  gap: 30px;
  max-width: 560px;
  margin: 0 auto;
}

#cta .lead-form {
  background: #ffffff;
  border-radius: var(--border-radius);
  padding: 28px 24px;
  display: grid;
  gap: 16px;
}

#cta .field {
  display: grid;
  gap: 6px;
}

#cta label {
  font-size: var(--font-size-small);
  font-weight: 600;
  color: var(--color-secondary);
}

#cta input,
#cta select {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid var(--color-line);
  border-radius: var(--border-radius-button);
  font: inherit;
  color: var(--color-default);
  background: #fff;
}

#cta input:focus,
#cta select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(1, 171, 255, 0.2);
}

#cta .field-check label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  cursor: pointer;
}

#cta .field-check input {
  width: 18px;
  height: 18px;
  min-height: 0;
  accent-color: var(--color-primary);
}

#cta .form-note {
  margin: 0;
  font-size: var(--font-size-smaller);
  color: var(--color-grey);
}

#cta .form-note.is-success {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: var(--font-size-small);
}

#cta .form-note.is-error {
  color: #d43f3f;
}

#cta .lead-form.is-success .field,
#cta .lead-form.is-success .button {
  display: none;
}

#cta button.button {
  width: 100%;
}

/* Footer */
#footer {
  z-index: 999;
  position: relative;
  padding: 28px 0;
  background: #ffffff;
  border-top: 1px solid var(--color-line);
}

#footer .footer-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#footer p {
  margin: 0;
  font-size: var(--font-size-small);
  font-weight: 600;
  color: var(--color-secondary);
}

#footer nav {
  display: flex;
  gap: 18px;
}

#footer a {
  font-size: var(--font-size-small);
  font-weight: 600;
  color: var(--color-secondary);
}

#footer a:hover {
  color: var(--color-primary);
}

/* Slide-in (GEQ .slidein) */
.slidein {
  opacity: 0;
  transition: opacity 1s, transform 0.5s;
  transform: translateY(20px);
}

.slidein.inview {
  opacity: 1;
  transform: translateY(0);
}

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

  .slidein,
  #einleitung .intro-bar .bar-inner {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Breakpoints mirroring GEQ */
@media screen and (min-width: 768px) {
  :root {
    --font-size-h1-big: 7.5vw;
    --font-size-h1: 5.1vw;
    --font-size-h4: 3.4vw;
  }

  a.button,
  button.button {
    font-size: var(--font-size-default);
    line-height: var(--line-height-default);
    padding: 10px 40px;
  }

  #header {
    margin-top: 30px;
  }

  #einleitung .text {
    margin-bottom: 100px;
    width: 70%;
  }

  #einleitung .button-wrapper {
    flex-direction: row;
    gap: 30px;
  }

  #wege .path-card .button {
    width: auto;
  }

  #coming-soon .banner {
    padding: 50px 30px 30px;
  }

  #coming-soon .banner .label {
    left: 30px;
    font-size: var(--font-size-small);
  }

  #footer .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media screen and (min-width: 1024px) {
  :root {
    --font-size-h1-big: 5.1vw;
    --font-size-h1: 3.4vw;
    --font-size-h4: 26px;
  }

  #region-header {
    display: block;
  }

  #region-header a {
    line-height: 40px;
    font-size: var(--font-size-small);
  }

  #navigation .nav-inner {
    grid-template-columns: 3fr 2fr;
    grid-template-rows: 1fr;
  }

  #navigation .main {
    padding: 200px 50px 100px 7vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #navigation .secondary {
    padding: 100px 7vw 100px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #einleitung {
    min-height: 600px;
  }

  #einleitung .h1 {
    padding-right: 30%;
    margin-bottom: 50px;
  }

  #einleitung .text {
    width: 50%;
  }

  #einleitung .intro-bar {
    height: 100px;
  }

  #nutzen .vorteile {
    grid-template-columns: 1fr 1fr;
    column-gap: 50px;
  }

  #workflow .workflow-column-heads {
    display: grid;
    grid-template-columns: minmax(170px, 0.7fr) repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 8px 0 12px;
    color: var(--color-grey);
    font-size: var(--font-size-smaller);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  #workflow .workflow-column-heads span:last-child {
    color: var(--color-primary);
  }

  #workflow .workflow-stages {
    gap: 0;
    border-top: 1px solid var(--color-line);
  }

  #workflow .workflow-stage {
    grid-template-columns: minmax(170px, 0.7fr) repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
  }

  #workflow .workflow-stage-title {
    padding: 22px 12px 22px 44px;
  }

  #workflow .workflow-stage-title::before {
    top: 18px;
  }

  #workflow .workflow-path {
    padding: 22px 20px;
    align-content: start;
  }

  #workflow .workflow-mobile-label {
    display: none;
  }

  #inhalt .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 50px;
  }

  #wege .path-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  #videos .video-grid {
    grid-template-columns: 1fr 1fr;
  }

}

@media screen and (min-width: 1248px) {
  :root {
    --font-size-default: 18px;
    --font-size-small: 16px;
  }

  a.button,
  button.button {
    padding: 10px 60px;
  }

  #logo {
    height: 48px;
    max-width: min(280px, 42vw);
  }

  #menu-icon {
    height: 40px;
    width: 40px;
  }

  #menu-icon .line {
    width: 26px;
    top: 15px;
    left: 7px;
  }

  #menu-icon .line.second {
    bottom: 15px;
  }

  #menu-icon.is-active .line.first,
  #menu-icon.is-active .line.second {
    top: 18px;
  }

  #intro,
  #nutzen,
  #workflow,
  #inhalt,
  #zeitplan,
  #wege {
    padding-top: 150px;
    padding-bottom: 150px;
  }

  #einleitung .section {
    padding: 200px 0 150px;
  }

  #cta {
    padding: 150px 0;
  }

  #coming-soon {
    padding-bottom: 150px;
  }

  #inhalt .feature-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (min-width: 1440px) {
  :root {
    --font-size-h4: 30px;
  }

  .h1 {
    margin-bottom: 70px;
  }

  #header {
    margin-top: 50px;
  }

  #region-header {
    padding: 0 40px;
  }

  #region-header ul {
    gap: 40px;
  }
}

@media screen and (min-width: 1600px) {
  :root {
    --font-size-default: 20px;
  }

  #header {
    margin-top: 70px;
  }

  #logo {
    height: 56px;
    max-width: 320px;
  }

  #menu-icon {
    height: 50px;
    width: 50px;
  }

  #menu-icon .line {
    width: 30px;
    left: 10px;
    top: 19px;
  }

  #menu-icon .line.second {
    bottom: 19px;
  }

  #menu-icon.is-active .line.first,
  #menu-icon.is-active .line.second {
    top: 23px;
  }

  #region-header a {
    line-height: 50px;
  }
}

@media screen and (min-width: 1920px) {
  :root {
    --font-size-h1-big: 99px;
    --font-size-h1: 66px;
    --font-size-h4: 33px;
  }

  .section {
    width: 1720px;
    margin-left: auto;
    margin-right: auto;
  }

  #einleitung .intro-bar-wrapper {
    left: calc((100vw - 1720px) / 2);
  }
}
