html {
  scroll-behavior: smooth;
}

body {
  font-family: "Gotham Pro", Arial, sans-serif;
  font-weight: 300;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #121729;
  color: #ffffff;
  --bg: #121729;
  --bg2: #232637;
  --card: #222a3a;
  --card-2: #1e2534ff;
  --stroke: rgba(255, 255, 255, 0.22);
  --stroke-soft: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --accent: #7fe3a6;
}

.intro {
  border-top: 1px solid #585a67;
  background-color: var(--bg2);
}

.lighter {
  background-color: var(--bg2);
}

.container {
  width: 94%;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

.highlight {
  color: #8fecb1;
}

.bold {
  font-weight: 700;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col {
  flex: 0 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
  font-size: 1rem;
  max-width: 100%;
}

.col-1 {
  width: 8.333333%;
}

.col-2 {
  width: 16.666667%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.333333%;
}

.col-5 {
  width: 41.666667%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.333333%;
}

.col-8 {
  width: 66.666667%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.333333%;
}

.col-11 {
  width: 91.666667%;
}

.col-12 {
  width: 100%;
}

@media only screen and (max-width: 720px) {
  .col-1 {
    width: 100%;
  }
  .col-2 {
    width: 100%;
  }
  .col-3 {
    width: 100%;
  }
  .col-4 {
    width: 100%;
  }
  .col-5 {
    width: 100%;
  }
  .col-6 {
    width: 100%;
  }
  .col-7 {
    width: 100%;
  }
  .col-8 {
    width: 100%;
  }
  .col-9 {
    width: 100%;
  }
  .col-10 {
    width: 100%;
  }
  .col-11 {
    width: 100%;
  }
  .col-12 {
    width: 100%;
  }
}
h1 {
  font-size: 2em;
  color: #8fecb1;
}

header {
  background-color: #121729;
  padding: 15px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  margin-top: 5px;
  height: 40px;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #ffffff;
}
nav ul li a:hover {
  color: #8fecb1;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
  text-align: center;
}

.hero {
  padding: 180px 0 100px 0;
  width: 100%;
  text-align: left;
  position: relative;
}
.hero .primary {
  color: #8fecb1;
}
.hero .text {
  font-weight: 900;
  font-size: 60px;
  line-height: 1.1;
  max-width: 60%;
}
.hero .subtext {
  font-weight: 200;
  font-size: 28px;
  margin-top: 40px;
  max-width: 60%;
}
.hero .cta {
  margin-top: 40px;
  max-width: 50%;
}
.hero .cta-mobile {
  display: none;
}
.hero .graphics {
  position: absolute;
  top: 130px;
  right: 0;
  width: 38%;
}
.hero .graphics img {
  width: 100%;
  height: auto;
}

.modules {
  padding: 30px 0 50px 0;
  color: #a0c1e7;
}
.modules h1 {
  text-align: center;
  font-weight: 300;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #a0c1e7;
}
.modules p {
  text-align: center;
  margin: 0 20% 0 20%;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.modules .modules-list {
  display: flex;
  gap: clamp(16px, 3vw, 42px);
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 850px) {
  .modules .modules-list {
    flex-direction: column;
  }
}
.modules a {
  flex: 1 1 0;
}
.modules .module-card {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 22px);
  padding-top: clamp(10px, 2.2vw, 16px);
  padding-bottom: clamp(10px, 2.2vw, 16px);
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 18px;
  border: 2px solid var(--stroke);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0%, transparent 28%), linear-gradient(0deg, var(--card) 0%, var(--card-2) 100%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  cursor: default;
}
.modules .module-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
@media (max-width: 850px) {
  .modules .module-card {
    width: 260px;
  }
}
.modules .module-card__icon {
  width: clamp(55px, 7vw, 70px);
  height: clamp(55px, 7vw, 80px);
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}
.modules .module-card__icon img,
.modules .module-card__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.modules .module-card__content {
  min-width: 0;
  line-height: 1.05;
}
.modules .module-card__kicker {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 8px;
}
.modules .module-card__title {
  font-size: clamp(18px, 2.2vw, 25px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.modules .module-card__accent {
  margin-top: 6px;
  font-size: clamp(18px, 2.1vw, 25px);
  font-weight: 500;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.modules .module {
  margin-bottom: 60px;
}
.modules .module .module-title {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 20px;
}
.modules .module .module-description {
  font-size: 18px;
  line-height: 1.5;
}

.teaser {
  padding: 50px 0;
  display: flex;
}
.teaser.right_to_left {
  flex-direction: row-reverse;
  text-align: right;
}
.teaser.right_to_left .text-area {
  align-items: flex-end;
}
@media (max-width: 850px) {
  .teaser.right_to_left {
    flex-direction: column;
    text-align: left;
  }
  .teaser.right_to_left .text-area {
    align-items: flex-start;
  }
}
@media (max-width: 850px) {
  .teaser {
    flex-direction: column;
  }
}
.teaser .text-area {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.teaser .text-area .leading {
  margin-top: 16px;
  font-size: clamp(30px, 2.2vw, 40px);
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 5px;
}
.teaser .text-area .highlight {
  text-transform: uppercase;
  color: #8fecb1;
}
.teaser .text-area h1 {
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 700;
  color: #8fecb1;
  margin: 0;
}
.teaser .text-area p {
  font-size: clamp(15px, 2.1vw, 18px);
  line-height: 1.5;
  max-width: 90%;
}
.teaser .text-area ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 70%;
}
.teaser .text-area li {
  font-size: clamp(15px, 2.1vw, 18px);
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 12px;
}
.teaser .image-area {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
}
@media (max-width: 850px) {
  .teaser .image-area {
    width: 90%;
    max-width: 300px;
    margin: 0 auto;
  }
}
.teaser .image-area {
  border: 1px solid var(--stroke-soft);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0%, transparent 58%);
}
.teaser .image-area img {
  width: 100%;
  height: auto;
  max-width: 400px;
}

.call-to-action {
  padding: 50px 0;
  text-align: center;
}
.call-to-action h1 {
  font-size: clamp(45px, 2.2vw, 70px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.call-to-action h2 {
  font-size: clamp(22px, 2.1vw, 28px);
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 30px;
}
.call-to-action .mockup {
  width: 80%;
  max-width: 700px;
}

a {
  text-decoration: none;
  color: #ffffff;
}
a:hover {
  color: #8fecb1;
}

.company {
  font-weight: 700;
}

.imprint {
  border-top: 1px solid #585a67;
  background-color: var(--bg2);
  line-height: 1.4;
}
.imprint h1 {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: clamp(25px, 2.2vw, 35px);
  text-transform: uppercase;
}
.imprint p {
  margin-top: 4px;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.imprint .contact-table {
  border-collapse: collapse;
  border: none;
  width: 100%;
}
.imprint .contact-table td {
  border: none;
  padding: 2px 0;
  vertical-align: top;
}
.imprint .contact-table td:first-child {
  width: 220px;
  font-weight: 500;
  padding-right: 16px;
  white-space: nowrap;
}
.imprint .contact-table .spacer td {
  height: 12px;
  padding: 0;
}

footer {
  border-top: 1px solid rgba(143, 236, 177, 0.1333333333);
  color: #ffffff;
  text-align: left;
  padding: 20px 0;
  line-height: 1.5;
}
footer .footer-section {
  padding: 10px 0;
}
footer a {
  text-decoration: none;
  color: #ffffff;
}
footer a:hover {
  color: #8fecb1;
}

.btn {
  display: inline-block;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 17px 20px 17px 20px;
  text-decoration: none;
  border-radius: 35px;
  font-weight: 500;
  font-size: 14px;
  cursor: default !important;
}
.btn:hover {
  background-color: #8fecb1;
  color: #000;
  border: 1px solid #8fecb1;
}
.btn.primary {
  background-color: #8fecb1;
  color: #000;
  border: 1px solid #8fecb1;
}
.btn.primary:hover {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.navlink {
  padding-top: 10px;
}

@media only screen and (max-width: 1300px) {
  .hero {
    padding: 160px 0 100px 0;
  }
  .hero .text {
    font-size: 50px;
  }
  .hero .graphics {
    top: 140px;
    width: 420px;
  }
}
@media only screen and (max-width: 1140px) {
  .hero {
    padding: 140px 0 60px 0;
  }
  .hero .text {
    font-size: 48px;
  }
  .hero .subtext {
    font-size: 25px;
  }
  .hero .graphics {
    top: 130px;
    width: 380px;
  }
}
@media only screen and (max-width: 850px) {
  .hero {
    padding: 120px 0 50px 0;
    text-align: center;
  }
  .hero .text {
    font-size: 37px;
  }
  .hero .subtext {
    font-size: 22px;
  }
  .hero .graphics {
    top: 120px;
    width: 320px;
  }
}
@media only screen and (max-width: 720px) {
  .container {
    width: 90%;
  }
  header nav {
    display: none;
  }
  .hero {
    padding: 100px 0 0 0;
  }
  .hero .text,
  .hero .subtext {
    max-width: 100%;
  }
  .hero .cta {
    display: none;
  }
  .hero .cta-mobile {
    display: block;
    max-width: 100%;
    height: 70px;
  }
  .hero .text {
    font-size: 35px;
  }
  .hero .graphics {
    position: static;
    width: 70%;
    margin: 40px auto 0 auto;
  }
  .btn {
    width: 90%;
    padding: 12px 20px;
    border-radius: 35px;
  }
}
.contact-section {
  border-top: 1px solid #585a67;
  background-color: var(--bg2);
  padding: 80px 0 40px 0;
}

.contact-header {
  display: flex;
  flex-direction: row;
  width: 600px;
  max-width: 99%;
  margin: 0 auto 0 auto;
  line-height: 1.4;
}
.contact-header .text {
  padding-right: 20px;
}
.contact-header .img {
  max-width: 40%;
}
.contact-header .img img {
  width: 100%;
  height: auto;
}
.contact-header h1 {
  font-size: clamp(35px, 4vw, 50px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.2;
  text-transform: uppercase;
}
.contact-header p {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 20px;
}
@media (max-width: 720px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

.form-group {
  margin-bottom: 20px;
}
.form-group--half {
  flex: 1;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}
.form-group label.required::after {
  content: " *";
  color: #8fecb1;
}
.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=tel],
.form-group select {
  width: 100%;
  padding: 15px;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-family: inherit;
  box-sizing: border-box;
  transition: border-color 200ms ease;
}
.form-group input[type=text]::-moz-placeholder, .form-group input[type=email]::-moz-placeholder, .form-group input[type=tel]::-moz-placeholder, .form-group select::-moz-placeholder {
  color: var(--muted);
}
.form-group input[type=text]::placeholder,
.form-group input[type=email]::placeholder,
.form-group input[type=tel]::placeholder,
.form-group select::placeholder {
  color: var(--muted);
}
.form-group input[type=text]:focus,
.form-group input[type=email]:focus,
.form-group input[type=tel]:focus,
.form-group select:focus {
  outline: none;
  border-color: #8fecb1;
}
.form-group input[type=text]:invalid:not(:-moz-placeholder), .form-group input[type=email]:invalid:not(:-moz-placeholder), .form-group input[type=tel]:invalid:not(:-moz-placeholder), .form-group select:invalid:not(:-moz-placeholder) {
  border-color: #ff6b6b;
}
.form-group input[type=text]:invalid:not(:placeholder-shown),
.form-group input[type=email]:invalid:not(:placeholder-shown),
.form-group input[type=tel]:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown) {
  border-color: #ff6b6b;
}
.form-group select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group select option {
  background: var(--card);
  color: #fff;
}

.form-submit {
  margin-top: 30px;
  text-align: center;
}
.form-submit .btn {
  min-width: 200px;
}
.form-submit .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-message {
  margin-top: 20px;
  text-align: center;
  font-size: 20px;
  line-height: 1.4;
}
.form-message.error {
  color: #ff6b6b;
}
.form-message.success {
  color: #8fecb1;
}

.gdpr-message {
  margin-top: 30px;
  text-align: justify;
  font-size: 14px;
  line-height: 1.5;
}
.gdpr-message.bold {
  font-weight: 700;
}
.gdpr-message.error {
  color: #ff6b6b;
}
.gdpr-message.success {
  color: #8fecb1;
}

.success-message {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 20px;
}
.success-message h2 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: #8fecb1;
  margin-bottom: 20px;
}
.success-message p {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 30px;
}
.success-message .btn {
  display: inline-block;
}/*# sourceMappingURL=style.css.map */