*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:root {
  --white: #fff;
  --g1: #f5f5f7;
  --g2: #e8e8ed;
  --g3: #86868b;
  --g4: #6e6e73;
  --ink: #1d1d1f;
  --ink2: #2d2d2f;
  --lime: #8CC63F;
  --lime-d: #5a8a1e;
  --lime-m: #74a834;
  --lime-l: #a4d65e;
  --lime-text: #4a7a18;
  --lime-bg: rgba(140, 198, 63, .07);
  --g-1: #e8f5d4;
  --g-2: #d4edba;
  --g-3: #c0e4a0;
  --g-4: #8CC63F;
  --g-5: #74a834;
  --red: #e53e2e;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

html {
  scroll-behavior: smooth;
  max-height: 100vh;
  max-width: 100vw;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}

::selection {
  background: var(--lime);
  color: #fff
}

svg.ico {
  width: 28px;
  height: 28px;
  stroke: var(--lime-m);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round
}

/* PROGRESS BAR */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lime-m), var(--lime-l));
  z-index: 1002;
  width: 0%;
  pointer-events: none
}

/* NAV — taller, logo more prominent */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  background: rgba(255, 255, 255, .97);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: .5px solid rgba(0, 0, 0, .04);
  transition: background .5s, border-color .5s;
  width: 100vw;
}

nav.scrolled-green {
  background: rgba(255, 255, 255, .98);
  border-bottom-color: rgba(0, 0, 0, .06);
  box-shadow: 0 1px 8px rgba(0, 0, 0, .04)
}

.nav-logo img {
  height: 32px
}

.nav-logo {
  width: 10%;
}

.nav-mid {
  display: flex;
  gap: 2.25rem;
  align-items: center;
  width: 60%;
  margin: auto;
  justify-content: space-evenly;
}

.nav-mid a {
  text-decoration: none;
  font-size: .8rem;
  font-weight: 500;
  color: var(--ink);
  opacity: .55;
  transition: opacity .3s;
  padding: .25rem .1rem
}

.mob-only {
  display: none;
}

.nav-mid a:hover {
  opacity: 1
}

#lang-button-div {
  display: none;
}

.nav-rg {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: .75rem;
  width: 30%;
}

.nav-rg span {
  white-space: nowrap;
}

.nav-pill {
  text-decoration: none;
  font-size: .7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .32rem .85rem;
  border-radius: 99px;
  transition: all .3s
}

.nav-ftp {
  color: var(--lime-d);
  border: 1.5px solid var(--lime);
  background: var(--lime-bg)
}

.nav-ftp:hover {
  background: var(--lime);
  color: #fff
}

.nav-shop {
  color: var(--ink2);
  border: 1.5px solid var(--g2);
  background: var(--white)
}

.nav-shop:hover {
  border-color: var(--ink);
  background: var(--g1)
}

.nav-shop svg,
.nav-ftp svg {
  width: 13px;
  height: 13px
}

.nav-cta {
  text-decoration: none;
  font-size: .7rem;
  font-weight: 600;
  color: #fff;
  padding: .32rem .9rem;
  border-radius: 99px;
  background: var(--ink);
  transition: all .3s
}

.nav-cta:hover {
  background: var(--lime-m)
}

.hamburger {
  display: none;
  cursor: pointer;
  width: 18px;
  height: 14px;
  position: relative;
  z-index: 200
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  transition: all .3s;
  border-radius: 1px
}

.hamburger span:nth-child(1) {
  top: 0
}

.hamburger span:nth-child(2) {
  top: 6px
}

.hamburger span:nth-child(3) {
  top: 12px
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 6px
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 6px
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 2rem 4rem;
  background: var(--white)
}

.hero-inner {
  will-change: transform, opacity
}

.hero-ov {
  font-size: .8rem;
  font-weight: 600;
  color: var(--lime-text);
  letter-spacing: .02em;
  margin-bottom: 1.25rem
}

