:root {
  --bg: #08090c;
  --bg-elevated: #101216;
  --bg-card: #14171c;
  --bg-alt: #0c0e12;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(109, 255, 176, 0.28);
  --text: #f4f6f8;
  --muted: #c2c8d0;
  --accent: #6dffb0;
  --accent-strong: #3ee08a;
  --accent-dim: rgba(109, 255, 176, 0.1);
  --accent-glow: rgba(109, 255, 176, 0.22);
  --header-h: 4.7rem;
  --radius: 1rem;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --space: 1.15rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.1rem);
  max-width: 100%;
  overflow-x: hidden;
  overflow-wrap: anywhere;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  max-width: 100%;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #b9ffd9;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  padding: 0.6rem 0.9rem;
  background: var(--accent);
  color: #04140c;
  font-weight: 700;
  border-radius: 0.5rem;
}

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
  min-width: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  max-height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: transparent;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(8, 9, 12, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  pointer-events: none;
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
}

.site-header.is-scrolled::before {
  background: rgba(8, 9, 12, 0.92);
}

.header-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 0.75rem;
}

.logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  gap: 0.7rem;
  min-width: 0;
  color: var(--text);
  text-decoration: none;
}

.logo:hover {
  color: var(--text);
}

.logo-img {
  width: 3.35rem;
  height: 3.35rem;
  flex-shrink: 0;
  object-fit: contain;
  background: #050505;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(109, 255, 176, 0.18), 0 0 16px rgba(109, 255, 176, 0.12);
}

.logo:hover .logo-img {
  box-shadow: 0 0 0 1px rgba(109, 255, 176, 0.4), 0 0 22px rgba(109, 255, 176, 0.22);
}

.logo-text {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.4rem;
  min-width: 0;
  letter-spacing: 0.08em;
}

.logo-name {
  font-weight: 800;
  font-size: 1.05rem;
}

.logo-suffix {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 52;
  width: 2.6rem;
  height: 2.6rem;
  flex-shrink: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 0.7rem;
  background: var(--bg-elevated);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle-bar {
  display: block;
  width: 1.05rem;
  height: 2px;
  background: var(--text);
  border-radius: 99px;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.15rem;
  position: sticky;
  top: 0;
  z-index: 41;
  width: min(1120px, calc(100% - 2rem));
  height: var(--header-h);
  margin: calc(var(--header-h) * -1) auto 0;
  pointer-events: none;
  background: transparent;
}

.site-nav a {
  position: relative;
  z-index: 2;
  color: var(--text);
  pointer-events: auto;
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--accent);
}

.nav-cta {
  padding: 0.55rem 1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--accent);
  color: #062013 !important;
  font-weight: 700;
  box-shadow: 0 8px 22px var(--accent-glow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  color: #04140c !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px var(--accent-glow);
}

.nav-overlay {
  display: none;
  pointer-events: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.8rem 0 5.2rem;
  background:
    radial-gradient(ellipse 70% 55% at 80% -10%, rgba(109, 255, 176, 0.12), transparent 55%),
    linear-gradient(180deg, #0b0d11 0%, var(--bg) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(109, 255, 176, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 255, 176, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse at 50% 20%, black 12%, transparent 72%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 28rem;
  height: 28rem;
  right: -6rem;
  top: -8rem;
  background: radial-gradient(circle, var(--accent-glow), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(14rem, 0.85fr);
  gap: 2.4rem 2rem;
  align-items: center;
}

.hero-copy {
  max-width: 40rem;
}

.hero-brand {
  position: relative;
  display: grid;
  place-items: center;
  justify-self: end;
  width: min(22rem, 100%);
}

.hero-brand::before {
  content: "";
  position: absolute;
  width: 72%;
  height: 72%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 255, 176, 0.28), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}

.hero-logo {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 50%;
  background: #050505;
  box-shadow: 0 0 0 1px rgba(109, 255, 176, 0.16), 0 20px 50px rgba(0, 0, 0, 0.35);
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.2;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}

h1 {
  margin: 0 0 1.1rem;
  font-size: clamp(2.15rem, 6vw, 4rem);
  font-weight: 700;
}

h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.7rem, 3.4vw, 2.45rem);
}

h3 {
  margin: 0 0 0.55rem;
  font-size: 1.18rem;
}

.lead,
.section-intro {
  color: var(--muted);
  max-width: 44rem;
}

.hero-audience {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: 1.14rem;
  line-height: 1.7;
}

.lead {
  margin: 0 0 1.8rem;
  font-size: 1.08rem;
}

.section-intro {
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  min-height: 3.05rem;
  min-width: min(12.5rem, 100%);
  max-width: 100%;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #062013;
  box-shadow: 0 0 0 1px rgba(109, 255, 176, 0.3), 0 10px 30px var(--accent-glow);
}

.btn-primary:hover {
  color: #04140c;
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(109, 255, 176, 0.45), 0 16px 36px var(--accent-glow);
}

