/*
--- 01 TYPOGRAPHY SYSTEM

- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

- Font weights
Default: 400
Medium: 500
Semi-bold: 600
Bold: 700

- Line heights
Default: 1
Small: 1.05
Medium: 1.2



Paragraph default: 1.6

- Letter spacing
-0.5px
0.75px

--- 02 COLORS

- Primary: #e67e22
#00d4af
#fe666c
#242239

#14a498
#1f8589
#1f8589

#fd0630











- Tints:
#fdf2e9
#fae5d3
#eb984e

- Shades: 
#cf711f
#45260a

- Accents:
- Greys

#888
#767676 (lightest grey allowed on #fff)
#6f6f6f (lightest grey allowed on #fdf2e9)
#555
#333

--- 05 SHADOWS

0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);

--- 06 BORDER-RADIUS

Default: 9px
Medium: 11px

--- 07 WHITESPACE

- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

Media Queries 
EM = PX/16 

944px 

@media (max-width: 59em){
html {
/* Zielwert = 8px / 16px= 0.5 = 50% ////*
font-size: 50%; 
}


*/

html {
  /* font-size: 10px; */
  /* 10px / 16px = 0.625 = 62.5% */
  /* Percentage of user's browser font-size setting */
  font-size: 62.5% !important;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "inter", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #555;
  overflow-x: hidden;

  box-shadow: 0 0 20px rgba(0, 0, 0, 0.02);

  /*  border: 8px solid #d1ccc6;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
  max-width: 1400px;
  margin: auto; */
}

/**************************/
/* GENERAL REUSABLE COMPONENTS */
/**************************/

.container {
  /* 1140px */
  max-width: 120rem;
  padding: 0 3.2rem;
  padding-bottom: 4.2rem;
  margin: 0 auto;
}

.container-tech-people {
  /* 1140px */
  max-width: 120rem;
  padding: 0 3.2rem;
  padding-bottom: 6rem;
  margin: 0 auto;
}

.grid {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 9.6rem;
}

.grid:not(:last-child) {
  margin-bottom: 12.8rem;
}

.grid--2-cols {
  grid-template-columns: repeat(2, 1fr);

  align-items: center; /* vertikale Zentrierung */
  justify-items: center; /* horizontale Zentrierung in den Spalten */
}