.hero h1 {
  font-size: clamp(1rem, 7.5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.045em;
  max-width: 100%;
  margin: 0 auto 1.5rem
}

.hero h1 .gr {
  color: var(--lime-m)
}

.typing-line {
  border-right: 2px solid var(--lime-m);
  animation: blink .7s step-end infinite;
  display: inline-block;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

@keyframes blink {
  50% {
    border-color: transparent
  }
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 400;
  color: var(--g4);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.65
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap
}

.mag-btn {
  padding: .75rem 2rem;
  border-radius: 99px;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .3s, color .3s, border-color .3s;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  will-change: transform
}

.bf {
  background: var(--lime-m);
  color: #fff
}

.bf:hover {
  background: var(--lime-d)
}

.bo {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--g2)
}

.bo:hover {
  border-color: var(--lime-m);
  color: var(--lime-d)
}

/* TICKER — light green */
.ticker {
  background: var(--g-1);
  padding: .75rem 0;
  overflow: hidden
}

.ticker-t {
  display: flex;
  gap: 3rem;
  animation: tk 30s linear infinite;
  width: max-content
}

@keyframes tk {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.ticker-i {
  font-size: .72rem;
  font-weight: 600;
  color: var(--lime-d);
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: .6rem
}

.ticker-d {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime-m)
}

/* COUNTER — green gradient bg */
.counter {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--lime-m), var(--lime-d));
  color: #fff
}

.counter-in {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center
}

.cn {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
  will-change: transform
}

.cs {
  font-size: .45em;
  font-weight: 500;
  opacity: .7;
  margin-left: 2px
}

.cl {
  font-size: .7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .7);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: .5rem
}

@keyframes glitch {
  0% {
    transform: translate(0)
  }

  10% {
    transform: translate(-2px, 1px)
  }

  20% {
    transform: translate(2px, -1px)
  }

  30% {
    transform: translate(-1px, 2px)
  }

  40% {
    transform: translate(1px, -2px)
  }

  50%,
  100% {
    transform: translate(0)
  }
}

.cn.glitching {
  animation: glitch .4s ease
}

/* SCROLL TEXT — keywords get highlighted */
.txtrev {
  position: relative;
  background: var(--white)
}

.txtrev-s {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center
}

.txtrev-w {
  font-size: clamp(1rem, 4.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -.035em;
  text-align: center;
  width: 90%;
  max-width: 820px;
  padding: 0 2rem;
  line-height: 1.3
}

.txtrev-w .w {
  display: inline-block;
  opacity: .1;
  transition: all .35s var(--ease)
}

.txtrev-w .w.on {
  opacity: 1;
  color: var(--ink)
}

.txtrev-w .w.on.kw {
  color: var(--lime-m);
  font-weight: 800;
  text-shadow: 0 0 20px rgba(140, 198, 63, .3)
}

.txtrev-sp {
  height: 250vh
}

/* USP */
.usps {
  background: var(--white);
  padding: 7rem 2rem
}

.usps-h {
  text-align: center;
  margin-bottom: 4rem
}

.usps-h h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.04em
}

.usps-h h2 .gr {
  color: var(--lime-m)
}

.usps-h p {
  font-size: 1rem;
  color: var(--g4);
  margin-top: .75rem;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto
}

.usps-g {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto
}

.uc {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  border: 1px solid var(--g2);
  position: relative;
  overflow: hidden;
  transition: all .5s var(--ease)
}

.uc:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .06)
}

.uc::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--lime);
  transform: scaleX(0);
  transition: transform .5s var(--ease)
}

.uc:hover::after {
  transform: scaleX(1)
}

.uc .iw {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--lime-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem
}

.uc h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .5rem
}

.uc h3 .gr {
  color: var(--lime-m)
}

.uc p {
  font-size: .88rem;
  color: var(--g4);
  line-height: 1.65
}

/* PROCESS with animated line */
.process {
  background: var(--g1);
  padding: 7rem 2rem
}

.process-h {
  text-align: center;
  margin-bottom: 4rem
}

.process-h h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.04em
}

.process-h h2 .gr {
  color: var(--lime-m)
}

.psteps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative
}

.psteps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--g2);
  z-index: 0
}

.psteps-line {
  position: absolute;
  top: 28px;
  left: 12%;
  height: 2px;
  background: var(--lime);
  z-index: 1;
  width: 0%;
  transition: width 1.5s var(--ease)
}

.psteps.anim .psteps-line {
  width: 76%
}

.ps {
  text-align: center;
  position: relative;
  z-index: 2
}

.ps-n {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--g2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: all .5s var(--ease)
}

.ps-n svg {
  width: 22px;
  height: 22px;
  stroke: var(--g3);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .5s
}

.psteps.anim .ps-n {
  border-color: var(--lime)
}

.psteps.anim .ps-n svg {
  stroke: var(--lime-m)
}

.ps:hover .ps-n {
  background: var(--lime);
  border-color: var(--lime)
}

