@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --okki-1: #99dafe;
  --okki-2: #99a7fe;
  --okki-3: #dafe99;
  --okki-4: #f099fe;
  --okki-5: #febd99;
  --okki-6: #66c8fe;
  --pastel-1: #ccedff;
  --pastel-2: #d0d6ff;
  --pastel-3: #edffce;
  --pastel-4: #f8ccff;
  --pastel-5: #ffe1d0;
  --pastel-6: #abe1ff;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 0.1em;
}

a:hover {
  text-decoration-thickness: 0.16em;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--black);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: -10000px;
  top: 0;
  padding: 12px 16px;
  background: var(--black);
  color: var(--white);
  z-index: 1000;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

.container {
  width: min(1040px, calc(100% - 48px));
  margin-left: auto; margin-right: auto;
}

header {
  padding-block: 24px;
  border-bottom: 2px solid var(--okki-1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.logo {
  width: min(210px, 55vw);
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
}

.language-switch a,
.language-switch strong {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 4px;
}

.language-switch strong {
  border-bottom: 3px solid var(--okki-1);
}

.hero {
  width: min(70ch, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
  padding-block: 60px 42px;
}

h1,
h2,
h3 {
  color: var(--black);
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(2.5rem, 7vw, 4.8rem);
  line-height: 1.1;
  font-weight: 700;
}

h2 {
  margin-top: 2rem;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.2;
  font-weight: 700;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 600;
}

.slogan {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 1.1rem;
}

.lead {
  font-size: 1.3rem;
  font-weight: 500;
}

.okki-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 16px; justify-content: center;
  margin-block: 26px;
}

.okki-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.okki-dot:nth-child(1) { background: var(--okki-1); }
.okki-dot:nth-child(2) { background: var(--okki-2); }
.okki-dot:nth-child(3) { background: var(--okki-3); }
.okki-dot:nth-child(4) { background: var(--okki-4); }
.okki-dot:nth-child(5) { background: var(--okki-5); }
.okki-dot:nth-child(6) { background: var(--okki-6); }

.status {
  margin-block: 36px;
  padding: 24px;
  border: 3px solid var(--okki-1);
  border-image: none;
  background: var(--white);
  color: var(--black);
  font-weight: 600;
}

.contact-section {
  width: min(70ch, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 60px;
}

.contact-card {
  margin-bottom: 20px;
  padding: 26px;
  border: 3px solid var(--okki-2);
  border-image: none;
  background: var(--white);
}

.contact-card.secondary {
  background: var(--white);
  border-color: var(--okki-3);
}

.contact-card p {
  margin-block: 8px;
}

.legal-content {
  width: min(70ch, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
  padding-block: 34px 64px;
}

.legal-content::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 auto 34px;
  border-radius: 50%;
  background: var(--okki-1);
  box-shadow: 45px 0 var(--okki-2), 90px 0 var(--okki-3), 135px 0 var(--okki-4), 180px 0 var(--okki-5), 225px 0 var(--okki-6);
  transform: translateX(-112.5px);
}


.section-accent-lines .legal-content h2 {

  border-left: 4px solid var(--okki-1);
  padding-left: 12px;
}
.legal-content p,
.legal-content li {
  max-width: 70ch;
}

footer {
  border-top: 0;
  padding-block: 28px 42px;
}

footer::before {
  content: "";
  display: block;
  height: 5px;
  margin-bottom: 28px;
  background: var(--okki-1);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; justify-content: center;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

@media (max-width: 700px) {
  .okki-dots {
    gap: 10px;
  }

  .okki-dot {
    width: 24px;
    height: 24px;
  }

  .legal-content::before {
    width: 20px;
    height: 20px;
    margin-bottom: 28px;
    box-shadow: 30px 0 var(--okki-2), 60px 0 var(--okki-3), 90px 0 var(--okki-4), 120px 0 var(--okki-5), 150px 0 var(--okki-6);
    transform: translateX(-75px);
  }

  .header-inner {
    flex-direction: column;
    align-items: center;
  }

  .hero {
    padding-top: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.email-gmbh {
  background-color: var(--pastel-2);
}

.email-limited {
  background-color: var(--pastel-3);
}

.email-datenschutz {
  background-color: var(--pastel-4);
}

.email-barrierefreiheit {
  background-color: var(--pastel-5);
}

h1,
h2,
h3 {
  overflow-wrap: anywhere;
  hyphens: auto;
}

p,
li,
address {
  overflow-wrap: anywhere;
}