.grid--3-cols {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4-cols {
  grid-template-columns: repeat(4, 1fr);
}

.grid--5-cols {
  grid-template-columns: repeat(5, 1fr);
}

.grid--center-v {
  align-items: center;
}

.subheading {
  display: block;
  font-size: 1.6rem;
  font-weight: 200;
  color: #555;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
  text-align: center;
}

.heading-primary,
.heading-secondary,
.heading-tertiary {
  font-weight: 700;
  color: #265147;
  /* color: #343a40; */
  letter-spacing: -0.5px;
}

.heading-primary {
  font-size: 7.8rem;
  line-height: 1.05;
  margin-bottom: 3.2rem;
  text-align: center;
  font-family: inter;
}

.heading-secondary {
  font-size: 4.4rem;
  line-height: 1.2;
  margin-bottom: 1.6rem;
  text-align: center;
  color: #265147;
  font-weight: 500;
}

.heading-tertiary {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 3.2rem;
}

.btn,
.btn:link,
.btn:visited {
  display: inline-block;

  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;

  /* Only necessary for .btn */
  border: none;
  cursor: pointer;
  font-family: inherit;

  /* Put transition on original "state" */
  /* transition: background-color 0.3s; */
  transition: all 0.3s;
  margin-bottom: 1.6rem;
  z-index: 10;
  position: relative;
}

.btn--full:link,
.btn--full:visited {
  background-color: #0e7c7b;
  /*   background-color: #e67e22; */
  color: #fff;
}

.btn--full:hover,
.btn--full:active {
  background-color: #cf711f;
}

.btn--outline:link,
.btn--outline:visited {
  background-color: #fff;
  color: #2f6559;
  border: 1px solid #2f6559;
}

.btn--outline:hover,
.btn--outline:active {
  background-color: #fff;
  transition: all 0.3s;

  /* border: 3px solid #fff; */

  /* Orangener Glow außen */
  box-shadow: 0 0 2px 2px rgba(47, 101, 89, 0.597);
  border-color: #2f6559; /* optional: Rahmen orange einfärben */
}

.btn--form {
  background-color: #45260a;
  color: #fff;
  align-self: end;
  padding: 1.2rem;
}

.btn--form:hover {
  background-color: #fff;
  color: #555;
}

.link:link,
.link:visited {
  display: inline-block;
  color: #2f6559;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: all 0.3s;
}

.link:hover,
.link:active {
  color: #2f6559;
  /*   color: #cf711f; */
  border-bottom: 1px solid transparent;
}

.list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.list-item {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.list-icon {
  width: 3rem;
  height: 3rem;
  color: #2f6559;
}

*:focus {
  outline: none;
  /* outline: 4px dotted #e67e22; */
  /* outline-offset: 8px; */
  box-shadow: 0 0 0 0.8rem rgba(38, 87, 63, 0.248);
}

/* HELPER/SETTINGS CLASSES */
.margin-right-sm {
  margin-right: 1.6rem !important;
}

.margin-bottom-md {
  margin-bottom: 4.8rem !important;
}

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

strong {
  font-weight: 500;
}

/**************************/
/* HEADER */
/**************************/

.top-wrapper {
  position: relative;

  /* 1. Basis-Hintergrundfarbe */
  background-color: #f9f7f2; /* #fbf8f3;  */ /* #fdf9ee;   */

  /* 2. Mehrere Layer: zuerst der Verlauf, dann das SVG */
  /*  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.06), transparent),
    url("/img/lines.svg");

  background-repeat: no-repeat, no-repeat;
  background-position: top left, top left;
  background-size: auto 120vh, auto 120vh;
  */
}

/* Damit der weiße Header-Inner und dein Hero-Inhalt über den Linien liegen */
.header,
.section-hero {
  position: relative;
  z-index: 1;
  background: transparent; /* zieht die gelbe Farbe vom Wrapper durch */
}

.header {
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;

  height: auto;
  padding: 0;

  position: relative;
  z-index: 1000; /* damit der Inhalt vor den Linien liegt */
}

/* .header {
  background-color: #fbf8f3;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;

  height: auto;
  padding: 0;

  background-image: radial-gradient(#93a8a3 1.1px, transparent 1px);
  background-size: 24px 24px;
} */

.header-inner {
  /* 2a) Fixieren und zentrieren */
  /* position: fixed;
  top: 3rem; 

  left: 50%;
  transform: translateX(-50%);
  z-index: 100; */

  margin-top: 3rem;

  /* 2b) Breite und Padding */
  width: calc(
    100% - 4rem
  ); /* nimmt die Breite minus etwas Rand (z.B. 2rem beidseitig) */
  max-width: 140rem;
  padding: 1.2rem 2.8rem;
  /* 2c) Weißer Hintergrund + abgerundete Ecken + Schatten */
  background-color: #ffffff;
  border-radius: 1.8rem; /* Medium-Radius (12px) */
  box-shadow: 0.2rem 0.2rem rgba(0, 0, 0, 0.025);

  /* 2d) Flex-Layout für Logo + Nav-Links */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.8rem; /* Abstand zwischen Bild und Text */
}

/**************************/
/* NAVIGATION */
/**************************/

.main-nav-list {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 3.2rem;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #265147;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #265147;

  transition: all 0.3s;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  color: #fff;
  background-color: #265147;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  color: #fff;
  background-color: #cf711f;
}

.nav-arrow {
  width: 2rem;
  height: 2rem;
  color: #cf711f;
  /*   color: #cf711f; */
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* MOBILE  */

.btn-mobile-nav {
  position: relative;
  z-index: 1000;
  border: none;
  background: none;
  cursor: pointer;
  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;

  color: #333;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

.logo-text {
  font-size: 3.2rem;
  margin-right: auto;
  color: #2f6559;
}

/**************************/
/* HERO SECTION */
/**************************/

.section-hero {
  padding: 4.8rem 0;
  text-align: center;
  background-color: transparent;
  z-index: 1;
  position: relative;
  height: 700px; /* stand bei dir weiter unten doppelt */
}

/* Verlauf weiß unten */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0rem;
  width: 100%;
  background: linear-gradient(to bottom, transparent, #fbf8f3);
  z-index: 2;
}

.hero {
  max-width: 140rem;
  min-height: 60rem;
  position: relative;
  margin: 0 auto;
  padding: 0 3ch;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  align-items: center;
}

/* .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.04) 1px,
    transparent 1px
  );
  background-size: 15px 15px;
  z-index: 0;
} */

/* Falls du irgendwo .hero-image nutzt – nur diese Version behalten */
.hero-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Unterstich simple */
.underline-wrapper {
  position: relative;
  display: inline-block;
  z-index: 0;
}
.underline-img {
  position: absolute;
  left: 0;
  bottom: -1.7em;
  width: 100%;
  height: auto;
  pointer-events: none;
  z-index: -1;
}

/**************************/
/* HERO IMG SECTION */
/**************************/

/* FIX: Entfernt evtl. geerbte Hintergründe auf der Section */
.image-section-people-big,
.image-section-people-big::before,
.image-section-people-big::after {
  background: none !important;
  background-image: none !important;
  content: none;
}

.image-section-people-big {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0;
  position: relative;
  z-index: 3; /* über dem Grid (::before) */
}

/* Bühne: skaliert proportional (608 × 410) */
.image-wrapper-people-big {
  position: relative;
  transform: translateY(2.6rem); /* z.B. 32px nach unten */
  width: clamp(320px, 90vw, 1100px);
  aspect-ratio: 608 / 410; /* Maße von people.png */
  margin: 0 auto;
}

/* Großes people.png als Hintergrund-Layer */
.people-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -128%);
  width: 62%;
  object-fit: contain;
  pointer-events: none;
  z-index: 1;
  display: block;
}

/* Basiseigenschaften für alle Einzel-PNGs */
.hero-person {
  position: absolute;
  height: auto;
  pointer-events: auto; /* Hover-Ereignisse erlaubt */
  z-index: 3; /* über people-bg */
  display: block;
}

/* Beispiel-Positionen (in %) – passe sie nach Bedarf an */
.hero-person-1 {
  left: 12%;
  bottom: 58%;
  width: 10%;
}

.hero-person-3 {
  left: 95%;
  bottom: 80%;
  width: 19%;
}
.hero-person-4 {
  left: -18%;
  bottom: 107%;
  width: 45%;
}
.hero-person-4-2 {
  left: -10%;
  bottom: 85%;
  width: 38%;
}
.hero-person-5 {
  left: 5%;
  bottom: 55%;
  width: 90%;
}

.hero-person-6 {
  left: 10%;
  bottom: 75%;
  width: 30%;
}

.hero-person-7 {
  left: 85%;
  bottom: 88%;
  width: 11%;
}

.hero-person-8 {
  left: 73%;
  bottom: 70%;
  width: 10%;
}

/* SMALL!!!!!!!!! */

.hero-person-2 {
  left: 7%;
  bottom: 120%;
  width: 19%;
}

.hero-person-4-small {
  left: 74%;
  bottom: 108%;
  width: 19%;
}

.hero-person-4 {
  left: 30%;
  bottom: 87%;
  width: 19%;
}

.hero-person-3-small {
  left: 23%;
  bottom: 102%;
  width: 8%;
}

.hero-person-2-small-2 {
  left: 52%;
  bottom: 90%;
  width: 22%;
}

.hero-person-7-small {
  left: 73%;
  bottom: 98%;
  width: 4%;
}

/**************************/
/* HERO CIRCLES */
/**************************/

/**************************/
/* HERO CIRCLES (final)   */
/**************************/

/* Basis für alle Kreise */
.circle-link {
  position: absolute;
  z-index: 4;
  pointer-events: auto;
  cursor: pointer;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  opacity: 0; /* wird per Autoplay/Hover eingeblendet */
  transform: scale(0.8);
  transition: opacity 0.9s ease, transform 0.9s ease; /* langsamer */
  transition-delay: var(--delay-show, 0s); /* Stagger */
  overflow: visible;
  /* NEU: Standard-Variablen */
  --delay: 0s; /* individueller Start je Kreis */
  --write-after: 300ms; /* Text beginnt kurz nach dem Pop-in */
}

/* Text-SVG im Kreis (bleibt wie gehabt) */
.circle-red {
  --text-pad: 22px;
} /* optional */
.circle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + -20px);
  height: calc(100% + -20px);
  transform: translate(-50%, -50%) rotate(0deg);
  transform-origin: 50% 50%;
  overflow: visible;
  pointer-events: none;
}
.circle textPath tspan {
  dominant-baseline: middle;
}
.circle text {
  letter-spacing: 1px;
  font-size: 1.4rem;
}