.btn-secondary {
  border: 1px solid var(--border-strong);
  background: var(--accent-dim);
  color: var(--accent);
  box-shadow: 0 0 0 1px rgba(109, 255, 176, 0.08);
}

.btn-secondary:hover {
  color: #b9ffd9;
  transform: translateY(-2px);
  border-color: var(--accent);
  background: rgba(109, 255, 176, 0.16);
}

.btn-ghost {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border-strong);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-meta li {
  position: relative;
  padding-left: 0.95rem;
}

.hero-meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  pointer-events: none;
}

.section[id],
.hero {
  scroll-margin-top: calc(var(--header-h) + 0.85rem);
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background:
    linear-gradient(180deg, transparent, rgba(109, 255, 176, 0.035), transparent),
    var(--bg-alt);
  border-block: 1px solid var(--border);
}

.section-head {
  margin-bottom: 2.2rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.card {
  min-width: 0;
  padding: 1.45rem 1.35rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 40%), var(--bg-card);
  box-shadow: var(--shadow);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4), 0 0 24px rgba(109, 255, 176, 0.08);
}

.card-icon {
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  margin-bottom: 0.95rem;
  border: 1px solid var(--border-strong);
  border-radius: 0.75rem;
  background: var(--accent-dim);
  color: var(--accent);
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.card-soon {
  opacity: 0.9;
  background: repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 10px,
      rgba(109, 255, 176, 0.015) 10px,
      rgba(109, 255, 176, 0.015) 12px
    ),
    var(--bg-card);
}

.card-soon:hover {
  transform: none;
}

.badge {
  display: inline-block;
  padding: 0.28rem 0.6rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(8, 9, 12, 0.6);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 1.6rem;
  align-items: start;
}

.about-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.about-panel {
  padding: 1.3rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: 0 0 40px rgba(109, 255, 176, 0.05);
}

.about-kicker {
  margin: 0 0 1rem;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-list li {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--border);
}

.about-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.about-list span {
  color: var(--muted);
}

