@font-face {
  font-family: "GT Standard";
  src: url("../Medien/Fonts/GT-Standard-L-Standard-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GT Standard";
  src: url("../Medien/Fonts/GT-Standard-L-Standard-Medium.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GT Alpina";
  src: url("../Medien/Fonts/GT-Alpina-Standard-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --ci-red: #E35A64;
  --ci-teal: #3EC4B6;
  --ci-orange: #F4B04A;
  --ci-red-rgb: 227, 90, 100;
  --ci-teal-rgb: 62, 196, 182;
  --ci-orange-rgb: 244, 176, 74;
  --red: var(--ci-red);
  --red-dark: var(--ci-teal);
  --teal: var(--ci-teal);
  --yellow: var(--ci-orange);
  --orange: var(--ci-orange);
  --dark: #102321;
  --brown-dark: #172c2a;
  --black: #071211;
  --cream: #fff8ef;
  --cream-dark: #fbe8cf;
  --soft: #f2fbfa;
  --white: #ffffff;
  --text: #102321;
  --muted: #536b67;
  --line: #d6e7e4;
  --turquoise-soft: rgba(var(--ci-teal-rgb), .14);
  --shadow-soft: 0 18px 52px rgba(16, 35, 33, .10);
  --shadow-card: 0 24px 70px rgba(16, 35, 33, .14);
  --layer-bg: linear-gradient(135deg, rgba(16, 35, 33, .78), rgba(16, 35, 33, .56));
  --layer-border: rgba(255, 255, 255, .16);
  --layer-shadow: 0 28px 80px rgba(0, 0, 0, .28);
  --radius-lg: 36px;
  --radius-md: 28px;
  --radius-sm: 24px;
  --max: 1200px;
  --sans: "GT Standard", Inter, Arial, sans-serif;
  --serif: "GT Alpina", Georgia, serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--dark);
  font-size: 14px;
  font-weight: 600;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.responsive-picture {
  display: contents;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(var(--ci-teal-rgb), .65);
  outline-offset: 3px;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  position: relative;
  width: 100%;
  padding: 96px 0;
}

.section--cream {
  background: var(--cream);
}

.section__head {
  max-width: 760px;
  margin-bottom: 44px;
}

.section__head--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section__head h2,
.trust-strip h2,
.prompt-cta h2,
.about-section h2,
.offer-section h2,
.rhythm h2 {
  color: var(--text);
  font-family: var(--serif);
  font-size: 39px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.section__head p,
.prompt-cta p,
.about-section p,
.offer-section p,
.rhythm p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 9px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 3px solid rgba(var(--ci-orange-rgb), .62);
  outline-offset: 3px;
}

.btn--primary {
  color: var(--dark);
  background: var(--ci-orange);
  box-shadow: 0 14px 34px rgba(var(--ci-orange-rgb), .26);
}

.btn--primary:hover {
  background: var(--ci-teal);
  box-shadow: 0 18px 42px rgba(var(--ci-teal-rgb), .30);
}

.btn--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .36);
  background: rgba(255, 255, 255, .10);
  backdrop-filter: blur(14px);
}

.btn--ghost:hover {
  color: var(--dark);
  background: var(--yellow);
  border-color: var(--yellow);
}

.btn--secondary {
  color: var(--white);
  background: var(--dark);
}

.btn--secondary:hover {
  background: var(--brown-dark);
  box-shadow: 0 18px 40px rgba(16, 35, 33, .18);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 34px rgba(16, 35, 33, .08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  pointer-events: none;
  transition: background .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 16px 40px rgba(16, 35, 33, .12);
}

.nav {
  pointer-events: auto;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  max-width: 1600px;
  min-height: 92px;
  margin: 0 auto;
  padding: 0 46px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition: background .2s ease, box-shadow .2s ease, padding .2s ease, min-height .2s ease;
}

.site-header.is-scrolled .nav__inner {
  min-height: 78px;
  padding: 0 46px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.nav__brand {
  display: flex;
  align-items: center;
  flex: 0 0 280px;
  gap: 12px;
  min-width: 0;
}

.nav__brand img {
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.nav__brand span {
  display: grid;
  gap: 2px;
  min-width: 0;
  line-height: 1;
}

.nav__brand strong {
  display: inline-flex;
  align-items: baseline;
  margin-left: -2px;
  color: var(--dark);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: .9;
}

.nav__brand strong b,
.nav__brand strong em {
  letter-spacing: 0;
}

.nav__brand strong b {
  font-family: Arial Black, Impact, var(--sans);
  font-style: normal;
  font-weight: 900;
}

.nav__brand strong em {
  font-family: Arial, Helvetica, var(--sans);
  font-style: normal;
  font-weight: 300;
}

.nav__brand small {
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 6px;
  padding: 0;
  border-radius: 999px;
  background: transparent;
}

.nav__links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--dark);
  background: rgba(var(--ci-teal-rgb), .14);
}

.site-header.is-scrolled .nav__links a {
  color: var(--dark);
}

.site-header.is-scrolled .nav__links a:hover,
.site-header.is-scrolled .nav__links a.active {
  color: var(--dark);
  background: rgba(var(--ci-teal-rgb), .14);
}

.nav__right {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  transform: none;
}

.nav__icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--dark);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 12px 30px rgba(16, 35, 33, .12);
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.nav__icon-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}

.nav__icon-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav__icon-link--phone {
  color: var(--red);
}

.nav__icon-link--phone:hover {
  color: var(--white);
  background: var(--red);
}

.nav__icon-link--whatsapp {
  color: var(--white);
  background: #25d366;
}

.nav__icon-link--whatsapp svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
  stroke: none;
}

.nav__icon-link--whatsapp:hover {
  color: var(--white);
  background: #1fb85a;
}

.nav__cta {
  min-height: 48px;
  padding: 10px 21px;
  font-size: 15px;
  color: var(--white);
  background: linear-gradient(135deg, #ff8f00, var(--yellow));
  box-shadow: 0 14px 34px rgba(var(--ci-orange-rgb), .30);
}

.nav__cta:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), #009c8d);
  box-shadow: 0 18px 44px rgba(var(--ci-teal-rgb), .30);
}

.nav__cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav__hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(16, 35, 33, .12);
  border-radius: 50%;
  background: var(--white);
}

.nav__hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--dark);
  transition: transform .24s ease, opacity .24s ease;
}

.nav__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu__backdrop {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0, 0, 0, .54);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.mobile-menu__backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1110;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 340px;
  max-width: 88vw;
  padding: 86px 22px 28px;
  background: var(--cream);
  box-shadow: -24px 0 70px rgba(0, 0, 0, .24);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.22, 1, .36, 1);
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: var(--white);
  font-size: 28px;
  line-height: 1;
}

.mobile-menu a:not(.btn) {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 12px 16px;
  border-radius: 20px;
  color: var(--text);
  background: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.mobile-menu a.active:not(.btn),
.mobile-menu a:not(.btn):hover {
  color: var(--white);
  background: var(--dark);
}

.mobile-menu__cta {
  margin-top: 10px;
}

.mobile-menu__quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}

.mobile-menu__quick-actions .mobile-menu__quick-link {
  justify-content: center;
  min-height: 48px;
  color: var(--dark);
  background: var(--yellow);
}

.mobile-menu__quick-actions .mobile-menu__quick-link:last-child {
  color: var(--white);
  background: #25d366;
}

.hero {
  --hero-parallax-y: 0px;
  --hero-parallax-scale: 1.06;
  --hero-reveal-cut: 12%;
  --hero-reveal-radius: 36px;
  --hero-curtain-y: 0%;
  --hero-curtain-opacity: .52;
  --hero-media-overlay:
    linear-gradient(90deg, rgba(7, 18, 17, .76) 0%, rgba(7, 18, 17, .62) 25%, rgba(7, 18, 17, .26) 47%, rgba(7, 18, 17, .02) 70%, rgba(255, 255, 255, .08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, .12) 0%, rgba(255, 255, 255, .02) 46%, rgba(7, 18, 17, .34) 100%);
  --hero-media-mobile-overlay:
    linear-gradient(90deg, rgba(7, 18, 17, .70) 0%, rgba(7, 18, 17, .42) 58%, rgba(7, 18, 17, .12) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, .10) 0%, rgba(7, 18, 17, .04) 50%, rgba(7, 18, 17, .78) 100%);
  --hero-image-filter: brightness(1.18) saturate(.98) contrast(.97);
  --hero-image-opacity: 1;
  --hero-copy-color: var(--white);
  --hero-text-shadow: 0 3px 24px rgba(0, 0, 0, .34);
  --hero-title-color: var(--white);
  --hero-title-accent: var(--yellow);
  --hero-eyebrow-color: rgba(255, 255, 255, .94);
  --hero-lead-color: rgba(255, 255, 255, .92);
  --hero-ghost-color: var(--white);
  --hero-ghost-border: rgba(255, 255, 255, .36);
  --hero-ghost-bg: rgba(7, 18, 17, .28);
  --hero-ghost-hover-color: var(--white);
  --hero-ghost-hover-border: var(--teal);
  --hero-ghost-hover-bg: var(--teal);
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: max(760px, var(--viewport-height, 100svh));
  max-height: none;
  padding: 92px 0 126px;
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 92px;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 4px;
  background: linear-gradient(180deg, var(--red) 0 33.333%, var(--teal) 33.333% 66.666%, var(--yellow) 66.666% 100%);
}

.hero::after {
  content: none;
}

.hero__pattern {
  display: none;
}

.hero__media {
  position: absolute;
  inset: -5% 0 -9%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 34% 0 -1%;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(7, 18, 17, 0) 0%,
    rgba(7, 18, 17, .20) 34%,
    rgba(7, 18, 17, .68) 100%
  );
  opacity: var(--hero-curtain-opacity);
  transform: translate3d(0, var(--hero-curtain-y), 0);
  transition: opacity .12s linear, transform .12s linear;
  will-change: opacity, transform;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--hero-media-overlay);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: var(--hero-image-opacity);
  filter: var(--hero-image-filter);
  clip-path: inset(0 0 var(--hero-reveal-cut) 0 round 0 0 var(--hero-reveal-radius) var(--hero-reveal-radius));
  transform: translate3d(0, var(--hero-parallax-y), 0) scale(var(--hero-parallax-scale));
  transform-origin: center top;
  transition: clip-path .12s linear;
  will-change: transform, clip-path;
}

.hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  gap: 0;
  width: 100%;
  min-height: max(510px, calc(var(--viewport-height, 100svh) - 218px));
  max-width: 1540px;
  margin: 0 auto;
  padding: 18px 50px 0;
  transform: none;
}

.hero__copy {
  position: relative;
  z-index: 3;
  grid-column: 1 / span 6;
  max-width: 660px;
  color: var(--hero-copy-color);
  overflow: visible;
  animation: heroContentEnter .72s cubic-bezier(.22, 1, .36, 1) both;
}

.hero__copy::before {
  content: none;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: none;
  margin-bottom: 18px;
  color: var(--hero-eyebrow-color);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0;
  text-shadow: var(--hero-text-shadow);
  text-transform: uppercase;
}

.hero__eyebrow span {
  position: relative;
  flex: 0 0 46px;
  width: 46px;
  height: 4px;
}

.hero__eyebrow span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal) 0 33.333%, var(--yellow) 33.333% 66.666%, var(--red) 66.666% 100%);
}

.hero__brand-mark {
  --hero-mark-size: clamp(320px, 25vw, 460px);
  position: absolute;
  top: 49%;
  right: calc(var(--hero-mark-size) / -2);
  z-index: 1;
  display: block;
  width: var(--hero-mark-size);
  height: auto;
  opacity: .22;
  filter: saturate(1.08) drop-shadow(0 28px 52px rgba(0, 0, 0, .16));
  pointer-events: none;
  transform: translateY(-50%);
  transform-origin: 50% 50%;
  animation: heroBrandMarkSpin 42s linear infinite;
}

.hero__cursor-trail {
  position: absolute;
  inset: 0;
  z-index: 6;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

.hero__cursor-trail.is-active {
  opacity: 1;
}

.hero__cursor-trail span {
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  color: var(--red);
  opacity: .9;
  translate: -50% -50%;
  transform: translate3d(var(--trail-x, -80px), var(--trail-y, -80px), 0) rotate(var(--trail-rotate, -5deg)) scale(var(--trail-scale, 1));
  filter: drop-shadow(0 4px 7px rgba(16, 35, 33, .17));
  will-change: transform;
}

.hero__cursor-trail svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.hero__cursor-trail span:nth-child(2) {
  --trail-rotate: 4deg;
  --trail-scale: .9;
  color: var(--yellow);
}

.hero__cursor-trail span:nth-child(3) {
  --trail-rotate: -2deg;
  --trail-scale: .82;
  color: var(--teal);
}

.hero h1 {
  max-width: 660px;
  color: var(--hero-title-color);
  font-family: var(--sans);
  font-size: clamp(52px, 4.3vw, 66px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: 0;
  text-shadow: var(--hero-text-shadow);
}

.hero h1 span {
  display: block;
}

.hero__mobile-break {
  display: none;
}

.hero h1 span:nth-child(2) {
  color: var(--hero-title-accent);
  font-family: var(--serif);
  font-weight: 400;
}

.hero__lead {
  max-width: 520px;
  margin-top: 18px;
  color: var(--hero-lead-color);
  font-size: 17px;
  line-height: 1.6;
  text-shadow: var(--hero-text-shadow);
}

.hero__proofs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 22px 0 0;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  list-style: none;
}

.hero__proofs li {
  --proof-color: var(--teal);
  --proof-color-rgb: var(--ci-teal-rgb);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 0 14px;
  border-right: 1px solid rgba(255, 255, 255, .16);
}

.hero__proofs li:first-child {
  padding-left: 0;
}

.hero__proofs li:last-child {
  padding-right: 0;
  border-right: 0;
}

.hero__proofs li:nth-child(2) {
  --proof-color: var(--yellow);
  --proof-color-rgb: var(--ci-orange-rgb);
}

.hero__proofs li:nth-child(3) {
  --proof-color: var(--red);
  --proof-color-rgb: var(--ci-red-rgb);
}

.hero__proof-icon {
  display: grid;
  place-items: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(var(--proof-color-rgb), .52);
  border-radius: 50%;
  color: var(--proof-color);
  background: rgba(var(--proof-color-rgb), .12);
}

.hero__proofs svg {
  width: 17px;
  height: 17px;
  color: var(--proof-color);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 5px 10px rgba(var(--proof-color-rgb), .18));
}

.hero__proofs li > span:last-child {
  display: block;
  min-width: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 11px;
  line-height: 1.25;
}

.hero__proofs strong {
  display: block;
  margin: 0 0 4px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero .btn {
  min-height: 44px;
  padding: 9px 18px;
}

.hero .btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, #ff8f00, var(--yellow));
  box-shadow: 0 18px 42px rgba(var(--ci-orange-rgb), .30);
}

.hero .btn--primary:hover {
  background: linear-gradient(135deg, var(--teal), #009c8d);
  box-shadow: 0 22px 54px rgba(var(--ci-teal-rgb), .34);
}

.hero .btn--ghost {
  color: var(--hero-ghost-color);
  border-color: var(--hero-ghost-border);
  background: var(--hero-ghost-bg);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.hero .btn--ghost:hover {
  color: var(--hero-ghost-hover-color);
  border-color: var(--hero-ghost-hover-border);
  background: var(--hero-ghost-hover-bg);
}

.hero .btn svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__reassurance {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 13px;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  line-height: 1.4;
  text-shadow: var(--hero-text-shadow);
}

.hero__reassurance svg {
  width: 15px;
  height: 15px;
  color: var(--teal);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-inquiry {
  position: relative;
  z-index: 4;
  grid-column: 9 / span 4;
  justify-self: end;
  width: 100%;
  max-width: 420px;
  margin-top: 0;
  margin-left: 0;
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 8px;
  color: var(--dark);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 28px 80px rgba(7, 18, 17, .24);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: heroFormEnter .8s .12s cubic-bezier(.22, 1, .36, 1) both;
}

.hero-inquiry::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--teal), var(--red), var(--yellow));
}

.hero-inquiry__head {
  margin-bottom: 18px;
}

.hero-inquiry__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.hero-inquiry__kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-inquiry__kicker span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(var(--ci-teal-rgb), .13);
}

.hero-inquiry__seal {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--teal);
  background: rgba(var(--ci-teal-rgb), .13);
}

.hero-inquiry__seal svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-inquiry__head h2 {
  max-width: 520px;
  color: var(--dark);
  font-family: var(--sans);
  font-size: 29px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-inquiry__intro {
  max-width: 330px;
  margin-top: 9px;
  color: rgba(16, 35, 33, .64);
  font-size: 13px;
  line-height: 1.45;
}

.hero-inquiry__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-inquiry__fields > .form-row:last-child {
  grid-column: 1 / -1;
}

.hero-inquiry .form-row {
  gap: 7px;
}

.hero-inquiry .form-row label {
  color: rgba(16, 35, 33, .74);
  font-size: 13px;
}

.hero-inquiry .form-row input,
.hero-inquiry .form-row textarea {
  padding: 12px 13px;
  border-color: rgba(16, 35, 33, .12);
  border-radius: 6px;
  color: var(--dark);
  background: rgba(255, 255, 255, .88);
  font-size: 13px;
}

.hero-inquiry .form-row textarea {
  min-height: 76px;
  resize: vertical;
}

.hero-inquiry .btn {
  width: 100%;
  margin-top: 14px;
}

.hero-inquiry__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 11px;
  color: rgba(16, 35, 33, .64);
  font-size: 11px;
  text-align: center;
}

.hero-inquiry__note svg {
  width: 13px;
  height: 13px;
  color: var(--teal);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__trust {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: calc(100% - 100px);
  max-width: 1440px;
  margin: 0 auto;
  padding: 15px 22px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  color: var(--white);
  background: rgba(7, 18, 17, .76);
  box-shadow: 0 18px 52px rgba(0, 0, 0, .2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero__trust::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 0;
  left: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--yellow), var(--red));
}

.hero__trust article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.hero__trust article:first-child {
  padding-left: 0;
}

.hero__trust article:last-child {
  padding-right: 0;
  border-right: 0;
}

.hero__trust svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--teal);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__trust article:nth-child(2) svg {
  color: var(--yellow);
}

.hero__trust article:nth-child(3) svg {
  color: var(--red);
}

.hero__trust strong,
.hero__trust span {
  display: block;
}