/* Sichtbarkeit: automatisch nach Page-Load ODER per Hover (5/7/6) */
.hero.autoplay .circle-red,
.hero:has(.hero-person-5:hover) .circle-red,
.hero:has(.hero-person-7:hover) .circle-red,
.hero:has(.hero-person-6:hover) .circle-red {
  opacity: 1;
  transform: scale(1);
}

/* Hover/Focus-Effekt */
.hero.autoplay .circle-link:hover,
.circle.circle-red.circle-link:hover {
  transform: scale(1.08);
}

.circle-link:focus-visible {
  outline: 3px solid #e4792e;
  outline-offset: 4px;
  transform: scale(1.06);
}

/* Focus ring */
.circle-link,
.circle-link:focus,
.circle-link:focus-visible,
.circle-link:active {
  outline: none !important;
  box-shadow: none !important; /* falls irgendwo Box-Shadow als Focus genutzt wird */
}
.circle-link {
  -webkit-tap-highlight-color: transparent;
} /* iOS */

/* SVG lässt Klicks durch */
.circle-text {
  pointer-events: none;
}

/* Gestreifter, oranger Ring (allgemein) */
.circle-red {
  --dash-color: rgb(228, 113, 46); /* E68A3E */
  --stroke: 12px;
  --dash: 8deg;
  --gap: 8deg;
  width: 20%; /* Grundgröße; Varianten können sie überschreiben */
  aspect-ratio: 1 / 1;
}
.circle-red::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-conic-gradient(
    from 0deg,
    var(--dash-color) 0deg var(--dash),
    transparent var(--dash) calc(var(--dash) + var(--gap))
  );
  -webkit-mask: radial-gradient(
    farthest-side,
    #000 calc(100% - var(--stroke)),
    transparent calc(100% - var(--stroke))
  );
  mask: radial-gradient(
    farthest-side,
    #000 calc(100% - var(--stroke)),
    transparent calc(100% - var(--stroke))
  );
}