.ps:hover .ps-n svg {
  stroke: #fff
}

.ps h4 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .35rem
}

.ps p {
  font-size: .78rem;
  color: var(--g4);
  line-height: 1.55;
  max-width: 200px;
  margin: 0 auto
}

/* FTP inline CTA */
.ftp {
  background: var(--white);
  padding: 5rem 2rem
}

.ftp-box {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  background: var(--lime-bg);
  border: 1.5px solid rgba(140, 198, 63, .2);
  border-radius: 20px;
  padding: 3rem
}

.ftp-text h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: .5rem
}

.ftp-text h3 .gr {
  color: var(--lime-m)
}

.ftp-text p {
  font-size: .9rem;
  color: var(--g4);
  line-height: 1.6;
  max-width: 400px
}

/* MARKEN — seamless loop */
.marken {
  background: var(--white);
  padding: 7rem 0;
  overflow: hidden
}

.marken-h {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 2rem
}

.marken-h h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.04em
}

.marken-h h2 .gr {
  color: var(--lime-m)
}

.mrow {
  display: flex;
  gap: .75rem;
  margin-bottom: .75rem;
  width: max-content
}

.mrow-1 {
  animation: mL 90s linear infinite
}

.mrow-2 {
  animation: mR 80s linear infinite
}

.mrow-3 {
  animation: mL 70s linear infinite
}

.mrow-4 {
  animation: mR 65s linear infinite
}

@keyframes mL {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

@keyframes mR {
  0% {
    transform: translateX(-50%)
  }

  100% {
    transform: translateX(0)
  }
}

.mt {
  padding: .7rem 1.6rem;
  border-radius: 99px;
  font-size: .82rem;
  font-weight: 700;
  white-space: nowrap;
  transition: all .3s;
  cursor: default
}

.mt:hover {
  transform: scale(1.1);
  color: #fff !important;
  filter: brightness(1.1)
}

.mt-1 {
  background: var(--g-1);
  color: var(--lime-d)
}

.mt-1:hover {
  background: var(--g-4)
}

.mt-2 {
  background: var(--g-2);
  color: var(--lime-d)
}

.mt-2:hover {
  background: var(--g-5)
}

.mt-3 {
  background: var(--g-3);
  color: var(--lime-d)
}

.mt-3:hover {
  background: var(--g-4)
}

.mt-4 {
  background: var(--g-4);
  color: #fff
}

.mt-4:hover {
  background: var(--g-5)
}

.mt-5 {
  background: var(--g-5);
  color: #fff
}

.mt-5:hover {
  background: var(--lime-d)
}

.mrow-wrap {
  position: relative
}

.mrow-wrap::before,
.mrow-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none
}

.mrow-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), transparent)
}

.mrow-wrap::after {
  right: 0;
  background: linear-gradient(90deg, transparent, var(--white))
}

/* SORTIMENT — STACKED CARDS on scroll */
.sort {
  background: var(--white);
  padding: 7rem 2rem
}

.sort-h {
  text-align: center;
  margin-bottom: 4rem
}

.sort-h h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.04em
}

.sort-h h2 .gr {
  color: var(--lime-m)
}

.sort-h p {
  font-size: 1rem;
  color: var(--g4);
  margin-top: .75rem;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto
}

.stack-cards {
  max-width: 700px;
  margin: 0 auto;
  position: relative
}

.stack-card {
  border-radius: 20px;
  padding: 2rem 2.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: sticky;
  top: 100px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
  transition: all .6s cubic-bezier(.22, 1, .36, 1);
  opacity: 0
}

.stack-card:nth-child(1) {
  background: var(--g-1);
  transform: translateX(-60px)
}

.stack-card:nth-child(2) {
  top: 115px;
  background: var(--g-2);
  transform: translateX(60px)
}

.stack-card:nth-child(3) {
  top: 130px;
  background: var(--g-3);
  transform: translateX(-60px)
}

.stack-card:nth-child(4) {
  top: 145px;
  background: var(--g-4);
  color: #fff;
  transform: translateX(60px)
}

.stack-card:nth-child(5) {
  top: 160px;
  background: var(--g-5);
  color: #fff;
  transform: translateX(-60px)
}

.stack-card:nth-child(6) {
  top: 175px;
  background: var(--lime-d);
  color: #fff;
  transform: translateX(60px)
}

.stack-card:nth-child(4) .sc-text p,
.stack-card:nth-child(5) .sc-text p,
.stack-card:nth-child(6) .sc-text p {
  color: rgba(255, 255, 255, .7)
}