.hero__trust strong {
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero__trust span {
  margin-top: 3px;
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  line-height: 1.3;
}

.hero__scroll-cue {
  position: absolute;
  right: 50%;
  bottom: 119px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 46px;
  color: rgba(255, 255, 255, .58);
  transform: translateX(50%);
  transition: color .2s ease, transform .2s ease;
}

.hero__scroll-cue:hover {
  color: var(--yellow);
  transform: translateX(50%) translateY(3px);
}

.hero__scroll-cue span {
  width: 13px;
  height: 13px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: .32;
  transform: rotate(45deg);
  animation: scrollCuePulse 1.8s ease-in-out infinite;
}

.hero__scroll-cue span + span {
  margin-top: -5px;
}

.hero__scroll-cue span:nth-child(2) {
  animation-delay: .16s;
}

.hero__scroll-cue span:nth-child(3) {
  animation-delay: .32s;
}

@keyframes heroContentEnter {
  from {
    opacity: 0;
    transform: translate3d(-18px, 18px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroFormEnter {
  from {
    opacity: 0;
    transform: translate3d(20px, 20px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.trust-strip {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  padding: 80px 0 88px;
  background: #f4fbfa;
}

.trust-strip__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.trust-strip__head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .65fr);
  align-items: end;
  gap: 72px;
}

.trust-strip__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.trust-strip h2 {
  max-width: 720px;
  font-size: 52px;
  letter-spacing: 0;
}

.trust-strip__title-line {
  display: block;
  white-space: nowrap;
}

.trust-strip__head > p {
  max-width: 410px;
  padding-bottom: 5px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.trust-strip__items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.trust-strip article {
  --trust-accent: var(--ci-teal);
  --trust-accent-rgb: var(--ci-teal-rgb);
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(var(--trust-accent-rgb), .24);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 16px 34px rgba(16, 35, 33, .08);
  transition: transform .38s cubic-bezier(.22, 1, .36, 1), border-color .32s ease, box-shadow .38s ease;
}

.trust-strip article::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(145deg, rgba(var(--trust-accent-rgb), .94), rgba(var(--trust-accent-rgb), .72));
  content: "";
  transform: translateY(calc(100% - 6px));
  transition: transform .52s cubic-bezier(.22, 1, .36, 1);
}

.trust-strip article > * {
  position: relative;
  z-index: 1;
}

.trust-strip article:hover {
  border-color: rgba(var(--trust-accent-rgb), .54);
  box-shadow: 0 24px 48px rgba(16, 35, 33, .16);
  transform: translateY(-8px);
}

.trust-strip article:hover::before {
  transform: translateY(0);
}

.trust-strip article.trust-card--orange {
  --trust-accent: var(--ci-orange);
  --trust-accent-rgb: var(--ci-orange-rgb);
}

.trust-strip article.trust-card--red {
  --trust-accent: var(--ci-red);
  --trust-accent-rgb: var(--ci-red-rgb);
}

.trust-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.trust-card__icon {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  place-items: center;
  border: 1px solid rgba(var(--trust-accent-rgb), .26);
  border-radius: 50%;
  color: var(--trust-accent);
  background: rgba(var(--trust-accent-rgb), .11);
  transition: color .3s ease, background .3s ease, border-color .3s ease, transform .4s cubic-bezier(.22, 1, .36, 1);
}

.trust-card__icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-card__number {
  color: rgba(16, 35, 33, .34);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: color .3s ease, transform .4s cubic-bezier(.22, 1, .36, 1);
}

.trust-strip article:hover .trust-card__icon {
  border-color: rgba(255, 255, 255, .76);
  color: var(--text);
  background: rgba(255, 255, 255, .82);
  transform: rotate(-5deg) scale(1.06);
}

.trust-strip article:hover .trust-card__number {
  color: rgba(16, 35, 33, .68);
  transform: translateX(-3px);
}

.trust-strip h3,
.service-card h3,
.process-card h3,
.rhythm-card h3,
.security-card h3,
.concern-card h3,
.offer-card h3 {
  color: var(--text);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.trust-strip h3 {
  margin-top: 24px;
  font-size: 22px;
  letter-spacing: 0;
  transition: color .3s ease, transform .4s cubic-bezier(.22, 1, .36, 1);
}

.trust-strip p,
.service-card p,
.process-card p,
.rhythm-card p,
.security-card p,
.concern-card p,
.offer-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.trust-strip article p {
  transition: color .3s ease, transform .4s cubic-bezier(.22, 1, .36, 1);
}

.trust-strip article:hover h3,
.trust-strip article:hover p {
  color: var(--text);
  transform: translateY(-2px);
}

.tools-layout {
  display: flex;
  align-items: stretch;
  gap: 22px;
}

.services-section {
  --services-glow-rgb: var(--ci-teal-rgb);
  isolation: isolate;
  overflow: hidden;
}

.services-section[data-service-theme="orange"] {
  --services-glow-rgb: var(--ci-orange-rgb);
}

.services-section[data-service-theme="red"] {
  --services-glow-rgb: var(--ci-red-rgb);
}

.services-section::before {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: -8%;
  width: min(84%, 1080px);
  background: linear-gradient(90deg, rgba(var(--services-glow-rgb), .38), rgba(var(--services-glow-rgb), .2) 46%, rgba(var(--services-glow-rgb), .07) 72%, transparent 100%);
  content: "";
  filter: blur(18px);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 12%, #000 88%, transparent 100%);
  opacity: .74;
  pointer-events: none;
  transform: translateX(-8%);
  transform-origin: left center;
  transition: background .45s ease, opacity .45s ease, transform .6s cubic-bezier(.22, 1, .36, 1);
}

.services-section > .container {
  position: relative;
  z-index: 1;
}

.services-section.is-theme-shifting::before {
  animation: services-glow-sweep .82s cubic-bezier(.22, 1, .36, 1);
}

.tools-layout__panel {
  flex: 0 0 34%;
  min-width: 0;
}

.mini-window {
  position: sticky;
  top: 118px;
  min-height: 420px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.mini-window__top {
  display: flex;
  gap: 7px;
  padding-bottom: 18px;
}

.mini-window__top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cream-dark);
}

.mini-window__top span:first-child {
  background: var(--red);
}

.mini-window__top span:nth-child(2) {
  background: var(--teal);
}

.mini-window__top span:nth-child(3) {
  background: var(--yellow);
}

.mini-window__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mini-task {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  color: var(--muted);
  background: var(--cream);
  font-size: 16px;
  font-weight: 700;
}

.mini-task--active {
  color: var(--dark);
  background: var(--yellow);
}

.feature-list {
  display: flex;
  flex: 0 0 39%;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.feature-item {
  position: relative;
  min-height: 88px;
  padding: 24px 28px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.feature-item--open {
  min-height: 292px;
}

.feature-item button,
.feature-item span {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: var(--dark);
  background: var(--yellow);
  font-size: 20px;
  line-height: 1;
}

.feature-item span {
  background: var(--cream-dark);
}

.feature-item h3 {
  max-width: calc(100% - 48px);
}

.feature-item h4 {
  margin-top: 4px;
  color: var(--black);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.feature-item p {
  margin-top: 24px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
}

.feature-item ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0 0 18px;
  border-bottom: 5px solid var(--yellow);
  list-style: none;
}

.feature-item li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.4;
}

.feature-item li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 12px;
  font-weight: 700;
}

.feature-card {
  --feature-accent: var(--ci-orange);
  --feature-accent-rgb: var(--ci-orange-rgb);
  --feature-accent-ink: #ad6900;
  cursor: pointer;
  width: 100%;
  padding: 24px;
  border: 0;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: background-color .4s cubic-bezier(.4, 0, .2, 1), box-shadow .3s ease;
}

.feature-card[data-panel-theme="teal"] {
  --feature-accent: var(--ci-teal);
  --feature-accent-rgb: var(--ci-teal-rgb);
  --feature-accent-ink: #168f84;
}

.feature-card[data-panel-theme="orange"] {
  --feature-accent: var(--ci-orange);
  --feature-accent-rgb: var(--ci-orange-rgb);
  --feature-accent-ink: #ad6900;
}

.feature-card[data-panel-theme="red"] {
  --feature-accent: var(--ci-red);
  --feature-accent-rgb: var(--ci-red-rgb);
  --feature-accent-ink: #c6404b;
}

.feature-card:hover,
.feature-card.is-active {
  box-shadow: var(--shadow-card);
}

.feature-card.is-active {
  background: linear-gradient(145deg, rgba(var(--feature-accent-rgb), .09), rgba(255, 255, 255, .98) 58%);
  box-shadow: var(--shadow-card), inset 4px 0 0 var(--feature-accent);
}

.feature-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  text-align: left;
}

.feature-card__top-text {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}

.feature-card__pill {
  display: block;
  max-height: 0;
  margin-bottom: 0;
  color: var(--feature-accent-ink);
  font-size: 16px;
  line-height: 1.3;
  opacity: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4, 0, .2, 1), opacity .3s cubic-bezier(.4, 0, .2, 1), margin-bottom .35s cubic-bezier(.4, 0, .2, 1);
}

.feature-card.is-active .feature-card__pill {
  max-height: 24px;
  margin-bottom: 4px;
  opacity: 1;
}

.feature-card__title {
  color: var(--feature-accent-ink);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.25;
  transition: color .35s cubic-bezier(.4, 0, .2, 1);
}

.feature-card__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: var(--feature-accent);
  background: rgba(var(--feature-accent-rgb), .14);
  font-size: 21px;
  line-height: 1;
  transition: background-color .35s cubic-bezier(.4, 0, .2, 1), transform .35s cubic-bezier(.4, 0, .2, 1);
}

.feature-card:hover .feature-card__toggle,
.feature-card.is-active .feature-card__toggle {
  color: #fff;
  background: var(--feature-accent);
}

.feature-card.is-active .feature-card__toggle {
  transform: rotate(180deg);
}

.feature-card__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s cubic-bezier(.4, 0, .2, 1);
}

.feature-card.is-active .feature-card__body {
  grid-template-rows: 1fr;
}

.feature-card__body-inner {
  min-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-4px);
  transition: opacity .3s cubic-bezier(.4, 0, .2, 1), transform .35s cubic-bezier(.4, 0, .2, 1);
}

.feature-card.is-active .feature-card__body-inner {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .15s;
}

.feature-card__body-inner p {
  margin-top: 24px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
}

.feature-card__body-inner ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.feature-card__body-inner li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.4;
}

.feature-card__body-inner li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  color: #fff;
  background: var(--feature-accent);
  font-size: 12px;
  font-weight: 700;
}

.feature-card__progress {
  width: 100%;
  max-height: 0;
  height: 5px;
  margin-top: 0;
  border-radius: 12px;
  background: rgba(var(--feature-accent-rgb), .14);
  opacity: 0;
  overflow: hidden;
  transition: opacity .25s, max-height .4s cubic-bezier(.4, 0, .2, 1), margin-top .4s cubic-bezier(.4, 0, .2, 1);
}

.feature-card.is-active .feature-card__progress {
  max-height: 5px;
  margin-top: 20px;
  opacity: 1;
}

.feature-card__progress-fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--feature-accent);
  transition: width .7s linear;
}

.feature-card.is-active .feature-card__progress-fill {
  width: 100%;
}

.service-mockup {
  --service-accent: var(--ci-orange);
  --service-accent-rgb: var(--ci-orange-rgb);
  --service-accent-ink: #ad6900;
  --service-icon-url: url("../Medien/Icons/messie-entruempelung.svg");
  position: relative;
  flex: 1;
  min-width: 0;
  min-height: 600px;
  padding: 42px;
  border: 1px solid rgba(16, 35, 33, .10);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(var(--service-accent-rgb), .14), rgba(255, 255, 255, .88) 48%, rgba(var(--service-accent-rgb), .10));
  box-shadow: 0 24px 60px rgba(16, 35, 33, .10);
  overflow: hidden;
  transition: border-color .35s ease, background .35s ease;
}

.service-mockup::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  background: var(--service-accent);
  content: "";
  transition: background .35s ease;
}

.service-mockup[data-theme="teal"] {
  --service-accent: var(--ci-teal);
  --service-accent-rgb: var(--ci-teal-rgb);
  --service-accent-ink: #168f84;
}

.service-mockup[data-theme="red"] {
  --service-accent: var(--ci-red);
  --service-accent-rgb: var(--ci-red-rgb);
  --service-accent-ink: #c6404b;
}

.service-mockup__shell {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 516px;
}

.service-mockup__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(16, 35, 33, .12);
}

.service-mockup__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.service-mockup__brand > div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.service-mockup__brand small {
  color: var(--service-accent-ink);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color .35s ease;
}

.service-mockup__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  color: var(--dark);
}

.service-mockup__mark img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  animation: service-mark-spin 9s linear infinite;
  transform-origin: center;
}

.service-mockup__brand strong {
  margin-top: 2px;
  color: var(--text);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.service-mockup__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 8px 11px;
  border: 1px solid rgba(var(--service-accent-rgb), .22);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, .62);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  transition: border-color .35s ease;
}

.service-mockup__status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--service-accent);
  box-shadow: 0 0 0 4px rgba(var(--service-accent-rgb), .14);
  transition: background .35s ease, box-shadow .35s ease;
}

.service-mockup__summary {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 188px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(16, 35, 33, .12);
}

.service-mockup__summary-icon {
  position: relative;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 1px solid rgba(var(--service-accent-rgb), .30);
  border-radius: 8px;
  background: rgba(var(--service-accent-rgb), .18);
  transition: border-color .35s ease, background .35s ease;
}

.service-mockup__summary-icon::after {
  position: absolute;
  width: 48px;
  height: 48px;
  background: var(--service-accent);
  content: "";
  -webkit-mask: var(--service-icon-url) center / contain no-repeat;
  mask: var(--service-icon-url) center / contain no-repeat;
  transition: background .35s ease;
}

.service-mockup__summary-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  opacity: 0;
}

.service-mockup__summary-copy {
  min-width: 0;
}

.service-mockup__kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--service-accent-ink);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color .35s ease;
}

.service-mockup__kicker b {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--text);
  background: rgba(var(--service-accent-rgb), .18);
  font-size: 12px;
  transition: background .35s ease;
}

.service-mockup__summary h3 {
  margin-top: 8px;
  color: var(--service-accent-ink);
  font-size: 27px;
  font-weight: 600;
  line-height: 1.15;
  transition: color .35s ease;
}

.service-mockup__summary p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.service-mockup__journey {
  flex: 1;
  padding-top: 24px;
}

.service-mockup__journey-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.service-mockup__journey-head > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.service-mockup__journey-kicker {
  color: var(--service-accent-ink);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color .35s ease;
}

.service-mockup__journey-head strong {
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.service-mockup__journey-count {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid rgba(var(--service-accent-rgb), .22);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, .62);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  transition: border-color .35s ease;
}

.service-mockup__journey-count b {
  color: var(--service-accent-ink);
  font-size: 14px;
  transition: color .35s ease;
}

.service-mockup__journey ol {
  position: relative;
  display: grid;
  gap: 4px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.service-mockup__journey ol::before,
.service-mockup__journey ol::after {
  position: absolute;
  top: 25px;
  bottom: 25px;
  left: 21px;
  width: 2px;
  content: "";
  transform-origin: center top;
}

.service-mockup__journey ol::before {
  background: rgba(16, 35, 33, .12);
}

.service-mockup__journey ol::after {
  background: var(--service-accent);
  transition: background .35s ease;
}

.service-mockup__journey li {
  --step-color: var(--service-accent);
  --step-color-rgb: var(--service-accent-rgb);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 13px;
  min-width: 0;
  min-height: 54px;
  padding: 5px 7px 5px 0;
  border-radius: 6px;
  transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
}

.service-mockup__journey li::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(var(--step-color-rgb), .14), rgba(255, 255, 255, .52) 72%);
  content: "";
  opacity: 0;
  transition: opacity .3s ease;
}

.service-mockup__journey li:hover {
  box-shadow: 0 10px 24px rgba(16, 35, 33, .07);
  transform: translateX(4px);
}

.service-mockup__journey li:hover::before {
  opacity: 1;
}

.service-mockup__step-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(var(--step-color-rgb), .48);
  border-radius: 50%;
  color: var(--step-color);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 5px 14px rgba(16, 35, 33, .08), inset 0 0 0 5px rgba(var(--step-color-rgb), .12);
  font-size: 11px;
  font-weight: 600;
  transition: border-color .3s ease, background .3s ease, color .3s ease, transform .3s ease;
}

.service-mockup__journey li:hover .service-mockup__step-number {
  border-color: var(--step-color);
  color: #fff;
  background: var(--step-color);
  transform: scale(1.06);
}

.service-mockup__step-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.service-mockup__step-copy strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

.service-mockup__step-copy small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.service-mockup__step-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--step-color);
  background: rgba(var(--step-color-rgb), .12);
  transition: color .3s ease, background .3s ease, transform .3s ease;
}

.service-mockup__step-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-mockup__journey li:hover .service-mockup__step-icon {
  color: #fff;
  background: var(--step-color);
  transform: rotate(5deg);
}

.service-mockup__assurances {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 35, 33, .12);
}

.service-mockup__assurances span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.service-mockup__assurances svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--service-accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .35s ease;
}

.service-mockup.is-updating .service-mockup__summary-icon {
  animation: service-summary-icon .48s cubic-bezier(.22, 1, .36, 1);
}

.service-mockup.is-updating .service-mockup__summary-copy {
  animation: service-summary-copy .48s cubic-bezier(.22, 1, .36, 1);
}

.service-mockup.is-updating .service-mockup__journey ol::after {
  animation: service-flow-in .72s cubic-bezier(.22, 1, .36, 1);
}

.service-mockup.is-updating .service-mockup__journey li {
  animation: service-route-step .42s cubic-bezier(.22, 1, .36, 1) both;
}

.service-mockup.is-updating .service-mockup__journey li:nth-child(2) {
  animation-delay: .05s;
}

.service-mockup.is-updating .service-mockup__journey li:nth-child(3) {
  animation-delay: .1s;
}

.service-mockup.is-updating .service-mockup__journey li:nth-child(4) {
  animation-delay: .15s;
}

.service-pricing {
  position: relative;
  margin-top: 46px;
  border: 1px solid rgba(16, 35, 33, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 20px 48px rgba(16, 35, 33, .09);
  overflow: hidden;
}

.service-pricing::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: 4px;
  background: linear-gradient(90deg, var(--ci-teal) 0 33.333%, var(--ci-orange) 33.333% 66.666%, var(--ci-red) 66.666% 100%);
  content: "";
}