/* Positionen der 3 Kreise (individuell) */
.circle-red--p5 {
  bottom: 58%;
  left: 44%;
  width: 18%;
} /* bei hero-person-5 */
.circle-red--p7 {
  bottom: 87%;
  left: 81%;
  width: 15%;
} /* bei hero-person-7 */
.circle-red--p6 {
  bottom: 95%;
  left: 7%;
  width: 13%;
} /* bei hero-person-6 */

/* Typewriter-Maske – Startzustand */
.circle-text .mask-stroke {
  stroke-width: var(--mask-stroke, 26);
  stroke-dasharray: 0 1000;
}

/* Typewriter: Auto + Hover (mit Delay je Kreis) */
.hero.autoplay .circle-text .mask-stroke,
.hero:has(.hero-person-5:hover) .circle-text .mask-stroke,
.hero:has(.hero-person-7:hover) .circle-text .mask-stroke,
.hero:has(.hero-person-6:hover) .circle-text .mask-stroke {
  animation: circle-write var(--dur, 2.2s) linear forwards;
  animation-delay: calc(var(--delay) + var(--write-after));
}

/* Keyframes wie gehabt */
@keyframes circle-write {
  to {
    stroke-dasharray: 1000 0;
  }
}

/**************** Ende  ************/

.circle-red {
  --text-pad: 22px;
} /* 18–26px testen */
/* Umlaufender Text im Kreis (über dem Ring, sauber zentriert) */
.circle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Abstand zum Ring hier einstellen:  -> beide gleich groß halten */
  width: calc(100% + -20px);
  height: calc(100% + -20px);

  transform: translate(-50%, -50%) rotate(0deg); /* -90° = Start oben */
  transform-origin: 50% 50%;

  overflow: visible;
  pointer-events: none;
}

.circle textPath tspan {
  dominant-baseline: middle;
} /* optional */

.circle text {
  letter-spacing: 1px;
  font-size: 1.4rem;
}

/* --------------------------- */
/* GESTRICHELTER ORANGER RING  */
/* nur für .circle-red         */
/* --------------------------- */

.circle-red {
  --dash-color: #e4712e; /* E68A3E */
  --stroke: 12px;
  --dash: 8deg;
  --gap: 8deg;

  aspect-ratio: 1 / 1;
}

/* Der eigentliche Ring liegt im ::before, damit das SVG unmaskiert bleibt */
.circle-red::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-conic-gradient(
    from 0deg,
    var(--dash-color) 0deg var(--dash),
    transparent var(--dash) calc(var(--dash) + var(--gap))
  );
  -webkit-mask: radial-gradient(
    farthest-side,
    #000 calc(100% - var(--stroke)),
    transparent calc(100% - var(--stroke))
  );
  mask: radial-gradient(
    farthest-side,
    #000 calc(100% - var(--stroke)),
    transparent calc(100% - var(--stroke))
  );
}

/**************************/
/* LOGO / ARROW           */
/**************************/

.logo-text {
  font-size: 3.2rem;
  margin-right: auto;
  color: #2f6559;
}

.hero-text-box {
  position: relative; /* nötig, damit der Pfeil sich daran orientiert */
}

.custom-arrow {
  position: absolute;
  top: 54%; /* Anpassen nach Bedarf */
  left: 66%; /* Anpassen nach Bedarf */
  width: 180px;
  height: 80px;
}

/**************************/
/* typewrite */
/**************************/

/* Strich der Maske – Startzustand */
.circle-text .mask-stroke {
  stroke-width: var(--mask-stroke, 26); /* bei Bedarf feintunen (20–30) */
  stroke-dasharray: 0 1000;
}

/* Optional: stufiger Typewriter-Look statt smooth */
/* .hero:has(.hero-person-5:hover) .circle-text .mask-stroke { */
/*   animation: circle-write var(--dur, 2.2s) steps(32) forwards; */
/* } */

@keyframes circle-write {
  to {
    stroke-dasharray: 1000 0;
  }
}

/* Lines Hintergrund SVG */
/* .top-wrapper {
  position: relative;
  background: var(--page-bg, #fbf8f3);
}

.top-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.06), transparent),
    url("/img/Lines.svg");
  background-repeat: no-repeat, no-repeat;
  background-position: top left, top left;
  background-size: auto 120vh, auto 120vh;
  pointer-events: none;
  z-index: 0;
}

.top-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 36vh,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.45) 20%,
    rgba(255, 255, 255, 0.18) 40%,
    rgba(0, 0, 0, 0.04) 60%,
    rgba(0, 0, 0, 0) 78%
  );
  pointer-events: none;
  z-index: 0;
}

.header,
.section-hero {
  position: relative;
  z-index: 1; 
  background: transparent;
}
 */
/**************************/
/* GLOW */
/**************************/
/* Basiston deiner Seite – ggf. anpassen */
/* :root {
  --page-bg: #fbf8f3;
}

.top-wrapper {
  background: radial-gradient(
      circle at 50% 36vh,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 0.45) 20%,
      rgba(255, 255, 255, 0.18) 40%,
      rgba(0, 0, 0, 0.04) 60%,
      rgba(0, 0, 0, 0) 78%
    ),
    var(--page-bg);
  background-repeat: no-repeat;
  background-attachment: scroll;
} */
/* WICHTIG: kein Overlay über Content, daher bleibt alles unverändert */

