:root {
  --red: #e30613;
  --red-dark: #bd000b;
  --ink: #111318;
  --muted: #66707a;
  --line: #e5e8eb;
  --soft: #f6f7f8;
  --white: #fff;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.55;
  background: #fff;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo {
  width: 220px;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: .95rem;
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink) !important;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1 {
  margin: 0;
  font-size: clamp(4rem, 9vw, 8.2rem);
  line-height: .89;
  letter-spacing: -.075em;
}
h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  padding: 92px 0 84px;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: center;
}
.hero-copy {
  max-width: 720px;
  margin: 28px 0 0;
  color: #343a40;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}
.hero-actions, .next-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 750;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover {
  transform: translateY(-1px);
}
.primary {
  background: var(--red);
  color: #fff;
}
.primary:hover {
  background: var(--red-dark);
}
.secondary {
  background: #fff;
  border: 1px solid var(--line);
}
.secondary:hover {
  border-color: #b8bdc3;
}
.flow-panel {
  border-left: 1px solid var(--line);
  padding-left: 52px;
  display: grid;
  gap: 34px;
}
.flow {
  position: relative;
  padding-left: 44px;
}
.flow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(227, 6, 19, .08);
}
.flow strong {
  display: block;
}
.flow span {
  color: var(--muted);
  font-size: .94rem;
}
section {
  padding: 112px 0;
}
.section-head {
  display: block;
  max-width: 900px;
  margin-bottom: 60px;
}
.section-head h2 {
  margin-top: 0;
}
.section-intro {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.service {
  min-height: 250px;
  padding: 32px 30px 34px 0;
  border-bottom: 1px solid var(--line);
}
.service:not(:nth-child(3n+1)) {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}
.service span {
  color: var(--red);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
}
.service h3 {
  margin: 48px 0 12px;
  font-size: 1.35rem;
  letter-spacing: -.025em;
}
.service p {
  margin: 0;
  color: var(--muted);
}
.model {
  background: var(--ink);
  color: #fff;
}
.model .section-intro {
  color: #b9bec5;
}
.model-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #34383d;
}
.model-card {
  min-height: 270px;
  padding: 42px 42px 18px 0;
  border-bottom: 1px solid #34383d;
}
.model-card + .model-card {
  padding-left: 42px;
  border-left: 1px solid #34383d;
}
.model-card small {
  color: #ff6b74;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
}
.model-card h3 {
  margin: 30px 0 14px;
  font-size: 2rem;
  letter-spacing: -.035em;
}
.model-card p {
  color: #b9bec5;
  max-width: 520px;
}
.next {
  background: var(--soft);
}
.next-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 72px;
  align-items: start;
}
.next .section-head {
  margin-bottom: 0;
}
.next-list {
  list-style: none;
  padding: 0;
  margin: 42px 0 0;
}
.next-list li {
  position: relative;
  padding: 17px 0 17px 30px;
  border-top: 1px solid var(--line);
}
.next-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}
.next-card {
  padding: 0;
  border-top: 3px solid var(--red);
  background: transparent;
}
.next-card h3 {
  margin: 30px 0 12px;
  font-size: 2rem;
  letter-spacing: -.04em;
}
.next-card p {
  color: var(--muted);
}
.result-line {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.result-line span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .85rem;
  font-weight: 700;
}
.result-line strong {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  letter-spacing: -.03em;
}
.contact {
  background: var(--red);
  color: #fff;
  padding: 94px 0;
}
.contact-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.contact .button {
  background: #fff;
  color: var(--ink);
  flex: 0 0 auto;
}
footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  font-size: .88rem;
  color: var(--muted);
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.legal main {
  padding: 78px 0 100px;
}
.legal h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: .94;
}
.legal h2 {
  margin: 48px 0 12px;
  font-size: 1.45rem;
  letter-spacing: -.02em;
}
.legal-card {
  padding: 24px 28px;
  background: var(--soft);
  border-left: 3px solid var(--red);
}
.back {
  font-weight: 700;
}
@media (max-width: 900px) {
  .hero-grid, .next-grid {
    grid-template-columns: 1fr;
  }
  .services {
    grid-template-columns: 1fr 1fr;
  }
  .service:not(:nth-child(3n+1)) {
    padding-left: 0;
    border-left: 0;
  }
  .service:nth-child(even) {
    padding-left: 28px;
    border-left: 1px solid var(--line);
  }
  .flow-panel {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 42px 0 0;
  }
  .nav-links a:not(.nav-cta) {
    display: none;
  }
  .contact-wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }
  .logo {
    width: 178px;
  }
  section {
    padding: 78px 0;
  }
  .services, .model-grid {
    grid-template-columns: 1fr;
  }
  .service, .service:nth-child(even), .service:not(:nth-child(3n+1)) {
    padding: 28px 0;
    border-left: 0;
  }
  .model-card, .model-card + .model-card {
    padding: 34px 0;
    border-left: 0;
  }
  .result-line {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
/* =========================================================
   ÜBER SCOPE-E + REFERENZEN
   Vorherigen Über-uns-CSS-Block vollständig hiermit ersetzen.
   ========================================================= */
.about {
  background: var(--white);
}
.about-stage {
  position: relative;
  overflow: hidden;
  padding: 118px 0 108px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 84px 84px, linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 84px 84px, #111318;
}
.about-stage::before {
  content: "SCOPE";
  position: absolute;
  right: -34px;
  top: -58px;
  color: rgba(255, 255, 255, .025);
  font-size: clamp(9rem, 20vw, 20rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.08em;
  pointer-events: none;
}
.about-stage::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(38vw, 520px);
  height: 5px;
  background: var(--red);
}
.about-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(64px, 8vw, 128px);
  align-items: start;
}
.about-lead {
  position: sticky;
  top: 110px;
}
.about-lead .eyebrow {
  margin-bottom: 22px;
}
.about-lead h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3rem, 6.2vw, 6.6rem);
  line-height: .92;
  letter-spacing: -.065em;
}
.about-lead h2 span {
  color: var(--red);
}
.about-intro {
  max-width: 620px;
  margin: 36px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 1.08rem;
  line-height: 1.7;
}
.about-signature {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 46px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}
.about-signature-mark {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-size: 2rem;
  font-weight: 800;
  font-style: italic;
}
.about-signature p {
  margin: 0;
  color: rgba(255, 255, 255, .6);
  font-size: .92rem;
  line-height: 1.5;
}
.about-signature strong {
  color: #fff;
  font-size: 1rem;
}
.about-principles {
  border-top: 1px solid rgba(255, 255, 255, .16);
}
.about-principle {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 30px;
  padding: 38px 0 42px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  transition: padding-left .25s ease, background .25s ease;
}
.about-principle:hover {
  padding-left: 18px;
  background: linear-gradient(90deg, rgba(227, 6, 19, .12), transparent 72%);
}
.principle-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.principle-meta span {
  color: var(--red);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
}
.principle-meta small {
  color: rgba(255, 255, 255, .44);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.about-principle h3 {
  max-width: 620px;
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.15;
}
.about-principle p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, .62);
  line-height: 1.65;
}
.references-block {
  padding: 104px 0 112px;
  background: var(--soft);
}
.references-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .65fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 42px;
}
.references-head h3 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: .98;
  letter-spacing: -.045em;
}
.references-head > p {
  margin: 0 0 6px;
  color: var(--muted);
  line-height: 1.65;
}
.references-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}
.reference-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 178px;
  padding: 26px;
  overflow: hidden;
  background: #17191d;
  isolation: isolate;
  outline: none;
}
.reference-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, 0));
  pointer-events: none;
}
.reference-card img {
  display: block;
  width: 100%;
  max-width: 220px;
  max-height: auto;
  object-fit: contain;
  transition: transform .35s ease, opacity .35s ease;
}
.reference-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 23px;
  color: #fff;
  background: linear-gradient(to top, rgba(17, 19, 24, .99), rgba(17, 19, 24, .82));
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .28s ease, transform .28s ease;
}
.reference-overlay::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 23px;
  width: 36px;
  height: 3px;
  background: var(--red);
}
.reference-overlay strong {
  margin-bottom: 8px;
  font-size: 1rem;
}
.reference-overlay p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: .84rem;
  line-height: 1.45;
}
.reference-card:hover .reference-overlay, .reference-card:focus .reference-overlay, .reference-card:focus-visible .reference-overlay {
  opacity: 1;
  transform: translateY(0);
}
.reference-card:hover img, .reference-card:focus img, .reference-card:focus-visible img {
  opacity: .12;
  transform: scale(1.07);
}
.reference-card:focus-visible {
  z-index: 3;
  box-shadow: inset 0 0 0 3px rgba(227, 6, 19, .65);
}
.reference-note {
  max-width: 920px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: .82rem;
}
@media (max-width: 1050px) {
  .about-layout {
    grid-template-columns: 1fr;
  }
  .about-lead {
    position: static;
  }
  .references-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .about-stage {
    padding: 86px 0 76px;
  }
  .about-lead h2 {
    font-size: clamp(3rem, 14vw, 5rem);
  }
  .about-principle {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .principle-meta {
    flex-direction: row;
    align-items: center;
  }
  .references-block {
    padding: 78px 0 84px;
  }
  .references-head {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .references-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 430px) {
  .references-grid {
    grid-template-columns: 1fr;
  }
}
@media (hover: none) {
  .about-principle:hover {
    padding-left: 0;
    background: transparent;
  }
  .reference-overlay {
    top: auto;
    min-height: 82px;
    opacity: 1;
    transform: none;
    background: linear-gradient(to top, rgba(17, 19, 24, .99), rgba(17, 19, 24, .76));
  }
  .reference-card {
    align-items: flex-start;
    min-height: 230px;
  }
}
/* =========================================================
   Scope-e: aktive Navigation / Scroll-Spy
   Diesen Block am Ende von style.css ergänzen.
   ========================================================= */
.nav-links a {
  position: relative;
  transition: color 180ms ease;
}
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--red, #e30613);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}
.nav-links a:not(.nav-cta):hover, .nav-links a:not(.nav-cta):focus-visible, .nav-links a:not(.nav-cta).is-active {
  color: var(--red, #e30613);
}
.nav-links a:not(.nav-cta):hover::after, .nav-links a:not(.nav-cta):focus-visible::after, .nav-links a:not(.nav-cta).is-active::after {
  transform: scaleX(1);
}
@media (max-width: 760px) {
  .nav-links a:not(.nav-cta)::after {
    bottom: -4px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .nav-links a, .nav-links a::after {
    transition: none;
  }
}
/* Scope-e: animierter Ablauf im Hero */
.flow-panel .flow {
  position: relative;
  overflow: hidden;
  opacity: 0.48;
  transform: translateY(8px);
  transition: opacity 420ms ease, transform 420ms ease, border-color 420ms ease, box-shadow 420ms ease;
}

.flow-panel .flow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--red, #e30613);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 420ms ease;
}

.flow-panel .flow::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(227, 6, 19, 0.08), rgba(227, 6, 19, 0));
  opacity: 0;
  transition: opacity 420ms ease;
}

.flow-panel .flow.is-active {
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(227, 6, 19, 0.34);
  box-shadow: 0 14px 34px rgba(17, 19, 24, 0.08);
}

.flow-panel .flow.is-active::before { transform: scaleY(1); }
.flow-panel .flow.is-active::after { opacity: 1; }
.flow-panel .flow strong,
.flow-panel .flow span { position: relative; z-index: 1; }

@media (prefers-reduced-motion: reduce) {
  .flow-panel .flow,
  .flow-panel .flow::before,
  .flow-panel .flow::after { transition: none; }
}
/* =========================================================
   Scope-e – runder Prozess im Hero
   Diesen Block am Ende von style.css ergänzen.
   ========================================================= */

.process-orbit {
  --process-red: var(--red, #e30613);
  --process-ink: var(--ink, #111318);
  --process-muted: var(--muted, #69707b);
  position: relative;
  width: min(100%, 680px);
  aspect-ratio: 1.18 / 1;
  min-height: 500px;
  margin-inline: auto;
  isolation: isolate;
}

.process-orbit__ring {
  position: absolute;
  left: 7%;
  top: 12%;
  width: 63%;
  aspect-ratio: 1;
  border: 2px solid #d9dde2;
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-18deg);
  z-index: -2;
}

.process-orbit__ring::before,
.process-orbit__ring::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c9cdd2;
}

.process-orbit__ring::before {
  top: 2%;
  right: 23%;
  background: var(--process-red);
  box-shadow: 0 0 0 6px rgba(227, 6, 19, 0.08);
}

.process-orbit__ring::after {
  left: 19%;
  bottom: 2%;
}

.process-orbit__center,
.process-step__icon {
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(248,249,250,.92));
  border: 1px solid rgba(190, 195, 201, 0.56);
  box-shadow:
    0 20px 48px rgba(17, 19, 24, 0.11),
    inset 0 1px 0 rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
}

.process-orbit__center {
  position: absolute;
  left: 22%;
  top: 35%;
  display: grid;
  place-content: center;
  width: 34%;
  aspect-ratio: 1;
  padding: 24px;
  border-radius: 50%;
  text-align: center;
}

.process-orbit__brand {
  display: block;
  color: var(--process-ink);
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.process-orbit__brand b {
  color: var(--process-red);
  font-weight: 500;
}

.process-orbit__claim {
  display: block;
  margin-top: 10px;
  color: var(--process-muted);
  font-size: clamp(.9rem, 1.4vw, 1.15rem);
}

.process-step {
  position: absolute;
  display: grid;
  grid-template-columns: 138px minmax(180px, 1fr);
  align-items: center;
  gap: 22px;
  width: 58%;
  color: var(--process-ink);
}

.process-step__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 138px;
  aspect-ratio: 1;
  border-radius: 50%;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.process-step__icon svg {
  width: 58%;
  height: 58%;
  fill: none;
  stroke: #626a74;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-step__number {
  position: absolute;
  left: 101px;
  top: -5px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 43px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #656d76;
  color: #fff;
  font-size: .95rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(17,19,24,.14);
}

.process-step__copy h3 {
  margin: 0 0 8px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.05;
}

.process-step__copy p {
  margin: 0;
  color: var(--process-muted);
  font-size: clamp(.95rem, 1.45vw, 1.18rem);
  line-height: 1.4;
}

.process-step--analysis {
  top: 1%;
  left: 42%;
}

.process-step--analysis .process-step__icon {
  border-color: var(--process-red);
  box-shadow:
    0 20px 50px rgba(227, 6, 19, 0.13),
    inset 0 1px 0 rgba(255,255,255,.95);
}

.process-step--analysis .process-step__icon svg {
  stroke: var(--process-red);
}

.process-step--analysis .process-step__number {
  background: var(--process-red);
}

.process-step--concept {
  top: 39%;
  left: 55%;
}

.process-step--decision {
  top: 70%;
  left: 41%;
}

.process-step:hover .process-step__icon {
  transform: translateY(-4px) scale(1.025);
  border-color: rgba(227, 6, 19, 0.65);
  box-shadow:
    0 24px 56px rgba(17, 19, 24, 0.13),
    0 0 0 7px rgba(227, 6, 19, 0.05);
}

.process-step:hover .process-step__icon svg,
.process-step:focus-within .process-step__icon svg {
  stroke: var(--process-red);
}

.process-orbit__dot {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c7cbd0;
}

.process-orbit__dot--one {
  left: 17%;
  top: 20%;
  background: var(--process-red);
}

.process-orbit__dot--two {
  left: 69%;
  top: 57%;
}

.process-orbit__dot--three {
  left: 50%;
  top: 85%;
}

/* Dezente Bewegung – nur die kleinen Punkte */
@keyframes scopeOrbitPulse {
  0%, 100% {
    transform: scale(1);
    opacity: .55;
  }
  50% {
    transform: scale(1.45);
    opacity: 1;
  }
}

.process-orbit__dot {
  animation: scopeOrbitPulse 2.8s ease-in-out infinite;
}

.process-orbit__dot--two {
  animation-delay: .7s;
}

.process-orbit__dot--three {
  animation-delay: 1.4s;
}

/* Tablet */
@media (max-width: 980px) {
  .process-orbit {
    min-height: 470px;
    transform: scale(.94);
    transform-origin: top center;
  }

  .process-step {
    grid-template-columns: 118px minmax(170px, 1fr);
    gap: 18px;
  }

  .process-step__icon {
    width: 118px;
  }

  .process-step__number {
    left: 87px;
    width: 38px;
  }
}

/* Mobil: untereinander statt Kreis, weiterhin rund */
@media (max-width: 700px) {
  .process-orbit {
    display: grid;
    gap: 18px;
    width: 100%;
    min-height: 0;
    aspect-ratio: auto;
    transform: none;
    padding-top: 10px;
  }

  .process-orbit__ring,
  .process-orbit__dot {
    display: none;
  }

  .process-orbit__center,
  .process-step {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .process-orbit__center {
    justify-self: center;
    width: min(190px, 55vw);
    padding: 22px;
    margin-bottom: 6px;
  }

  .process-step {
    grid-template-columns: 92px 1fr;
    gap: 16px;
    padding: 16px 0;
  }

  .process-step__icon {
    width: 92px;
  }

  .process-step__number {
    left: 66px;
    top: -2px;
    width: 34px;
    font-size: .8rem;
  }

  .process-step__copy h3 {
    font-size: 1.25rem;
  }

  .process-step__copy p {
    font-size: .98rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-orbit__dot {
    animation: none;
  }

  .process-step__icon {
    transition: none;
  }
}
.nav-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0.65rem 1rem;
  border: 1px solid var(--red);
  border-radius: 4px;
  background: var(--red);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.nav-call svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  flex: 0 0 auto;
}

.nav-call:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(227, 6, 19, 0.2);
}

.nav-call:focus-visible {
  outline: 3px solid rgba(227, 6, 19, 0.25);
  outline-offset: 3px;
}

.nav-call:active {
  transform: translateY(0);
  box-shadow: none;
}
@media (max-width: 760px) {
  .nav-call {
    width: 100%;
    margin-top: 0.35rem;
  }
}
.nav-phone {
  appearance: none;
  border: 0;
  font: inherit;
  cursor: pointer;
}