.about-list strong {
  min-width: 0;
  text-align: right;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.process-step {
  position: relative;
  min-width: 0;
  padding: 1.35rem 1.15rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2.05rem;
  right: -0.65rem;
  z-index: 1;
  width: 1.3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  pointer-events: none;
}

.process-step:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.process-num {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.process-step h3 {
  margin-bottom: 0.45rem;
  font-size: 1.08rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

a,
.btn,
.nav-cta,
.nav-toggle,
.faq-trigger {
  touch-action: manipulation;
  cursor: pointer;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover,
.faq-item.is-open {
  border-color: var(--border-strong);
}

.faq-item.is-open {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 820px;
  position: relative;
  z-index: 1;
}

.faq-trigger {
  display: block;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 1.05rem 2.4rem 1.05rem 1.15rem;
  border: 0;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
  overflow-wrap: anywhere;
}

.faq-trigger::after {
  content: "";
  position: absolute;
  top: 1.35rem;
  right: 1.15rem;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  pointer-events: none;
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-trigger::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

.faq-panel p {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  color: var(--muted);
  line-height: 1.75;
}

.contact-wrap {
  display: flex;
  justify-content: center;
}

.contact-card {
  width: min(680px, 100%);
  padding: 2rem 1.6rem;
  border: 1px solid var(--border-strong);
  border-radius: calc(var(--radius) + 0.2rem);
  background:
    radial-gradient(circle at 100% 0%, rgba(109, 255, 176, 0.12), transparent 42%),
    var(--bg-card);
}

.contact-card p {
  color: var(--muted);
  line-height: 1.75;
}

.contact-mail {
  margin: 1.2rem 0 1.4rem;
  color: var(--text);
  font-size: 1.05rem;
}

.contact-card .contact-mail {
  color: var(--text);
}

.contact-mail a {
  color: var(--accent);
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 2rem 0 2.4rem;
  border-top: 1px solid var(--border);
  background: #07080a;
}

.footer-inner {
  display: grid;
  gap: 1rem;
}

.footer-name {
  margin: 0 0 0.2rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.footer-brand p:last-child,
.footer-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-nav {
  display: flex;
  gap: 1.1rem;
}

.footer-nav a {
  color: var(--text);
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a[aria-current="page"] {
  color: var(--accent);
}

.legal-main {
  padding: 5.25rem 0 4.5rem;
}

.legal-wrap {
  max-width: 760px;
  min-width: 0;
}

.legal-wrap h1 {
  margin-top: 0;
  padding-top: 0.2em;
  font-size: clamp(1.55rem, 5vw, 2.2rem);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.legal-wrap h2 {
  margin-top: 2rem;
  font-size: 1.25rem;
}

.legal-wrap p,
.legal-wrap li {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.legal-wrap ul {
  padding-left: 1.15rem;
}

.legal-back {
  margin-top: 2.4rem;
}

.legal-back a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
}

.impressum-main {
  position: relative;
  padding: 4.5rem 0 4.75rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(109, 255, 176, 0.08), transparent 58%),
    var(--bg);
}

.impressum-shell {
  width: min(640px, calc(100% - 2rem));
}

.impressum-card {
  padding: 2.15rem 2rem 2.1rem;
  border: 1px solid var(--border-strong);
  border-radius: calc(var(--radius) + 0.15rem);
  background:
    radial-gradient(circle at 100% 0%, rgba(109, 255, 176, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 28%),
    var(--bg-card);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
}

.impressum-card h1 {
  margin: 0 0 1.5rem;
  padding: 0 0 1.05rem;
  border-bottom: 1px solid var(--border);
  font-size: clamp(1.55rem, 4vw, 1.95rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.impressum-card h2 {
  margin: 0 0 0.55rem;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.impressum-card section + section {
  margin-top: 1.45rem;
}

.impressum-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.impressum-card a:not(.btn) {
  color: var(--accent);
  word-break: break-word;
}

.impressum-back {
  margin-top: 1.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 1100px) and (min-width: 1021px) {
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1.5rem;
  }

  .process-step:nth-child(2n)::after {
    display: none;
  }
}

@media (max-width: 1020px) {
  .card-grid,
  .about-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .process-step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 1.55rem;
    bottom: -1.15rem;
    width: 2px;
    height: 1.15rem;
    background: linear-gradient(180deg, var(--accent), transparent);
    pointer-events: none;
  }

  .process-steps {
    gap: 1.15rem;
  }

  .nav-toggle {
    display: flex;
    z-index: 52;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 45;
    display: none;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.55);
  }

  .nav-overlay[hidden] {
    display: none !important;
    pointer-events: none !important;
  }

  body.nav-open .nav-overlay:not([hidden]) {
    display: block;
    pointer-events: auto;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 50;
    display: flex;
    width: min(20rem, calc(100% - 1.5rem));
    height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.35rem;
    padding: 5.2rem 1.2rem calc(1.5rem + env(safe-area-inset-bottom, 0px));
    overflow-x: hidden;
    overflow-y: auto;
    background: #0d1014;
    border-left: 1px solid var(--border);
    transform: translateX(110%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.28s ease, visibility 0.28s ease;
  }

  body.nav-open .site-nav {
    transform: none;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.9rem 0.4rem;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
    line-height: 1.4;
    overflow-wrap: anywhere;
  }

  .nav-cta {
    margin-top: 0.6rem;
    text-align: center;
    flex-shrink: 0;
  }

  body.nav-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    text-align: center;
    gap: 1.8rem;
  }

  .hero-copy {
    max-width: 40rem;
    min-width: 0;
    width: 100%;
  }

  .hero-brand {
    order: -1;
    justify-self: center;
    width: min(16.5rem, 62vw);
  }

  .lead,
  .section-intro,
  .hero-audience {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-meta {
    justify-content: center;
  }

  .hero-actions {
    width: 100%;
  }

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

  .faq-trigger {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(1120px, calc(100% - 1.5rem));
  }

  .hero {
    padding: 2.2rem 0 2.8rem;
  }

  .logo {
    gap: 0.5rem;
  }

  .logo-img {
    width: 2.7rem;
    height: 2.7rem;
  }

  .logo-name {
    font-size: 0.92rem;
  }

  .logo-suffix {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
  }

  .hero-brand {
    width: min(10.5rem, 56vw);
  }

  h1 {
    font-size: clamp(1.7rem, 8.4vw, 2.25rem);
    margin-bottom: 0.9rem;
  }

  h2 {
    font-size: clamp(1.4rem, 6.5vw, 1.85rem);
  }

  .hero-audience,
  .lead {
    font-size: 1.02rem;
  }

  .section {
    padding: 3.1rem 0;
  }

  .card,
  .process-step {
    padding: 1.2rem 1.05rem 1.25rem;
  }

  .about-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }

  .about-list strong {
    text-align: left;
  }

  .contact-card {
    padding: 1.35rem 1.05rem;
  }

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

  .faq-trigger {
    padding: 0.95rem 2.2rem 0.95rem 1rem;
    font-size: 1rem;
  }

  .legal-main {
    padding: 3.5rem 0 3.4rem;
  }

  .legal-wrap h2 {
    font-size: 1.08rem;
  }

  .footer-nav {
    flex-wrap: wrap;
  }

  .impressum-main {
    padding: 3.4rem 0 3.6rem;
  }

  .impressum-card {
    padding: 1.45rem 1.15rem 1.4rem;
  }

  .impressum-card h1 {
    margin-bottom: 1.25rem;
    padding-bottom: 0.9rem;
    font-size: 1.45rem;
  }

  .impressum-card p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .impressum-back {
    width: 100%;
    min-width: 0;
  }
}

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

  .card,
  .btn,
  .nav-cta,
  .site-nav,
  .process-step,
  .faq-item,
  .reveal,
  .reveal.is-visible {
    transition: none;
  }

  .card:hover,
  .process-step:hover,
  .btn-primary:hover,
  .btn-secondary:hover,
  .nav-cta:hover {
    transform: none;
  }
}