/**************************/
/* Section Hiring Cards */
/**************************/

.card-container {
  display: flex;
  flex-wrap: wrap;

  justify-content: center;
  padding-bottom: 2rem;
  padding-top: 2rem;
  gap: 1.5rem;
}

.card {
  flex: 1 1 320px;
  max-width: 430px;
  width: 100%;
  gap: 1.5rem;

  min-height: 500px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background-color: white;
  transition: transform 0.3s ease;
}

.card-img {
  width: 100%;
  aspect-ratio: 19 / 28;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.card-1 .card-img {
  object-position: 50% -100px;
}

.card-3 .card-img {
  object-position: 50% 25%;
}

.video-container {
  overflow: hidden;
  border-radius: 1rem; /* Optional, für runde Ecken wie im Screenshot */
  width: 100%;
  aspect-ratio: 16 / 9; /* definiert Höhe automatisch */
  height: 67%; /* Passe das an dein Design an */
  position: relative;
}

.video-container video {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%) scale(1); /* 👈 zoomt und zentriert */
  width: auto;
  height: 100%;
  object-fit: cover;
}

.section-hiring {
  padding: 9.6rem 0;
}

.consultation {
  text-align: center;
  font-size: 1.8rem;
}

.text-card-übertext {
  color: #555;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.25px;
  margin-bottom: 2.8rem;
}

.card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  pointer-events: none;
  box-shadow: inset 0 0 0 0 transparent;
  background-color: rgba(255, 255, 255, 0); /* für Aufhellung */
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.card:hover::after {
  box-shadow: inset 0 0 0 10px #82a39b;
  background-color: rgba(255, 255, 255, 0.08); /* ✨ leichte Aufhellung */
}

.card-wave {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.card-wave svg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 1280px;
}

/* Diese Klassen verschieben die Welle in jeder Karte richtig */
.card-1 svg {
  transform: translateX(0);
}
.card-2 svg {
  transform: translateX(-390px);
}
.card-3 svg {
  transform: translateX(-838px);
}

.card-text {
  color: #d5e0de;
  padding: 4rem 2rem 2rem;
  position: relative;
  z-index: 1;

  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  height: 100%; /* wichtig für vertikales Zentrieren */
  font-size: 1.6rem;
  font-weight: 100;
  line-height: 1.2;
}

.card-text p {
  display: none;
  font-size: 1.6rem;
  opacity: 0.85;
  margin: 0;
  line-height: 1.2;
}

.card:hover .card-text p {
  display: block;
  color: white;
  text-align: left;
}

.card-3 .img-container {
  height: 82%;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.card-3 .img-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: static;
  transform: none;
  min-width: 0;
  min-height: 0;
}

/**************************/
/* HOW IT WORKS SECTION */
/**************************/

.section-how {
  width: 100%; /* füllt immer den verfügbaren Raum */
  max-width: 1600px; /* oder was immer Deine Desktop-Max-Width ist */
  margin: 0 auto; /* zentriert automatisch */

  box-sizing: border-box; /* damit Padding zur Gesamtbreite gehört */
}

.step-4 {
  margin: 0 auto;
}

.section-how {
  padding-top: 4.8rem;
}

.step-number {
  font-size: 8.6rem;
  font-weight: 600;
  color: #ddd;
  margin-bottom: 1.2rem;
}

.step-description {
  font-size: 1.8rem;
  line-height: 1.8;
}

/* Container für Bild und Kreise */
.step-img-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  width: 300px; /* Platz für Kreise */
  height: 300px;

  overflow: visible; /* wichtig */
}

/* Wrapper, der alles gemeinsam verschiebt */
.img-wrapper {
  position: relative;
  width: 300px;
  height: 300px;
  transform: none;
  margin: 0 auto;
}

/* Bild im Zentrum */
.step-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  object-fit: cover;
}

.step-text-box,
.step-img-box {
  max-width: 800px;
}

/* Allgemeiner Stil für SVG-Kreise */
.dotted-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

/* Skalierungen für Abstand */
.circle-1 {
  transform: translate(-50%, -50%) scale(1.2);
}
.circle-2 {
  transform: translate(-50%, -50%) scale(1.5);
}
.circle-3 {
  transform: translate(-50%, -50%) scale(1.8);
}