.stack-card:nth-child(4) .sc-icon,
.stack-card:nth-child(5) .sc-icon,
.stack-card:nth-child(6) .sc-icon {
  background: rgba(255, 255, 255, .15)
}

.stack-card:nth-child(4) .sc-icon svg,
.stack-card:nth-child(5) .sc-icon svg,
.stack-card:nth-child(6) .sc-icon svg {
  stroke: #fff
}

.stack-card.slid {
  opacity: 1;
  transform: translateX(0)
}

.stack-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, .08)
}

.sc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--lime-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.sc-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--lime-m);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

.sc-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .2rem
}

.sc-text p {
  font-size: .85rem;
  color: var(--g4);
  line-height: 1.5
}

/* RS */
.rs {
  background: var(--white);
  padding: 8rem 2rem;
  text-align: center
}

.rs-con {
  max-width: 900px;
  margin: 0 auto
}

.rs-logo {
  width: clamp(160px, 25vw, 260px);
  opacity: 0;
  transform: scale(.85);
  transition: all 1s var(--ease)
}

.rs-logo.in {
  opacity: 1;
  transform: scale(1)
}

.rs-dv {
  width: 40px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: 2rem auto 1.5rem
}

.rs-hl {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.12;
  margin-bottom: 1rem
}

.rs-desc {
  font-size: 1rem;
  color: var(--g4);
  max-width: 520px;
  margin: 0 auto 3rem;
  line-height: 1.7
}

.rs-prods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: left
}

.rp {
  background: var(--g1);
  border-radius: 18px;
  padding: 2rem;
  transition: all .5s var(--ease);
  position: relative;
  overflow: hidden
}

.rp:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .06)
}

.rp::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .5s var(--ease)
}

.rp:hover::before {
  transform: scaleX(1)
}

.rp .iw {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(229, 62, 46, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem
}

.rp .iw svg {
  stroke: var(--red)
}

.rp h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .35rem
}

.rp p {
  font-size: .82rem;
  color: var(--g4);
  line-height: 1.6
}

.rs-tags {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  margin-top: .75rem
}

.rs-tag {
  font-size: .65rem;
  font-weight: 600;
  padding: .25rem .6rem;
  border-radius: 6px;
  background: rgba(229, 62, 46, .06);
  color: var(--red)
}

.rs-pills {
  display: flex;
  justify-content: center;
  gap: .6rem;
  flex-wrap: wrap
}

.rs-pill {
  padding: .55rem 1.3rem;
  border-radius: 99px;
  font-size: .78rem;
  font-weight: 600;
  border: 1.5px solid var(--g2);
  color: var(--ink2);
  transition: all .3s;
  background: var(--white)
}

.rs-pill:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(229, 62, 46, .04)
}

.karriere {
  background: var(--g1);
  padding: 5rem 2rem
}

.karriere-box {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  border-radius: 20px;
  padding: 3rem;
  background: var(--white);
  border: 1px solid var(--g2)
}

.karriere-text h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: .5rem
}

.karriere-text h3 .gr {
  color: var(--lime-m)
}

.karriere-text p {
  font-size: .9rem;
  color: var(--g4);
  line-height: 1.6;
  max-width: 420px
}

.cta {
  padding: 8rem 2rem;
  text-align: center;
  background: var(--white)
}

.cta h2 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.06;
  margin-bottom: 1.25rem
}

.cta h2 .gr {
  color: var(--lime-m)
}

.cta>p {
  font-size: 1.05rem;
  color: var(--g4);
  max-width: 460px;
  margin: 0 auto 2.5rem;
  line-height: 1.6
}

.ccw {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 750px;
  margin: 3rem auto 0;
  text-align: left
}

.cc {
  background: var(--white);
  border-radius: 24px;
  padding: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--g2);
  transition: all .5s var(--ease)
}

.cc:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 60px rgba(140, 198, 63, .12)
}

.cc::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(140, 198, 63, .04), rgba(140, 198, 63, .12));
  opacity: 0;
  transition: opacity .5s;
  z-index: 0
}

.cc:hover::before {
  opacity: 1
}

.cc::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(140, 198, 63, .08), transparent 60%);
  opacity: 0;
  transition: opacity .6s;
  z-index: 0;
  pointer-events: none
}

.cc:hover::after {
  opacity: 1
}

.cc-top {
  padding: 2rem 2rem 1.25rem;
  position: relative;
  z-index: 1
}