.service-pricing__intro {
  display: grid;
  grid-template-columns: minmax(240px, .65fr) minmax(0, 1.35fr);
  align-items: end;
  gap: 36px;
  padding: 30px 30px 26px;
  background: linear-gradient(110deg, rgba(var(--ci-teal-rgb), .12), rgba(255, 255, 255, .88) 46%, rgba(var(--ci-orange-rgb), .08));
}

.service-pricing__eyebrow {
  display: block;
  margin-bottom: 6px;
  color: #168f84;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-pricing__intro h3 {
  color: var(--text);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.service-pricing__intro p {
  max-width: 680px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.service-pricing__table-wrap {
  width: 100%;
  overflow-x: auto;
}

.service-pricing__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.service-pricing__table col:first-child {
  width: 58%;
}

.service-pricing__table col:last-child {
  width: 42%;
}

.service-pricing__table th,
.service-pricing__table td {
  padding: 16px 30px;
  text-align: left;
  vertical-align: middle;
}

.service-pricing__table th {
  color: #0d3a36;
  background: var(--ci-teal);
  font-size: 15px;
  font-weight: 750;
}

.service-pricing__table td {
  border-bottom: 1px solid rgba(16, 35, 33, .11);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
  transition: color .2s ease, background-color .2s ease;
}

.service-pricing__table td:last-child {
  color: var(--text);
  font-weight: 650;
}

.service-pricing__table tbody tr:hover td {
  color: var(--text);
  background: rgba(var(--ci-teal-rgb), .075);
}

.service-pricing__note {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  color: var(--muted);
  background: rgba(var(--ci-orange-rgb), .09);
}

.service-pricing__note svg {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #c77b0d;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-pricing__note p {
  font-size: 13px;
  line-height: 1.5;
}

.service-grid {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 calc(50% - 9px);
  min-width: 250px;
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(16, 35, 33, .08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.service-card img {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(var(--ci-orange-rgb), .44);
  object-fit: contain;
}

.service-card:nth-child(2n) img {
  background: rgba(var(--ci-red-rgb), .14);
}

.service-card:nth-child(3n) img {
  background: rgba(var(--ci-teal-rgb), .14);
}

.process-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.process-card {
  flex: 1 1 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--dark);
  background: var(--yellow);
  font-size: 16px;
  font-weight: 800;
}

.transformation {
  position: relative;
  background: #f7fbfa;
  overflow: hidden;
}

.transformation::before {
  content: none;
}

.transformation .container {
  display: grid;
  gap: 38px;
}

.transformation__head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .65fr);
  align-items: end;
  gap: 72px;
}

.transformation__eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--ci-teal);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.transformation__head h2 {
  max-width: 680px;
  color: var(--text);
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 400;
  line-height: 1.02;
}

.transformation__head h2 span {
  display: block;
  white-space: nowrap;
}

.transformation__head p {
  max-width: 520px;
  padding-bottom: 5px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.before-after {
  margin: 0;
  border: 1px solid rgba(16, 35, 33, .14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(16, 35, 33, .13);
  overflow: hidden;
}

.before-after__stage {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #d8d2c7;
  isolation: isolate;
  overflow: hidden;
}

.before-after__stage::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .2);
  content: "";
  pointer-events: none;
}

.before-after__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
}

.before-after__image--before {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--compare-position)) 0 0);
  will-change: clip-path;
}

.before-after__label {
  position: absolute;
  z-index: 4;
  top: 22px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 8px 22px rgba(16, 35, 33, .18);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
}

.before-after__label--before {
  left: 22px;
  background: rgba(173, 52, 63, .9);
}

.before-after__label--after {
  right: 22px;
  background: rgba(25, 128, 119, .9);
}

.before-after__range {
  position: absolute;
  z-index: 6;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0;
  touch-action: none;
}

.before-after__divider {
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  left: var(--compare-position);
  width: 2px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 0 0 1px rgba(16, 35, 33, .2), 0 0 18px rgba(16, 35, 33, .2);
  pointer-events: none;
  transform: translateX(-50%);
}

.before-after__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 4px solid rgba(255, 255, 255, .92);
  border-radius: 50%;
  color: #fff;
  background: var(--text);
  box-shadow: 0 12px 32px rgba(16, 35, 33, .3);
  transform: translate(-50%, -50%);
  transition: background .25s ease, transform .25s ease;
}

.before-after__handle svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.before-after:not(.is-interacted) .before-after__handle {
  animation: before-after-hint 2.2s ease-in-out .8s 2;
}

.before-after__range:hover + .before-after__divider .before-after__handle,
.before-after__range:focus-visible + .before-after__divider .before-after__handle {
  background: var(--ci-teal);
  transform: translate(-50%, -50%) scale(1.08);
}

.before-after__range:focus-visible + .before-after__divider .before-after__handle {
  outline: 3px solid rgba(var(--ci-orange-rgb), .9);
  outline-offset: 4px;
}

.before-after__caption {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: 30px;
  padding: 22px 26px;
  border-top: 1px solid rgba(16, 35, 33, .12);
}

.before-after__caption > div:first-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.before-after__caption > div:first-child span {
  color: var(--ci-red);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.before-after__caption > div:first-child strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.before-after__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.before-after__facts span {
  display: grid;
  grid-template-columns: 9px minmax(0, 1fr);
  gap: 2px 9px;
  min-width: 0;
  padding: 2px 18px;
  border-left: 1px solid rgba(16, 35, 33, .12);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.before-after__facts i {
  grid-row: 1 / span 2;
  width: 9px;
  height: 9px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--ci-teal);
  box-shadow: 0 0 0 4px rgba(var(--ci-teal-rgb), .12);
}

.before-after__facts span:nth-child(2) i {
  background: var(--ci-orange);
  box-shadow: 0 0 0 4px rgba(var(--ci-orange-rgb), .12);
}

.before-after__facts span:nth-child(3) i {
  background: var(--ci-red);
  box-shadow: 0 0 0 4px rgba(var(--ci-red-rgb), .12);
}

.before-after__facts b {
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
}


.b2b-section {
  isolation: isolate;
  overflow: hidden;
  padding-top: 112px;
  padding-bottom: 104px;
  color: var(--white);
  background: #0b211f;
}

.b2b-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  pointer-events: none;
}

.b2b-section::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  height: 4px;
  background: linear-gradient(90deg, var(--ci-teal) 0 34%, var(--ci-orange) 34% 67%, var(--ci-red) 67% 100%);
  content: "";
}

.b2b-section__inner {
  display: grid;
  gap: 48px;
}

.b2b-section__head {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, .7fr);
  align-items: end;
  gap: 76px;
}

.b2b-section__heading {
  max-width: 680px;
}

.b2b-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.b2b-section__eyebrow b {
  padding: 4px 9px;
  border: 1px solid rgba(var(--ci-teal-rgb), .55);
  border-radius: 4px;
  color: var(--ci-teal);
  background: rgba(var(--ci-teal-rgb), .10);
  font-size: 11px;
  letter-spacing: .04em;
}

.b2b-section__head h2 {
  color: var(--white);
  font-family: var(--serif);
  font-size: 47px;
  font-weight: 400;
  line-height: 1.08;
}

.b2b-section__intro {
  display: grid;
  gap: 13px;
  padding-left: 24px;
  border-left: 1px solid rgba(var(--ci-teal-rgb), .50);
}

.b2b-section__intro p {
  color: rgba(255, 255, 255, .68);
  font-size: 15px;
  line-height: 1.65;
}

.b2b-section__intro p:first-child {
  color: rgba(255, 255, 255, .92);
}

.b2b-section__stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
}

.b2b-section__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1672 / 941;
  min-height: 570px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: #17302d;
  box-shadow: 0 26px 64px rgba(0, 0, 0, .25);
  overflow: hidden;
}

.b2b-slideshow__slide::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.5'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  content: "";
  mix-blend-mode: soft-light;
  opacity: .2;
  pointer-events: none;
}

.b2b-slideshow__slide::after {
  position: absolute;
  inset: 42% 0 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(5, 16, 15, .90));
  content: "";
  pointer-events: none;
}

.b2b-slideshow__slides,
.b2b-slideshow__slide {
  position: absolute;
  inset: 0;
}

.b2b-slideshow__slide {
  z-index: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .85s ease, visibility 0s linear .85s;
}

.b2b-slideshow__slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.b2b-slideshow__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.015);
  transition: transform 6.8s cubic-bezier(.2, .7, .25, 1);
}

.b2b-slideshow__slide.is-active img {
  transform: scale(1.055);
}

.b2b-section__media figcaption {
  position: absolute;
  right: 270px;
  bottom: 25px;
  left: 26px;
  z-index: 3;
  display: grid;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .30);
}

.b2b-section__media figcaption span {
  color: var(--ci-orange);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.b2b-section__media figcaption strong {
  max-width: 390px;
  color: var(--white);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.25;
}

.b2b-slideshow__controls {
  position: absolute;
  right: 22px;
  bottom: 21px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 7px;
  background: rgba(6, 24, 22, .74);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .20);
  backdrop-filter: blur(12px);
}

.b2b-slideshow__button,
.b2b-slideshow__pause {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
  transition: color .25s ease, border-color .25s ease, background .25s ease, transform .25s ease;
}

.b2b-slideshow__button:hover,
.b2b-slideshow__pause:hover {
  border-color: rgba(var(--ci-teal-rgb), .75);
  color: #082421;
  background: var(--ci-teal);
  transform: translateY(-1px);
}

.b2b-slideshow__button:focus-visible,
.b2b-slideshow__pause:focus-visible,
.b2b-slideshow__dots button:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.b2b-slideshow__button svg,
.b2b-slideshow__pause svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.b2b-slideshow__dots {
  display: flex;
  align-items: center;
  gap: 0;
}

.b2b-slideshow__dots button {
  display: grid;
  width: 27px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 0;
  color: var(--ci-teal);
  background: transparent;
  cursor: pointer;
}

.b2b-slideshow__dots button:nth-child(2) {
  color: var(--ci-orange);
}

.b2b-slideshow__dots button:nth-child(3) {
  color: var(--ci-red);
}

.b2b-slideshow__dots button span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: .48;
  transition: width .3s ease, opacity .3s ease, box-shadow .3s ease;
}

.b2b-slideshow__dots button.is-active span {
  width: 17px;
  border-radius: 4px;
  opacity: 1;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .08);
}

.b2b-slideshow__pause {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 4;
  background: rgba(6, 24, 22, .68);
  backdrop-filter: blur(10px);
}

.b2b-slideshow__play-icon {
  display: none;
}

.b2b-slideshow.is-paused .b2b-slideshow__pause-icon {
  display: none;
}

.b2b-slideshow.is-paused .b2b-slideshow__play-icon {
  display: block;
}

.b2b-control {
  position: relative;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  gap: 17px;
  min-height: 570px;
  padding: 32px 34px 26px;
  border: 1px solid rgba(var(--ci-teal-rgb), .38);
  border-radius: 8px;
  color: var(--white);
  background-color: #102b28;
  background-image:
    linear-gradient(rgba(255, 255, 255, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .032) 1px, transparent 1px);
  background-size: 34px 34px;
  box-shadow: 0 26px 64px rgba(0, 0, 0, .25);
  overflow: hidden;
}

.b2b-control::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ci-teal) 0 34%, var(--ci-orange) 34% 67%, var(--ci-red) 67% 100%);
  content: "";
}

.b2b-control__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.b2b-control__head > div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.b2b-control__head > div > span {
  color: var(--ci-teal);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.b2b-control__head h3 {
  max-width: 410px;
  color: var(--white);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
}

.b2b-control__status {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(var(--ci-teal-rgb), .34);
  border-radius: 999px;
  color: rgba(255, 255, 255, .76);
  background: rgba(var(--ci-teal-rgb), .08);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
}

.b2b-control__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ci-teal);
  box-shadow: 0 0 0 4px rgba(var(--ci-teal-rgb), .13);
}

.b2b-control__intro {
  max-width: 540px;
  color: rgba(255, 255, 255, .64);
  font-size: 13px;
  line-height: 1.55;
}

.b2b-control__map {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px minmax(0, 1fr);
  grid-template-rows: repeat(2, minmax(104px, 1fr));
  align-items: center;
  gap: 16px 20px;
  min-height: 260px;
  padding: 4px 0;
}

.b2b-control__map::before,
.b2b-control__map::after {
  position: absolute;
  z-index: 0;
  background: rgba(255, 255, 255, .11);
  content: "";
  pointer-events: none;
}

.b2b-control__map::before {
  top: 50%;
  right: 16%;
  left: 16%;
  height: 1px;
}

.b2b-control__map::after {
  top: 19%;
  bottom: 19%;
  left: 50%;
  width: 1px;
}

.b2b-control__hub {
  position: relative;
  z-index: 2;
  display: grid;
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  justify-items: center;
  gap: 3px;
  text-align: center;
}

.b2b-control__hub-mark {
  position: relative;
  isolation: isolate;
  display: grid;
  width: 92px;
  height: 92px;
  margin-bottom: 8px;
  place-items: center;
  border-radius: 50%;
  background: #edf8f6;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .24);
}

.b2b-control__hub-mark::before {
  position: absolute;
  inset: -5px;
  z-index: -1;
  border-radius: 50%;
  background: conic-gradient(var(--ci-teal), var(--ci-orange), var(--ci-red), var(--ci-teal));
  content: "";
  animation: b2b-control-orbit 18s linear infinite;
}

.b2b-control__hub-mark img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.b2b-control__hub strong {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
}

.b2b-control__hub small {
  color: rgba(255, 255, 255, .54);
  font-size: 9px;
}

.b2b-control__node {
  --node-color: var(--ci-teal);
  --node-rgb: var(--ci-teal-rgb);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  min-width: 0;
  min-height: 78px;
  padding: 12px;
  border: 1px solid rgba(var(--node-rgb), .30);
  border-radius: 6px;
  background: rgba(var(--node-rgb), .065);
  transition: border-color .28s ease, background .28s ease, box-shadow .28s ease, transform .28s ease;
}

.b2b-control__node::after {
  position: absolute;
  top: 50%;
  width: 20px;
  height: 1px;
  background: rgba(var(--node-rgb), .62);
  content: "";
}

.b2b-control__node--clearance {
  grid-column: 1;
  grid-row: 1;
}

.b2b-control__node--disposal {
  --node-color: var(--ci-orange);
  --node-rgb: var(--ci-orange-rgb);
  grid-column: 3;
  grid-row: 1;
}

.b2b-control__node--cleaning {
  --node-color: var(--ci-red);
  --node-rgb: var(--ci-red-rgb);
  grid-column: 1;
  grid-row: 2;
}

.b2b-control__node--finishing {
  grid-column: 3;
  grid-row: 2;
}

.b2b-control__node--clearance::after,
.b2b-control__node--cleaning::after {
  right: -21px;
}

.b2b-control__node--disposal::after,
.b2b-control__node--finishing::after {
  left: -21px;
}

.b2b-control__node:hover {
  border-color: rgba(var(--node-rgb), .72);
  background: rgba(var(--node-rgb), .16);
  box-shadow: 0 14px 30px rgba(var(--node-rgb), .11);
  transform: scale(1.025);
}

.b2b-control__node-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(var(--node-rgb), .38);
  border-radius: 50%;
  color: var(--node-color);
  background: rgba(var(--node-rgb), .10);
  transition: color .28s ease, background .28s ease;
}

.b2b-control__node:hover .b2b-control__node-icon {
  color: #0b211f;
  background: var(--node-color);
}