/* Sprechblasen-Style für die Tags orangen*/
.tag-orange {
  position: absolute;
  background-color: rgba(230, 126, 34, 1);
  color: white !important;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.2;
  white-space: nowrap;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Das kleine Dreieck ("Spitze" der Sprechblase) */
.tag-orange-top-left::after {
  content: "";
  position: absolute;
  bottom: -8px; /* Spitze nach unten */
  left: 80%;
  transform: translateX(-50%);
  border-width: 12px 10px 0 10px;
  border-style: solid;
  border-color: rgba(230, 126, 34, 1) transparent transparent transparent;
}

.tag-orange-top-right::after {
  content: "";
  position: absolute;
  bottom: -8px; /* Spitze nach unten */
  left: 20%;
  transform: translateX(-50%);
  border-width: 12px 10px 0 10px;
  border-style: solid;
  border-color: rgba(230, 126, 34, 1) transparent transparent transparent;
}

.tag-orange-bottom-left::after {
  content: "";
  position: absolute;
  top: -8px; /* Statt bottom → top! */
  left: 80%;
  transform: translateX(-50%);
  border-width: 0 10px 12px 10px; /* Spitze nach oben! */
  border-style: solid;
  border-color: transparent transparent rgba(230, 126, 34, 1) transparent;
}

/* Positionierung der einzelnen Tags */
.tag-orange-top-left {
  top: 25%;
  left: 0;
  transform: translate(-49%, -67%);
}

.tag-orange-top-right {
  top: 4%;
  right: 0;
  transform: translate(47%, -50%);
}

.tag-orange-bottom-left {
  bottom: -10%;
  left: 0;
  transform: translate(30%, 48%);
}

/* Sprechblasen-Style für die Tags */
.tag {
  position: absolute;
  background-color: #3b735c;
  color: white !important;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.2;
  white-space: nowrap;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Das kleine Dreieck ("Spitze" der Sprechblase) */
.tag-top-left::after {
  content: "";
  position: absolute;
  bottom: -8px; /* Spitze nach unten */
  left: 80%;
  transform: translateX(-50%);
  border-width: 12px 10px 0 10px;
  border-style: solid;
  border-color: #3b735c transparent transparent transparent;
}

.tag-top-right::after {
  content: "";
  position: absolute;
  bottom: -8px; /* Spitze nach unten */
  left: 20%;
  transform: translateX(-50%);
  border-width: 12px 10px 0 10px;
  border-style: solid;
  border-color: #3b735c transparent transparent transparent;
}

.tag-bottom-left::after {
  content: "";
  position: absolute;
  top: -8px; /* Statt bottom → top! */
  left: 80%;
  transform: translateX(-50%);
  border-width: 0 10px 12px 10px; /* Spitze nach oben! */
  border-style: solid;
  border-color: transparent transparent #3b735c transparent;
}

/* Positionierung der einzelnen Tags */
.tag-top-left {
  top: 25%;
  left: 0;
  transform: translate(-49%, -67%);
}

.tag-top-right {
  top: 4%;
  right: 0;
  transform: translate(47%, -50%);
}

.tag-bottom-left {
  bottom: -10%;
  left: 0;
  transform: translate(30%, 48%);
}

/**************************/
/* Tech Talents Section*/
/**************************/

.delivered-techs {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.6rem;
  margin-top: 3.2rem;
  margin-bottom: 8rem;

  justify-content: flex-start;
  width: 100%; /* das ist entscheidend */
}

.delivered-imgs {
  display: flex;
}

.delivered-imgs img {
  height: 4.8rem;
  width: 4.8rem;
  border-radius: 50%;
  margin-right: -1.6rem;
  border: 3px solid #ffff;
}

.delivered-imgs img:last-child {
  margin: 0;
}

.delivered-text {
  font-size: 1.8rem;
  font-weight: 600;
}

.delivered-text span {
  color: #cf711f;
  /*   color: #cf711f; */
  font-weight: 700;
}

/**************************/
/* AWARDS SECTION         */
/**************************/

.awards-section {
  padding: 6rem 6rem;
  background: linear-gradient(
    to bottom,
    rgba(245, 240, 233, 0.5),
    /* oben – deutlich dunklerer Beigeton */ rgba(251, 248, 243, 0.8),
    /* Mitte */ rgba(251, 248, 243, 0.2) /* unten – sehr hell */
  );
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
  text-align: center;
  font-family: "Inter", sans-serif;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-bottom: 12rem;
}

.lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  opacity: 0.3;
}

.awards-section h2 {
  margin-bottom: 0rem;
}

.awards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem; /* Abstand zwischen Kreisen */
  padding: 0 1rem; /* Abstand zum Rand */
}

.awards-grid .award-circle:nth-child(2),
.awards-grid .award-circle:nth-child(4) {
  margin-top: 12rem;
}

.award-circle:nth-child(1),
.award-circle:nth-child(5) {
  margin-top: 9rem; /* kannst du lassen */
}

.award-circle:nth-child(3) {
  margin-top: 7.5rem;
}

.award-circle {
  z-index: 2;
  margin-top: 8rem;
  position: relative;
  border-radius: 50%;
  width: 240px;
  height: 240px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  padding: 2rem;
  font-size: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.1);
  color: #23db3f;
  background-image: radial-gradient(
      rgba(255, 255, 255, 0.08) 1.3px,
      transparent 1px
    ),
    linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.15) 30%,
      transparent 70%
    );
  background-color: #0c281b;
}

/* Dots im Kreis-Hintergrund */
.award-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#23db3f 0.8px, transparent 0.8px);
  background-size: 18px 18px;
  opacity: 0.15;
  z-index: 0;
}

/* Text im Kreis */
.award-circle span {
  position: relative;
  z-index: 1;
  line-height: 1.5;
}

.text-hidden {
  display: none;
}