.cc-top-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--lime-m), var(--lime-l));
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease)
}

.cc:hover .cc-top-bar {
  transform: scaleX(1)
}

.cc-r {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lime-d);
  margin-bottom: .75rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .25rem .7rem;
  background: var(--lime-bg);
  border-radius: 99px;
  transition: all .3s
}

.cc:hover .cc-r {
  background: var(--lime-m);
  color: #fff
}

.cc-n {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: .2rem;
  letter-spacing: -.02em;
  transition: color .3s
}

.cc:hover .cc-n {
  color: var(--lime-d)
}

.cc-t {
  font-size: .78rem;
  color: var(--g4);
  font-weight: 500;
  margin-bottom: .5rem
}

.cc-cta {
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  transition: color .3s;
  display: flex;
  align-items: center;
  gap: .4rem
}

.cc-cta svg {
  width: 16px;
  height: 16px;
  stroke: var(--lime-m);
  fill: none;
  stroke-width: 2;
  transition: transform .3s
}

.cc:hover .cc-cta {
  color: var(--lime-d)
}

.cc:hover .cc-cta svg {
  transform: translateX(4px)
}

.cc-bottom {
  padding: 1.25rem 2rem 1.75rem;
  background: var(--g1);
  border-top: 1px solid var(--g2);
  display: flex;
  flex-direction: column;
  gap: .6rem;
  position: relative;
  z-index: 1
}

.cc-i a {
  text-decoration: none;
  font-size: .82rem;
  color: var(--ink2);
  display: flex;
  align-items: center;
  gap: .6rem;
  transition: all .3s;
  font-weight: 500;
  padding: .4rem .6rem;
  border-radius: 8px;
  margin: 0 -.6rem
}

.cc-i a:hover {
  color: var(--lime-d);
  background: var(--lime-bg)
}

.cc-i svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: .4;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5
}

.cta-gen {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--g2);
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap
}

.cg {
  font-size: .82rem;
  color: var(--g3);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .4rem
}

.cg svg {
  width: 14px;
  height: 14px;
  opacity: .5;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5
}

/* FOOTER — slimmer */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .6);
  padding: 1.5rem clamp(1.5rem, 4vw, 4rem)
}

.ft-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem
}

.ft-row span,
.ft-row a {
  font-size: .72rem;
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  transition: color .3s
}

.ft-row a:hover {
  color: var(--lime)
}

.ft-links {
  display: flex;
  gap: 1.5rem;
  align-items: center
}

.ft-soc {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  margin-left: .5rem
}

.ft-soc:hover {
  background: var(--lime);
  transform: translateY(-1px)
}

.ft-soc svg {
  width: 14px;
  height: 14px;
  fill: rgba(255, 255, 255, .55)
}

.ft-soc:hover svg {
  fill: #fff
}

[data-a] {
  opacity: 0;
  transform: translateY(30px);
  transition: all .7s var(--ease)
}

[data-a].in {
  opacity: 1;
  transform: translateY(0)
}

[data-a="2"] {
  transition-delay: .12s
}

[data-a="3"] {
  transition-delay: .24s
}

[data-a="4"] {
  transition-delay: .36s
}

@media(max-width:1024px) {
  .usps-g {
    grid-template-columns: 1fr
  }

  .counter-in {
    grid-template-columns: repeat(2, 1fr)
  }

  .psteps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem
  }

  .psteps::before,
  .psteps-line {
    display: none
  }
}

