/*
 * Kartenrahmen fuer den Ablauf- und Kontaktbereich.
 * Der Ablaufbereich greift nun die helle, elegante Gestaltung des
 * Kontaktfensters auf und bleibt auf allen Geraetegroessen gut lesbar.
 */
.process-section,
.contact-section {
  width: min(1320px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
  border-radius: 32px;
  overflow: hidden;
}

.process-section {
  position: relative;
  isolation: isolate;
  color: var(--navy-deep);
  background:
    radial-gradient(circle at 8% 12%, rgba(239, 117, 0, .13), transparent 25%),
    linear-gradient(135deg, #e7eef3 0%, #f8fafb 56%, #edf3f6 100%);
  border: 1px solid rgba(6, 63, 91, .12);
  box-shadow: 0 24px 64px rgba(3, 44, 66, .11);
}

.process-copy {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100% - 96px));
  padding: clamp(78px, 8vw, 118px) 0;
}

.process-copy .section-kicker {
  color: var(--orange);
}

.process-copy h2 {
  max-width: 900px;
  margin-top: 18px;
  color: var(--navy-deep);
  font-size: clamp(2.6rem, 4.6vw, 5rem);
  line-height: .99;
}

.process-copy ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: clamp(38px, 5vw, 58px) 0 0;
  padding: 0;
}

.process-copy li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  min-height: 205px;
  padding: 30px;
  color: var(--navy-deep);
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(6, 63, 91, .12);
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(3, 44, 66, .08);
}

.process-copy li::before {
  content: none;
}

.process-copy li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  width: 44px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: var(--orange);
  box-shadow: 0 8px 20px rgba(239, 117, 0, .2);
}

.process-copy li > .process-marker {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  margin: 0 0 24px;
  color: var(--navy);
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(6, 63, 91, .18);
  border-radius: 50%;
  box-shadow:
    0 12px 28px rgba(3, 44, 66, .11),
    inset 0 0 0 4px rgba(239, 117, 0, .07);
}

.process-copy .process-marker svg {
  display: block;
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-copy .process-marker::after {
  content: attr(data-step);
  position: absolute;
  right: -4px;
  bottom: -3px;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  color: #fff;
  background: var(--orange);
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: .66rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(239, 117, 0, .28);
}

.process-copy li > div {
  width: 100%;
  min-width: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.process-copy li strong,
.process-copy li p {
  color: var(--navy-deep);
}

.process-copy li strong {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.process-copy li p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.62;
}

.contact-section {
  margin-bottom: clamp(48px, 6vw, 84px);
  border: 1px solid rgba(6, 63, 91, .12);
  box-shadow: 0 24px 64px rgba(3, 44, 66, .11);
}

@media (max-width: 1120px) {
  .process-section,
  .contact-section {
    width: calc(100% - 40px);
    border-radius: 28px;
  }

  .process-copy {
    width: calc(100% - 64px);
  }
}

@media (max-width: 900px) {
  .process-copy ol {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-copy li {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    min-height: 0;
    padding: 25px 26px;
  }

  .process-copy li > .process-marker {
    margin: 0;
  }

  .process-copy li::after {
    left: 26px;
    width: 38px;
  }
}

@media (max-width: 720px) {
  .process-section,
  .contact-section {
    width: calc(100% - 24px);
    border-radius: 22px;
  }

  .process-copy {
    width: calc(100% - 32px);
    padding: 46px 0 56px;
  }

  .process-copy h2 {
    margin-top: 14px;
    font-size: clamp(2.05rem, 9.5vw, 2.85rem);
    line-height: 1.04;
    letter-spacing: -.038em;
  }

  .process-copy ol {
    gap: 12px;
    margin-top: 28px;
  }

  .process-copy li {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 15px;
    padding: 20px 17px;
    border-radius: 18px;
  }

  .process-copy li > .process-marker {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
    margin: 0;
  }

  .process-copy .process-marker svg {
    width: 23px;
    height: 23px;
  }

  .process-copy .process-marker::after {
    right: -3px;
    bottom: -3px;
    width: 20px;
    height: 20px;
    font-size: .6rem;
  }

  .process-copy li::after {
    left: 17px;
    width: 42px;
  }

  .process-copy li strong {
    margin-bottom: 6px;
    font-size: 1.02rem;
    line-height: 1.3;
  }

  .process-copy li p {
    font-size: .93rem;
    line-height: 1.5;
  }

  .contact-section {
    margin-bottom: 48px;
  }
}