.award-circle:hover .text-hidden {
  display: inline;
}

.award-circle:hover .text-visible {
  display: none;
}

/* Hover-Effekt */
.award-circle:hover {
  transform: translateY(-20px);
  background-color: #265147;
  color: #ffffff;
}

.source-note {
  justify-content: space-between;
  display: block;
  font-size: 1rem;
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.6); /* Heller, aber unaufdringlich */
}

/*******************/
/* CONNECTING PEOPLE SECTION */
/**************************/

.h3-connecting-people {
  display: block;
  font-size: 1.6rem;
  font-weight: 200;
  color: #555;
  text-transform: uppercase;
  margin-bottom: 2rem;
  letter-spacing: 0.75px;
  text-align: center;
}

.Heading-connecting-people {
  font-size: 4.4rem;
  line-height: 1.2;
  margin-bottom: 3.2rem;
  text-align: center;
  color: #265147;
  font-weight: 500;
}

.Text-connecting-people {
  color: #555;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.25px;
  margin-bottom: -2rem;
}

.long-arrow-wrapper {
  display: flex;
  justify-content: center;
  margin: 60px 0;
}

/* ======================================================
   1) STIL FÜR DIE WEISSE „CONNECTING PEOPLE“-SEKTION
   ====================================================== */
.section-connecting-people {
  position: relative;
  z-index: 2; /* liegt über der `.section-growth` */

  background-color: #ffffff; /* weißer Hintergrund */

  /* ─────────────────────────────
       a) Untere Ecken abrunden
       ───────────────────────────── */
  border-bottom-left-radius: 2rem; /* anpassen, wenn du eine größere/kleinere Rundung willst */
  border-bottom-right-radius: 2rem; /* anpassen, wenn du eine größere/kleinere Rundung willst */

  /* ─────────────────────────────
       b) Negatives Margin: schon leicht in das Bild hineinschieben
       ───────────────────────────── */
  margin-bottom: -2rem; /* hebt die weiße Fläche 2rem über den nächsten Abschnitt */
  /* evtl. statt margin-top verwenden, je nach Layout */

  /* ─────────────────────────────
       c) Innenabstände, damit Text nicht in die Rundung ragt
       ───────────────────────────── */
  padding-top: 4rem; /* Platz oberhalb des Texts */
  padding-bottom: 3rem; /* Platz unterhalb des Texts, vor der Rundung */

  /* ─────────────────────────────
       d) (Optional) zentrierter Text-Inhalt
       ───────────────────────────── */
  text-align: center;
}

/* Dieser Container sorgt nur für horizontale Einfassung */
.connecting-people-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 3.2rem; /* links/rechts 3.2rem */
}

.arrow-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 60px 0;
  margin-bottom: 0rem;
}

/* .arrow-line {
  width: 2px;
  height: 40px; 
  background-color: #265147; 
} */

.arrow-head {
  width: 10px;
  height: 10px;
  border-left: 2px solid #cf711f;
  border-bottom: 2px solid #cf711f;
  transform: rotate(-45deg);
}

.section-growth {
  background-attachment: fixed;
  margin-top: -1rem;
  position: relative;
  z-index: 0;
  /*   background-attachment: fixed; /* oder scroll – je nach gewünschtem Verhalten */
  overflow: hidden;
  background-image: url("../img/Vernetzung.14.jpg");
  background-size: cover;
  background-position: 80% center;
  height: 83vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 2vw;
  color: white;
  font-family: rajdhani;
  margin-bottom: 10rem;
  background-color: #062d13;
}

.dots-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;

  background-image: radial-gradient(
      rgba(255, 255, 255, 0.08) 1.3px,
      transparent 1px
    ),
    linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.15) 30%,
      transparent 70%
    );
  background-size: 20px 20px, 100% 100%;
  background-repeat: repeat, no-repeat;
  animation: moveDots 30s linear infinite;
}

.growth-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 3.2rem;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;

  background-size: cover;
  background-position: 60% center;
  background-repeat: no-repeat;
  height: 89vh;
}

.growth-content {
  padding: 3rem;
  border-radius: 8px;
  max-width: 1000px;
}

.highlight-bar {
  width: 40px;
  height: 5px;
  background-color: #e67e22;
  margin-bottom: 1.5rem;
}

.description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn-growth {
  display: inline-block;
  background-color: #fff;
  color: #e67e22;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 500;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.btn-growth:hover {
  background-color: #fdf2e9;
}

.subheading-team {
  display: block;
  font-size: 4.3rem;
  font-weight: 200;
  color: #858f87;
  margin-bottom: 0rem;
  margin-top: 35rem;
  letter-spacing: 1.1px;
  text-align: start;
  margin-left: 0rem;
}

.heading-secondary-team {
  font-size: 5.2rem;
  line-height: 1.2;

  text-align: start;
  color: #fff;
  font-weight: 200;
  margin-top: 1rem;

  /* color: #343a40; */
  letter-spacing: -0.5px;
  margin-bottom: 0rem;
  margin-left: 0rem;
  letter-spacing: 0.5px;
}