.b2b-control__node svg,
.b2b-audience > svg,
.b2b-section__actions svg {
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.b2b-control__node svg {
  width: 20px;
  height: 20px;
}

.b2b-control__node > span:last-child,
.b2b-control__node strong,
.b2b-control__node small {
  display: block;
  min-width: 0;
}

.b2b-control__node strong {
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.b2b-control__node small {
  margin-top: 3px;
  color: rgba(255, 255, 255, .57);
  font-size: 9px;
  line-height: 1.35;
}

.b2b-control__result {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.b2b-control__result span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 0;
  padding: 2px 10px;
  border-right: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .70);
  font-size: 10px;
  font-weight: 600;
  text-align: center;
}

.b2b-control__result span:last-child {
  border-right: 0;
}

.b2b-control__result b {
  color: var(--ci-teal);
  font-size: 12px;
}

.b2b-control__result span:nth-child(2) b {
  color: var(--ci-orange);
}

.b2b-control__result span:nth-child(3) b {
  color: var(--ci-red);
}

.b2b-audiences {
  display: grid;
  grid-template-columns: minmax(250px, .68fr) minmax(0, 1.72fr);
  gap: 42px;
  padding: 38px 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.b2b-audiences__head {
  align-self: start;
  padding-right: 18px;
}

.b2b-audiences__head > span {
  display: block;
  margin-bottom: 11px;
  color: var(--ci-teal);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.b2b-audiences__head h3 {
  color: var(--white);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.25;
}

.b2b-audiences__head p {
  margin-top: 13px;
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
  line-height: 1.55;
}

.b2b-audiences__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.b2b-audience {
  --audience-color: var(--ci-teal);
  --audience-rgb: var(--ci-teal-rgb);
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  min-height: 132px;
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 7px;
  background: rgba(255, 255, 255, .045);
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.b2b-audience--orange {
  --audience-color: var(--ci-orange);
  --audience-rgb: var(--ci-orange-rgb);
}

.b2b-audience--red {
  --audience-color: var(--ci-red);
  --audience-rgb: var(--ci-red-rgb);
}

.b2b-audience:hover {
  border-color: rgba(var(--audience-rgb), .52);
  background: rgba(var(--audience-rgb), .11);
  transform: translateY(-4px);
}

.b2b-audience > svg {
  width: 36px;
  height: 36px;
  padding: 7px;
  border: 1px solid rgba(var(--audience-rgb), .42);
  border-radius: 50%;
  color: var(--audience-color);
  background: rgba(var(--audience-rgb), .09);
}

.b2b-audience h4 {
  margin: 0;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.32;
}

.b2b-audience p {
  margin-top: 6px;
  color: rgba(255, 255, 255, .56);
  font-size: 11px;
  line-height: 1.45;
}

.b2b-section__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.b2b-section__footer > div:first-child {
  display: grid;
  gap: 3px;
}

.b2b-section__footer strong {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
}

.b2b-section__footer span {
  color: rgba(255, 255, 255, .60);
  font-size: 13px;
}

.b2b-section__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.b2b-section__actions svg {
  width: 18px;
  height: 18px;
}

@keyframes b2b-control-orbit {
  to {
    transform: rotate(1turn);
  }
}

.prompt-cta {
  position: relative;
  isolation: isolate;
  width: 100%;
  padding: 112px 0;
  background: #f2f8f7;
  overflow: hidden;
}

.prompt-cta::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(16, 35, 33, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 35, 33, .025) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  pointer-events: none;
}

.prompt-cta::after {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: min(38vw, 540px);
  height: 100%;
  background: linear-gradient(135deg, rgba(var(--ci-teal-rgb), .08), rgba(255, 255, 255, 0) 58%);
  content: "";
  pointer-events: none;
}

.prompt-cta__inner {
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(520px, 1.22fr);
  align-items: start;
  gap: 72px;
}

.prompt-cta__copy {
  padding-top: 22px;
}

.prompt-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: #168f84;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.prompt-cta__eyebrow::before {
  width: 28px;
  height: 3px;
  background: linear-gradient(90deg, var(--ci-teal) 0 34%, var(--ci-orange) 34% 67%, var(--ci-red) 67% 100%);
  content: "";
}

.prompt-cta h2 {
  max-width: 500px;
  color: var(--text);
  font-family: var(--serif);
  font-size: 45px;
  font-weight: 400;
  line-height: 1.08;
}

.prompt-cta__copy > p:not(.prompt-cta__disclaimer) {
  max-width: 490px;
  margin-top: 19px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.prompt-cta__guide {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid rgba(16, 35, 33, .13);
  border-bottom: 1px solid rgba(16, 35, 33, .13);
}

.prompt-cta__guide > div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(16, 35, 33, .09);
}

.prompt-cta__guide > div:last-child {
  border-bottom: 0;
}

.prompt-cta__guide > div > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(var(--ci-teal-rgb), .38);
  border-radius: 50%;
  color: #168f84;
  background: rgba(var(--ci-teal-rgb), .09);
  font-size: 11px;
  font-weight: 600;
}

.prompt-cta__guide > div:nth-child(2) > span {
  border-color: rgba(var(--ci-orange-rgb), .48);
  color: #b66f06;
  background: rgba(var(--ci-orange-rgb), .12);
}

.prompt-cta__guide > div:nth-child(3) > span {
  border-color: rgba(var(--ci-red-rgb), .38);
  color: #c9434d;
  background: rgba(var(--ci-red-rgb), .09);
}

.prompt-cta__guide p,
.prompt-cta__guide strong,
.prompt-cta__guide small {
  display: block;
  margin: 0;
}

.prompt-cta__guide strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.prompt-cta__guide small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.prompt-cta__disclaimer {
  max-width: 480px;
  margin-top: 18px;
  color: #60736f;
  font-size: 12px;
  line-height: 1.55;
}

.prompt-cta__contacts {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: 9px;
  margin-top: 26px;
}

.prompt-cta__contacts a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 13px;
  border: 1px solid rgba(16, 35, 33, .13);
  border-radius: 8px;
  background: rgba(255, 255, 255, .62);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.prompt-cta__contacts a:hover {
  border-color: rgba(var(--ci-teal-rgb), .52);
  background: var(--white);
  transform: translateY(-2px);
}

.prompt-cta__contacts svg {
  width: 32px;
  height: 32px;
  padding: 7px;
  border-radius: 50%;
  color: #168f84;
  background: rgba(var(--ci-teal-rgb), .11);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.prompt-cta__contacts span,
.prompt-cta__contacts small,
.prompt-cta__contacts strong {
  display: block;
  min-width: 0;
}

.prompt-cta__contacts small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 400;
}

.prompt-cta__contacts strong {
  overflow: hidden;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.prompt-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 31px;
  border: 1px solid rgba(16, 35, 33, .13);
  border-radius: 8px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 28px 76px rgba(16, 35, 33, .16);
  overflow: hidden;
}

#kontakt-formular {
  scroll-margin-top: 112px;
}

.prompt-form::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ci-teal) 0 34%, var(--ci-orange) 34% 67%, var(--ci-red) 67% 100%);
  content: "";
}

.prompt-form__head {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  padding-bottom: 19px;
  border-bottom: 1px solid rgba(16, 35, 33, .11);
}

.prompt-form__icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(var(--ci-teal-rgb), .34);
  border-radius: 50%;
  color: #168f84;
  background: rgba(var(--ci-teal-rgb), .10);
}

.prompt-form__icon svg,
.prompt-form .btn svg,
.form-upload__drop-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.prompt-form__icon svg {
  width: 23px;
  height: 23px;
}

.prompt-form__head div {
  display: grid;
  gap: 2px;
}

.prompt-form__head div > span {
  color: #168f84;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.prompt-form__head h3 {
  color: var(--text);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-row--split {
  flex-direction: row;
  gap: 12px;
}

.form-row--split > div {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

.form-row label,
.form-upload__head p {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.form-required {
  color: var(--ci-red);
}

.form-optional {
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
}

.form-contact-hint {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  min-height: 45px;
  padding: 11px 13px;
  border: 1px solid #cfddda;
  border-radius: 6px;
  color: var(--text);
  background: #f8fbfa;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.4;
  resize: vertical;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form-row select {
  appearance: auto;
  cursor: pointer;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--ci-teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(var(--ci-teal-rgb), .13);
}

.form-row textarea {
  min-height: 112px;
}

.form-upload {
  display: grid;
  gap: 9px;
}

.form-upload__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.form-upload__head > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.form-upload__input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

.form-upload__drop {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  min-height: 88px;
  padding: 15px 17px;
  border: 1px dashed rgba(var(--ci-teal-rgb), .58);
  border-radius: 7px;
  color: var(--text);
  background: rgba(var(--ci-teal-rgb), .055);
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.form-upload__drop:hover,
.form-upload.is-dragging .form-upload__drop {
  border-color: var(--ci-teal);
  background: rgba(var(--ci-teal-rgb), .11);
  transform: translateY(-2px);
}

.form-upload__input:focus-visible + .form-upload__drop {
  outline: 3px solid rgba(var(--ci-teal-rgb), .48);
  outline-offset: 2px;
}

.form-upload__drop-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: #168f84;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(16, 35, 33, .09);
}

.form-upload__drop-icon svg {
  width: 25px;
  height: 25px;
}

.form-upload__drop > span:last-child,
.form-upload__drop strong,
.form-upload__drop small {
  display: block;
}

.form-upload__drop strong {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.form-upload__drop small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}

.form-upload__feedback {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.form-upload__feedback.is-error {
  color: #b8333e;
  font-weight: 600;
}

.form-upload__preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.form-upload__preview[hidden] {
  display: none;
}

.form-upload__item {
  position: relative;
  min-width: 0;
  margin: 0;
}

.form-upload__item img {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(16, 35, 33, .12);
  border-radius: 6px;
  background: #edf4f2;
  object-fit: cover;
}

.form-upload__item.is-unavailable::before {
  display: grid;
  aspect-ratio: 1;
  padding: 8px;
  place-items: center;
  border: 1px solid rgba(16, 35, 33, .12);
  border-radius: 6px;
  color: var(--muted);
  background: #edf4f2;
  content: "Vorschau nicht verfügbar";
  font-size: 9px;
  line-height: 1.35;
  text-align: center;
}

.form-upload__item figcaption {
  margin-top: 4px;
  overflow: hidden;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.form-upload__remove {
  position: absolute;
  top: 5px;
  right: 5px;
  display: grid;
  width: 24px;
  height: 24px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  color: var(--white);
  background: rgba(7, 18, 17, .78);
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.form-upload__remove:hover {
  background: var(--ci-red);
  transform: scale(1.06);
}

.prompt-form > .btn {
  width: 100%;
  margin-top: 2px;
}

.prompt-form .btn svg {
  width: 18px;
  height: 18px;
}

.form-note {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.form-note a {
  color: #116f67;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  padding: 13px 15px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.form-status--ok {
  border-color: rgba(var(--ci-teal-rgb), .34);
  color: var(--dark);
  background: rgba(var(--ci-teal-rgb), .16);
}

.form-status--error {
  border-color: rgba(var(--ci-red-rgb), .30);
  color: var(--dark);
  background: rgba(var(--ci-red-rgb), .12);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.form-consent input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--teal);
}

.form-consent a {
  color: var(--dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-consent--compact {
  margin-top: 11px;
  color: rgba(16, 35, 33, .68);
  font-size: 10px;
}

.form-field-error {
  margin: -7px 0 0;
  color: #b32f3a;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

[data-mail-form] [aria-invalid="true"] {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(var(--ci-red-rgb), .12);
}

[data-mail-form][aria-busy="true"] {
  cursor: default;
}

.btn.is-sending {
  gap: 10px;
  opacity: .82;
  cursor: default;
}

.btn.is-sending::before {
  width: 17px;
  height: 17px;
  border: 2px solid rgba(255, 255, 255, .42);
  border-top-color: currentColor;
  border-radius: 50%;
  content: "";
  animation: formSubmitSpin .72s linear infinite;
}

@keyframes formSubmitSpin {
  to {
    transform: rotate(360deg);
  }
}

.form-upload__file-icon {
  display: grid;
  width: 100%;
  min-height: 92px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--dark), #1e4a46);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}

.prompt-form.has-mail-success,
.hero-inquiry.has-mail-success,
.hero--showcase .hero-inquiry.has-mail-success {
  display: flex;
  min-height: 440px;
  padding: 0;
  border-color: rgba(var(--ci-teal-rgb), .42);
  background: var(--dark);
  overflow: hidden;
}

.prompt-form.has-mail-success::before,
.hero-inquiry.has-mail-success::before {
  content: none;
}

.form-mail-success {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 9px;
  width: 100%;
  min-height: 100%;
  padding: 48px 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0, rgba(var(--ci-teal-rgb), .2), transparent 52%),
    var(--dark);
  text-align: center;
}

.form-mail-success__eyebrow {
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.form-mail-success h3 {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.05;
}

.form-mail-success p {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
}

.form-mail-success small {
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
}

.form-mail-success__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.form-mail-success .btn--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .06);
}

.hero-inquiry .form-mail-success {
  padding: 34px 22px;
}

.hero-inquiry .form-mail-success h3 {
  font-size: 34px;
}

.hero-inquiry .form-mail-success__actions {
  align-items: stretch;
  flex-direction: column;
  width: min(100%, 250px);
}

.hero-inquiry .form-mail-success .btn {
  margin-top: 0;
}

.form-hp {
  position: fixed;
  top: -100px;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.dark-trust {
  color: var(--white);
  background: var(--black);
}

.dark-trust .section__head h2,
.dark-trust .section__head p,
.security-card h3 {
  color: var(--white);
}

.dark-trust .section__head p,
.security-card p {
  color: rgba(255, 255, 255, .68);
}

.security-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  counter-reset: security-card;
}

.security-card {
  flex: 1 1 250px;
  min-height: 210px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
  counter-increment: security-card;
}

.security-card::before {
  content: counter(security-card, decimal-leading-zero);
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 14px;
  color: var(--dark);
  background: var(--yellow);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.concern-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.concern-card {
  flex: 1 1 500px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.comparison {
  isolation: isolate;
  background:
    linear-gradient(180deg, #fff8ef 0%, #f7fbfa 52%, #fff8ef 100%);
  overflow: hidden;
}

.comparison::before,
.comparison::after {
  position: absolute;
  z-index: -1;
  width: min(34vw, 480px);
  aspect-ratio: 1;
  border-radius: 50%;
  content: '';
  filter: blur(80px);
  opacity: .12;
  pointer-events: none;
}

.comparison::before {
  top: 12%;
  left: -14%;
  background: var(--ci-red);
}

.comparison::after {
  right: -12%;
  bottom: 8%;
  background: var(--ci-teal);
}

.comparison__inner {
  display: grid;
  gap: 44px;
}

.comparison__head {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .62fr);
  align-items: end;
  gap: 72px;
}

.comparison__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--ci-teal);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.comparison__eyebrow::before {
  width: 32px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ci-red) 0 33%, var(--ci-teal) 33% 66%, var(--ci-orange) 66% 100%);
  content: '';
}

.comparison__head h2 {
  max-width: 720px;
  color: var(--text);
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 400;
  line-height: 1.04;
}

.comparison__head h2 span {
  display: block;
  color: var(--ci-red);
}

.comparison__head > p {
  max-width: 500px;
  padding-bottom: 4px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.comparison-board {
  display: grid;
  gap: 14px;
}

.comparison-board__legend {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 104px minmax(0, 1fr);
  align-items: end;
  padding: 0 28px 6px 76px;
}

.comparison-board__legend > span {
  display: grid;
  gap: 2px;
}

.comparison-board__legend > span:last-child {
  padding-left: 28px;
}

.comparison-board__legend > .comparison-board__label {
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
}

.comparison-board__label > span:last-child,
.comparison-board__label small,
.comparison-board__label strong {
  display: block;
}

.comparison-board__legend-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(var(--ci-red-rgb), .28);
  border-radius: 50%;
  color: var(--ci-red);
  background: rgba(var(--ci-red-rgb), .07);
}

.comparison-board__label--positive .comparison-board__legend-icon {
  border-color: rgba(var(--ci-teal-rgb), .34);
  color: var(--ci-teal);
  background: rgba(var(--ci-teal-rgb), .09);
}

.comparison-board__legend-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.comparison-board__legend small {
  color: #7b8d89;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.comparison-board__legend strong {
  color: var(--text);
  font-size: 17px;
  line-height: 1.3;
}

.comparison-board__brand {
  align-items: center;
  justify-items: center;
  align-self: center;
  text-align: center;
  transform: translateY(-10px);
}

.comparison-board__brand strong {
  color: var(--ci-teal);
  font-size: 10px;
  text-transform: uppercase;
}

.comparison-path {
  position: relative;
  display: grid;
  gap: 10px;
}

.comparison-path::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: calc(52px + (100% - 52px) * .443);
  width: 1px;
  background: linear-gradient(180deg, rgba(var(--ci-red-rgb), .12), rgba(var(--ci-teal-rgb), .42), rgba(var(--ci-orange-rgb), .16));
  content: '';
  pointer-events: none;
}

.comparison-step {
  --comparison-accent: var(--ci-teal-rgb);
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, .9fr) 78px minmax(0, 1.15fr);
  align-items: center;
  min-height: 116px;
  padding: 18px 28px 18px 18px;
  border: 1px solid rgba(16, 35, 33, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 12px 34px rgba(16, 35, 33, .055);
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease, transform .35s cubic-bezier(.22, 1, .36, 1);
}

.comparison-step::after {
  position: absolute;
  inset: 0 0 0 48%;
  z-index: 0;
  background: linear-gradient(90deg, rgba(var(--comparison-accent), 0), rgba(var(--comparison-accent), .11));
  content: '';
  opacity: .55;
  pointer-events: none;
  transform: translateX(18%);
  transition: opacity .3s ease, transform .5s cubic-bezier(.22, 1, .36, 1);
}

.comparison-step--red {
  --comparison-accent: var(--ci-red-rgb);
}

.comparison-step--orange {
  --comparison-accent: var(--ci-orange-rgb);
}

.comparison-step--teal {
  --comparison-accent: var(--ci-teal-rgb);
}

.comparison-step:hover {
  border-color: rgba(var(--comparison-accent), .46);
  box-shadow: 0 18px 44px rgba(var(--comparison-accent), .13);
  transform: translateX(6px);
}

.comparison-step:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.comparison-step > * {
  position: relative;
  z-index: 1;
}

.comparison-step__number {
  color: rgba(16, 35, 33, .34);
  font-size: 12px;
  font-weight: 800;
}

.comparison-step__before,
.comparison-step__after {
  display: grid;
  gap: 5px;
}

.comparison-step__before {
  padding-right: 24px;
}

.comparison-step__after {
  padding-left: 28px;
}

.comparison-step small {
  color: #71837f;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.comparison-step__after small {
  color: rgb(var(--comparison-accent));
}

.comparison-step p {
  margin: 0;
  color: #60736f;
  font-size: 15px;
  line-height: 1.45;
}

.comparison-step__after p {
  color: var(--text);
  font-size: 16px;
  font-weight: 650;
}

.comparison-step__bridge {
  display: grid;
  width: 50px;
  height: 50px;
  place-self: center;
  place-items: center;
  border: 1px solid rgba(var(--comparison-accent), .36);
  border-radius: 50%;
  color: rgb(var(--comparison-accent));
  background: #fff;
  box-shadow: 0 10px 24px rgba(var(--comparison-accent), .13);
  transition: color .3s ease, background .3s ease, transform .4s cubic-bezier(.22, 1, .36, 1);
}

.comparison-step:hover .comparison-step__bridge {
  color: var(--white);
  background: rgb(var(--comparison-accent));
  transform: scale(1.08) rotate(4deg);
}

.comparison-step__bridge svg,
.comparison-result__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.comparison-result {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
  padding: 22px 24px;
  border: 1px solid rgba(var(--ci-teal-rgb), .28);
  border-radius: 8px;
  background: linear-gradient(100deg, rgba(var(--ci-teal-rgb), .13), rgba(255, 255, 255, .92) 48%, rgba(var(--ci-orange-rgb), .1));
}

.comparison-result__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ci-teal);
  box-shadow: 0 12px 28px rgba(var(--ci-teal-rgb), .2);
}

.comparison-result p {
  display: grid;
  gap: 2px;
  margin: 0;
}

.comparison-result small {
  color: var(--ci-teal);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.comparison-result strong {
  color: var(--text);
  font-size: 18px;
  line-height: 1.35;
}

.comparison-result .btn {
  min-height: 44px;
  padding: 9px 18px;
  font-size: 14px;
}

.offer-section {
  background: linear-gradient(
    180deg,
    var(--cream) 0%,
    var(--cream) 42%,
    rgba(var(--ci-orange-rgb), .08) 68%,
    rgba(var(--ci-orange-rgb), .22) 100%
  );
}

.offer-section__inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 46px;
}

.offer-section__copy {
  max-width: 960px;
  text-align: center;
}

.offer-section__copy h2 {
  white-space: nowrap;
}

.offer-section__copy > p {
  max-width: 740px;
  margin-right: auto;
  margin-left: auto;
}

.offer-section__copy .btn {
  margin-top: 28px;
}

.offer-cards {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
}

.offer-cards--pricing {
  position: relative;
  flex-direction: row;
  gap: 18px;
  width: 100%;
}

.offer-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  min-height: 370px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.offer-card h3 {
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  line-height: 1.05;
}

.offer-card strong {
  display: block;
  margin-top: 34px;
  color: var(--black);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.offer-card p {
  margin-top: 20px;
}

.offer-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: auto;
  border-radius: 999px;
  color: var(--dark);
  background: var(--yellow);
  font-size: 16px;
  font-weight: 700;
}

.offer-card--dark {
  color: var(--white);
  background: var(--dark);
}

.offer-card--dark h3,
.offer-card--dark strong,
.offer-card--dark p {
  color: var(--white);
}

.offer-card--dark a {
  color: var(--white);
  background: var(--black);
}

.faq-section {
  background: linear-gradient(135deg, rgba(var(--ci-teal-rgb), .12), var(--cream) 52%, rgba(var(--ci-orange-rgb), .18));
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(16, 35, 33, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 10px 30px rgba(16, 35, 33, .06);
  overflow: hidden;
}

.faq-item:focus-within {
  border-color: rgba(var(--ci-teal-rgb), .62);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 22px 24px;
  border: 0;
  color: var(--text);
  background: transparent;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
}

.faq-item__question span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--white);
  background: var(--dark);
  transition: transform .25s ease;
}

.faq-item.is-open .faq-item__question span {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  padding: 0 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}

.faq-item.is-open .faq-item__answer {
  max-height: 360px;
  padding: 0 24px 24px;
}

.about-story {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  width: 100%;
  min-height: 100svh;
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}

.about-story__media,
.about-story__scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-story__media {
  z-index: 0;
  object-fit: cover;
  object-position: center;
}

.about-story__scrim {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 18, 17, .97) 0%, rgba(7, 18, 17, .88) 30%, rgba(7, 18, 17, .58) 47%, rgba(7, 18, 17, .16) 70%, rgba(7, 18, 17, .03) 100%),
    linear-gradient(0deg, rgba(7, 18, 17, .38) 0%, rgba(7, 18, 17, 0) 42%);
}

.about-story__accent {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 6px;
}

.about-story__accent span:nth-child(1) {
  background: var(--ci-red);
}

.about-story__accent span:nth-child(2) {
  background: var(--ci-teal);
}

.about-story__accent span:nth-child(3) {
  background: var(--ci-orange);
}

.about-story__inner {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 110px;
}

.about-story__copy {
  width: min(100%, 610px);
}

.about-story__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-story__eyebrow img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .24));
}