@media(max-width:1540px) {
  nav {
    height: 52px;
    z-index: 10001
  }

  .nav-logo img {
    height: 28px
  }

  .nav-rg {
    display: none !important
  }

  .hamburger {
    display: block;
    z-index: 10000
  }

  .nav-mid {
    display: none !important;
    position: fixed;
    top: 52px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    gap: .75rem;
    z-index: 9998;
    padding: 1.5rem;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, .12);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform .4s cubic-bezier(.22, 1, .36, 1), opacity .3s
  }

  .nav-mid.open {
    display: flex !important;
    transform: translateY(0);
    opacity: 1
  }

  .nav-mid a {
    font-size: .72rem;
    font-weight: 600;
    opacity: 1;
    padding: 1rem .5rem;
    text-align: center;
    color: var(--ink);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .45rem;
    border-radius: 12px;
    background: var(--g1);
    flex: 0 0 calc(33.33% - .5rem);
    box-sizing: border-box;
    transition: all .2s
  }

  #lang-button-div {
    display: block;
    margin: auto;
  }

  .nav-mid a:hover,
  .nav-mid a:active {
    color: var(--lime-d);
    background: rgba(140, 198, 63, .08)
  }

  .nav-mid a svg.nav-ico {
    width: 22px;
    height: 22px;
    stroke: var(--g3);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .2s
  }

  .nav-mid a:hover svg.nav-ico {
    stroke: var(--lime-m)
  }

  .mob-only {
    display: block;
    background: rgba(140, 198, 63, .08) !important;
    color: var(--lime-d) !important;
    font-weight: 700 !important
  }

  .mob-only svg.nav-ico {
    stroke: var(--lime-m) !important
  }

  section,
  .hero {
    padding-left: 1.5rem;
    padding-right: 1.5rem
  }

  .hero {
    padding-top: 6rem;
    padding-bottom: 4rem
  }

  .usps-g,
  .ccw {
    grid-template-columns: 1fr
  }

  .counter-in {
    grid-template-columns: 1fr 1fr
  }

  .cta {
    padding: 6rem 1.5rem
  }

  .cta-gen {
    flex-direction: column;
    align-items: center
  }

  .txtrev-w {
    font-size: 1.5rem
  }

  .rs-prods {
    grid-template-columns: 1fr
  }

  .ftp-box,
  .karriere-box {
    flex-direction: column;
    text-align: center
  }

  .ftp-text p,
  .karriere-text p {
    margin: 0 auto
  }

  .psteps {
    grid-template-columns: 1fr 1fr
  }

  .stack-card {
    position: relative;
    top: auto !important;
    opacity: 1 !important;
    transform: none !important
  }
}

/* FTP MODAL */
.ftp-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem
}

.ftp-modal-overlay.open {
  display: flex
}

.ftp-modal {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .15);
  position: relative;
  animation: modalIn .4s var(--ease)
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(.97)
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}

.ftp-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--g1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--g3);
  transition: all .2s
}

.ftp-modal-close:hover {
  background: var(--g2);
  color: var(--ink)
}

.ftp-modal h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: .35rem
}

.ftp-modal h3 .gr {
  color: var(--lime-m)
}

.ftp-modal>p {
  font-size: .85rem;
  color: var(--g4);
  margin-bottom: 1.75rem;
  line-height: 1.5
}

.ftp-field {
  margin-bottom: 1rem
}

.ftp-field label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  color: var(--g3);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .35rem
}

.ftp-field input,
.ftp-field select {
  width: 100%;
  padding: .65rem .9rem;
  border: 1.5px solid var(--g2);
  border-radius: 10px;
  font-size: .88rem;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  transition: border-color .3s;
  outline: none
}

.ftp-field input:focus,
.ftp-field select:focus {
  border-color: var(--lime)
}

.ftp-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2386868b' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 12px
}

.ftp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

.ftp-submit {
  width: 100%;
  padding: .75rem;
  border: none;
  border-radius: 99px;
  background: var(--lime-m);
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: all .3s;
  margin-top: .5rem
}

.ftp-submit:hover {
  background: var(--lime-d)
}

.ftp-success {
  display: none;
  text-align: center;
  padding: 2rem 0
}

.ftp-success svg {
  width: 48px;
  height: 48px;
  stroke: var(--lime-m);
  stroke-width: 2;
  fill: none;
  margin-bottom: 1rem
}

.ftp-success h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .5rem
}

.ftp-success p {
  font-size: .88rem;
  color: var(--g4)
}

/* LEGAL PAGES */
.legal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem;
  overflow-y: auto
}

.legal-overlay.open {
  display: flex
}

.legal-page {
  background: var(--white);
  border-radius: 24px;
  padding: 3rem;
  max-width: 700px;
  width: 100%;
  margin: 3rem auto;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .15);
  position: relative;
  animation: modalIn .4s var(--ease)
}

.legal-page-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--g3);
  transition: all .2s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .1);
  z-index: 2001
}

.legal-page-close:hover {
  background: var(--g1);
  color: var(--ink)
}

.legal-page h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -.02em
}

.legal-page h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 1.5rem 0 .5rem
}

.legal-page p,
.legal-page li {
  font-size: .88rem;
  color: var(--g4);
  line-height: 1.7;
  margin-bottom: .75rem
}

.legal-page a {
  color: var(--lime-d);
  text-decoration: none
}

.legal-page a:hover {
  text-decoration: underline
}