.subheading-team-2 {
  display: block;
  font-size: 5rem;
  font-weight: 400;
  color: #23db3f;
  text-transform: uppercase;

  margin-bottom: 2rem;
  letter-spacing: 7.75px;
  text-align: start;
  margin-left: 0rem;
}

.heading-h3-team {
  font-size: 2.1rem;
  line-height: 1.4;

  text-align: start;
  color: #cdd3ce;
  margin-bottom: 3.5rem;
  font-weight: 200;
  margin-left: 0rem;
  font-family: inter;
  letter-spacing: 0.8px;
}

.heading-underline {
  width: 57px;
  height: 2px;
  background-color: #e67e22;
  margin-bottom: 1.6rem;
  margin-top: 4rem;
  border-radius: 2px; /* optional, für weiche Ecken */
  margin-left: 0rem;
}

.btn--team:link,
.btn--team:visited {
  display: inline-flex;
  align-items: center;
  gap: 8rem;
  background-color: transparent;
  color: #cdd3ce;
  margin-bottom: 12rem;

  border-radius: 0;

  border: 1px solid #fff;

  margin-left: 0rem;
  font-family: inter;
  font-weight: 400;
  letter-spacing: 1px;
}

.btn--team:hover,
.btn--team:active {
  color: #23db3f;

  /* border: 3px solid #fff; */

  /* Trick to add border inside */
  box-shadow: inset 0 0 0 2px #fff;
  transition: all 0.3s;
}

.btn--team {
  font-size: 1.2rem; /* Pfeil kleiner machen */
  line-height: 1;
}

/**************************/
/* KEY BENEFITS ICON SECTION */
/**************************/

.icons-section-header {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 7rem;
  color: #265147;
  font-size: 3.2rem;
  text-transform: uppercase;
}

.feature {
  margin-top: 3rem;
  margin-right: 2rem;
}

.feature-icon {
  color: #23db3f;
  height: 3.2rem;
  width: 3.2rem;
  background-color: #2f6559;
  margin-bottom: 3.2rem;
  padding: 1.6rem;

  border-radius: 50%;
}

.feature-title {
  font-size: 2rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 1.6rem;
}

.feature-text {
  font-size: 1.8rem;
  line-height: 1.8;
  padding-bottom: 2rem;
}

.consultation-2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 12rem;
  margin-top: -10rem;
}

.grid--4-cols {
  column-gap: 8rem;
}

.container {
  max-width: 150rem;
  margin: 0 auto;
  padding: 0 8rem;
}

/* ======================================================
   1) STIL FÜR DIE WEISSE „CONNECTING PEOPLE“-SEKTION
   ====================================================== */
.section-connecting-people {
  position: relative;
  z-index: 2; /* liegt über der `.section-growth` */

  background-color: #ffffff; /* weißer Hintergrund */

  /* ─────────────────────────────
       a) Untere Ecken abrunden
       ───────────────────────────── */
  border-bottom-left-radius: 2rem; /* anpassen, wenn du eine größere/kleinere Rundung willst */
  border-bottom-right-radius: 2rem; /* anpassen, wenn du eine größere/kleinere Rundung willst */

  /* ─────────────────────────────
       b) Negatives Margin: schon leicht in das Bild hineinschieben
       ───────────────────────────── */
  margin-bottom: -2rem; /* hebt die weiße Fläche 2rem über den nächsten Abschnitt */
  /* evtl. statt margin-top verwenden, je nach Layout */

  /* ─────────────────────────────
       c) Innenabstände, damit Text nicht in die Rundung ragt
       ───────────────────────────── */
  padding-top: 4rem; /* Platz oberhalb des Texts */
  padding-bottom: 3rem; /* Platz unterhalb des Texts, vor der Rundung */

  /* ─────────────────────────────
       d) (Optional) zentrierter Text-Inhalt
       ───────────────────────────── */
  text-align: center;
}

/* Dieser Container sorgt nur für horizontale Einfassung */
.connecting-people-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 3.2rem; /* links/rechts 3.2rem */
}

/**************************/
/* FOOTER */
/**************************/

.footer-divider {
  border: none;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.08); /* für dunkle Hintergründe */
  margin: 4rem 0; /* vertikaler Abstand */
}

.footer {
  padding: 12.8rem 0;
  border-top: 1px solid #eee;
}

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

.logo-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: block;
  margin-bottom: 3.2rem;
}

.footer-logo img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.social-links {
  list-style: none;
  display: flex;
  gap: 2.4rem;
}

.social-icon {
  height: 2.4rem;
  width: 2.4rem;
}

.copyright {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #767676;
  margin-top: auto;
}

.footer-heading {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 4rem;
}

.contacts {
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1.6;
}

.address {
  margin-bottom: 2.4rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.4rem;
  color: #767676;
  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  color: #555;
}

/*******************/
/* KLEINE BILDSCHIRME */
/**************************/

.text-box {
  background-color: rgba(0, 0, 0, 0.4); /* Schwarz mit 40% Deckkraft */
  padding: 3rem;
  border-radius: 0.5rem;
  color: white;
}