.about-story h2 {
  max-width: 610px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 58px;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
}

.about-story__lead {
  max-width: 580px;
  margin-top: 26px;
  color: rgba(255, 255, 255, .92);
  font-size: 19px;
  line-height: 1.62;
}

.about-story__text {
  max-width: 570px;
  margin-top: 16px;
  color: rgba(255, 255, 255, .70);
  font-size: 16px;
  line-height: 1.7;
}

.about-story__principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.about-story__principles > div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.about-story__principles svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  fill: none;
  stroke: var(--ci-teal);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-story__principles > div:nth-child(2) svg {
  stroke: var(--ci-orange);
}

.about-story__principles > div:nth-child(3) svg {
  stroke: var(--ci-red);
}

.about-story__principles strong,
.about-story__principles small {
  display: block;
}

.about-story__principles strong {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.about-story__principles small {
  margin-top: 4px;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  line-height: 1.35;
}

.about-story__action {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.about-story__action .btn--primary {
  color: var(--dark);
  background: var(--ci-orange);
  box-shadow: 0 16px 34px rgba(var(--ci-orange-rgb), .24);
}

.about-story__action .btn--primary:hover {
  background: var(--ci-teal);
  box-shadow: 0 18px 38px rgba(var(--ci-teal-rgb), .26);
}

.about-story__action .btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-story__action > span {
  max-width: 160px;
  color: rgba(255, 255, 255, .60);
  font-size: 12px;
  line-height: 1.45;
}

.footer {
  color: rgba(255, 255, 255, .72);
  background: var(--black);
}

.footer__inner {
  display: flex;
  gap: 54px;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 62px 24px 42px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.footer__brand {
  flex: 1.2;
}

.footer__logo {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
}

.footer__brand p {
  max-width: 380px;
  color: rgba(255, 255, 255, .68);
  font-size: 16px;
  line-height: 1.6;
}

.footer__hxcom {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, .38);
  font-size: 13px;
  font-weight: 600;
}

.footer__hxcom a {
  color: rgba(255, 255, 255, .68);
  text-decoration: underline;
  text-decoration-color: rgba(var(--ci-teal-rgb), .5);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .2s ease, text-decoration-color .2s ease;
}

.footer__hxcom a:hover {
  color: var(--ci-teal);
  text-decoration-color: currentColor;
}

.footer__nav {
  display: flex;
  flex: 0 1 210px;
  flex-direction: column;
  gap: 10px;
}

.footer__nav h2 {
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.footer__nav a {
  color: rgba(255, 255, 255, .66);
  font-size: 15px;
  font-weight: 600;
  transition: color .2s ease;
}

.footer__nav a:hover {
  color: var(--ci-orange);
}

.footer__cookie-button {
  width: fit-content;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, .66);
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  line-height: inherit;
  text-align: left;
  transition: color .2s ease;
}

.footer__cookie-button:hover {
  color: var(--ci-orange);
}

#cc-main {
  --cc-font-family: var(--sans);
  --cc-bg: #fffaf4;
  --cc-primary-color: var(--dark);
  --cc-secondary-color: var(--muted);
  --cc-btn-primary-bg: var(--ci-orange);
  --cc-btn-primary-color: var(--dark);
  --cc-btn-primary-border-color: var(--ci-orange);
  --cc-btn-primary-hover-bg: var(--ci-teal);
  --cc-btn-primary-hover-color: var(--dark);
  --cc-btn-primary-hover-border-color: var(--ci-teal);
  --cc-btn-secondary-bg: rgba(16, 35, 33, .06);
  --cc-btn-secondary-color: var(--dark);
  --cc-btn-secondary-border-color: rgba(16, 35, 33, .18);
  --cc-btn-secondary-hover-bg: var(--dark);
  --cc-btn-secondary-hover-color: var(--white);
  --cc-btn-secondary-hover-border-color: var(--dark);
  --cc-link-color: #147f76;
  --cc-separator-border-color: rgba(16, 35, 33, .12);
  --cc-toggle-on-bg: var(--ci-teal);
  --cc-toggle-off-bg: #80918e;
  --cc-toggle-readonly-bg: var(--dark);
  --cc-cookie-category-block-bg: rgba(255, 255, 255, .82);
  --cc-cookie-category-block-border: rgba(16, 35, 33, .12);
  --cc-cookie-category-block-hover-bg: var(--soft);
  --cc-cookie-category-block-hover-border: rgba(var(--ci-teal-rgb), .38);
  --cc-cookie-category-expanded-block-bg: rgba(255, 255, 255, .96);
  --cc-cookie-category-expanded-block-hover-bg: rgba(var(--ci-teal-rgb), .18);
  --cc-footer-bg: rgba(255, 255, 255, .7);
  --cc-footer-color: var(--muted);
  --cc-footer-border-color: rgba(16, 35, 33, .1);
  --cc-overlay-bg: rgba(7, 18, 17, .66);
  --cc-modal-border-radius: 24px;
  --cc-btn-border-radius: 999px;
  --cc-modal-transition-duration: .35s;
}

#cc-main .cm,
#cc-main .pm {
  border: 1px solid rgba(16, 35, 33, .12);
  background:
    radial-gradient(circle at 92% 5%, rgba(var(--ci-teal-rgb), .17), transparent 32%),
    radial-gradient(circle at 5% 100%, rgba(var(--ci-orange-rgb), .13), transparent 30%),
    var(--cc-bg);
  box-shadow: 0 30px 90px rgba(7, 18, 17, .3);
}

#cc-main .cm::before,
#cc-main .pm::before {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  display: block;
  height: 6px;
  border-radius: var(--cc-modal-border-radius) var(--cc-modal-border-radius) 0 0;
  background: linear-gradient(90deg, var(--ci-teal) 0 34%, var(--ci-orange) 34% 68%, var(--ci-red) 68% 100%);
  content: "";
  pointer-events: none;
}

#cc-main .cm.cm--box.cm--wide {
  width: calc(100vw - 32px);
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden;
}

#cc-main .cm.cm--wide .cm__body {
  flex-direction: column;
  padding: 0;
}

#cc-main .cm__texts {
  padding: 34px 36px 26px;
}

#cc-main .cm__title {
  color: var(--dark);
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.025em;
}

#cc-main .cm__title::before {
  display: block;
  margin-bottom: 10px;
  color: #147f76;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
  content: "MESSI ON · DATENSCHUTZ";
}

#cc-main .cm__desc {
  max-width: 660px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

#cc-main .cm.cm--wide .cm__btns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: auto;
  max-width: none;
  padding: 24px 36px 28px;
  border-top: 1px solid rgba(16, 35, 33, .1);
  border-left: 0;
  background: rgba(255, 255, 255, .56);
}

#cc-main .cm.cm--wide .cm__btn-group {
  display: contents;
  margin: 0;
}

#cc-main .cm__btn,
#cc-main .pm__btn {
  min-height: 48px;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}

#cc-main .cm__btn:hover,
#cc-main .pm__btn:hover {
  box-shadow: 0 14px 30px rgba(var(--ci-teal-rgb), .24);
  transform: translateY(-2px);
}

#cc-main .cm__btn:focus-visible,
#cc-main .pm__btn:focus-visible,
#cc-main .pm__close-btn:focus-visible,
#cc-main .pm__section-title:focus-visible,
#cc-main .section__toggle:focus-visible {
  outline: 3px solid rgba(var(--ci-orange-rgb), .72);
  outline-offset: 3px;
}

#cc-main .cm.cm--wide .cm__btn {
  width: 100%;
  min-width: 0;
}

#cc-main .cm.cm--wide .cm__btn + .cm__btn,
#cc-main .cm.cm--wide .cm__btn-group + .cm__btn-group {
  margin: 0;
}

#cc-main .cm__btn--secondary {
  box-shadow: none;
}

#cc-main .cm__btn--secondary:hover {
  box-shadow: 0 14px 30px rgba(16, 35, 33, .16);
}

#cc-main .cm__footer {
  background: rgba(255, 255, 255, .68);
}

#cc-main .cm__links {
  justify-content: center;
  padding: 11px 24px 13px;
}

#cc-main .cm__link-group {
  gap: 20px;
}

#cc-main a {
  color: #147f76;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(var(--ci-teal-rgb), .48);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

#cc-main .pm {
  overflow: hidden;
}

#cc-main .pm__header {
  min-height: 76px;
  padding: 22px 26px;
  border-bottom: 0;
  color: var(--white);
  background: var(--dark);
}

#cc-main .pm__title {
  color: var(--white);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.15;
}

#cc-main .pm__close-btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  background: var(--ci-orange);
}

#cc-main .pm__close-btn svg {
  stroke: var(--dark);
}

#cc-main .pm__close-btn:hover {
  border-color: var(--ci-teal);
  background: var(--ci-teal);
  transform: rotate(4deg);
}

#cc-main .pm__close-btn:hover svg {
  stroke: var(--dark);
}

#cc-main .pm__body {
  padding: 24px 26px;
}

#cc-main .pm__section:first-child {
  margin-bottom: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(var(--ci-teal-rgb), .25);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(var(--ci-teal-rgb), .14), rgba(255, 255, 255, .76));
}

#cc-main .pm__section--toggle {
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(16, 35, 33, .05);
}

#cc-main .pm__section--toggle .pm__section-title {
  min-height: 62px;
  border-radius: 14px;
  font-size: 15px;
}

#cc-main .pm__section--toggle:nth-child(2) .pm__section-title {
  border-left: 5px solid var(--ci-orange);
}

#cc-main .pm__section--toggle:nth-child(3) .pm__section-title {
  border-left: 5px solid var(--ci-teal);
}

#cc-main .pm__section--toggle:nth-child(4) .pm__section-title {
  border-left: 5px solid var(--ci-red);
}

#cc-main .pm__section-desc {
  line-height: 1.65;
}

#cc-main .pm__footer {
  gap: 10px;
  padding: 18px 26px;
  background: rgba(255, 255, 255, .8);
}

#cc-main .pm__btn-group {
  gap: 8px;
}

#cc-main .pm__btn + .pm__btn,
#cc-main .pm__btn-group + .pm__btn-group {
  margin-left: 0;
}

@media (max-width: 640px) {
  #cc-main {
    --cc-modal-margin: 10px;
    --cc-modal-border-radius: 20px;
  }

  #cc-main .cm.cm--box.cm--wide {
    width: calc(100vw - 20px) !important;
    margin-bottom: 0;
    border-radius: 20px;
  }

  #cc-main .cm__texts {
    padding: 28px 20px 20px !important;
  }

  #cc-main .cm__title {
    font-size: 26px;
  }

  #cc-main .cm__desc {
    margin-top: 11px;
    font-size: 14px;
  }

  #cc-main .cm.cm--wide .cm__btns {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 20px 20px !important;
  }

  #cc-main .cm.cm--wide .cm__btn-group {
    display: contents !important;
  }

  #cc-main .cm.cm--wide .cm__btn + .cm__btn,
  #cc-main .cm.cm--wide .cm__btn-group + .cm__btn-group {
    margin: 0 !important;
  }

  #cc-main .pm {
    top: auto;
    max-height: calc(100% - 12px);
    border-radius: 20px 20px 0 0;
  }

  #cc-main .pm::before {
    border-radius: 20px 20px 0 0;
  }

  #cc-main .pm__header,
  #cc-main .pm__body,
  #cc-main .pm__footer {
    padding-right: 18px !important;
    padding-left: 18px !important;
  }

  #cc-main .pm__footer,
  #cc-main .pm__btn-group {
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #cc-main .cm,
  #cc-main .pm,
  #cc-main .cm__btn,
  #cc-main .pm__btn,
  #cc-main .pm__close-btn {
    transition: none !important;
  }
}

.footer__copy {
  padding: 18px 0;
}

.footer__copy-inner {
  color: rgba(255, 255, 255, .38);
  font-size: 13px;
  text-align: center;
}

.legal-page {
  background: var(--cream);
}

.section--legal {
  min-height: 60vh;
  padding: 150px 0 100px;
}

.label {
  display: none;
}

.section-title {
  color: var(--text);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
}

.divider {
  width: 80px;
  height: 3px;
  margin: 20px 0 34px;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s ease;
}

.divider.is-visible {
  transform: scaleX(1);
}