.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0
}

.legal-page td {
  padding: .4rem .75rem;
  font-size: .85rem;
  color: var(--g4);
  border-bottom: 1px solid var(--g2);
  vertical-align: top
}

.legal-page td:first-child {
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  width: 40%
}

/* BEWERBUNG MODAL */
.bew-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow-y: auto
}

.bew-modal-overlay.open {
  display: flex
}

.bew-modal {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .15);
  position: relative;
  animation: modalIn .4s var(--ease)
}

.bew-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--g1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--g3);
  transition: all .2s
}

.bew-close:hover {
  background: var(--g2);
  color: var(--ink)
}

.bew-modal h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: .35rem
}

.bew-modal h3 .gr {
  color: var(--lime-m)
}

.bew-modal>p {
  font-size: .85rem;
  color: var(--g4);
  margin-bottom: 1.75rem;
  line-height: 1.5
}

.bew-field {
  margin-bottom: 1rem
}

.bew-field label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  color: var(--g3);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .35rem
}

.bew-field input,
.bew-field textarea,
.bew-field select {
  width: 100%;
  padding: .65rem .9rem;
  border: 1.5px solid var(--g2);
  border-radius: 10px;
  font-size: .88rem;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  transition: border-color .3s;
  outline: none;
  resize: vertical
}

.bew-field input:focus,
.bew-field textarea:focus,
.bew-field select:focus {
  border-color: var(--lime)
}

.bew-field textarea {
  min-height: 100px
}

.bew-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

.bew-file-label {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem .9rem;
  border: 1.5px dashed var(--g2);
  border-radius: 10px;
  cursor: pointer;
  font-size: .85rem;
  color: var(--g3);
  transition: all .3s
}

.bew-file-label:hover {
  border-color: var(--lime);
  color: var(--lime-d)
}

.bew-file-label svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0
}

.bew-file-label input {
  display: none
}

.bew-file-name {
  font-size: .75rem;
  color: var(--lime-d);
  margin-top: .35rem;
  font-weight: 500
}

.bew-submit {
  width: 100%;
  padding: .75rem;
  border: none;
  border-radius: 99px;
  background: var(--lime-m);
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: all .3s;
  margin-top: .5rem
}

.bew-submit:hover {
  background: var(--lime-d)
}

/* SCROLL TO TOP */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--lime-m);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(140, 198, 63, .25);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease, transform .4s ease, background .2s
}

.scroll-top:hover {
  background: var(--lime-d)
}

.scroll-top svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round
}


/* KUNDE WERDEN MODAL */
.kunde-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow-y: auto
}

.kunde-modal-overlay.open {
  display: flex
}

.kunde-modal {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .15);
  position: relative;
  animation: modalIn .4s var(--ease)
}

.kunde-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--g1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--g3);
  transition: all .2s
}

.kunde-close:hover {
  background: var(--g2);
  color: var(--ink)
}

.kunde-modal h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: .35rem
}

.kunde-modal h3 .gr {
  color: var(--lime-m)
}

.kunde-modal>p {
  font-size: .85rem;
  color: var(--g4);
  margin-bottom: 1.75rem;
  line-height: 1.5
}

.kunde-field {
  margin-bottom: 1rem
}

.kunde-field label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  color: var(--g3);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .35rem
}

.kunde-field input,
.kunde-field select,
.kunde-field textarea {
  width: 100%;
  padding: .65rem .9rem;
  border: 1.5px solid var(--g2);
  border-radius: 10px;
  font-size: .88rem;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  transition: border-color .3s;
  outline: none;
  resize: vertical
}

.kunde-field input:focus,
.kunde-field select:focus,
.kunde-field textarea:focus {
  border-color: var(--lime)
}

.kunde-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

.kunde-submit {
  width: 100%;
  padding: .75rem;
  border: none;
  border-radius: 99px;
  background: var(--lime-m);
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: all .3s;
  margin-top: .5rem
}

.kunde-submit:hover {
  background: var(--lime-d)
}

/* COOKIE — dezent floating pill */
.cookie-b {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 3000;
  background: var(--white);
  border: 1px solid var(--g2);
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
  padding: 1.25rem 1.75rem;
  max-width: 560px;
  width: calc(100% - 3rem);
  transition: transform .5s var(--ease), opacity .5s;
  opacity: 0
}

.cookie-b.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1
}

.cookie-in {
  display: flex;
  align-items: center;
  gap: 1rem
}

