/* ==========================================================================
   GALANIPROJECTS – FRAMEWORK-FREIE BASIS

   Diese Datei enthält Reset, Basislayout und die vollständige Projekt-CSS in einer Datei.
   Die eigenen galaniprojects-Klassen bleiben bewusst erhalten, damit sich das
   Layout beim Entfernen der Runtime nicht verändert.
   ========================================================================== */

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

html {
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 20px;
}

article,
aside,
footer,
header,
main,
nav,
section {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: middle;
  display: inline-block;
}

svg:not(:root) {
  overflow: hidden;
}

a:active,
a:hover {
  outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-weight: 500;
}

h1 {
  font-size: 38px;
  line-height: 44px;
}

h2 {
  font-size: 32px;
  line-height: 36px;
}

h4 {
  margin-top: 10px;
  font-size: 18px;
  line-height: 24px;
}

h5 {
  margin-top: 10px;
  font-size: 14px;
  line-height: 20px;
}

h6 {
  margin-top: 10px;
  font-size: 12px;
  line-height: 18px;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

button,
input,
select,
textarea {
  color: inherit;
  margin: 0;
  font: inherit;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
}

textarea {
  overflow: auto;
}

label {
  margin-bottom: 5px;
  font-weight: 500;
  display: block;
}

[hidden] {
  display: none !important;
}


/* ---------- Ersatz für die wenigen tatsächlich genutzten Layout-Helfer ---------- */
.gp-container,
.gp-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.gp-inline-block {
  max-width: 100%;
  display: inline-block;
}

.gp-button-base {
  border: 0;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
}

.gp-form-base {
  margin: 0 0 15px;
}

.gp-input-base {
  width: 100%;
  margin-bottom: 10px;
  vertical-align: middle;
  display: block;
}

.gp-input-base:focus {
  outline: 0;
}

.gp-embed-base::before,
.gp-embed-base::after,
.gp-richtext::before,
.gp-richtext::after {
  content: " ";
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
  display: table;
}

.gp-embed-base::after,
.gp-richtext::after {
  clear: both;
}

.gp-richtext ol,
.gp-richtext ul {
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .columns-software {
    grid-template-columns: 1fr;
  }


  .gp-container,
  .gp-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  /* Journey SVG mobile */
  .journey-image {
    width: min(72vw, 220px);
  }

  .img-block::after {
    width: min(72vw, 220px);
  }

  .gp-container,
  .gp-layout-blockcontainer {
    max-width: none;
  }
}

/* ==========================================================================
   GALANIPROJECTS – LIGHT THEME / FIXED BACKGROUND

   Grundlage: deine zuletzt angepasste bestehenden Projekt-CSS.

   DESIGN-PRINZIPIEN
   - Das Hero-Hintergrundbild bleibt beim Scrollen stehen.
   - Helle, leicht transparente Inhaltsflächen liegen darüber.
   - Ehemals weiße Schrift wird dunkel.
   - Orange bleibt die Akzent- und Interaktionsfarbe.
   - Zentrale Farben werden in :root gepflegt.

   TIPP
   Für spätere Farbanpassungen zuerst nur die Variablen in :root ändern.
   ========================================================================== */

@font-face {
  font-family: "Fa V 4 Compatibility";
  src: url('../fonts/fa-v4compatibility.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fa Solid 900";
  src: url('../fonts/fa-solid-900.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fa 400";
  src: url('../fonts/fa-regular-400.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------- Projekt-Schriften ---------- */

@font-face {
  font-family: "Open Sans";
  src: url('../fonts/OpenSans-VariableFont_wdthwght.ttf') format("truetype");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url('../fonts/Rubik-VariableFont_wght.ttf') format("truetype");
  font-weight: 300 500;
  font-style: normal;
  font-display: swap;
}

:root {
  /* ---------- Typografie ---------- */
  --font-body: "Open Sans", Arial, sans-serif;
  --font-heading: "Rubik", Arial, sans-serif;

  /* ---------- Marke ---------- */
  --color-accent: #ff6600;
  --color-accent-soft: rgba(255, 102, 0, .08);
  --color-accent-border: rgba(255, 102, 0, .22);

  /* ---------- Schrift ---------- */
  --color-text: #2f2a2c;
  --color-text-muted: #716a6d;
  --color-text-light: #ffffff;
  --color-text-grey: #7f7f7f;

  /* ---------- Flächen ---------- */
  --color-page-bg: #f7f4ef;
  --color-section-bg: rgba(255, 255, 255, .8);
  --color-section-bg-strong: rgba(210, 210, 210, .6);
  --color-control-bg: rgba(255, 255, 255, .90);
  --color-nav-bg: rgba(215, 232, 255, .55);
  --color-footer-bg: #333333;
  --color-input-bg: rgba(255, 255, 255, .92);

  /* ---------- Linien / Schatten ---------- */
  --color-border: rgba(47, 42, 44, .12);
  --color-border-strong: rgba(47, 42, 44, .22);
  --color-border-light: rgb(255, 255, 255);
  --color-shadow: rgba(58, 42, 36, .10);

  /* ---------- Hero / Slider ---------- */
  --color-hero-overlay: rgba(255, 255, 255, .45);
  --color-slider-overlay-soft: rgba(255, 255, 255, 0);
  --color-slider-overlay-mid: rgba(255, 255, 255, .18);
  --color-slider-overlay-strong: rgba(255, 255, 255, .76);

  /* ---------- Formulare ---------- */
  --color-placeholder: #8c8588;

  /* ---------- Statusmeldungen ---------- */
  --color-success-bg: rgba(76, 175, 80, .14);
  --color-success-border: rgba(76, 175, 80, .28);
  --color-success-text: #245c2a;
  --color-error-bg: rgba(244, 67, 54, .12);
  --color-error-border: rgba(244, 67, 54, .26);
  --color-error-text: #8e2a23;

  /* ---------- Legacy / Sonderfarben ---------- */
  --color-deep-blue: #31414c;
  --color-danger: #b23435;
  --color-legacy-blue: #4a6275;

  /* ---------- Card-Verlauf / Transparenz ---------- */
  --color-card-bg: rgba(255, 255, 255, .62);
  --color-card-gradient-start: rgba(186, 188, 190, .32);
  --color-card-gradient-middle: rgba(255, 255, 255, .68);
  --color-card-gradient-end: rgba(255, 243, 236, .58);

  /* ---------- Journey-Icons ---------- */
  --color-journey-gradient-start: #292929;
  --color-journey-gradient-middle: #716a6d;
  --color-journey-gradient-end: #ff6600;
}

/* ==========================================================================
   TYPOGRAFIE
   Headlines: Rubik
   Fließtext / Navigation / Formulare: Open Sans
   ========================================================================== */

body,
p,
li,
a,
button,
input,
select,
textarea,
label {
  font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading-h5-3,
.heading-video-h3,
.heading-h5-dark-left,
.h2-orange,
.h2-dark,
.h2-two-color-dark,
.h2-main,
.h2 {
  font-family: var(--font-heading);
}

.gp-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.gp-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.gp-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.gp-layout-blockcontainer {
  display: block;
}

h3 {
  color: var(--color-accent);
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}

p {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 18px;
  line-height: normal;
}

a {
  color: var(--color-accent);
  background-color: transparent;
  text-decoration: underline;
}

li {
  font-size: 16px;
}

.h2-orange {
  color: var(--color-accent);
  text-align: center;
  letter-spacing: 0;
  text-shadow: none;
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 500;
  line-height: 120%;
  transition: opacity .2s;
  display: inline;
}

.h2-dark {
  color: var(--color-text);
  text-align: center;
  letter-spacing: 0;
  text-shadow: none;
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 500;
  line-height: 120%;
  transition: opacity .2s;
  display: inline;
}


.h3-orange {
  color: var(--color-accent);
  margin: 0 0 0 0;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.55;
  text-shadow: none;
}
.h3-dark {
  color: var(--color-text-grey);
  margin: 0 0 0.5rem 0;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  line-height: normal;
  text-shadow: none;
  padding: 0.5rem 0 0.5rem 0;
}


.nav-link,
.nav-link-lang {
  letter-spacing: .25px;
  margin: 20px 5px;
  padding: 5px 10px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease;
}

.nav-link {
  color: var(--color-text);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link-lang:focus-visible {
  outline-offset: 3px;
  color: var(--color-accent);
  border-radius: 4px;
  outline: 2px solid var(--color-accent);
}

.nav-link[aria-current="page"] {
  color: var(--color-accent);
}

.columns-footer {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  display: flex;
}

.logo-wrapper {
  grid-column-gap: 0;
  grid-row-gap: 0;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  padding-top: 0;
  display: flex;
}

.logo {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  display: flex;
}

.small-columns {
  grid-column-gap: 24px;
  grid-row-gap: 0;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 600px;
  padding-top: 0;
  display: flex;
}

.link-3 {
  color: var(--color-text-light);
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
}

.copyright {
  grid-column-gap: 16px;
  grid-row-gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 1rem;
  display: flex;
}

.text-3 {
  color: var(--color-text-light);
  text-align: center;
  -webkit-text-stroke-color: var(--color-text-light);
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.gp-footer {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: var(--color-deep-blue);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 12px 24px 10px;
  display: flex;
}

.logo-footer {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 320px;
  display: flex;
}

.column-36 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.content-13 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  display: flex;
}

.footer-links-6 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.our-task,
.our-tasks {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  background-color: var(--color-section-bg-strong);
  border-bottom: 1px solid var(--color-border);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  padding: 70px 5% 100px;
  display: flex;
}

.container-10 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  display: flex;
}

.title-section-dark,
.title-section-light {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.title-section-dark {
  font-size: 14px;
}

.columns-2 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: grid;
}

/* ==========================================================================
   CARDS – GEMEINSAME OBERFLÄCHE
   Transparenter Verlauf: rechts oben → links unten
   ========================================================================== */
.card,
.sqf-card,
.video-card-01,
.project-wrapper,
.step,
.contact,
.team-text {
  background-color: var(--color-card-bg);
  background-image: linear-gradient(
    225deg,
    var(--color-card-gradient-start) 0%,
    var(--color-card-gradient-middle) 52%,
    var(--color-card-gradient-end) 100%
  );
  border: 2px solid var(--color-border-light);
  box-shadow: 0 8px 28px var(--color-shadow);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

/* ---------- Standard-Cards ---------- */
.card,
.sqf-card,
.video-card-01 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
}

.card {
  justify-content: flex-start;
  padding: 0 20px 40px;
  display: flex;
}

.sqf-card {
  justify-content: center;
  padding: 40px;
  display: flex;
}

.video-card-01 {
  justify-content: flex-start;
  padding: 40px;
  display: flex;
}

.vectors-wrapper-23 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  object-fit: cover;
  justify-content: center;
  align-items: center;
  display: flex;
}

.heading-h5-3 {
  color: var(--color-text);
  text-align: center;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 500;
  line-height: 140%;
}

/* ==========================================================================
   KONTAKT
   ========================================================================== */
.contact-form {
  background-color: var(--color-section-bg);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: none;
  padding: 100px 5%;
  display: flex;
}

.h2-on-light {
  margin-top: 0;
  margin-bottom: 0;
}

.form-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 90%;
  display: flex;
}

.form {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.input-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.form-block-label {
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.form-text-input {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--color-text);
  background-color: var(--color-input-bg);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 42px;
  padding: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  display: flex;
}

.form-text-input::placeholder {
  color: var(--color-placeholder);
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
}

.form-textarea {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--color-text);
  background-color: var(--color-input-bg);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  min-height: 137px;
  padding: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 26px;
  display: flex;
}

.form-textarea::placeholder {
  color: var(--color-placeholder);
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
}

.form-button {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--color-text);
  cursor: auto;
  mix-blend-mode: normal;
  background-color: var(--color-accent);
  border-radius: 40px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 12px 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  transition: background-color .125s ease-in;
  display: flex;
  transform: translate(0);
}

.section-hero {
  background-image: url('../images/compare-fibre-PAOv9-7VBMI-unsplash.jpg');
  background-position: 50%;
  background-size: cover;
  background-attachment: scroll;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin-top: auto;
  padding: 100px 5%;
  display: flex;
}

.container-12 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  display: block;
}

.grid-2-column {
  grid-column-gap: 100px;
  grid-template-rows: auto;
  align-items: end;
  display: block;
}

.hero-text {
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: flex-start;
  width: 800px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.h2 {
  color: var(--color-text);
  text-align: center;
  text-shadow: none;
  margin-bottom: 20px;
}

.team-circles-2 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  background-color: var(--color-section-bg);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 100px 5%;
  font-size: 18px;
  display: flex;
}

.container-team {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  display: grid;
}

.image-tree {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.team-text {
  width: 100%;
  padding: 40px;
  border-radius: 20px;
}

.flex-block-3 {
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.h2-two-color-dark {
  color: var(--color-text);
  text-align: center;
  letter-spacing: 0;
  flex: 0 auto;
  align-items: center;
  padding-bottom: 20px;
  padding-right: 10px;
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 500;
  line-height: 120%;
  display: inline;
}

.p-text-dark-m {
  color: var(--color-text);
  text-align: center;
  flex: 0 auto;
  max-width: 80%;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 25px;
}

/* ==========================================================================
   KUNDEN / PROJEKTE
   ========================================================================== */
.projects {
  border: 1px solid var(--color-section-bg-strong);
  background-color: var(--color-section-bg);
  padding: 100px 5%;
}

.container-default,
.container-customer {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.container-default {
  display: block;
}

.grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 40px;
}

.project-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-radius: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  min-height: 270px;
  padding: 20px;
  display: block;
  position: relative;
}

.project-style {
  color: var(--color-text);
  text-align: center;
  font-family: var(--font-body);
  font-size: 15px;
}

.image-burda {
  opacity: .6;
  filter: grayscale();
  text-align: left;
  -webkit-text-fill-color: inherit;
  cursor: auto;
  mix-blend-mode: normal;
  object-fit: fill;
  background-clip: border-box;
  border: 0;
  border-radius: 0;
  width: 90%;
  max-width: none;
  margin: 40px auto 20px;
  display: block;
  position: static;
  overflow: visible;
}

.h3-projects {
  color: var(--color-text);
  text-align: center;
  margin-bottom: 5px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
}

.project-work {
  color: var(--color-accent);
  text-align: center;
  margin-bottom: 5px;
  font-family: var(--font-body);
  font-size: 14px;
}

.project-task {
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 5px;
  font-family: var(--font-body);
  font-size: 15px;
}

.image-benz {
  opacity: .7;
  -webkit-backdrop-filter: grayscale();
  backdrop-filter: grayscale();
  object-fit: fill;
  border-radius: 0;
  width: 50%;
  max-width: none;
  margin: 0 auto 20px;
  display: block;
  position: static;
  overflow: visible;
}

.project-text-wrapper {
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: block;
  position: absolute;
  inset: auto 0% 30px;
  overflow: visible;
}

.image-t-systems {
  opacity: .7;
  filter: grayscale();
  object-fit: fill;
  border-radius: 0;
  width: 60%;
  max-width: none;
  height: auto;
  margin: 20px auto;
  display: block;
  position: static;
  overflow: visible;
}

.image-bild {
  opacity: .7;
  filter: grayscale();
  object-fit: fill;
  border-radius: 0;
  width: 30%;
  max-width: none;
  height: auto;
  margin: 5px auto 20px;
  display: block;
  position: static;
  overflow: visible;
}

.image-deutsche-bank {
  opacity: .7;
  filter: grayscale();
  object-fit: fill;
  border-radius: 0;
  width: 30%;
  max-width: none;
  height: auto;
  margin: 10px auto 20px;
  display: block;
  position: static;
  overflow: visible;
}

.image-bunte {
  opacity: .7;
  filter: grayscale();
  object-fit: fill;
  border-radius: 0;
  width: 50%;
  max-width: none;
  height: auto;
  margin: 10px auto 20px;
  display: block;
  position: static;
  overflow: visible;
}

.image-vw {
  opacity: .7;
  filter: grayscale();
  object-fit: fill;
  border-radius: 0;
  width: 25%;
  max-width: none;
  height: auto;
  margin: 5px auto 20px;
  display: block;
  position: static;
  overflow: visible;
}

.image-bombardier {
  opacity: .6;
  filter: grayscale();
  object-fit: fill;
  border-radius: 0;
  width: 70%;
  max-width: none;
  height: auto;
  margin: 20px auto;
  display: block;
  position: static;
  overflow: visible;
}

.bg-shadow {
  z-index: 1;
  border-radius: 16px;
  position: absolute;
  inset: 0%;
  box-shadow: 7px 7px 20px var(--color-shadow);
}

.label {
  color: var(--color-accent);
  letter-spacing: 2px;
  text-transform: none;
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 500;
  text-decoration: none;
}

/* ==========================================================================
   UNSER WEG / TIMELINE
   ========================================================================== */
.hero-section {
  background-color: var(--color-section-bg);
  align-items: center;
  min-height: 0;
  margin: 0;
  padding: 100px 5%;
  display: flex;
}

.contact-adress {
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  margin-right: 25px;
  display: block;
}

.contact-us {
  width: 50%;
  margin-left: 25px;
}

.contact {
  flex-direction: row-reverse;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
  border-radius: 20px;
  display: flex;
}

.contact-tab {
  margin-right: 15px;
  display: flex;
}

.adress {
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.text-block-6 {
  color: var(--color-text-muted);
  font-family: "Fa Solid 900", sans-serif;
  font-size: 18px;
  line-height: 29px;
}

.text-block-contact {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 29px;
}

.text-block-contact-2 {
  text-align: right;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 29px;
}

.map {
  margin-top: 20px;
}

.image-6 {
  border: 1px solid var(--color-accent);
  max-width: 100%;
}

.step-block {
  flex-wrap: nowrap;
  place-content: center space-around;
  align-items: center;
  min-height: 450px;
  margin-top: 0;
  display: flex;
  position: relative;
}

.step {
  z-index: 2;
  border: 2px solid var(--color-border-light);
  border-radius: 16px;
  align-items: center;
  padding: 5%;
  display: flex;
  position: relative;
}

.dot {
  z-index: 3;
  background-color: var(--color-accent);
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  position: relative;
}

.content-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: sticky;
  top: 0;
}

#about-us .content-block {
  width: 100%;
  max-width: 1200px;
  gap: 40px;
}

/* ---------- Journey-Grafiken: transparente SVGs mit CI-Verlauf ---------- */

.journey-image {
  display: block;
  width: clamp(180px, 18vw, 240px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
}


/* ---------- Kreisförmiger Card-Hintergrund hinter Journey-SVGs ---------- */

.img-block {
  position: relative;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 40%;
  height: 300px;
  display: flex;
}

/* Kreis im Card-Look */
.img-block::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: clamp(190px, 18vw, 240px);
  aspect-ratio: 1 / 1;

  background-color: var(--color-card-bg);
  background-image: linear-gradient(
    225deg,
    var(--color-card-gradient-start) 0%,
    var(--color-card-gradient-middle) 52%,
    var(--color-card-gradient-end) 100%
  );

  border: 2px solid var(--color-border-light);
  border-radius: 50%;

  box-shadow: 0 8px 28px var(--color-shadow);

  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);

  pointer-events: none;
}

/* Je Timeline-Step wird die passende SVG als Maske verwendet. */
.steps-clone .step-block:nth-child(1) .img-block::after {
  -webkit-mask-image: url("../images/journey_waterfall.svg");
  mask-image: url("../images/journey_waterfall.svg");
}

.steps-clone .step-block:nth-child(2) .img-block::after {
  -webkit-mask-image: url("../images/journey_kanban.svg");
  mask-image: url("../images/journey_kanban.svg");
}

.steps-clone .step-block:nth-child(3) .img-block::after {
  -webkit-mask-image: url("../images/journey_agile_scrum.svg");
  mask-image: url("../images/journey_agile_scrum.svg");
}

.steps-clone .step-block:nth-child(4) .img-block::after {
  -webkit-mask-image: url("../images/journey_agile_safe.svg");
  mask-image: url("../images/journey_agile_safe.svg");
}

.steps-clone .step-block:nth-child(5) .img-block::after {
  -webkit-mask-image: url("../images/journey_hingepoint.svg");
  mask-image: url("../images/journey_hingepoint.svg");
}


.scroll-animate-2 {
  background-color: rgba(255, 255, 255, .95);
  width: 3px;
  height: 100%;
  position: absolute;
  bottom: 0;
  box-shadow:
    0 0 8px rgba(255, 255, 255, .75),
    0 4px 12px rgba(58, 42, 36, .18);
}

.content-wrap {
  justify-content: flex-end;
  width: 40%;
  display: flex;
}

.steps-clone {
  flex-direction: column;
  justify-content: center;
  margin-top: 0;
  display: flex;
  position: relative;
}

.scroll-base-2 {
  background-color: rgba(255, 255, 255, .28);
  width: 3px;
  height: 100%;
  box-shadow: 0 0 6px rgba(255, 255, 255, .3);
}

.step-content-block {
  text-align: left;
  align-self: center;
  position: relative;
}

.content-24 {
  min-width: auto;
  margin-top: 10px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
}

/* ---------- Journey: Verbindungslinien ----------
   Die Segmente überlappen sich an den inneren Punkten um 40px.
   Am ersten und letzten Punkt werden die äußeren Enden exakt begrenzt.
   Der Klassenname .scoll-wrap bleibt aus Kompatibilitätsgründen erhalten.
   -------------------------------------------------------------------------- */
.scoll-wrap {
  flex-direction: column;
  align-items: center;
  height: calc(100% + 80px);
  display: flex;
  position: absolute;
  bottom: calc(50% - 40px);
}

@media screen and (min-width: 768px) {
  /* Erste Verbindung: oben exakt am ersten Punkt enden. */
  .steps-clone .step-block:nth-child(2) .scoll-wrap {
    height: calc(100% + 40px);
    bottom: calc(50% - 40px);
  }

  /* Letzte Verbindung: unten exakt am letzten Punkt enden. */
  .steps-clone .step-block:last-child .scoll-wrap {
    height: calc(100% + 40px);
    bottom: 50%;
  }
}


/* ---------- Titelbereiche im Card-Look ---------- */
.title-section-dark,
.title-section-light {
  background-color: var(--color-card-bg);
  background-image: linear-gradient(
    225deg,
    var(--color-card-gradient-start) 20%,
    var(--color-card-gradient-middle) 60%,
    var(--color-card-gradient-end) 100%
  );
  border: 2px solid var(--color-border-light);
  border-radius: 20px;
  box-shadow: 0 8px 28px var(--color-shadow);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.title-section-dark {
  padding: clamp(24px, 3vw, 40px);
}

/* Einheitliche, kompakte Titel-Cards:
   Kunden / Weg zum Erfolg / Team / Kontakt */
.title-section-light {
  padding: 28px 40px;
  gap: 12px;
}

.title-section-light > .h2-on-light {
  margin: 0;
  line-height: 1.2;
  text-align: center;
  display: block;
}

.title-section-light > .h2-on-light .h2-orange,
.title-section-light > .h2-on-light .h2-dark {
  margin: 0;
  padding-right: 0;
  display: inline;
}

.title-section-light > .sub-text-light {
  flex: 0 1 auto;
  max-width: 1000px;
  margin: 0;
}

/* Im Kundenbereich bestimmt der 1200px-Container die exakte Breite. */
.projects .title-section-light {
  max-width: none;
}

.scroll-wrapper {
  text-align: center;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}
.sub-text-dark {
  color: var(--color-text);
  text-align: center;
  text-shadow: none;
  flex: 1;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 28px;
}

.sub-text-light {
  color: var(--color-text);
  text-align: center;
  flex: 0 1 auto;
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 28px;
}

.card-image {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 240px;
  padding-top: 40px;
  display: flex;
}

.card-text {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.scroll-icon {
  text-align: center;
  width: 200px;
  max-width: none;
  height: auto;
  display: inline-block;
}

.link-block {
  display: block;
}

/* ==========================================================================
   SEITENHINTERGRUND
   Das Hero-Bild bleibt beim Scrollen stehen.
   Transparenz der Sektionen wird über die Surface-Variablen gesteuert.
   ========================================================================== */
.body {
  font-family: var(--font-body);
  display: block;
  color: var(--color-text);
  background-color: var(--color-page-bg);
  background-image: url('../images/galaniprojects-hero-bg-01.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.terms-conditions {
  color: var(--color-text);
  font-family: var(--font-body);
}

.imprint {
  color: var(--color-accent);
  -webkit-text-stroke-color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 24px;
}

.imprint.h3 {
  text-transform: uppercase;
  font-size: 18px;
  line-height: 22px;
}

.gp-logo {
  margin-top: 0;
  margin-bottom: 0;
  padding: 1rem;
}

.container-16 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-width: auto;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}


.link-block-2 {
  text-decoration: none;
}

/* ==========================================================================
   NAVIGATION
   Hauptfarbe über --color-nav-bg steuern.
   ========================================================================== */
.gp-navbar,
.gp-navbar-de {
  z-index: 1000;
  background-color: var(--color-nav-bg);
  border-bottom: 1px solid var(--color-border);
  width: 100%;
  padding-left: 100px;
  padding-right: 100px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  box-shadow: 0 6px 20px var(--color-shadow);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.imprint-txt {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  background-color: var(--color-section-bg);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 100px;
  font-size: 18px;
  display: flex;
}

.image-juris,
.image-porta {
  opacity: .6;
  filter: grayscale();
  object-fit: fill;
  border-radius: 0;
  width: 50%;
  max-width: none;
  height: auto;
  margin: 20px auto;
  display: block;
  position: static;
  overflow: visible;
}

.image-hoffmann-group {
  opacity: .6;
  filter: grayscale();
  object-fit: fill;
  border-radius: 0;
  width: 80%;
  max-width: none;
  height: auto;
  margin: 20px auto;
  display: block;
  position: static;
  overflow: visible;
}

.image-timocom,
.image-lime-tec,
.image-cornelsen {
  opacity: .6;
  filter: grayscale();
  object-fit: fill;
  border-radius: 0;
  width: 70%;
  max-width: none;
  height: auto;
  margin: 20px auto;
  display: block;
  position: static;
  overflow: visible;
}

.image-botlabs {
  opacity: .6;
  filter: grayscale();
  object-fit: fill;
  border-radius: 0;
  width: 20%;
  max-width: none;
  height: auto;
  margin: 20px auto;
  display: block;
  position: static;
  overflow: visible;
}

/* ==========================================================================
   STATUSMELDUNGEN
   Diese Regeln lagen vorher als <style>-Block direkt im HTML.
   ========================================================================== */
.message {
  display: block;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-weight: 500;
  overflow: visible;
}

.message.success,
.success {
  color: var(--color-success-text);
  background-color: var(--color-success-bg);
  border-color: var(--color-success-border);
}

.message.error,
.error {
  color: var(--color-error-text);
  background-color: var(--color-error-bg);
  border-color: var(--color-error-border);
}

.heading-h5-dark-left {
  color: var(--color-text);
  text-align: left;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 500;
  line-height: 140%;
}

.p-text-dark-left {
  color: var(--color-text);
  text-align: left;
  flex: 0 auto;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 22px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  display: flex;
}

.heading-2,
.heading-3 {
  font-family: var(--font-heading);
}

.gp-navbar-de {
  border-radius: 0;
  margin-top: 0;
  font-weight: 800;
}

.gp-navbar-de._02 {
  margin-top: 0;
}

.nav-menu {
  background-color: transparent;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
  display: flex;
}

.nav-link-lang {
  color: var(--color-text-muted);
}

.nav-link-lang:hover {
  color: var(--color-accent);
}

.nav-link-lang[aria-current="page"] {
  color: var(--color-accent);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.gp-footer-de {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: var(--color-deep-blue);
  color: var(--color-text-light);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 12px 24px 10px;
  display: flex;
}

.h2-main {
  color: var(--color-text);
  text-align: center;
  text-shadow: none;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.feedbax {
  background-color: var(--color-section-bg);
}

.fb-image {
  width: 100%;
  height: 100%;
}

.flex-block-4 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.feedbax01 {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  background-color: var(--color-section-bg);
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 5%;
  display: block;
}

.feed_bax {
  padding-left: 10px;
}

.bold-text {
  letter-spacing: .15px;
  font-family: var(--font-heading);
  font-weight: 400;
}

.bold-text-2 {
  color: var(--color-accent);
  letter-spacing: .15px;
  font-family: var(--font-heading);
}

.columns-software {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: grid;
}

/* ==========================================================================
   EXPERTISE / LEISTUNGEN
   ========================================================================== */
.expertise {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  background-color: var(--color-section-bg);
  border: 1px solid var(--color-border);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding: 100px 5%;
  display: flex;
}

.video-code {
  border: 0px solid var(--color-border);
  border-radius: 0;
}

.expertise-3x2 {
  flex-direction: column;
  justify-content: center;
  align-self: center;
  align-items: center;
  display: flex;
}

.expertise-video {
  flex-direction: column;
  justify-content: center;
  align-self: center;
  align-items: center;
}

.video-wrapper {
  border: 1px solid var(--color-border);
  border-radius: 0;
  height: 0;
  padding-bottom: 56.25%;
  display: block;
  position: relative;
  overflow: visible;
}

.heading-video-h3 {
  color: var(--color-accent);
  text-align: center;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 500;
  line-height: 140%;
}


#about-us.hero-section {
  background-color: var(--color-section-bg-strong);
}

#contact-us.contact-form {
  background-color: var(--color-section-bg-strong);
}


.logo-text {
  font-family: var(--font-heading);
  font-weight: 400;
}

.main-logo {
  -webkit-text-fill-color: inherit;
  mix-blend-mode: normal;
  background-clip: border-box;
  width: 100%;
  max-width: none;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  padding: 0 1rem 0 0;
}

.image-cariad {
  opacity: .6;
  filter: grayscale();
  object-fit: fill;
  border-radius: 0;
  width: 80%;
  max-width: none;
  height: auto;
  margin: 30px auto 20px;
  display: block;
  position: static;
  overflow: visible;
}

.image-50hz {
  opacity: .6;
  filter: grayscale();
  object-fit: fill;
  border-radius: 0;
  width: 70%;
  max-width: none;
  height: auto;
  margin: 20px auto;
  display: block;
  position: static;
  overflow: visible;
}

.image-axel-springer {
  opacity: .6;
  filter: grayscale();
  object-fit: fill;
  border-radius: 0;
  width: 80%;
  max-width: none;
  height: auto;
  margin: 20px auto;
  display: block;
  position: static;
  overflow: visible;
}

.image-public {
  opacity: .6;
  filter: grayscale();
  object-fit: fill;
  border-radius: 0;
  width: 50%;
  max-width: none;
  height: auto;
  margin: 20px auto;
  display: block;
  position: static;
  overflow: visible;
}

.bold-text-3 {
  font-weight: 500;
}

.button {
  margin-left: 0;
}

.button.sqf {
  color: var(--color-text);
  text-transform: uppercase;
  background-color: var(--color-control-bg);
  background-image: none;
  border-radius: 4rem;
  padding: 1rem 2rem;
  font-size: 18px;
  font-weight: 500;
  box-shadow: 0 6px 16px var(--color-shadow);
}

.div-block {
  justify-content: center;
  align-items: center;
  display: flex;
}

.top-banner {
  clear: none;
  background-color: var(--color-section-bg-strong);
  margin-top: 75px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: static;
  top: 100px;
}

.sqf-link {
  color: var(--color-deep-blue);
  -webkit-text-stroke-color: var(--color-deep-blue);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: block;
}

.banner {
  z-index: 100;
  text-align: center;
  background-color: var(--color-legacy-blue);
  border-radius: 0;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: none;
  height: 60px;
  margin: 0 0 auto;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  position: fixed;
}

.topbanner {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: var(--color-danger);
  background-color: transparent;
  border-radius: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 40px;
  margin: 12px auto 8px;
  padding-left: 1rem;
  padding-right: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  position: relative;
}

.topbanner.left {
  margin: 20px 0 0;
  padding-left: 0;
  padding-right: 0;
  display: block;
  transform: rotate(-45deg);
}

.ms-failed-icon {
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: flex;
  overflow: hidden;
}

.sqflink {
  color: var(--color-accent);
  border-bottom: 1px solid var(--color-border);
  margin-right: 0;
  padding-left: 0;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 10px;
  text-decoration: none;
}

.sqflink.is-red {
  border-bottom-color: var(--color-danger);
  margin-right: 1rem;
}

.sqflink.top {
  color: var(--color-text);
}

.text-block-11 {
  color: var(--color-text);
  text-align: center;
  border: 1px solid var(--color-border);
  margin-top: 0;
  margin-bottom: 0;
  line-height: 21px;
  text-decoration: none;
}

.button-2 {
  clear: none;
  color: var(--color-text);
  background-color: transparent;
  border: 2px solid var(--color-border);
  border-radius: 20px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 0;
  margin-left: 60px;
  padding: 5px 10px;
  display: block;
  position: static;
}

.image-13 {
  width: auto;
  max-width: none;
  height: 36px;
  margin-top: 0;
  margin-left: 10px;
}


.picture-wrapper {
  border: 0;
  border-radius: 0;
  height: 0;
  padding-bottom: 56.25%;
  display: block;
  position: relative;
  overflow: visible;
}

.external-textlink {
  color: var(--color-accent);
  line-height: 20px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

/* ==========================================================================
   SQF-BADGE
   Bleibt im HTML, ist aber bewusst deaktiviert.
   ========================================================================== */
.badge {
  display: none !important;
}

.rich-text-block-aufgaben {
  color: var(--color-text);
  text-align: center;
  font-size: 18px;
  line-height: 28px;
}

@media screen and (min-width: 1440px) {
  .logo {
    width: auto;
    max-width: 100%;
  }

  .small-columns {
    justify-content: center;
    align-items: flex-end;
  }

  .columns-2 {
    grid-template-rows: auto auto auto;
  }

  .vectors-wrapper-23 {
    width: 128px;
    height: 128px;
  }

  .contact-form {
    text-align: center;
    max-width: none;
  }

  .form-button {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 20px;
  }

  .section-hero {
    align-items: center;
    padding-top: 88px;
    padding-bottom: 169px;
  }

  .projects {
    max-width: none;
    padding: 100px;
  }

  .grid {
    grid-template-rows: auto auto auto auto;
    max-width: 1200px;
  }

  .contact {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .text-block-contact {
    text-align: left;
  }

  .step {
    padding: 11%;
  }

  .content-block {
    max-width: 1200px;
  }

  .img-block {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .imprint {
    font-family: var(--font-heading);
  }

  .feedbax01 {
    text-align: center;
    justify-content: center;
    align-items: center;
    max-width: none;
  }

  .feed_bax {
    padding-right: 10px;
  }

  .columns-software {
    grid-template-rows: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-code {
    width: 100%;
  }
.paragraph-14 {
    font-family: var(--font-body);
  }

  .topbanner.left {
    margin-top: 31px;
    margin-left: 0;
  }

  .button-close {
    margin-top: -154px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1279px) {
  .gp-navbar,
.gp-navbar-de {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-link,
.nav-link-lang {
    letter-spacing: 0;
    margin-left: 2px;
    margin-right: 2px;
    padding-left: 6px;
    padding-right: 6px;
    font-size: 14px;
  }
}

@media screen and (max-width: 991px) {
  .nav-link {
    margin-left: 20px;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 18px;
  }

  .columns-footer {
    flex-direction: column;
    align-items: center;
  }

  .logo-footer,
  .content-13,
  .footer-links-6 {
    align-items: center;
  }

  .columns-2 {
    grid-template-columns: 1fr 1fr;
  }

  .vectors-wrapper-23 {
    font-size: 2.5em;
  }

  .contact-form {
    padding: 40px;
  }

  .section-hero {
    padding-top: 140px;
    padding-left: 40px;
    padding-right: 40px;
    display: block;
  }

  .grid-2-column {
    grid-template-columns: 1fr;
  }

  .hero-text {
    width: auto;
  }

  .team-circles-2 {
    padding: 40px;
  }

  .container-team {
    grid-template-columns: 1fr;
    margin-top: 0;
    display: grid;
  }

  .image-tree {
    flex-direction: column;
    align-items: center;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .p-text-dark-m {
    max-width: 100%;
  }

  .projects {
    padding: 40px;
  }

  .grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .project-wrapper {
    min-height: 300px;
  }

  .hero-section {
    min-height: 0;
    padding: 40px;
  }

  .contact-adress {
    width: 100%;
    margin-top: 40px;
  }

  .contact-us {
    width: 100%;
    margin-left: 0;
  }

  .contact {
    display: block;
  }

  .step-block {
    margin-top: 20px;
  }

  .step {
    margin: 20px 0;
    padding: 5%;
  }

  .dot {
    display: none;
  }

  .content-block {
    margin-left: 0;
    margin-right: 0;
  }

  .content-wrap {
    width: 66%;
  }

  .image-8,
  .image-9,
  .image-10,
  .image-11 {
    max-width: 80%;
  }

  .icon {
    color: var(--color-text);
  }

  .menu-button-2.is-open {
    background-color: var(--color-accent-soft);
    border: 1px solid var(--color-accent-border);
  }

  .gp-navbar,
  .gp-navbar-de {
    padding-left: 0;
    padding-right: 0;
  }

  .imprint-txt {
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .nav-link-lang {
    margin-left: 20px;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 18px;
  }

  .nav-link:hover,
  .nav-link[aria-current="page"],
  .nav-link-lang:hover,
  .nav-link-lang[aria-current="page"] {
    background-color: var(--color-accent-soft);
  }

  .flex-block-4 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .feedbax01 {
    padding: 60px 40px;
  }

  .expertise {
    padding: 40px;
  }

  .video-card-01 {
    padding: 36px;
  }

  .our-tasks {
    padding-left: 40px;
    padding-right: 40px;
  }

  .main-logo {
    max-width: 600px;
  }

  .sqf-card {
    padding: 36px;
  }

  .brand {
    justify-content: center;
    align-items: center;
    margin-left: 40%;
    margin-right: auto;
    display: block;
  }

}

@media screen and (max-width: 767px) {
  .h2-orange {
    justify-content: space-between;
    align-items: center;
    margin-top: 0;
    padding-right: 10px;
    font-size: 40px;
    display: flex;
  }

  .h2-dark {
    flex-direction: column;
    padding-right: 10px;
    font-size: 40px;
    display: flex;
  }

  .nav-link {
    margin-left: 10px;
    display: block;
  }

  .title-section-dark {
    max-width: none;
  }

  .columns-2 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .heading-h5-3 {
    overflow-wrap: normal;
    font-size: 21px;
  }

  .section-hero {
    padding-top: 100px;
    padding-left: 50px;
    display: block;
  }

  .container-12 {
    max-width: 1200px;
  }

  .team-circles-2 {
    padding: 40px 20px;
  }

  .contact-form,
  .projects {
    padding: 40px 20px;
  }

  .title-section-light {
    padding: 24px 20px;
    gap: 10px;
  }

  .team-text {
    padding: 24px 20px;
  }

  .h2-two-color-dark {
    justify-content: center;
    align-self: stretch;
    margin-top: 0;
    padding-bottom: 0;
    font-size: 40px;
    line-height: 120%;
    display: flex;
  }

  .p-text-dark-m {
    width: 100%;
  }

  .grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-section {
    margin: 0;
    padding: 40px 20px;
  }

  .step-block {
    background-color: transparent;
    border: 2px solid var(--color-border);
    border-bottom: 2px solid var(--color-accent);
    border-radius: 0;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    min-height: auto;
    margin-top: 20px;
    padding: 20px 20px 40px;
    display: flex;
  }

  .step {
    margin: 0;
    padding: 5%;
    display: block;
  }

  .dot {
    display: none;
  }

  .img-block {
    z-index: 3;
    order: 3;
    width: 80%;
    min-height: auto;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
    position: relative;
  }

  .content-wrap {
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    padding-bottom: 0;
    display: block;
  }

  .steps-clone {
    display: block;
  }

  .step-content-block {
    z-index: 2;
    order: -1;
    justify-content: center;
    align-items: center;
    display: block;
  }

  .scoll-wrap {
    display: none;
  }

  .card-image {
    max-width: 180px;
  }

  .body {
    border-style: solid;
    border-width: 1px;
    border-color: var(--color-text-muted) var(--color-text-muted) var(--color-accent);
  }
.imprint-txt {
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-h5-dark-left {
    overflow-wrap: normal;
    font-size: 21px;
  }

  .nav-link-lang {
    margin-left: 10px;
    display: block;
  }

  .flex-block-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }

  .feedbax01 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .columns-software {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .sqf-card,
  .video-card-01 {
    padding: 24px 20px;
  }

  .expertise {
    padding: 40px 20px;
  }

  .heading-video-h3 {
    overflow-wrap: normal;
    font-size: 21px;
  }

  .our-tasks {
    padding-top: 40px;
    padding-bottom: 40px;
  }
.main-logo {
    max-width: 400px;
  }

}

@media screen and (max-width: 479px) {
  /* Journey SVG small mobile */
  .journey-image {
    width: min(76vw, 200px);
  }

  .img-block::after {
    width: min(76vw, 200px);
  }

  .h2-orange {
    justify-content: center;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    padding-right: 10px;
    font-size: 30px;
    line-height: 100%;
  }

  .h2-dark {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    font-size: 30px;
    line-height: 100%;
    display: flex;
  }

  .small-columns {
    flex-direction: column;
    align-items: center;
  }

  .container-10 {
    max-width: none;
  }

  .columns-2 {
    grid-template-columns: 1fr;
  }

  .card {
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .heading-h5-3 {
    font-size: 24px;
  }

  .form-wrapper {
    max-width: none;
  }

  .section-hero {
    justify-content: flex-start;
    padding: 20px;
  }

  .container-12 {
    max-width: none;
  }

  .grid-2-column {
    margin-top: 80px;
  }

  .h2 {
    text-align: center;
    font-size: 1em;
  }

  .h2-two-color-dark {
    justify-content: center;
    align-self: auto;
    margin-bottom: 0;
    font-size: 30px;
    display: block;
  }

  .p-text-dark-m {
    width: 100%;
    font-size: 16px;
    line-height: 23px;
  }

  .projects {
    padding: 40px 20px;
  }

  .container-default {
    max-width: none;
    padding-left: 20px;
    padding-right: 20px;
  }

  .grid {
    grid-column-gap: 0px;
    grid-row-gap: 20px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    display: grid;
  }

  .project-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .label {
    text-align: center;
  }

  .contact-us {
    margin-left: auto;
    margin-right: auto;
  }

  .step-block {
    border-bottom-style: none;
    padding: 0;
  }

  .img-block {
    width: 90%;
  }

  .content-wrap {
    flex: 0 auto;
    align-self: auto;
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .steps-clone {
    position: static;
  }

  .step-content-block {
    position: static;
  }

  .content-24 {
    flex-direction: column;
    align-items: stretch;
    min-width: auto;
    font-size: 20px;
    display: flex;
  }

  .scroll-wrapper {
    margin-top: 20px;
  }
.sub-text-dark {
    margin-bottom: 0;
  }

  .sub-text-light {
    line-height: 24px;
  }

  .card-image {
    padding-top: 20px;
  }

  .image-9 {
    max-width: 80%;
  }
.imprint-txt {
    padding-bottom: 40px;
    padding-left: 10px;
    padding-right: 10px;
    display: block;
  }

  .heading-h5-dark-left {
    font-size: 24px;
  }

  .p-text-dark-left {
    width: 100%;
    font-size: 16px;
    line-height: 23px;
  }

  .h2-main {
    font-size: 1em;
  }

  .flex-block-4 {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .feedbax01 {
    padding: 40px 19px;
  }

  .expertise {
    padding: 40px 20px;
  }

  .video-card-01 {
    padding: 24px 20px;
  }

  .heading-video-h3 {
    font-size: 24px;
  }

  .our-tasks {
    padding: 40px 20px;
  }
.main-logo {
    width: 90%;
    min-width: auto;
    max-width: none;
  }

  .banner {
    display: none;
  }

  .sqflink {
    font-size: 14px;
  }

  .sqf-card {
    padding: 24px 20px;
  }

  .brand {
    margin-left: auto;
  }

}

/* ==========================================================
   HERO RELAUNCH FINAL
   Desktop: Text 1/3 + Slider 2/3
   Slides: 3:2
   Whole slide is a link + centered button CTA
   Hero navigation: animated Font Awesome scroll indicator
   ========================================================== */

.hero-relaunch.section-hero {
  position: relative;
  isolation: isolate;
  background-color: transparent;
  background-image: none;
  width: 100%;
  min-height: 100vh;
  height: auto;
  margin-top: 0;
  padding: 135px max(5vw, 32px) 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ---------- Hero background overlay ---------- */

.hero-relaunch.section-hero::before {
  content: "";
  z-index: 0;
  pointer-events: none;
  background-color: var(--color-hero-overlay);
  display: block;
  position: absolute;
  inset: 0;
}

.hero-relaunch.section-hero::after {
  content: "";
  display: none;
}

/* ---------- Hero layout ---------- */

.hero-relaunch__inner {
  z-index: 1;
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 2fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  background-color: var(--color-card-bg);
  background-image: linear-gradient(
    225deg,
    var(--color-card-gradient-start) 0%,
    var(--color-card-gradient-middle) 52%,
    var(--color-card-gradient-end) 100%
  );
  border: 2px solid var(--color-border-light);
  border-radius: 24px;
  box-shadow: 0 8px 28px var(--color-shadow);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

/* ---------- Hero text ---------- */

.hero-relaunch__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 460px;
}

.hero-relaunch__logo.main-logo {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  margin: 0 0 1rem 0;
  padding: 0 2rem;
}

.hero-relaunch__text {
  color: var(--color-text);
  margin: 0 0 1rem 0;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  text-align: left;
  text-shadow: none;
}


/* ---------- Hero scroll indicator ---------- */

.hero-scroll-indicator {
  color: var(--color-accent);
  background-color: transparent;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;;
  text-decoration: none;
  display: flex;
  position: relative;
  animation: hero-scroll-float 2.8s ease-in-out infinite;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.hero-scroll-indicator::after {
  content: "\f063";
  font-family: "Fa Solid 900", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: auto;
}

.hero-scroll-indicator::before {
  content: "";
  pointer-events: none;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  position: absolute;
  inset: -7px;
  opacity: 0;
  animation: hero-scroll-pulse 2.8s ease-out infinite;
}

.hero-scroll-indicator:hover {
  color: var(--color-text);
  background-color: var(--color-accent);
  animation-play-state: paused;
  transform: scale(1.08);
}

.hero-scroll-indicator:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 5px;
}

@keyframes hero-scroll-float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(7px);
  }
}

@keyframes hero-scroll-pulse {
  0% {
    opacity: 0;
    transform: scale(.9);
  }

  45% {
    opacity: .35;
  }

  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

/* ---------- Font Awesome arrows ---------- */

.hero-carousel__cta::after {
  content: "\f061";
  font-family: "Fa Solid 900", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: auto;
}


/* ---------- Carousel ---------- */

.hero-carousel {
  position: relative;
  width: 100%;
  min-width: 0;
}

.hero-carousel__viewport {
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, .72),
    0 8px 24px rgba(58, 42, 36, .10);
}

.hero-carousel__track {
  align-items: stretch;
  gap: clamp(14px, 1.5vw, 24px);
  display: flex;
  will-change: transform;
}

.hero-carousel__slide {
  position: relative;
  isolation: isolate;
  background: var(--color-section-bg-strong);
  color: var(--color-text);
  flex: 0 0 78%;
  aspect-ratio: 3 / 2;
  margin: 0;
  border-radius: 3px;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
}

.hero-carousel__slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  transform: scale(1.01);
  transition: transform .7s cubic-bezier(.22,.61,.36,1), filter .4s ease;
}

.hero-carousel__slide:hover img {
  transform: scale(1.035);
}

.hero-carousel__slide::after {
  content: "";
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, var(--color-slider-overlay-soft), var(--color-slider-overlay-mid) 45%, var(--color-slider-overlay-strong) 100%);
  position: absolute;
  inset: 35% 0 0;
}

/* ---------- Slider overlay ---------- */

.hero-carousel__overlay {
  z-index: 2;
  color: var(--color-text);
  pointer-events: none;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
}

/* ---------- Slider button ---------- */

.hero-carousel__cta {
  --slider-button-color: var(--color-accent);
  --slider-button-background: var(--color-control-bg);
  --slider-button-border: 2px;
  --slider-button-radius: 40px;
  --slider-button-padding-y: 12px;
  --slider-button-padding-x: 22px;
  --slider-button-font-size: 16px;

  color: var(--slider-button-color);
  background-color: var(--slider-button-background);
  border: var(--slider-button-border) solid var(--slider-button-color);
  border-radius: var(--slider-button-radius);
  justify-content: center;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  gap: 14px;
  padding: var(--slider-button-padding-y) var(--slider-button-padding-x);
  font-family: var(--font-body);
  font-size: var(--slider-button-font-size);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  transition: color .2s ease, background-color .2s ease, gap .2s ease, transform .2s ease;
}

.hero-carousel__slide:hover .hero-carousel__cta {
  color: var(--color-text);
  background-color: var(--color-accent);
  gap: 20px;
  transform: translateX(3px);
}

/* ---------- Counter / progress / navigation ---------- */

.hero-carousel__controls {
  align-items: center;
  gap: 12px;
  width: 78%;
  margin: 18px auto 0;
  display: flex;
}

.hero-carousel__status {
  color: var(--color-text-muted);
  align-items: center;
  gap: 18px;
  width: 78%;
  margin: 18px auto 0;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .08em;
  display: flex;
}

.hero-carousel__controls .hero-carousel__status {
  flex: 1;
  width: auto;
  min-width: 0;
  margin: 0;
}

.hero-carousel__nav {
  color: var(--color-accent);
  background-color: rgba(255, 255, 255, .42);
  border: 1px solid rgba(255, 255, 255, .88);
  border-radius: 50%;
  flex: 0 0 auto;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  display: inline-flex;
  box-shadow: 0 4px 12px var(--color-shadow);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.hero-carousel__nav::before {
  font-family: "Fa Solid 900", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

.hero-carousel__nav--prev::before {
  content: "\f060";
}

.hero-carousel__nav--next::before {
  content: "\f061";
}

.hero-carousel__nav:hover {
  color: var(--color-text);
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  transform: scale(1.08);
}

.hero-carousel__nav:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

.hero-carousel__count {
  white-space: nowrap;
}

.hero-carousel__count strong {
  color: var(--color-text);
  font-weight: 500;
}

.hero-carousel__progress {
  position: relative;
  background: var(--color-border-strong);
  flex: 1;
  height: 1px;
  display: block;
  overflow: hidden;
}

.hero-carousel__progress > span {
  background: var(--color-accent);
  width: 33.333%;
  height: 100%;
  display: block;
  transition: width 450ms ease;
}

/* ---------- Focus / keyboard ---------- */

.hero-carousel__slide:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 4px;
}

/* ==========================================================
   HERO TABLET
   ========================================================== */

@media screen and (max-width: 991px) {
  .hero-relaunch.section-hero {
    min-height: auto;
    padding: 125px 40px 70px;
  }

  .hero-relaunch__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-relaunch__content {
    max-width: 720px;
  }

  .hero-relaunch__logo.main-logo {
    width: min(80vw, 500px);
    max-width: 500px;
  }

  .hero-carousel__slide {
    flex-basis: 80%;
  }

  .hero-carousel__status {
    width: 80%;
  }

  .hero-carousel__controls {
    width: 80%;
  }
}

/* ==========================================================
   HERO MOBILE
   ========================================================== */

@media screen and (max-width: 767px) {
  .hero-relaunch.section-hero {
    padding: 110px 20px 54px;
  }

  .hero-relaunch__inner {
    gap: 38px;
  }

  .hero-relaunch__logo.main-logo {
    max-width: 360px;
    margin-bottom: 24px;
  }

  .hero-relaunch__text {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-carousel__track {
    gap: 12px;
  }

  .hero-carousel__slide {
    flex-basis: 88%;
  }

  .hero-carousel__overlay {
    left: 18px;
    right: 18px;
    bottom: 17px;
  }

  .hero-carousel__cta {
    --slider-button-padding-y: 10px;
    --slider-button-padding-x: 18px;
    --slider-button-font-size: 13px;

    gap: 10px;
  }

  .hero-carousel__cta::after {
    font-size: 14px;
  }

  .hero-carousel__status {
    width: 88%;
    margin-top: 12px;
  }

  .hero-carousel__controls {
    width: 88%;
    margin-top: 12px;
  }
}

/* ==========================================================
   HERO SMALL MOBILE
   ========================================================== */

@media screen and (max-width: 479px) {
  .hero-relaunch.section-hero {
    padding: 95px 16px 40px;
  }

  .hero-relaunch__logo.main-logo {
    width: 90%;
  }

  .hero-carousel__slide {
    flex-basis: 90%;
  }

  .hero-carousel__overlay {
    left: 15px;
    right: 15px;
    bottom: 14px;
  }

  .hero-carousel__cta {
    --slider-button-padding-y: 9px;
    --slider-button-padding-x: 16px;
    --slider-button-font-size: 12px;

    gap: 8px;
  }

  .hero-carousel__cta::after {
    font-size: 13px;
  }

  .hero-carousel__status {
    width: 90%;
  }

  .hero-carousel__controls {
    width: 90%;
  }

  .hero-carousel__nav {
    width: 32px;
    height: 32px;
  }
}


/* ==========================================================================
   SCROLL-ANIMATIONEN – VANILLA JS

   Ersetzt die früheren Webflow-Scroll-Interaktionen:
   - Aufgabengebiete: Fade In
   - Kunden-Grid: Slide In Bottom
   - Team-Grafik: Slide In Bottom
   - Timeline: gestaffeltes Einblenden der Inhalte

   Ohne JavaScript bleiben alle Inhalte sichtbar.
   ========================================================================== */

/* ---------- Allgemeine Reveal-Basis ---------- */
.gp-reveal {
  opacity: 0;
  will-change: opacity, transform;
  transition:
    opacity 1000ms cubic-bezier(.165, .84, .44, 1),
    transform 1000ms cubic-bezier(.165, .84, .44, 1);
}

.gp-reveal--fade {
  transform: none;
}

.gp-reveal--slide-up {
  transform: translate3d(0, 100px, 0);
}

.gp-reveal--delay-100 {
  transition-delay: 100ms;
}

.gp-reveal--delay-250 {
  transition-delay: 250ms;
}

.gp-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* ---------- Timeline ----------
   Entspricht funktional der früheren Webflow-Interaktion:
   Grafik zunächst dezent, beim Eintritt in den Viewport aktiv;
   der Dot wächst nach kurzer Verzögerung. Die Verbindungslinie bleibt statisch.
   ---------- */
.gp-timeline-reveal .img-block {
  opacity: .1;
  will-change: opacity;
  transition: opacity 400ms ease;
}

.gp-timeline-reveal .dot {
  width: 12px;
  height: 12px;
  transition:
    width 200ms ease,
    height 200ms ease,
    box-shadow 200ms ease;
}

.gp-timeline-reveal .bg-shadow {
  opacity: 0;
  transition: opacity 200ms ease;
}

.gp-timeline-reveal.is-visible .img-block {
  opacity: 1;
}

.gp-timeline-reveal.is-visible .dot {
  width: 24px;
  height: 24px;
  box-shadow:
    0 0 0 5px rgba(255, 255, 255, .25),
    0 5px 14px rgba(58, 42, 36, .18);
}

.gp-timeline-reveal.is-visible .bg-shadow {
  opacity: 1;
}

/* ---------- Barrierefreiheit: Bewegung reduzieren ---------- */
@media (prefers-reduced-motion: reduce) {
  .gp-reveal,
  .gp-timeline-reveal .img-block,
  .gp-timeline-reveal .dot,
  .gp-timeline-reveal .bg-shadow {
    opacity: 1 !important;
    transition: none !important;
  }

  .gp-timeline-reveal .dot {
    width: 24px !important;
    height: 24px !important;
  }
}

/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {
  .hero-carousel__track,
  .hero-carousel__progress > span,
  .hero-carousel__slide img,
  .hero-carousel__cta,
  .hero-carousel__nav {
    transition: none !important;
  }

  .hero-scroll-indicator,
  .hero-scroll-indicator::before {
    animation: none !important;
  }
}

/* ==========================================================================
   NAVIGATION – OHNE EXTERNE RUNTIME
   ========================================================================== */
.brand-2 {
  color: inherit;
  flex: 0 0 auto;
  text-decoration: none;
  display: block;
}

.menu-button-2 {
  color: var(--color-text);
  background: transparent;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  display: none;
}

.icon::before {
  content: "\f0c9";
  font-family: "Fa Solid 900", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

@media screen and (max-width: 991px) {
  .container-16 {
    justify-content: center;
    width: auto;
    min-width: auto;
    min-height: 72px;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
  }

  .brand-2,
  .brand-2[aria-current="page"] {
    margin-left: auto;
    margin-right: auto;
  }

  .nav-menu {
    background-color: var(--color-nav-bg);
    border-top: 1px solid var(--color-border);
    width: 100%;
    margin-left: 0;
    padding: 12px 10px 18px;
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    box-shadow: 0 12px 24px var(--color-shadow);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }

  .nav-menu.is-open {
    display: block;
  }

  .menu-button-2 {
    margin: 0;
    display: flex;
    position: absolute;
    right: 10px;
  }
}


/* ==========================================================================
   HINGEPOINT – SECTION
   Ergänzung auf Basis der bestehenden galaniprojects.css.
   Hintergrund nutzt bewusst --color-section-bg-strong, damit die
   bestehende Abfolge der Section-Overlays erhalten bleibt:
   Was wir tun (strong) / Expertise (light) / Hingepoint (strong) /
   Kunden (light) / Weg (strong) / Team (light) / Kontakt (strong).
   ========================================================================== */

.hingepoint-section {
  background-color: var(--color-section-bg-strong);
  border-bottom: 1px solid var(--color-border);
  width: 100%;
  padding: 100px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hingepoint-section .container-10 {
  margin-left: auto;
  margin-right: auto;
}

.hingepoint-title {
  text-align: center;
}

.hingepoint-heading {
  justify-content: center;
  width: 100%;
}

.hingepoint-card {
  width: 100%;
  background-color: var(--color-card-bg);
  background-image: linear-gradient(
    225deg,
    var(--color-card-gradient-start) 0%,
    var(--color-card-gradient-middle) 52%,
    var(--color-card-gradient-end) 100%
  );
  border: 2px solid var(--color-border-light);
  border-radius: 20px;
  box-shadow: 0 8px 28px var(--color-shadow);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  text-align: center;
}

.hingepoint-card--intro {
  padding: clamp(32px, 4vw, 52px);
}

.hingepoint-intro {
  max-width: 980px;
  margin: 18px auto 0;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.6;
}

.hingepoint-link {
  margin-top: 22px;
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
}

.hingepoint-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  display: grid;
}

.hingepoint-card--small {
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 36px;
  display: flex;
}

.hingepoint-card-text {
  max-width: 100%;
  margin: 16px auto 0;
}

.hingepoint-list {
  width: min(100%, 420px);
  margin: 24px auto;
  padding: 0;
  list-style: none;
  text-align: left;
}

.hingepoint-card--small .hp-btm {
  margin-top: auto;
  align-self: center;
}

.hingepoint-list li {
  color: var(--color-text);
  border-top: 1px solid var(--color-border);
  padding: 12px 0 12px 28px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  position: relative;
}

.hingepoint-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--color-accent);
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 19px;
}

/* Das erweiterte Menü bleibt auf großen Desktops in einer Zeile. */
@media screen and (min-width: 1280px) {
  .nav-link,
  .nav-link-lang {
    margin-left: 3px;
    margin-right: 3px;
    padding-left: 7px;
    padding-right: 7px;
    font-size: 15px;
  }
}

@media screen and (max-width: 991px) {
  .hingepoint-section {
    padding: 40px;
  }

  .hingepoint-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .hingepoint-section {
    padding: 40px 20px;
  }

  .hingepoint-grid {
    gap: 20px;
  }

  .hingepoint-card--intro,
  .hingepoint-card--small {
    padding: 24px 20px;
  }

  .hingepoint-intro {
    font-size: 17px;
    line-height: 1.5;
  }
}

/* textausrichtung */

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.copyright {
  text-align: right;
}

/* Team-Text: Card-Look wie die übrigen Karten */
.team-text {
  width: 100%;
  padding: 40px;
  border-radius: 20px;
}

@media screen and (max-width: 767px) {
  .team-text {
    padding: 24px 20px;
  }
}

/* Footer kompakt und vertikal ausgerichtet */
.gp-footer-de .logo-footer {
  justify-content: center;
}

.gp-footer-de .content-13,
.gp-footer-de .footer-links-6,
.gp-footer-de .column-36 {
  justify-content: center;
  align-items: flex-end;
}

.gp-footer-de .link-3,
.gp-footer-de .text-3 {
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  .gp-footer-de {
    padding: 12px 20px 10px;
  }

  .gp-footer-de .columns-footer {
    gap: 12px;
  }

  .gp-footer-de .small-columns {
    padding-top: 0;
  }
}

/* Abstände */

.mb12 {
  margin-bottom: 12px;
}
.mt12 {
  margin-top: 12px;
}
.mt24 {
  margin-top: 24px;
}