.legal-card {
  max-width: 900px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.legal-card h2 {
  margin: 28px 0 8px;
  color: var(--text);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.legal-card a {
  color: var(--red);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .58s ease, transform .58s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@property --score-fill {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes heroBrandMarkSpin {
  from {
    transform: translateY(-50%) rotate(0deg);
  }

  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

@keyframes scrollCuePulse {
  0%,
  100% {
    opacity: .22;
    translate: 0 -2px;
  }

  45% {
    opacity: .96;
    translate: 0 3px;
  }
}

@keyframes service-mark-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes services-glow-sweep {
  0% {
    opacity: .74;
    transform: translateX(-16%) scaleX(.92);
  }

  55% {
    opacity: .74;
    transform: translateX(2%) scaleX(1.04);
  }

  100% {
    opacity: .74;
    transform: translateX(-8%) scaleX(1);
  }
}

@keyframes service-summary-icon {
  from {
    opacity: .35;
    transform: scale(.84) rotate(-7deg);
  }

  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@keyframes service-summary-copy {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes service-flow-in {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

@keyframes service-route-step {
  from {
    opacity: .35;
    transform: translateX(-8px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes before-after-hint {
  0%, 100% {
    transform: translate(-50%, -50%);
  }

  35% {
    transform: translate(calc(-50% - 7px), -50%);
  }

  70% {
    transform: translate(calc(-50% + 7px), -50%);
  }
}

@media (max-width: 1320px) {
  .nav__inner,
  .site-header.is-scrolled .nav__inner {
    padding-right: 32px;
    padding-left: 32px;
  }

  .nav__brand {
    flex-basis: 250px;
  }

  .nav__brand img {
    width: 58px;
    height: 58px;
  }

  .nav__brand strong {
    font-size: 26px;
  }

  .hero__inner {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 0;
    padding: 0 32px;
    transform: none;
  }

  .hero h1 {
    font-size: 68px;
  }

  .hero__lead {
    max-width: 520px;
  }
}

@media (max-width: 1040px) {
  .nav__links {
    gap: 2px;
  }

  .nav__links a {
    min-height: 42px;
    padding-right: 13px;
    padding-left: 13px;
    font-size: 14px;
  }

  .nav__brand {
    flex-basis: 220px;
  }

  .nav__brand strong {
    font-size: 24px;
  }

  .nav__brand small {
    font-size: 10px;
  }

  .nav__right {
    gap: 10px;
  }

  .hero__inner,
  .prompt-cta__inner,
  .offer-section__inner,
  .about-section__inner,
  .rhythm__inner {
    gap: 34px;
  }

  .hero__inner {
    gap: 0;
  }

  .hero__copy {
    grid-column: 1 / span 6;
  }

  .hero-inquiry {
    grid-column: 6 / span 7;
    justify-self: end;
    margin-top: 40px;
    margin-left: 0;
  }

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

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

  .hero__trust article {
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(16, 35, 33, .12);
  }

  .hero__trust article:nth-child(n + 3) {
    border-bottom: 0;
  }

}

@media (max-width: 920px) {
  .section {
    padding: 84px 0;
  }

  .trust-strip {
    padding: 72px 0 78px;
  }

  .trust-strip__head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .trust-strip__head > p {
    max-width: 680px;
    padding-bottom: 0;
  }

  .trust-strip__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__inner,
  .site-header.is-scrolled .nav__inner {
    min-height: 84px;
    padding: 0 24px;
  }

  .hero {
    min-height: auto;
    max-height: none;
    background-position: center right;
    padding: 112px 0 44px;
  }

  .hero__media::after {
    background: var(--hero-media-mobile-overlay);
  }

  .hero__inner,
  .tools-layout,
  .prompt-cta__inner,
  .offer-section__inner,
  .about-section__inner,
  .rhythm__inner,
  .footer__inner {
    flex-direction: column;
  }

  .prompt-cta {
    padding: 84px 0;
  }

  .prompt-cta__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
  }

  .prompt-cta__copy {
    max-width: 680px;
    padding-top: 0;
  }

  .hero__copy,
  .hero-inquiry,
  .tools-layout__panel,
  .feature-list,
  .service-mockup,
  .rhythm__copy,
  .prompt-cta__copy,
  .offer-section__copy,
  .about-section__image,
  .about-section__copy {
    flex-basis: auto;
    width: 100%;
  }

  .service-mockup {
    min-height: auto;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    gap: 16px;
    min-height: auto;
    padding: 0 24px;
    transform: none;
  }

  .hero__copy {
    grid-column: 1;
    min-width: 0;
    max-width: 640px;
    transform: none;
  }

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

  .hero-inquiry {
    grid-column: 1;
    justify-self: start;
    min-width: 0;
    max-width: 640px;
    margin-top: 0;
    margin-left: 0;
  }

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

  .hero__brand-mark {
    --hero-mark-size: clamp(240px, 46vw, 340px);
    top: 54%;
    opacity: .42;
  }

  .hero__trust {
    grid-template-columns: 1fr;
    width: calc(100% - 48px);
    margin-top: 16px;
    padding: 6px 18px;
  }

  .hero__trust article,
  .hero__trust article:first-child,
  .hero__trust article:last-child {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(16, 35, 33, .12);
  }

  .hero__trust article:last-child {
    border-bottom: 0;
  }

  .hero__trust svg {
    width: 52px;
    height: 52px;
    padding: 12px;
  }

  .mini-window {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .service-card {
    flex-basis: calc(50% - 9px);
  }

  .transformation__head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .transformation__head p {
    max-width: 720px;
    padding-bottom: 0;
  }

  .before-after__caption {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .before-after__facts span:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .footer__inner {
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .service-pricing {
    margin-top: 32px;
  }

  .service-pricing__intro {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding: 25px 20px 20px;
  }

  .service-pricing__intro h3 {
    font-size: 21px;
  }

  .service-pricing__intro p {
    font-size: 14px;
  }

  .service-pricing__table th,
  .service-pricing__table td {
    padding: 14px 20px;
    font-size: 14px;
    overflow-wrap: anywhere;
  }

  .service-pricing__note {
    align-items: flex-start;
    padding: 15px 20px;
  }

  .container {
    padding-right: 18px;
    padding-left: 18px;
  }

  .site-header {
    top: 0;
  }

  .nav__inner,
  .site-header.is-scrolled .nav__inner {
    width: 100%;
    min-height: 76px;
    padding: 0 18px;
  }

  .nav__cta {
    display: none;
  }

  .trust-strip {
    padding: 62px 0 68px;
  }

  .trust-strip__inner {
    gap: 32px;
  }

  .trust-strip__eyebrow {
    margin-bottom: 14px;
  }

  .trust-strip__head > p {
    font-size: 16px;
  }

  .trust-strip__items {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .trust-strip article {
    min-height: 220px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero__lead,
  .section__head p,
  .prompt-cta p,
  .about-section p,
  .offer-section p,
  .rhythm p {
    font-size: 17px;
  }

  .trust-strip__items,
  .service-grid,
  .offer-cards--pricing,
  .process-row,
  .rhythm__cards,
  .security-grid,
  .concern-grid {
    flex-direction: column;
  }

  .service-card,
  .process-card,
  .rhythm-card,
  .security-card,
  .concern-card {
    flex-basis: auto;
    min-width: 0;
  }

  .form-row--split {
    flex-direction: column;
  }

  .about-section__image img {
    height: 360px;
  }

  .service-mockup {
    padding: 24px;
  }

  .service-mockup__shell {
    min-height: auto;
  }

  .service-mockup__summary {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 18px;
  }

  .service-mockup__summary-icon {
    width: 70px;
    height: 70px;
  }

  .service-mockup__summary-icon img {
    width: 42px;
    height: 42px;
  }

  .service-mockup__summary h3 {
    font-size: 24px;
  }

  .service-mockup__journey li {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
  }

  .service-mockup__step-icon {
    display: none;
  }

  .transformation .container {
    gap: 30px;
  }

  .transformation__eyebrow {
    margin-bottom: 10px;
  }

  .transformation__head h2 {
    font-size: 32px;
  }

  .transformation__head p {
    font-size: 16px;
  }

  .before-after__label {
    top: 12px;
    min-height: 30px;
    padding: 7px 10px;
    font-size: 10px;
  }

  .before-after__label--before {
    left: 12px;
  }

  .before-after__label--after {
    right: 12px;
  }

  .before-after__handle {
    width: 48px;
    height: 48px;
  }

  .before-after__handle svg {
    width: 22px;
    height: 22px;
  }

  .before-after__caption {
    padding: 18px;
  }

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

  .before-after__facts span,
  .before-after__facts span:first-child {
    padding: 11px 0;
    border-top: 1px solid rgba(16, 35, 33, .1);
    border-left: 0;
  }

  .before-after__facts span:first-child {
    border-top: 0;
  }

  .legal-card {
    padding: 24px;
    border-radius: 28px;
  }

  .prompt-form {
    padding: 24px;
    border-radius: 8px;
  }

  .footer__inner {
    gap: 34px;
    padding: 48px 18px 34px;
  }
}

@media (max-width: 520px) {
  .prompt-cta {
    padding: 68px 0;
  }

  .prompt-cta__inner {
    gap: 34px;
  }

  .prompt-cta__contacts {
    grid-template-columns: minmax(0, 1fr);
  }

  .prompt-form {
    gap: 14px;
    padding: 18px;
  }

  .prompt-form__head {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 11px;
  }

  .prompt-form__icon {
    width: 38px;
    height: 38px;
  }

  .prompt-form__head h3 {
    font-size: 20px;
  }

  .form-upload__drop {
    grid-template-columns: 40px minmax(0, 1fr);
    min-height: 82px;
    padding: 13px;
  }

  .form-upload__drop-icon {
    width: 38px;
    height: 38px;
  }

  .form-upload__drop-icon svg {
    width: 21px;
    height: 21px;
  }

  .form-upload__preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding-top: 98px;
  }

  .nav__brand {
    flex: 0 0 auto;
    gap: 0;
  }

  .nav__brand img {
    width: 56px;
    height: 56px;
  }

  .nav__brand span {
    display: none;
  }

  .nav__right {
    gap: 8px;
  }

  .nav__icon-link,
  .nav__hamburger {
    width: 44px;
    height: 44px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .service-mockup {
    padding: 20px;
  }

  .feature-card {
    padding: 22px;
  }

  .feature-card__top {
    align-items: flex-start;
  }

  .feature-card__pill,
  .feature-card__title,
  .feature-card__body-inner p,
  .feature-card__body-inner li {
    overflow-wrap: anywhere;
  }

  .feature-card__title {
    font-size: 20px;
  }

  .feature-card__toggle {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .service-mockup__head {
    align-items: flex-start;
  }

  .service-mockup__status {
    display: none;
  }

  .service-mockup__summary {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 26px 0;
  }

  .service-mockup__summary-icon {
    width: 64px;
    height: 64px;
  }

  .service-mockup__summary-icon img {
    width: 38px;
    height: 38px;
  }

  .service-mockup__summary-icon::after {
    width: 38px;
    height: 38px;
  }

  .service-mockup__journey-head {
    gap: 12px;
  }

  .service-mockup__journey ol {
    margin-top: 16px;
  }

  .service-mockup__journey li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    min-height: 50px;
  }

  .service-mockup__step-number {
    width: 38px;
    height: 38px;
  }

  .service-mockup__journey ol::before,
  .service-mockup__journey ol::after {
    top: 23px;
    bottom: 23px;
    left: 18px;
  }

  .service-mockup__journey-count {
    padding: 6px 8px;
  }

  .service-mockup__step-copy strong {
    font-size: 14px;
  }

  .service-mockup__step-copy small {
    font-size: 11px;
  }

  .service-mockup__assurances {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .hero-inquiry {
    padding: 22px;
    border-radius: 26px;
  }

  .hero__brand-mark {
    --hero-mark-size: 220px;
    top: 58%;
    right: -132px;
    opacity: .42;
  }

  .hero__scroll-cue {
    bottom: 112px;
    width: 38px;
    height: 52px;
  }

  .hero__scroll-cue span {
    width: 16px;
    height: 16px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn,
  .prompt-form .btn {
    width: 100%;
  }

  .section__head h2,
  .trust-strip h2,
  .prompt-cta h2,
  .about-section h2,
  .offer-section h2,
  .rhythm h2 {
    font-size: 28px;
  }

  .faq-item__question {
    padding: 18px;
    font-size: 16px;
  }

  .faq-item__answer,
  .faq-item.is-open .faq-item__answer {
    padding-right: 18px;
    padding-left: 18px;
  }
}


@media (max-width: 1040px) {
  .b2b-section__head {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .7fr);
    gap: 42px;
  }

  .b2b-section__head h2 {
    font-size: 42px;
  }

  .b2b-section__stage {
    grid-template-columns: minmax(0, 1fr);
  }

  .b2b-section__media {
    min-height: 560px;
  }

  .b2b-control {
    padding-right: 28px;
    padding-left: 28px;
  }

  .b2b-control__map {
    grid-template-columns: minmax(0, 1fr) 116px minmax(0, 1fr);
    column-gap: 16px;
  }

  .b2b-audiences {
    grid-template-columns: minmax(230px, .58fr) minmax(0, 1.42fr);
    gap: 30px;
  }

  .b2b-audiences__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .b2b-section {
    padding-top: 92px;
    padding-bottom: 88px;
  }

  .b2b-section__head,
  .b2b-section__stage,
  .b2b-audiences {
    grid-template-columns: minmax(0, 1fr);
  }

  .b2b-section__head {
    align-items: start;
    gap: 24px;
  }

  .b2b-section__intro {
    max-width: 680px;
  }

  .b2b-section__media {
    min-height: 440px;
  }

  .b2b-section__media img {
    object-position: center 42%;
  }

  .b2b-control {
    min-height: 540px;
  }

  .b2b-audiences {
    gap: 26px;
  }

  .b2b-audiences__head {
    max-width: 560px;
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  .b2b-section {
    padding-top: 78px;
    padding-bottom: 76px;
  }

  .b2b-section__inner {
    gap: 34px;
  }

  .b2b-section__head h2 {
    font-size: 34px;
  }

  .b2b-section__intro {
    padding-left: 17px;
  }

  .b2b-section__media {
    min-height: 340px;
  }

  .b2b-section__media figcaption {
    right: 20px;
    bottom: 20px;
    left: 20px;
    padding-top: 14px;
  }

  .b2b-section__media figcaption strong {
    font-size: 18px;
  }

  .b2b-slideshow__controls {
    top: 14px;
    right: auto;
    bottom: auto;
    left: 14px;
  }

  .b2b-slideshow__pause {
    top: 14px;
    right: 14px;
  }

  .b2b-control {
    min-height: 0;
    padding: 27px 20px 22px;
  }

  .b2b-control__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .b2b-control__head h3 {
    font-size: 23px;
  }

  .b2b-control__map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto repeat(2, minmax(88px, auto));
    gap: 10px;
    min-height: 0;
    padding: 9px 0;
  }

  .b2b-control__map::before,
  .b2b-control__map::after,
  .b2b-control__node::after {
    display: none;
  }

  .b2b-control__hub {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .b2b-control__hub-mark {
    width: 82px;
    height: 82px;
  }

  .b2b-control__hub-mark img {
    width: 56px;
    height: 56px;
  }

  .b2b-control__node {
    grid-template-columns: 36px minmax(0, 1fr);
    min-height: 88px;
    padding: 11px;
  }

  .b2b-control__node--clearance {
    grid-column: 1;
    grid-row: 2;
  }

  .b2b-control__node--disposal {
    grid-column: 2;
    grid-row: 2;
  }

  .b2b-control__node--cleaning {
    grid-column: 1;
    grid-row: 3;
  }

  .b2b-control__node--finishing {
    grid-column: 2;
    grid-row: 3;
  }

  .b2b-control__node-icon {
    width: 34px;
    height: 34px;
  }

  .b2b-audiences__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .b2b-audience {
    min-height: 0;
  }

  .b2b-section__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .b2b-section__actions {
    width: 100%;
  }
}

@media (max-width: 460px) {
  .b2b-section__head h2 {
    font-size: 31px;
  }

  .b2b-section__media {
    min-height: 300px;
  }

  .b2b-control__head h3 {
    font-size: 21px;
  }

  .b2b-control__status {
    white-space: nowrap;
  }

  .b2b-control__map {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
  }

  .b2b-control__hub,
  .b2b-control__node--clearance,
  .b2b-control__node--disposal,
  .b2b-control__node--cleaning,
  .b2b-control__node--finishing {
    grid-column: 1;
    grid-row: auto;
  }

  .b2b-control__node {
    min-height: 72px;
  }

  .b2b-control__result span {
    gap: 4px;
    padding-right: 5px;
    padding-left: 5px;
    font-size: 9px;
  }

  .b2b-section__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .b2b-section__actions .btn {
    width: 100%;
  }
}

@media (max-width: 1040px) {
  .about-story__media {
    object-position: 62% center;
  }

  .about-story__scrim {
    background:
      linear-gradient(90deg, rgba(7, 18, 17, .96) 0%, rgba(7, 18, 17, .84) 38%, rgba(7, 18, 17, .42) 68%, rgba(7, 18, 17, .08) 100%),
      linear-gradient(0deg, rgba(7, 18, 17, .34) 0%, rgba(7, 18, 17, 0) 44%);
  }

  .about-story__inner {
    padding-top: 120px;
    padding-bottom: 96px;
  }

  .about-story__copy {
    width: min(100%, 560px);
  }

  .about-story h2 {
    font-size: 48px;
  }
}

@media (max-width: 760px) {
  .about-story {
    display: block;
    min-height: 100svh;
  }

  .about-story__media {
    position: relative;
    width: 100%;
    height: max(390px, 52svh);
    object-position: 73% center;
  }

  .about-story__scrim {
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: max(390px, 52svh);
    background: linear-gradient(0deg, rgba(7, 18, 17, 1) 0%, rgba(7, 18, 17, .56) 23%, rgba(7, 18, 17, .03) 68%);
  }

  .about-story__inner {
    margin-top: -64px;
    padding-top: 0;
    padding-bottom: 82px;
  }

  .about-story__copy {
    position: relative;
    width: 100%;
  }

  .about-story h2 {
    max-width: 560px;
    font-size: 40px;
    line-height: 1.08;
  }

  .about-story__lead {
    font-size: 18px;
  }
}

@media (max-width: 520px) {
  .about-story__inner {
    margin-top: -50px;
    padding-bottom: 72px;
  }

  .about-story__eyebrow {
    margin-bottom: 16px;
  }

  .about-story__eyebrow img {
    width: 36px;
    height: 36px;
  }

  .about-story h2 {
    font-size: 35px;
  }

  .about-story__lead {
    margin-top: 22px;
    font-size: 17px;
  }

  .about-story__principles {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px 0;
  }

  .about-story__principles > div {
    align-items: center;
    padding: 12px 0;
  }

  .about-story__principles > div + div {
    border-top: 1px solid rgba(255, 255, 255, .12);
  }

  .about-story__principles small {
    margin-top: 2px;
  }

  .about-story__action {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .about-story__action > span {
    max-width: none;
  }
}

/* Final hero composition overrides legacy responsive rules above. */
@media (max-width: 1320px) {
  .hero__inner {
    padding-right: 32px;
    padding-left: 32px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero__trust {
    width: calc(100% - 64px);
  }
}

@media (max-width: 1100px) and (min-width: 921px) {
  .hero__copy {
    grid-column: 1 / span 6;
    max-width: 520px;
  }

  .hero h1 {
    font-size: 55px;
  }

  .hero-inquiry {
    grid-column: 8 / span 5;
    max-width: 400px;
    margin-top: 0;
  }

  .hero__proofs li {
    padding-right: 10px;
    padding-left: 10px;
  }

  .hero__trust article {
    padding-top: 0;
    padding-right: 13px;
    padding-bottom: 0;
    padding-left: 13px;
    border-right: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 0;
  }

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

  .hero__trust article:nth-child(n + 3) {
    border-bottom: 0;
  }

  .hero__trust article:last-child {
    border-right: 0;
  }
}

@media (max-width: 920px) {
  #kontakt-formular {
    scroll-margin-top: 92px;
  }

  .hero {
    min-height: auto;
    padding: 92px 0 30px;
  }

  .hero::before {
    top: 92px;
  }

  .hero__media {
    inset: 0 0 auto;
    height: 760px;
  }

  .hero__media img {
    object-position: 50% center;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 34px;
    min-height: 0;
    padding: 46px 24px 0;
  }

  .hero__copy {
    grid-column: 1;
    width: 100%;
    max-width: 620px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: 58px;
  }

  .hero-inquiry {
    grid-column: 1;
    justify-self: start;
    width: min(100%, 540px);
    max-width: 540px;
    margin-top: 0;
  }

  .hero-inquiry__fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__brand-mark {
    --hero-mark-size: 300px;
    top: 620px;
    right: -155px;
    opacity: .18;
  }

  .hero__trust {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 48px);
    margin: 30px auto 0;
    padding: 8px 18px;
  }

  .hero__trust article,
  .hero__trust article:first-child,
  .hero__trust article:last-child {
    gap: 12px;
    padding: 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .hero__trust article:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, .12);
  }

  .hero__trust article:nth-child(n + 3) {
    border-bottom: 0;
  }

  .hero__trust svg {
    width: 36px;
    height: 36px;
    padding: 8px;
  }

  .hero__scroll-cue {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero__inner {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero__lead {
    max-width: 560px;
    font-size: 16px;
  }

  .hero__proofs {
    max-width: 580px;
  }

  .hero__trust {
    width: calc(100% - 36px);
  }
}

@media (max-width: 540px) {
  .hero {
    padding-top: 76px;
  }

  .hero::before {
    top: 76px;
  }

  .hero__media {
    height: 710px;
  }

  .hero__inner {
    gap: 28px;
    padding-top: 38px;
  }

  .hero__eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: 39px;
    line-height: 1.02;
  }

  .hero h1 span {
    overflow-wrap: normal;
  }

  .hero__mobile-break {
    display: inline;
  }

  .hero__lead {
    margin-top: 16px;
  }

  .hero__proofs {
    grid-template-columns: 1fr;
    padding: 8px 0;
  }

  .hero__proofs li,
  .hero__proofs li:first-child,
  .hero__proofs li:last-child {
    min-height: 48px;
    padding: 8px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .hero__proofs li:last-child {
    border-bottom: 0;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 9px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__reassurance {
    justify-content: center;
  }

  .hero-inquiry {
    padding: 21px;
    border-radius: 8px;
  }

  .hero-inquiry__head h2 {
    font-size: 26px;
  }

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

  .hero__brand-mark {
    --hero-mark-size: 220px;
    top: 650px;
    right: -118px;
  }

  .hero__trust {
    grid-template-columns: 1fr;
    padding: 7px 16px;
  }

  .hero__trust article,
  .hero__trust article:first-child,
  .hero__trust article:last-child,
  .hero__trust article:nth-child(odd),
  .hero__trust article:nth-child(n + 3) {
    padding: 13px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .hero__trust article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 37px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero {
    --hero-parallax-y: 0px;
    --hero-parallax-scale: 1;
    --hero-reveal-cut: 0%;
    --hero-reveal-radius: 0px;
    --hero-curtain-y: 115%;
    --hero-curtain-opacity: 0;
  }

  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }

  .hero,
  .hero__copy,
  .hero-inquiry,
  .hero__brand-mark,
  .hero__scroll-cue span,
  .service-mockup__mark img,
  .hero h1 span,
  .hero__lead,
  .hero__actions {
    animation: none !important;
  }

  .hero__copy,
  .hero-inquiry,
  .hero h1 span,
  .hero__lead,
  .hero__actions {
    opacity: 1;
    transform: none;
  }
}

/* Bright showcase hero based on the July 2026 brand direction. */
.site-header {
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 8px 30px rgba(16, 35, 33, .055);
}

.site-header::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    #e35a64 0%,
    #e35a64 33.333%,
    #3ec4b6 33.333%,
    #3ec4b6 66.666%,
    #f4b04a 66.666%,
    #f4b04a 100%
  );
  box-shadow: 0 2px 8px rgba(16, 35, 33, .08);
  pointer-events: none;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .985);
  box-shadow: 0 12px 34px rgba(16, 35, 33, .08);
}

.site-header .nav__inner,
.site-header.is-scrolled .nav__inner {
  max-width: 1540px;
  min-height: 92px;
  padding-right: 42px;
  padding-left: 42px;
}

.site-header.is-scrolled .nav__inner {
  min-height: 80px;
}

.site-header .nav__brand {
  flex-basis: 275px;
}

.site-header .nav__links {
  gap: 7px;
}

.site-header .nav__links a {
  min-height: 40px;
  padding: 9px 15px;
  font-size: 14px;
  font-weight: 600;
}

.site-header .nav__cta {
  min-height: 48px;
  padding: 10px 22px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 34px rgba(var(--ci-red-rgb), .25);
}

.site-header .nav__cta:hover {
  color: var(--white);
  background: #cc4b55;
  box-shadow: 0 18px 42px rgba(var(--ci-red-rgb), .3);
}

.site-header .nav__icon-link--whatsapp {
  width: 48px;
  height: 48px;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .2);
}

.hero.hero--showcase {
  --hero-parallax-y: 0px;
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  min-height: max(980px, calc(100svh + 24px));
  padding: 96px 0 58px;
  flex-direction: column;
  color: var(--dark);
  background: linear-gradient(180deg, #fffdfa 0%, #fffdfa 58%, #f8fcfa 82%, #f4fbfa 100%);
  overflow: hidden;
}

.hero.hero--showcase::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  width: clamp(120px, 11vw, 190px);
  background: linear-gradient(90deg, rgba(255, 253, 250, 0) 0%, rgba(255, 253, 250, .42) 48%, rgba(255, 253, 250, .88) 82%, #fffdfa 100%);
  pointer-events: none;
}

.hero.hero--showcase::after {
  content: '';
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: clamp(150px, 20vw, 280px);
  background: linear-gradient(180deg, rgba(244, 251, 250, 0), #f4fbfa 94%);
  pointer-events: none;
}

.hero-aurora {
  position: absolute;
  z-index: 0;
  inset: -10% -8% -4%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 66%, rgba(0, 0, 0, .82) 78%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 66%, rgba(0, 0, 0, .82) 78%, transparent 100%);
  pointer-events: none;
}

.hero-aurora__glow {
  --hero-glow-rgb: var(--ci-teal-rgb);
  --hero-glow-alpha: .54;
  position: absolute;
  display: block;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(var(--hero-glow-rgb), var(--hero-glow-alpha)) 0%, rgba(var(--hero-glow-rgb), calc(var(--hero-glow-alpha) * .48)) 42%, rgba(var(--hero-glow-rgb), 0) 74%);
  filter: blur(48px);
  opacity: 0;
  transform-origin: center;
  will-change: transform, opacity;
}

.hero-aurora__glow--red-a {
  --hero-glow-rgb: var(--ci-red-rgb);
  --hero-glow-alpha: .58;
  display: none;
  top: 48%;
  left: -14%;
  width: clamp(360px, 42vw, 690px);
  height: clamp(300px, 38vw, 620px);
  animation: heroGlowRedA 22s ease-in-out -7s infinite alternate;
}

.hero-aurora__glow--teal-a {
  --hero-glow-alpha: .66;
  top: -10%;
  right: 2%;
  width: clamp(420px, 48vw, 780px);
  height: clamp(350px, 44vw, 710px);
  animation: heroGlowTealA 24s ease-in-out -13s infinite alternate;
}

.hero-aurora__glow--yellow-a {
  --hero-glow-rgb: var(--ci-orange-rgb);
  --hero-glow-alpha: .58;
  top: 32%;
  left: 34%;
  width: clamp(300px, 36vw, 580px);
  height: clamp(240px, 29vw, 470px);
  animation: heroGlowYellowA 19s ease-in-out -4s infinite alternate;
}

.hero-aurora__glow--red-b {
  --hero-glow-rgb: var(--ci-red-rgb);
  --hero-glow-alpha: .47;
  top: 70%;
  left: -2%;
  width: clamp(190px, 22vw, 360px);
  height: clamp(160px, 18vw, 290px);
  background: radial-gradient(ellipse at center, rgba(var(--hero-glow-rgb), var(--hero-glow-alpha)) 0%, rgba(var(--hero-glow-rgb), calc(var(--hero-glow-alpha) * .38)) 34%, rgba(var(--hero-glow-rgb), 0) 62%);
  filter: blur(40px);
  animation: heroGlowRedB 16s ease-in-out -11s infinite alternate;
}

.hero-aurora__glow--teal-b {
  --hero-glow-alpha: .52;
  top: 44%;
  right: 8%;
  width: clamp(210px, 25vw, 410px);
  height: clamp(170px, 20vw, 330px);
  filter: blur(42px);
  animation: heroGlowTealB 18s ease-in-out -2s infinite alternate;
}

.hero-aurora__glow--yellow-b {
  --hero-glow-rgb: var(--ci-orange-rgb);
  --hero-glow-alpha: .48;
  top: 50%;
  left: 48%;
  width: clamp(180px, 20vw, 330px);
  height: clamp(150px, 17vw, 270px);
  filter: blur(38px);
  animation: heroGlowYellowB 17s ease-in-out -9s infinite alternate;
}

.hero--showcase .hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(580px, 1.14fr);
  align-items: center;
  gap: 46px;
  flex: 1 0 auto;
  width: 100%;
  min-height: 680px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px 54px;
}

.hero--showcase .hero__copy {
  position: relative;
  z-index: 4;
  grid-column: auto;
  align-self: center;
  width: 100%;
  max-width: 630px;
  padding: 0;
  color: var(--dark);
  animation: heroContentEnter .72s cubic-bezier(.22, 1, .36, 1) both;
}

.hero--showcase .hero__copy::before {
  content: none;
}

.hero--showcase h1 {
  max-width: 630px;
  color: var(--dark);
  font-family: var(--sans);
  font-size: clamp(46px, 3.55vw, 62px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: none;
}

.hero--showcase h1 > span {
  display: block;
}

.hero--showcase h1 > span + span {
  margin-top: 10px;
  color: inherit;
  font-family: var(--sans);
  font-weight: 800;
}

.hero.hero--showcase h1 > span:nth-child(2) {
  font-family: var(--sans);
  font-size: .8em;
  line-height: 1.08;
  white-space: nowrap;
}

.hero--showcase h1 b,
.hero--showcase h1 em {
  font-style: normal;
  font-weight: 800;
}

.hero--showcase h1 b {
  color: var(--red);
}

.hero--showcase h1 em {
  color: #12ab9e;
}

.hero--showcase .hero__heart-rule {
  display: grid;
  grid-template-columns: minmax(60px, 1fr) 30px minmax(100px, 1.45fr);
  align-items: center;
  gap: 13px;
  width: min(100%, 475px);
  margin: 22px 0 24px;
  color: #f49d20;
}

.hero--showcase .hero__heart-rule span {
  display: block;
  height: 1px;
  background: currentColor;
}

.hero--showcase .hero__heart-rule svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero--showcase .hero__lead {
  max-width: 485px;
  margin-top: 0;
  color: #263b38;
  font-size: 18px;
  line-height: 1.65;
  text-shadow: none;
}

.hero--showcase .hero__proofs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 620px;
  margin: 28px 0 0;
  padding: 0;
  border: 0;
}

.hero--showcase .hero__proofs li,
.hero--showcase .hero__proofs li:first-child,
.hero--showcase .hero__proofs li:last-child {
  --proof-color: var(--red);
  --proof-color-rgb: var(--ci-red-rgb);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 9px;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  text-align: center;
}

.hero--showcase .hero__proofs li:nth-child(2),
.hero--showcase .hero__proofs li:nth-child(4) {
  --proof-color: #16aa9d;
  --proof-color-rgb: var(--ci-teal-rgb);
}

.hero--showcase .hero__proofs li:nth-child(3) {
  --proof-color: #f49d20;
  --proof-color-rgb: var(--ci-orange-rgb);
}

.hero--showcase .hero__proof-icon {
  display: grid;
  place-items: center;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(var(--proof-color-rgb), .48);
  border-radius: 50%;
  color: var(--proof-color);
  background: rgba(var(--proof-color-rgb), .17);
  box-shadow: 0 8px 20px rgba(var(--proof-color-rgb), .12);
}

.hero--showcase .hero__proofs svg {
  width: 27px;
  height: 27px;
  color: currentColor;
  filter: none;
}

.hero--showcase .hero__proofs li > span:last-child {
  color: #526864;
  font-size: 12px;
  line-height: 1.4;
}

.hero--showcase .hero__proofs strong {
  margin: 0 0 4px;
  color: var(--dark);
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
}

.hero--showcase .hero__actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 30px;
}

.hero--showcase .hero__actions .btn {
  min-height: 48px;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
}

.hero--showcase .hero__actions .btn--primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 5px 12px 26px -8px rgba(var(--ci-red-rgb), .3);
}

.hero--showcase .hero__actions .btn--primary:hover {
  color: var(--white);
  background: #cc4b55;
  box-shadow: 7px 16px 32px -8px rgba(var(--ci-red-rgb), .36);
}

.hero--showcase .hero__actions .btn--ghost {
  color: var(--dark);
  border-width: 1.5px;
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(16, 35, 33, .1);
  backdrop-filter: none;
}

.hero--showcase .hero__actions .btn--ghost svg {
  color: var(--teal);
  transition: color .2s ease, stroke .2s ease;
}

.hero--showcase .hero__actions .btn--ghost:hover {
  color: var(--white);
  border-color: var(--teal);
  background: var(--teal);
}

.hero--showcase .hero__actions .btn--ghost:hover svg,
.hero--showcase .hero__actions .btn--ghost:focus-visible svg {
  color: var(--white);
  stroke: var(--white);
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-width: 0;
  min-height: 660px;
}

.hero-visual__shape {
  position: absolute;
  z-index: 0;
  display: block;
  pointer-events: none;
}

.hero-visual__shape--teal {
  top: 8px;
  right: 38px;
  width: 74%;
  height: 82%;
  border-radius: 90px 70px 110px 62px;
  background: rgba(var(--ci-teal-rgb), .74);
  transform: rotate(4deg);
}

.hero-visual__shape--coral {
  top: 190px;
  right: -6px;
  width: 132px;
  height: 132px;
  border-radius: 34px 60px 34px 60px;
  background: #ff5f50;
  transform: rotate(32deg);
}

.hero-visual__shape--cream {
  bottom: 16px;
  left: 0;
  width: 220px;
  height: 230px;
  border-radius: 70px 30px 70px 30px;
  background: #f6f2eb;
  transform: rotate(-8deg);
}

.hero-visual figure {
  position: absolute;
  z-index: 1;
  margin: 0;
  border: 3px solid #fffdfa;
  background: #edf5f3;
  box-shadow: 0 20px 55px rgba(16, 35, 33, .12);
  overflow: hidden;
  scale: 1;
  rotate: 0deg;
  transform-origin: center;
  transition: scale .42s cubic-bezier(.22, 1, .36, 1), rotate .42s cubic-bezier(.22, 1, .36, 1), box-shadow .42s ease;
  animation: showcaseRise .82s .08s cubic-bezier(.22, 1, .36, 1) both;
}

.hero-visual figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual__main {
  top: 30px;
  left: 4%;
  width: 71%;
  height: 78%;
  border-radius: 58px 16px 58px 16px;
}

.hero-visual__main img {
  object-position: 50% 52%;
  transform: translate3d(0, var(--hero-parallax-y), 0) scale(1.08);
  transform-origin: center center;
  will-change: transform;
}

.hero-visual__side {
  top: 2px;
  right: 0;
  width: 35%;
  height: 48%;
  border-radius: 28px 28px 28px 8px;
  background: #d9d4cd;
  animation-delay: .18s;
}

.hero-visual__side img {
  object-fit: contain;
  object-position: center;
}

.hero-visual__detail {
  bottom: 34px;
  left: 0;
  width: 42%;
  height: auto;
  aspect-ratio: 1672 / 941;
  border-radius: 32px 32px 32px 8px;
  background: #37332f;
  animation-delay: .24s;
}

.hero-visual__detail img {
  object-fit: contain;
  object-position: center;
}

.hero--showcase .hero-inquiry {
  position: absolute;
  right: 10px;
  bottom: 8px;
  z-index: 4;
  display: block;
  width: min(350px, 48%);
  max-width: none;
  margin: 0;
  padding: 26px;
  border: 1px solid rgba(16, 35, 33, .07);
  border-radius: 8px;
  color: var(--dark);
  background: rgba(255, 255, 255, .96);
  box-shadow: 5px 8px 18px -7px rgba(16, 35, 33, .13), 16px 22px 46px -15px rgba(16, 35, 33, .2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: heroFormEnter .82s .2s cubic-bezier(.22, 1, .36, 1) both;
}

.hero--showcase .hero-inquiry::before {
  content: none;
}

.hero--showcase .hero-inquiry__head {
  position: relative;
  min-height: 44px;
  margin-bottom: 14px;
  padding-right: 42px;
}

.hero--showcase .hero-inquiry__seal {
  position: absolute;
  top: -7px;
  right: 0;
  width: 38px;
  height: 38px;
  color: var(--teal);
  background: rgba(var(--ci-teal-rgb), .1);
}

.hero--showcase .hero-inquiry__kicker {
  display: block;
  color: #0e9d91;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero--showcase .hero-inquiry__intro {
  max-width: 245px;
  margin-top: 8px;
  color: #637571;
  font-size: 11px;
  line-height: 1.45;
}

.hero--showcase .hero-inquiry__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.hero--showcase .hero-inquiry__wide,
.hero--showcase .hero-inquiry__fields > .form-row:last-child {
  grid-column: 1 / -1;
}

.hero--showcase .hero-inquiry__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.hero--showcase .hero-inquiry .form-row {
  position: relative;
  gap: 0;
}

.hero--showcase .hero-inquiry input,
.hero--showcase .hero-inquiry select,
.hero--showcase .hero-inquiry textarea {
  width: 100%;
  min-width: 0;
  padding: 10px 11px;
  border: 1px solid #dce6e4;
  border-radius: 6px;
  color: var(--dark);
  background: rgba(255, 255, 255, .94);
  font-family: inherit;
  font-size: 11px;
  line-height: 1.35;
}

.hero--showcase .hero-inquiry select {
  appearance: auto;
  color: #647672;
}

.hero--showcase .hero-inquiry textarea {
  min-height: 62px;
  resize: vertical;
}

.hero--showcase .hero-inquiry .btn {
  width: 100%;
  min-height: 42px;
  margin-top: 10px;
  padding: 8px 16px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 28px rgba(var(--ci-red-rgb), .22);
}

.hero--showcase .hero-inquiry .btn:hover {
  color: var(--white);
  background: #cc4b55;
}

.hero--showcase .hero-inquiry__note {
  gap: 5px;
  margin-top: 9px;
  color: #71817e;
  font-size: 9px;
}

.hero--showcase .hero-inquiry__note svg {
  color: #ef9a1d;
}

.hero--showcase .hero__trust {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: calc(100% - 84px);
  max-width: 1456px;
  margin: 20px auto 0;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(16, 35, 33, .18);
  border-radius: 8px;
  color: var(--dark);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 14px 40px rgba(16, 35, 33, .08), inset 0 0 0 1px rgba(255, 255, 255, .8);
  backdrop-filter: none;
}

.hero--showcase .hero__trust::after {
  content: none;
}

.hero--showcase .hero__trust article,
.hero--showcase .hero__trust article:first-child,
.hero--showcase .hero__trust article:last-child {
  --trust-color: var(--red);
  --trust-color-rgb: var(--ci-red-rgb);
  --trust-icon-color: var(--trust-color);
  --trust-circle-color: var(--trust-color);
  --trust-circle-rgb: var(--trust-color-rgb);
  --trust-hover-ink: var(--white);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  min-width: 0;
  min-height: 82px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-right: 1px solid #d5ddda;
  border-radius: 6px;
  background: transparent;
  transition: border-color .25s ease, background-color .25s ease, box-shadow .25s ease, transform .28s cubic-bezier(.22, 1, .36, 1);
}

.hero--showcase .hero__trust article::before {
  position: absolute;
  right: 18px;
  bottom: 4px;
  left: 18px;
  height: 2px;
  border-radius: 999px;
  background: rgba(var(--trust-color-rgb), .78);
  content: '';
  opacity: .55;
  transform: scaleX(.28);
  transform-origin: center;
  transition: opacity .25s ease, transform .34s cubic-bezier(.22, 1, .36, 1);
}

.hero--showcase .hero__trust article:first-child {
  padding-left: 18px;
}

.hero--showcase .hero__trust article:last-child {
  padding-right: 18px;
  border-right: 0;
}

.hero--showcase .hero__trust article:nth-child(4) {
  --trust-color: var(--teal);
  --trust-color-rgb: var(--ci-teal-rgb);
}

.hero--showcase .hero__trust article:nth-child(2) {
  --trust-color: var(--teal);
  --trust-color-rgb: var(--ci-teal-rgb);
}

.hero--showcase .hero__trust article:nth-child(3) {
  --trust-color: var(--yellow);
  --trust-color-rgb: var(--ci-orange-rgb);
}

.hero--showcase .hero__trust article svg {
  width: 58px;
  height: 58px;
  padding: 15px;
  border: 1px solid rgba(var(--trust-circle-rgb), .28);
  border-radius: 50%;
  color: var(--trust-icon-color);
  background: rgba(var(--trust-circle-rgb), .14);
  transition: color .25s ease, background-color .25s ease, transform .28s cubic-bezier(.22, 1, .36, 1), box-shadow .25s ease;
}

.hero--showcase .hero__trust strong {
  color: var(--dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: none;
  transition: color .25s ease;
}

.hero--showcase .hero__trust span {
  margin-top: 5px;
  color: #5c706c;
  font-size: 12px;
  line-height: 1.45;
  transition: color .25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .hero-visual figure:hover {
    box-shadow: 0 28px 68px rgba(16, 35, 33, .19);
  }

  .hero-visual__main:hover {
    z-index: 2;
    scale: 1.03;
    rotate: -.7deg;
  }

  .hero-visual__side:hover {
    z-index: 3;
    scale: 1.055;
    rotate: 1.1deg;
  }

  .hero-visual__detail:hover {
    z-index: 3;
    scale: 1.06;
    rotate: -1.1deg;
  }

  .hero--showcase .hero__trust article:hover {
    border-color: rgba(var(--trust-color-rgb), .38);
    background: rgba(var(--trust-color-rgb), .13);
    box-shadow: 0 14px 28px rgba(var(--trust-color-rgb), .17);
    transform: translateY(-4px);
  }

  .hero--showcase .hero__trust article:hover::before {
    opacity: 1;
    transform: scaleX(1);
  }

  .hero--showcase .hero__trust article:hover svg {
    color: var(--trust-hover-ink);
    background: var(--trust-circle-color);
    border-color: var(--trust-circle-color);
    box-shadow: 0 9px 22px rgba(var(--trust-circle-rgb), .24);
    transform: translateY(-1px) scale(1.06);
  }

  .hero--showcase .hero__trust article:hover strong {
    color: var(--trust-color);
  }
}

@keyframes showcaseRise {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroGlowRedA {
  0% {
    opacity: .18;
    transform: translate3d(-5%, -3%, 0) scale(.9);
  }
  34% {
    opacity: .72;
    transform: translate3d(12%, 4%, 0) scale(1.08);
  }
  68% {
    opacity: .36;
    transform: translate3d(5%, 13%, 0) scale(.98);
  }
  100% {
    opacity: .15;
    transform: translate3d(20%, 8%, 0) scale(1.14);
  }
}

@keyframes heroGlowTealA {
  0% {
    opacity: .24;
    transform: translate3d(7%, -5%, 0) scale(1.04);
  }
  42% {
    opacity: .72;
    transform: translate3d(-10%, 9%, 0) scale(1.14);
  }
  72% {
    opacity: .42;
    transform: translate3d(-4%, 16%, 0) scale(.96);
  }
  100% {
    opacity: .18;
    transform: translate3d(-18%, 5%, 0) scale(1.09);
  }
}

@keyframes heroGlowYellowA {
  0% {
    opacity: .16;
    transform: translate3d(-8%, 10%, 0) scale(.88);
  }
  38% {
    opacity: .66;
    transform: translate3d(8%, -7%, 0) scale(1.1);
  }
  70% {
    opacity: .36;
    transform: translate3d(17%, -2%, 0) scale(.96);
  }
  100% {
    opacity: .14;
    transform: translate3d(3%, -14%, 0) scale(1.13);
  }
}

@keyframes heroGlowRedB {
  0% {
    opacity: .10;
    transform: translate3d(-12%, 8%, 0) scale(.72);
  }
  32% {
    opacity: .58;
    transform: translate3d(18%, -12%, 0) scale(1.08);
  }
  64% {
    opacity: .22;
    transform: translate3d(32%, 6%, 0) scale(.86);
  }
  100% {
    opacity: .50;
    transform: translate3d(8%, 18%, 0) scale(1.16);
  }
}

@keyframes heroGlowTealB {
  0% {
    opacity: .12;
    transform: translate3d(14%, -10%, 0) scale(.8);
  }
  36% {
    opacity: .58;
    transform: translate3d(-14%, 12%, 0) scale(1.12);
  }
  68% {
    opacity: .24;
    transform: translate3d(-28%, -2%, 0) scale(.9);
  }
  100% {
    opacity: .52;
    transform: translate3d(4%, 20%, 0) scale(1.08);
  }
}

@keyframes heroGlowYellowB {
  0% {
    opacity: .10;
    transform: translate3d(-18%, -6%, 0) scale(.76);
  }
  30% {
    opacity: .54;
    transform: translate3d(10%, 14%, 0) scale(1.1);
  }
  62% {
    opacity: .18;
    transform: translate3d(26%, 4%, 0) scale(.84);
  }
  100% {
    opacity: .48;
    transform: translate3d(2%, -16%, 0) scale(1.14);
  }
}

@media (max-width: 1320px) {
  .site-header .nav__inner,
  .site-header.is-scrolled .nav__inner {
    padding-right: 28px;
    padding-left: 28px;
  }

  .site-header .nav__brand {
    flex-basis: 230px;
  }

  .site-header .nav__brand img {
    width: 54px;
    height: 54px;
  }

  .site-header .nav__brand strong {
    font-size: 24px;
  }

  .site-header .nav__brand small {
    font-size: 10px;
  }

  .site-header .nav__links {
    gap: 2px;
  }

  .site-header .nav__links a {
    padding-right: 11px;
    padding-left: 11px;
    font-size: 13px;
  }

  .hero--showcase .hero__inner {
    grid-template-columns: minmax(0, .82fr) minmax(540px, 1.18fr);
    gap: 24px;
    padding-right: 30px;
    padding-left: 30px;
  }

  .hero--showcase h1 {
    font-size: clamp(43px, 3.7vw, 54px);
  }

  .hero--showcase .hero__proofs {
    gap: 10px;
  }

  .hero-visual {
    min-height: 580px;
  }

  .hero--showcase .hero-inquiry {
    right: 0;
    width: min(315px, 47%);
    padding: 21px;
  }

  .hero--showcase .hero__trust article,
  .hero--showcase .hero__trust article:first-child,
  .hero--showcase .hero__trust article:last-child {
    gap: 12px;
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media (max-width: 1100px) {
  .site-header .nav__links {
    display: none;
  }

  .site-header .nav__hamburger {
    display: flex;
  }
}

@media (max-width: 1080px) {
  .site-header .nav__cta {
    padding-right: 16px;
    padding-left: 16px;
    font-size: 13px;
  }

  .hero--showcase .hero__inner {
    grid-template-columns: minmax(0, .78fr) minmax(500px, 1.22fr);
  }

  .hero--showcase .hero__mobile-break {
    display: inline;
  }

  .hero--showcase h1 {
    font-size: 43px;
  }

  .hero--showcase .hero__lead {
    font-size: 16px;
  }

  .hero--showcase .hero__proofs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 350px;
  }

  .hero--showcase .hero__proofs li,
  .hero--showcase .hero__proofs li:first-child,
  .hero--showcase .hero__proofs li:last-child {
    align-items: center;
    flex-direction: row;
    text-align: left;
  }

  .hero--showcase .hero__proof-icon {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
  }

  .hero--showcase .hero__proofs svg {
    width: 22px;
    height: 22px;
  }

  .hero--showcase .hero__actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 320px;
  }
}

@media (max-width: 920px) {
  .site-header .nav__inner,
  .site-header.is-scrolled .nav__inner {
    min-height: 76px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .site-header .nav__brand {
    flex-basis: auto;
  }

  .site-header .nav__brand img {
    width: 48px;
    height: 48px;
  }

  .site-header .nav__brand strong {
    font-size: 22px;
  }

  .site-header .nav__cta {
    display: none;
  }

  .site-header .nav__icon-link--whatsapp,
  .site-header .nav__hamburger {
    width: 44px;
    height: 44px;
  }

  .hero.hero--showcase {
    padding: 90px 0 28px;
  }

  .hero--showcase .hero__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    min-height: 0;
    padding: 38px 24px 10px;
  }

  .hero--showcase .hero__copy {
    grid-column: auto;
    max-width: 680px;
  }

  .hero--showcase h1 {
    max-width: 680px;
    font-size: clamp(46px, 7vw, 60px);
  }

  .hero--showcase .hero__lead {
    max-width: 530px;
  }

  .hero--showcase .hero__proofs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 650px;
  }

  .hero--showcase .hero__proofs li,
  .hero--showcase .hero__proofs li:first-child,
  .hero--showcase .hero__proofs li:last-child {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .hero--showcase .hero__actions {
    align-items: center;
    flex-direction: row;
    max-width: none;
  }

  .hero-visual {
    width: 100%;
    min-height: 650px;
  }

  .hero-visual__main {
    left: 3%;
    width: 70%;
  }

  .hero--showcase .hero-inquiry {
    right: 2%;
    width: min(330px, 46%);
  }

  .hero--showcase .hero__trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 48px);
    margin-top: 20px;
  }

  .hero--showcase .hero__trust article,
  .hero--showcase .hero__trust article:first-child,
  .hero--showcase .hero__trust article:last-child {
    padding: 16px;
    border-right: 0;
    border-bottom: 1px solid #d5ddda;
  }

  .hero--showcase .hero__trust article:nth-child(odd) {
    border-right: 1px solid #d5ddda;
  }

  .hero--showcase .hero__trust article:nth-child(n + 3) {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .hero-aurora {
    inset: -8% -24% -3%;
    opacity: .78;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 60%, rgba(0, 0, 0, .72) 76%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 60%, rgba(0, 0, 0, .72) 76%, transparent 100%);
  }

  .hero-aurora__glow {
    filter: blur(44px);
  }

  .hero-aurora__glow--red-b,
  .hero-aurora__glow--teal-b,
  .hero-aurora__glow--yellow-b {
    filter: blur(36px);
  }

  .site-header .nav__brand span {
    display: none;
  }

  .site-header .nav__brand img {
    width: 43px;
    height: 43px;
  }

  .site-header .nav__right {
    gap: 8px;
  }

  .hero.hero--showcase {
    padding-top: 76px;
  }

  .hero--showcase .hero__inner {
    gap: 28px;
    padding: 34px 18px 4px;
  }

  .hero--showcase h1 {
    font-size: 39px;
    line-height: 1.04;
  }

  .hero--showcase h1 > span + span {
    margin-top: 7px;
  }

  .hero.hero--showcase h1 > span:nth-child(2) {
    font-size: .88em;
    white-space: normal;
  }

  .hero--showcase .hero__heart-rule {
    width: min(100%, 360px);
    margin: 18px 0;
  }

  .hero--showcase .hero__lead {
    font-size: 16px;
  }

  .hero--showcase .hero__proofs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
    max-width: 460px;
    margin-top: 24px;
  }

  .hero--showcase .hero__proofs li,
  .hero--showcase .hero__proofs li:first-child,
  .hero--showcase .hero__proofs li:last-child {
    align-items: center;
    flex-direction: row;
    text-align: left;
  }

  .hero--showcase .hero__proof-icon {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
  }

  .hero--showcase .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .hero--showcase .hero__actions .btn {
    width: 100%;
  }

  .hero-visual {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    min-height: 0;
  }

  .hero-visual__shape {
    display: none;
  }

  .hero-visual figure,
  .hero-visual__main,
  .hero-visual__side,
  .hero-visual__detail {
    position: relative;
    inset: auto;
    width: auto;
    border-width: 2px;
  }

  .hero-visual__main {
    grid-column: 1 / -1;
    height: 300px;
    border-radius: 28px 8px 28px 8px;
  }

  .hero-visual__side,
  .hero-visual__detail {
    height: 150px;
    border-radius: 18px 8px 18px 8px;
  }

  .hero-visual__side {
    height: 230px;
  }

  .hero-visual__detail {
    height: 165px;
    aspect-ratio: auto;
  }

  .hero--showcase .hero-inquiry {
    position: relative;
    inset: auto;
    grid-column: 1 / -1;
    width: 100%;
    padding: 22px;
  }

  .hero--showcase .hero__trust {
    grid-template-columns: minmax(0, 1fr);
    width: calc(100% - 36px);
    padding: 8px 18px;
  }

  .hero--showcase .hero__trust article,
  .hero--showcase .hero__trust article:first-child,
  .hero--showcase .hero__trust article:last-child,
  .hero--showcase .hero__trust article:nth-child(odd),
  .hero--showcase .hero__trust article:nth-child(n + 3) {
    padding: 15px 12px;
    border-right: 0;
    border-bottom: 1px solid #d5ddda;
  }

  .hero--showcase .hero__trust article:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-aurora__glow {
    animation: none;
    opacity: .18;
    transform: none;
  }

  .hero-aurora__glow--red-b,
  .hero-aurora__glow--teal-b,
  .hero-aurora__glow--yellow-b {
    opacity: .09;
  }
}

@media (max-width: 380px) {
  .hero--showcase h1 {
    font-size: 36px;
  }

  .hero--showcase .hero-inquiry__fields {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero--showcase .hero-inquiry__wide,
  .hero--showcase .hero-inquiry__fields > .form-row:last-child {
    grid-column: auto;
  }
}

/* A quiet visual hand-off between the long-form homepage sections. */
#main-content > section:not(.hero) {
  --section-contour-rgb: var(--ci-teal-rgb);
  position: relative;
  scroll-margin-top: 0;
}

/* Keep these compact sections visually centered when opened from the header. */
#vertrauen,
#faq {
  scroll-margin-top: 82px;
}

#main-content > section:nth-of-type(3n) {
  --section-contour-rgb: var(--ci-orange-rgb);
}

#main-content > section:nth-of-type(3n + 1) {
  --section-contour-rgb: var(--ci-red-rgb);
}

.section-contour {
  position: absolute;
  z-index: 12;
  top: 0;
  right: clamp(18px, 5vw, 84px);
  left: clamp(18px, 5vw, 84px);
  display: block;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(var(--section-contour-rgb), 0) 0%,
    rgba(var(--section-contour-rgb), .18) 12%,
    rgba(var(--section-contour-rgb), .44) 50%,
    rgba(var(--section-contour-rgb), .18) 88%,
    rgba(var(--section-contour-rgb), 0) 100%);
  opacity: 0;
  pointer-events: none;
  transform: scaleX(.16);
  transform-origin: center;
  transition: opacity .48s ease, transform .9s cubic-bezier(.22, 1, .36, 1);
}

.section-contour::before {
  position: absolute;
  top: -1px;
  left: 50%;
  width: clamp(62px, 7vw, 104px);
  height: 3px;
  border-radius: 999px;
  background: rgb(var(--section-contour-rgb));
  box-shadow: 0 5px 16px rgba(var(--section-contour-rgb), .2);
  content: '';
  transform: translateX(-50%);
}

.section-contour.is-visible {
  opacity: 1;
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  .section-contour {
    transition: none;
  }
}

@media (max-width: 920px) {
  .comparison__head {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .comparison__head h2 {
    max-width: 680px;
    font-size: 46px;
  }

  .comparison__head > p {
    max-width: 680px;
    padding-bottom: 0;
  }

  .comparison-board__legend {
    grid-template-columns: minmax(0, 1fr) 82px minmax(0, 1.15fr);
    padding-right: 20px;
    padding-left: 66px;
  }

  .comparison-step {
    grid-template-columns: 40px minmax(0, .9fr) 64px minmax(0, 1.15fr);
    padding-right: 20px;
    padding-left: 14px;
  }

  .comparison-step__before {
    padding-right: 16px;
  }

  .comparison-step__after {
    padding-left: 18px;
  }

  .comparison-path::before {
    left: calc(40px + (100% - 40px) * .443);
  }
}

@media (max-width: 820px) {
  .offer-section__copy h2 {
    white-space: normal;
  }
}

@media (max-width: 720px) {
  .comparison__inner {
    gap: 32px;
  }

  .comparison__head h2 {
    font-size: 34px;
  }

  .comparison-board__legend {
    display: none;
  }

  .comparison-path {
    gap: 12px;
  }

  .comparison-path::before {
    top: 26px;
    bottom: 26px;
    left: 64px;
  }

  .comparison-step {
    grid-template-areas:
      'number bridge before'
      'number bridge after';
    grid-template-columns: 30px 48px minmax(0, 1fr);
    gap: 0 12px;
    min-height: 0;
    padding: 18px 16px;
  }

  .comparison-step::after {
    inset: 48% 0 0 0;
    background: linear-gradient(180deg, rgba(var(--comparison-accent), 0), rgba(var(--comparison-accent), .12));
    transform: translateY(16%);
  }

  .comparison-step:hover {
    transform: translateY(-3px);
  }

  .comparison-step:hover::after {
    transform: translateY(0);
  }

  .comparison-step__number {
    grid-area: number;
    align-self: start;
    padding-top: 5px;
  }

  .comparison-step__before {
    grid-area: before;
    padding: 0 0 13px;
  }

  .comparison-step__after {
    grid-area: after;
    padding: 13px 0 0;
    border-top: 1px solid rgba(var(--comparison-accent), .2);
  }

  .comparison-step__bridge {
    grid-area: bridge;
    width: 44px;
    height: 44px;
  }

  .comparison-step p,
  .comparison-step__after p {
    font-size: 15px;
  }

  .comparison-result {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 18px;
  }

  .comparison-result__icon {
    width: 44px;
    height: 44px;
  }

  .comparison-result .btn {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .comparison-step,
  .comparison-step::after,
  .comparison-step__bridge {
    transition: none;
  }

  .comparison-step:hover,
  .comparison-step:hover .comparison-step__bridge {
    transform: none;
  }
}