.cookie-tx {
  flex: 1;
  font-size: .82rem;
  color: var(--g4);
  line-height: 1.45
}

.cookie-tx a {
  color: var(--lime-d);
  text-decoration: none;
  font-weight: 600
}

.cookie-bts {
  display: flex;
  gap: .4rem;
  flex-shrink: 0
}

.cookie-bt {
  padding: .5rem 1.1rem;
  border-radius: 99px;
  font-size: .78rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: all .2s
}

.cookie-ok {
  background: var(--lime-m);
  color: #fff
}

.cookie-ok:hover {
  background: var(--lime-d)
}

.cookie-no {
  background: transparent;
  color: var(--g3)
}

.cookie-no:hover {
  color: var(--ink)
}

/* LANG TOGGLE */
.lang-btn {
  background: none;
  border: 1.5px solid var(--g2);
  border-radius: 99px;
  padding: .28rem .65rem;
  font-size: .65rem;
  font-weight: 700;
  font-family: var(--font);
  color: var(--g3);
  cursor: pointer;
  transition: all .3s;
  letter-spacing: .03em
}

.lang-btn:hover {
  border-color: var(--lime);
  color: var(--lime-d);
  background: var(--lime-bg)
}

.lang-btn.active {
  background: var(--lime-m);
  color: #fff;
  border-color: var(--lime-m)
}

@media(max-width:480px) {
  .nav-mid {
    width: 100vw;
  }

  .hero h1 {
    letter-spacing: -.03em;
    white-space: normal;
  }

  .hero-sub {
    font-size: .9rem
  }

  .hero-ov {
    font-size: .7rem
  }

  .cn {
    font-size: 2rem
  }

  .cl {
    font-size: .6rem
  }

  .counter-in {
    gap: 1rem;
    padding: 0 .5rem
  }

  .txtrev-w {
    font-size: 1.25rem;
    padding: 0 1.25rem
  }

  .usps-h h2,
  .sort-h h2,
  .marken-h h2,
  .process-h h2,
  .rs-hl,
  .cta h2 {
    font-size: 1.6rem
  }

  .usps-h p,
  .sort-h p {
    font-size: .88rem
  }

  .uc {
    padding: 1.75rem 1.5rem
  }

  .uc h3 {
    font-size: 1rem
  }

  .uc p {
    font-size: .82rem
  }

  .ps p {
    font-size: .72rem;
    max-width: 160px
  }

  .ps h4 {
    font-size: .85rem
  }

  .ftp-box {
    padding: 2rem 1.5rem;
    gap: 1.5rem
  }

  .ftp-text h3 {
    font-size: 1.15rem
  }

  .ftp-text p {
    font-size: .82rem
  }

  .rp {
    padding: 1.5rem
  }

  .rp h4 {
    font-size: .95rem
  }

  .rp p {
    font-size: .78rem
  }

  .rs-desc {
    font-size: .9rem
  }

  .karriere-box {
    padding: 2rem 1.5rem;
    gap: 1.5rem
  }

  .karriere-text h3 {
    font-size: 1.15rem
  }

  .karriere-text p {
    font-size: .82rem
  }

  .cc-n {
    font-size: 1.05rem
  }

  .cc-cta {
    font-size: .85rem
  }

  .cta>p {
    font-size: .92rem
  }

  .ccw {
    gap: 1rem
  }

  .cta-gen {
    gap: 1.5rem
  }

  .cg {
    font-size: .75rem
  }

  .stack-card {
    padding: 1.5rem
  }

  .sc-text h4 {
    font-size: .95rem
  }

  .sc-text p {
    font-size: .78rem
  }

  section,
  .hero {
    padding-left: 1.25rem;
    padding-right: 1.25rem
  }

  .ticker-i {
    font-size: .62rem;
    gap: .4rem
  }

  .mt {
    padding: .55rem 1.2rem;
    font-size: .72rem
  }

  .hero-ctas {
    gap: .6rem
  }

  .hero-ctas .mag-btn {
    padding: .65rem 1.5rem;
    font-size: .82rem
  }
}

@media(max-width:360px) {

  .cn {
    font-size: 1.7rem
  }

  .txtrev-w {
    font-size: 1.1rem
  }

  .usps-h h2,
  .sort-h h2,
  .marken-h h2,
  .process-h h2,
  .rs-hl,
  .cta h2 {
    font-size: 1.4rem
  }

  .counter-in {
    grid-template-columns: 1fr 1fr
  }
}