/* ═══════════════════════════════════════
   KARMA Website — styles-v4.css
   Figma Design Umsetzung 2026
   ═══════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --main: #ff9d7c;
  --main-hover: #ff8a63;
  --black: #000000;
  --soft: #6b6b6b;
  --color: #f6f5f5;
  --color-2: #cacaca;
  --hero-bg: #101314;
  --white: #ffffff;

  --font-main: "area-normal", sans-serif;
  --container-max: 1180px;
  --container-padding: 0px;
  --radius: 4px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: -0.01em;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s, opacity 0.2s;
}

a:hover { opacity: 0.8; }

ul { list-style: none; }

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

/* ── Typography ── */
.headline-xl {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.headline-l {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.headline-m {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.headline-s {
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.408;
  letter-spacing: -0.02em;
}

.text-soft { color: var(--soft); }
.text-muted { color: var(--color-2); }
.text-main { color: var(--main); }
.text-white { color: var(--white); }
.text-light { color: var(--color); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.01em;
  padding: 10px 20px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  white-space: nowrap;
}

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

.btn--primary {
  background: var(--main);
  color: var(--black);
}

.btn--primary:hover { background: var(--main-hover); }

.btn--outline {
  background: transparent;
  color: var(--main);
  border: 1px solid var(--main);
}

.btn--outline:hover { background: rgba(255, 157, 124, 0.1); }

.btn--link {
  background: none;
  color: var(--main);
  padding: 10px 0;
  border-bottom: 1.5px solid var(--main);
  border-radius: 0;
  font-size: 18px;
}

.btn--link:hover { opacity: 0.8; }

/* ── Navigation ── */
.nav {
  position: absolute;
  top: 73px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  background: transparent;
  transition: padding 0.3s, top 0.3s;
}

.nav--scrolled {
  position: fixed;
  top: 20px;
  padding: 0;
  background: transparent;
  pointer-events: none;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s, padding 0.25s, border-radius 0.25s;
}

.nav--scrolled .nav__inner {
  max-width: min(1380px, calc(100vw - 48px));
  padding: 18px 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  background: rgba(24, 24, 24, 0.84);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  pointer-events: auto;
}

.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: 22px;
  width: auto;
}

.nav__links {
  display: flex;
  gap: 44px;
  align-items: center;
}

.nav__links a {
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: -0.01em;
  color: var(--white);
}

.nav__links a:hover { color: var(--main); opacity: 1; }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: -0.01em;
  color: var(--main);
}

.nav__cta:hover { opacity: 1; color: var(--main-hover); }

.nav__cta svg {
  width: 18px;
  height: 10px;
  transition: transform 0.2s;
}

.nav__cta:hover svg { transform: translateX(3px); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile Menu */
.nav__mobile {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--hero-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.nav__mobile.is-open {
  opacity: 1;
  pointer-events: all;
}

.nav__mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
}

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}

.nav__mobile-links a {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
}

.nav__mobile-links a:hover { color: var(--main); opacity: 1; }

/* ── Hero ── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 932px;
  background: var(--black);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--black);
  pointer-events: none;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #000 40.146%, rgba(0, 0, 0, 0) 51.389%);
}

.hero__bg img {
  position: absolute;
  left: 39.18%;
  top: -2.17%;
  width: 65.51%;
  height: 108.4%;
  object-fit: contain;
  max-width: none;
}

.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 119px;
  height: 730px;
  max-width: 1200px;
  margin-top: 102px;
  padding: 0 10px;
}

@media (min-width: 1025px) {
  .hero__inner {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.hero__content {
  width: 592px;
  max-width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}

.hero__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero__title .line-white { color: var(--white); }
.hero__title .line-soft { color: var(--soft); }

.hero__sub {
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: -0.01em;
  color: var(--white);
  max-width: 390px;
}

.hero__buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__marquee {
  position: relative;
  overflow: hidden;
  width: 1455px;
  max-width: calc(100vw - 20px);
  height: 101px;
  margin-left: -436px;
  opacity: 0.72;
  mix-blend-mode: screen;
}

.hero__marquee-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

.hero__marquee-track img {
  height: 101px;
  width: auto;
  max-width: none;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Mission Statement ── */
.mission {
  padding: 77px 0 160px;
}

.mission__inner {
  display: flex;
  justify-content: flex-end;
  padding: 10px;
}

.mission__text {
  max-width: 774px;
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  line-height: 1.408;
  letter-spacing: -0.02em;
}

/* ── Stats Row ── */
.stats {
  padding: 0 0 160px;
}

.stats__row {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-height: 171px;
}

.stats__divider {
  width: 1px;
  background: var(--black);
  flex-shrink: 0;
  align-self: stretch;
}

.stats__item {
  flex: 1;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 53px;
}

.stats__number {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stats__label {
  font-size: 16px;
  line-height: 25px;
  letter-spacing: -0.01em;
  color: var(--soft);
}

/* ── Services Bento Grid ── */
.services {
  padding: 0 0 160px;
}

.services__heading {
  margin-bottom: 34px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 404px);
  gap: 20px;
}

.services__card {
  background: var(--color);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.services__card-title {
  font-size: 24px;
  line-height: 1.408;
  letter-spacing: -0.02em;
}

.services__card-text {
  font-size: 16px;
  line-height: 25px;
  letter-spacing: -0.01em;
}

/* Bento grid spans */
.services__card--strategy {
  grid-column: 1 / 3;
  grid-row: 1;
}

.services__card--philipp {
  grid-column: 3;
  grid-row: 1;
  position: relative;
  overflow: hidden;
  color: var(--color);
}

.services__card--philipp::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(207deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.9) 87%);
  z-index: 1;
}

.services__card--philipp img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.services__card--philipp .services__card-title,
.services__card--philipp .services__card-text {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.services__card--design {
  grid-column: 4;
  grid-row: 1;
}

.services__card--alex {
  grid-column: 1;
  grid-row: 2;
  background: var(--soft);
}

.services__card--ki {
  grid-column: 2;
  grid-row: 2;
}

.services__card--wordpress {
  grid-column: 3 / 5;
  grid-row: 2;
}

/* ── Target Groups ── */
.targets {
  padding: 0 0 160px;
}

.targets__header {
  display: flex;
  gap: 0;
  margin-bottom: 60px;
}

.targets__header-title {
  flex: 0 0 486px;
}

.targets__header-text {
  flex: 1;
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  line-height: 1.408;
  letter-spacing: -0.02em;
}

.targets__grid {
  display: flex;
  gap: 27px;
}

.targets__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.targets__card-image {
  position: relative;
  height: 570px;
  border-radius: var(--radius);
  overflow: hidden;
}

.targets__card-image > img:not(.targets__card-arrow) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

.targets__card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
}

.targets__card--agency .targets__card-image::after {
  background: linear-gradient(17deg, rgba(0,0,0,0.9) 15%, rgba(0,0,0,0) 56%);
}

.targets__card--company .targets__card-image::after {
  background: linear-gradient(17deg, rgba(0,0,0,0.9) 15%, rgba(0,0,0,0) 56%);
}

.targets__card-label {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  z-index: 2;
}

.targets__card-label-main {
  color: var(--color);
  display: block;
}

.targets__card-label-sub {
  color: var(--soft);
  display: block;
}

.targets__card-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: auto;
  z-index: 3;
  transform: rotate(135deg);
  opacity: 0.6;
  max-width: 40px;
}

.targets__card-desc {
  font-size: 16px;
  line-height: 25px;
  letter-spacing: -0.01em;
  max-width: 447px;
}

/* ── Case Studies / Work ── */
.work {
  padding: 0 0 160px;
}

.work__heading {
  margin-bottom: 60px;
}

.work__heading-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.work__nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.work__nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-2);
  background: transparent;
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
}

.work__nav-btn:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.work__nav-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.work__nav-btn:disabled:hover {
  background: transparent;
  color: var(--black);
  border-color: var(--color-2);
}

.work__slider-wrapper {
  overflow: hidden;
}

.work__slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
  padding-left: max(var(--container-padding), calc((100vw - var(--container-max)) / 2 + var(--container-padding)));
  padding-right: 60px;
  cursor: grab;
  user-select: none;
}

.work__slider.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.work__slider.is-dragging img {
  pointer-events: none;
  user-select: none;
}

.work__slider::-webkit-scrollbar { display: none; }

.work__card {
  flex: 0 0 380px;
  height: 486px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  gap: 10px;
  scroll-snap-align: start;
  cursor: pointer;
}

.work__card img.work__card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  max-width: none;
}

.work__card img.work__card-arrow {
  max-width: 40px;
}

.work__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(24deg, rgb(0,0,0) 28%, rgba(0,0,0,0.44) 47%, rgba(0,0,0,0) 56%);
  border-radius: var(--radius);
}

.work__card--faded { opacity: 0.5; }

.work__card-content {
  position: relative;
  z-index: 2;
}

.work__card-title {
  font-size: 24px;
  line-height: 1.408;
  letter-spacing: -0.02em;
  color: var(--color);
}

.work__card-subtitle {
  color: var(--soft);
}

.work__card-desc {
  font-size: 16px;
  line-height: 25px;
  letter-spacing: -0.01em;
  color: var(--color);
  position: relative;
  z-index: 2;
}

.work__card-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: auto;
  z-index: 3;
  transform: rotate(135deg);
  opacity: 0.6;
  max-width: 40px;
}

.work__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 60px;
}

.work__footer-text {
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  line-height: 1.408;
  letter-spacing: -0.02em;
  max-width: 686px;
}

/* ── About Page ── */
.about-page {
  background: var(--white);
}

.about-hero {
  min-height: 720px;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 157, 124, 0.22), transparent 26%),
    linear-gradient(135deg, #000 0%, #000 58%, #151515 100%);
  color: var(--white);
  display: flex;
  align-items: flex-end;
  padding: 190px 0 110px;
  overflow: hidden;
  position: relative;
}

.about-hero::after {
  content: '';
  position: absolute;
  inset: auto -12% -42% 48%;
  height: 360px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), transparent);
  transform: rotate(-12deg);
  pointer-events: none;
}

.about-hero__inner {
  position: relative;
  z-index: 1;
}

.about-kicker {
  color: var(--main);
  font-size: 16px;
  line-height: 25px;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.about-hero__title {
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  max-width: 1040px;
}

.about-hero__title span {
  display: block;
}

.about-hero__title span + span {
  color: var(--soft);
}

.about-hero__text {
  color: var(--color);
  font-size: clamp(1.125rem, 1.65vw, 1.5rem);
  line-height: 1.408;
  letter-spacing: -0.02em;
  max-width: 690px;
  margin-top: 44px;
}

.about-manifesto {
  padding: 110px 0 160px;
}

.about-manifesto__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 392px;
  gap: 96px;
  align-items: start;
}

.about-manifesto__lead {
  font-size: clamp(2rem, 4.6vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.04em;
  max-width: 770px;
}

.about-manifesto__facts {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--black);
}

.about-manifesto__facts > div {
  padding: 28px 0;
  border-bottom: 1px solid var(--black);
}

.about-fact__number {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.about-fact__label {
  color: var(--soft);
  margin-top: 18px;
}

.about-beliefs,
.about-partners {
  padding: 0 0 160px;
}

.about-section-head {
  display: grid;
  grid-template-columns: 486px minmax(0, 1fr);
  gap: 0;
  align-items: start;
  margin-bottom: 60px;
}

.about-section-head > p {
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  line-height: 1.408;
  letter-spacing: -0.02em;
}

.about-beliefs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.about-belief {
  min-height: 404px;
  border-radius: var(--radius);
  background: var(--color);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-belief span {
  color: var(--main);
}

.about-belief h3,
.about-partners__grid h3 {
  font-size: 24px;
  line-height: 1.408;
  letter-spacing: -0.02em;
}

.about-belief p,
.about-partners__grid p,
.about-team__content p {
  font-size: 16px;
  line-height: 25px;
  letter-spacing: -0.01em;
}

.about-belief p,
.about-partners__grid p {
  color: var(--soft);
}

.about-team {
  padding: 0 0 160px;
}

.about-team__inner {
  display: grid;
  grid-template-columns: 572px minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.about-team__image {
  height: 670px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.about-team__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(18deg, rgba(0,0,0,0.74) 0%, rgba(0,0,0,0) 46%);
}

.about-team__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

.about-team__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.about-team__content p {
  max-width: 520px;
}

.about-partners__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-partners__grid article {
  min-height: 292px;
  background: var(--black);
  color: var(--color);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-partners__grid article:nth-child(2) {
  background: var(--main);
  color: var(--black);
}

.about-partners__grid article:nth-child(2) p {
  color: rgba(0, 0, 0, 0.72);
}

/* ── About Page: Figma Layer "Über Uns" ── */
.about-figma {
  background: var(--white);
}

.about-fg-hero {
  position: relative;
  min-height: 904px;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.about-fg-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #000 0%, #000 32%, rgba(0, 0, 0, 0.72) 44%, rgba(0, 0, 0, 0) 64%);
  pointer-events: none;
}

.about-fg-hero__image {
  position: absolute;
  inset: 0 0 0 auto;
  width: 68%;
  background: url('../assets/about/hero-team.jpg') center top / cover no-repeat;
}

.about-fg-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 904px;
  display: flex;
  align-items: center;
}

.about-fg-hero__copy {
  width: 430px;
  padding-top: 90px;
}

.about-fg-hero__copy h1 {
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.about-fg-hero__copy h1 span {
  color: var(--soft);
}

.about-fg-hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
}

.about-fg-link {
  display: inline-flex;
  color: var(--white);
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 8px;
  line-height: 25px;
}

.about-fg-link--accent {
  color: var(--main);
}

.about-fg-hero__copy p {
  font-size: 16px;
  line-height: 25px;
  letter-spacing: -0.01em;
  max-width: 420px;
}

.about-fg-story {
  padding: 110px 0 0;
}

.about-fg-story__intro {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 14px;
  margin-bottom: 132px;
}

.about-fg-story__intro h2,
.about-fg-team__headline h2,
.about-fg-timeline__intro h2 {
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.about-fg-story__text {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-fg-story__text p,
.about-fg-values p,
.about-fg-values span,
.about-fg-person__body p,
.about-fg-timeline__list p {
  font-size: 15px;
  line-height: 25px;
  letter-spacing: -0.01em;
}

.about-fg-shot {
  background-image: url('https://powderblue-pony-933622.hostingersite.com/assets/about/ueber-uns-source.jpg');
  background-repeat: no-repeat;
  background-size: 1512px auto;
}

.about-fg-video {
  position: relative;
  height: 658px;
  border-radius: var(--radius);
  background-position: -166px -1467px;
  overflow: hidden;
}

.about-fg-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.34);
}

.about-fg-video__play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 104px;
  height: 104px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
}

.about-fg-video__play::before {
  content: '';
  width: 0;
  height: 0;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 34px solid var(--main);
  margin-left: 8px;
}

.about-fg-video__caption {
  font-size: 24px;
  line-height: 1.408;
  letter-spacing: -0.02em;
  max-width: 720px;
  margin-top: 24px;
}

.about-fg-values {
  padding: 150px 0;
}

.about-fg-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.about-fg-values article {
  min-height: 350px;
  padding: 0 24px;
  border-left: 1px solid var(--color-2);
  display: flex;
  flex-direction: column;
}

.about-fg-values article:last-child {
  border-right: 1px solid var(--color-2);
}

.about-fg-values h3 {
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
}

.about-fg-values p {
  color: var(--soft);
  margin-bottom: auto;
}

.about-fg-values span {
  display: block;
  background: var(--color);
  color: var(--soft);
  padding: 10px;
  margin-top: 48px;
}

.about-fg-team {
  padding: 0 0 160px;
}

.about-fg-team__layout {
  display: grid;
  grid-template-columns: 380px 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.about-fg-team__headline h2 span,
.about-fg-timeline__intro h2 span {
  color: var(--color-2);
}

.about-fg-team__cards {
  display: contents;
}

.about-fg-person {
  background: var(--color);
  border-radius: var(--radius);
  overflow: hidden;
}

.about-fg-person:nth-child(1) { grid-column: 2; grid-row: 1; }
.about-fg-person:nth-child(2) { grid-column: 3; grid-row: 1; }
.about-fg-person:nth-child(3) { grid-column: 1; grid-row: 2; }
.about-fg-person:nth-child(4) { grid-column: 2; grid-row: 2; }
.about-fg-person:nth-child(5) { grid-column: 3; grid-row: 2; }

.about-fg-person__image {
  height: 276px;
  background-color: var(--color-2);
}

.about-fg-shot--philipp { background-position: -566px -3006px; }
.about-fg-shot--alexander { background-position: -965px -3006px; }
.about-fg-shot--vedran { background-position: -166px -3706px; }
.about-fg-shot--saskia { background-position: -566px -3706px; }
.about-fg-shot--kristina { background-position: -965px -3706px; }

.about-fg-person__body {
  min-height: 228px;
  padding: 24px;
}

.about-fg-person__body span {
  display: inline-flex;
  background: #eceaea;
  color: var(--soft);
  font-size: 11px;
  line-height: 1;
  padding: 8px 10px;
  margin-bottom: 20px;
}

.about-fg-person__body h3 {
  font-size: 24px;
  line-height: 1.408;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.about-fg-person__body small {
  font-size: 16px;
}

.about-fg-person__body p {
  color: var(--soft);
}

.about-fg-timeline {
  padding: 0 0 140px;
}

.about-fg-timeline__layout {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 100px;
}

.about-fg-timeline__intro {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
}

.about-fg-timeline__list {
  border-top: 1px solid var(--color-2);
}

.about-fg-timeline__list div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  padding: 19px 0;
  border-bottom: 1px solid var(--color-2);
}

.about-fg-timeline__list strong {
  font-size: 16px;
  line-height: 25px;
}

.about-fg-stats {
  padding-bottom: 150px;
}

.about-fg-office {
  padding: 0 0 150px;
}

.about-fg-office__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.about-fg-office__image {
  height: 542px;
  border-radius: var(--radius);
  background-color: var(--color);
}

.about-fg-shot--office-1 { background-position: -166px -5587px; }
.about-fg-shot--office-2 { background-position: -468px -5587px; }
.about-fg-shot--office-3 { background-position: -765px -5587px; }
.about-fg-shot--office-4 { background-position: -1069px -5587px; }

.about-fg-referral {
  padding: 0 0 150px;
}

.about-fg-referral p {
  color: var(--color-2);
  max-width: 1180px;
  font-weight: 600;
}

.about-fg-referral .highlight {
  color: var(--black);
  font-weight: 600;
}

/* ── Testimonials ── */
.testimonials {
  padding: 0 0 160px;
}

.testimonials__heading {
  margin-bottom: 40px;
}

.testimonials__grid {
  columns: 3;
  column-gap: 12px;
}

.testimonials__card {
  break-inside: avoid;
  background: var(--color);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.testimonials__card--tall {
  gap: 156px;
}

.testimonials__card--medium {
  gap: 132px;
}

.testimonials__card--short {
  gap: 66px;
}

.testimonials__quote {
  font-size: 16px;
  line-height: 25px;
  letter-spacing: -0.01em;
}

.testimonials__author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonials__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonials__avatar--sm {
  width: 40px;
  height: 40px;
}

.testimonials__name {
  font-size: 16px;
  font-weight: 900;
  line-height: 28px;
  letter-spacing: -0.01em;
}

.testimonials__role {
  font-size: 12px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: -0.01em;
  color: var(--color-2);
}

/* ── CTA Section ── */
.cta {
  background: var(--black);
  padding: 160px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.cta__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cta__title {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
}

.cta__subtitle {
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  line-height: 1.408;
  letter-spacing: -0.02em;
  color: var(--white);
}

.cta__buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  background: var(--black);
  padding: 160px 0 100px;
  color: var(--white);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer__tagline {
  font-size: 24px;
  line-height: 1.408;
  letter-spacing: -0.02em;
  color: var(--main);
}

.footer__cta {
  flex-shrink: 0;
}

.footer__divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.footer__columns {
  display: flex;
  gap: 40px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__col-title {
  font-size: 24px;
  line-height: 1.408;
  letter-spacing: -0.02em;
  color: var(--white);
}

.footer__col p,
.footer__col a {
  font-size: 16px;
  line-height: 25px;
  letter-spacing: -0.01em;
  color: var(--white);
}

.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__col-links a {
  font-size: 16px;
  line-height: 25px;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.82);
}

.footer__col-links a:hover { color: var(--main); opacity: 1; }


/* ── Homepage Figma Desktop Parity Pass (2026-06-10) ──
   Source: Figma Desktop/Homepage node 9:318. Navigation intentionally kept as current live nav. */
@media (min-width: 1025px) {
  .stats__divider { background: var(--color-2); }

  .work__nav { display: none; }
  .work__slider-wrapper {
    width: min(var(--container-max), 100%);
    margin: 0 auto;
    overflow: hidden;
  }
  .work__slider {
    width: 1172px;
    max-width: 100%;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
    cursor: default;
  }
  .work__card--faded { opacity: .3; }
  .work__card-arrow,
  .targets__card-arrow { width: 87px; max-width: 87px; top: 11px; right: 14px; }

  .testimonials__grid {
    columns: initial;
    column-gap: 0;
    display: grid;
    grid-template-columns: 395px 397px 375px;
    grid-template-rows: 294px 92px 294px;
    gap: 20px 10px;
    height: 722px;
    overflow: hidden;
  }
  .testimonials__card {
    margin: 0;
    min-height: 0;
    height: 100%;
    justify-content: space-between;
  }
  .testimonials__card:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
  .testimonials__card:nth-child(2) { grid-column: 2; grid-row: 1; }
  .testimonials__card:nth-child(3) { grid-column: 3; grid-row: 1 / span 2; }
  .testimonials__card:nth-child(4) { grid-column: 1; grid-row: 3; }
  .testimonials__card:nth-child(5) { grid-column: 2; grid-row: 2 / span 2; }
  .testimonials__card:nth-child(6) { grid-column: 3; grid-row: 3; }
  .testimonials__stats { margin-top: 40px; }

  .cta {
    min-height: 837px;
    padding: 0;
  }
  .cta__inner {
    min-height: 837px;
    justify-content: center;
  }
  .cta__title { max-width: 1177px; }
}

/* ── Responsive ── */
@media (max-width: 1228px) {
  :root {
    --container-padding: 24px;
  }
}

@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .nav {
    top: 28px;
  }

  .nav--scrolled {
    top: 14px;
  }

  .nav--scrolled .nav__inner {
    max-width: calc(100vw - 32px);
    padding: 16px 20px;
    border-radius: 15px;
  }

  .hero {
    min-height: 820px;
  }

  .hero__bg img {
    left: 20%;
    width: 100%;
    height: 100%;
    top: 0;
    opacity: 0.42;
    object-fit: cover;
  }

  .hero__bg::after {
    background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.72) 45%, rgba(0, 0, 0, 0.15) 100%);
  }

  .hero__inner {
    height: 640px;
    margin-top: 100px;
    gap: 80px;
  }

  .hero__content {
    width: 100%;
    max-width: 620px;
  }

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

  .stats__row { flex-direction: column; gap: 40px; }
  .stats__divider { width: 100%; height: 1px; }
  .stats__item { padding: 0; }

  .services__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .services__card--strategy { grid-column: 1 / 3; grid-row: auto; }
  .services__card--philipp { grid-column: auto; grid-row: auto; }
  .services__card--design { grid-column: auto; grid-row: auto; }
  .services__card--alex { grid-column: auto; grid-row: auto; }
  .services__card--ki { grid-column: auto; grid-row: auto; }
  .services__card--wordpress { grid-column: 1 / 3; grid-row: auto; }

  .targets__header { flex-direction: column; gap: 24px; }
  .targets__header-title { flex: auto; }
  .targets__grid { flex-direction: column; }
  .targets__card-image { height: 400px; }

  .about-hero {
    min-height: 640px;
    padding: 150px 0 82px;
  }

  .about-manifesto__inner,
  .about-section-head,
  .about-team__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-manifesto {
    padding: 88px 0 120px;
  }

  .about-manifesto__facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 0;
    gap: 16px;
  }

  .about-manifesto__facts > div {
    border: 1px solid var(--black);
    border-radius: var(--radius);
    padding: 20px;
  }

  .about-beliefs__grid,
  .about-partners__grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-team__image {
    height: 520px;
  }

  .about-fg-hero,
  .about-fg-hero__inner {
    min-height: 760px;
  }

  .about-fg-hero__image {
    width: 78%;
    opacity: 0.78;
  }

  .about-fg-story__intro,
  .about-fg-timeline__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-fg-team__layout {
    gap: 40px;
  }

  .about-fg-story__intro {
    margin-bottom: 72px;
  }

  .about-fg-video {
    height: 54vw;
    min-height: 420px;
    background-size: 132vw auto;
    background-position: 50% 17%;
  }

  .about-fg-values__grid,
  .about-fg-office__grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-fg-values article {
    min-height: 300px;
    border-right: 1px solid var(--color-2);
  }

  .about-fg-team__layout {
    grid-template-columns: 1fr 1fr;
  }

  .about-fg-person:nth-child(1),
  .about-fg-person:nth-child(2),
  .about-fg-person:nth-child(3),
  .about-fg-person:nth-child(4),
  .about-fg-person:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }

  .work__card { flex: 0 0 300px; height: 400px; }
  .work__nav { display: none; }
  .work__heading-top { flex-direction: column; align-items: flex-start; }

  .testimonials__grid { columns: 2; }

  .footer__columns { flex-wrap: wrap; }
}

@media (max-width: 640px) {
  :root {
    --container-padding: 20px;
  }

  .btn {
    width: 100%;
  }

  .hero {
    min-height: 760px;
  }

  .hero__inner {
    height: 620px;
    margin-top: 88px;
    justify-content: flex-end;
    gap: 56px;
    padding-inline: var(--container-padding);
  }

  .hero__title {
    font-size: clamp(2.5rem, 11vw, 3.25rem);
  }

  .hero__buttons {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero__marquee {
    height: 56px;
  }

  .hero__marquee-track img {
    height: 56px;
  }

  .mission { padding: 80px 0 40px; }
  .mission__inner { padding: 0; }

  .stats,
  .services,
  .targets,
  .work,
  .testimonials,
  .about-beliefs,
  .about-team,
  .about-partners {
    padding-bottom: 72px;
  }

  .about-hero {
    min-height: 560px;
    padding: 128px 0 64px;
  }

  .about-hero__text {
    margin-top: 28px;
  }

  .about-manifesto {
    padding: 72px 0 88px;
  }

  .about-manifesto__inner,
  .about-section-head,
  .about-team__inner {
    gap: 32px;
  }

  .about-manifesto__facts,
  .about-beliefs__grid,
  .about-partners__grid {
    grid-template-columns: 1fr;
  }

  .about-belief,
  .about-partners__grid article {
    min-height: 260px;
  }

  .about-team__image {
    height: 420px;
  }

  .about-fg-hero,
  .about-fg-hero__inner {
    min-height: 720px;
  }

  .about-fg-hero::before {
    background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.88) 58%, rgba(0, 0, 0, 0.2) 100%);
  }

  .about-fg-hero__image {
    width: 100%;
    opacity: 0.45;
  }

  .about-fg-hero__copy {
    width: 100%;
    padding-top: 70px;
  }

  .about-fg-hero__copy h1,
  .about-fg-story__intro h2,
  .about-fg-team__headline h2,
  .about-fg-timeline__intro h2 {
    font-size: clamp(2.5rem, 12vw, 3.25rem);
  }

  .about-fg-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-fg-story {
    padding-top: 72px;
  }

  .about-fg-video {
    height: 360px;
    min-height: 0;
    background-size: 1180px auto;
    background-position: 50% 14%;
  }

  .about-fg-video__caption {
    font-size: 20px;
  }

  .about-fg-values {
    padding: 88px 0;
  }

  .about-fg-values__grid,
  .about-fg-office__grid {
    grid-template-columns: 1fr;
  }

  .about-fg-team__layout {
    grid-template-columns: 1fr;
  }

  .about-fg-person:nth-child(1),
  .about-fg-person:nth-child(2),
  .about-fg-person:nth-child(n + 3) {
    grid-column: auto;
    grid-row: auto;
  }

  .about-fg-values article {
    min-height: 0;
    padding: 28px 0;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--color-2);
  }

  .about-fg-values article:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--color-2);
  }

  .about-fg-values h3 {
    margin-bottom: 28px;
  }

  .about-fg-team,
  .about-fg-timeline,
  .about-fg-stats,
  .about-fg-office,
  .about-fg-referral {
    padding-bottom: 88px;
  }

  .about-fg-person__image,
  .about-fg-office__image {
    background-size: 1180px auto;
  }

  .about-fg-person__image {
    height: 300px;
  }

  .about-fg-office__image {
    height: 420px;
  }

  .about-fg-timeline__list div {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .footer__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .btn--link {
    width: fit-content;
  }

  .services__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .services__card--strategy,
  .services__card--wordpress { grid-column: auto; }
  .services__grid .services__card { height: auto; min-height: 280px; }

  .targets__card-image { height: 320px; }

  .work__card { flex: 0 0 280px; height: 380px; }

  .testimonials__grid { columns: 1; }

  .cta { padding: 0 0 80px; }
  .cta__title { font-size: clamp(2rem, 6vw, 3rem); }

  .footer__columns { flex-direction: column; gap: 24px; }
}

/* ══════════════════════════════════════════
   WHITE LABEL PAGE — New Component Styles
   ══════════════════════════════════════════ */

/* ── Nav active state ── */
.nav__link--active {
  color: var(--main) !important;
  opacity: 1 !important;
}

/* ── Pain Points ── */
.wl-pain {
  padding: 0 0 160px;
}

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

.wl-pain__col {
  border-left: 1px solid var(--color-2);
  padding: 32px 40px 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 265px;
}

.wl-pain__col h3 {
  font-size: clamp(1.5rem, 2vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.wl-pain__col > p {
  flex: 1;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: -0.01em;
  color: var(--soft);
  font-weight: 700;
}

.wl-pain__check {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #2a7a4e;
  border-radius: 6px;
  padding: 14px 16px;
  margin-top: auto;
}

.wl-pain__check-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(0,0,0,0.25);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wl-pain__check p {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.01em;
  color: #ffffff;
  font-weight: 700;
  margin: 0;
}

/* ── Process ── */
.wl-process {
  padding: 0 0 160px;
}

.wl-process__intro {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 80px;
}

.wl-process__intro .headline-l {
  flex: 0 0 486px;
}

.wl-process__intro > p {
  flex: 1;
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  line-height: 1.408;
  letter-spacing: -0.02em;
  color: var(--soft);
}

.wl-process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid var(--black);
}

.wl-process__step {
  padding: 40px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wl-process__step h3 {
  font-size: clamp(1.25rem, 1.75vw, 1.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.wl-process__step > p:not(.wl-process__step-num) {
  font-size: 16px;
  line-height: 25px;
  letter-spacing: -0.01em;
  color: var(--soft);
}

.wl-process__step-num {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--color-2);
}

/* ── Agency Services ── */
.wl-services {
  padding: 0 0 160px;
}

.wl-services__heading {
  margin-bottom: 34px;
}

.wl-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.wl-services__card {
  background: var(--color);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.wl-services__card-image {
  height: 240px;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: var(--radius) var(--radius) 0 0;
}

.wl-services__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

.wl-services__card-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.wl-services__card-body h3 {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.wl-services__card-body p {
  font-size: 16px;
  line-height: 25px;
  letter-spacing: -0.01em;
  color: var(--soft);
}

/* ── Tools ── */
.tools {
  padding: 0 0 160px;
}

.tools__heading {
  margin-bottom: 34px;
}

.tools__intro {
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  line-height: 1.408;
  letter-spacing: -0.02em;
  color: var(--soft);
  max-width: 680px;
  margin-bottom: 60px;
}

.tools__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tools__card {
  background: var(--color);
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 300px;
}

.tools__card h3 {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.tools__card p {
  font-size: 16px;
  line-height: 25px;
  letter-spacing: -0.01em;
  color: var(--soft);
}

.tools__card-icon {
  font-size: 32px;
  line-height: 1;
  color: var(--main);
}

/* ── FAQ ── */
.faq {
  padding: 0 0 160px;
}

.faq__layout {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}

.faq__sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.faq__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--black);
}

.faq__item {
  border-bottom: 1px solid var(--black);
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary:hover { color: var(--main); }

.faq__item[open] summary { color: var(--main); }

.faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.faq__item[open] .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  font-size: 16px;
  line-height: 25px;
  letter-spacing: -0.01em;
  color: var(--soft);
  padding: 0 0 28px;
  max-width: 640px;
}

/* ══════════════════════════════════════════
   WHITE LABEL — Responsive
   ══════════════════════════════════════════ */

@media (max-width: 1024px) {
  .wl-pain__cols {
    grid-template-columns: 1fr 1fr;
  }

  .wl-process__track {
    display: none;
  }

  .wl-process__cols {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .faq__sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .wl-pain,
  .wl-process,
  .wl-offer,
  .tools,
  .faq {
    padding-bottom: 88px;
  }

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

  .wl-pain__col {
    min-height: 0;
  }

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

  .wl-process__col h3 {
    font-size: 1.25rem;
  }

  .faq__item summary {
    font-size: 1rem;
    padding: 20px 0;
  }

  .faq__answer {
    padding-bottom: 20px;
  }
}

/* ══════════════════════════════════════════
   WHITE LABEL — New section styles
   ══════════════════════════════════════════ */

/* ── Process (dot timeline) ── */
.wl-process__heading {
  margin-bottom: 60px;
}

.wl-process__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
  padding: 8px 0;
}

.wl-process__track::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--black);
  transform: translateY(-50%);
}

.wl-process__dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--black);
  position: relative;
  z-index: 1;
  justify-self: start;
  align-self: center;
}

.wl-process__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.wl-process__col h3 {
  font-size: clamp(1.25rem, 1.75vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.wl-process__col p {
  font-size: 16px;
  line-height: 25px;
  letter-spacing: -0.01em;
  color: var(--soft);
}

/* ── Offer / Services ── */
.wl-offer {
  padding: 0 0 160px;
}

.wl-offer__heading {
  margin-bottom: 40px;
}

.wl-offer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.wl-offer__card-dark {
  background: var(--hero-bg);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: var(--white);
}

.wl-offer__card-dark img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  opacity: 0.4;
}

.wl-offer__card-dark-label {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--main);
  margin-bottom: 10px;
  display: block;
}

.wl-offer__card-dark-desc {
  position: relative;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
}

.wl-offer__card-dark h3 {
  position: relative;
  display: none;
}

.wl-offer__bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.wl-offer__card-light {
  background: var(--color);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wl-offer__card-light h3 {
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.wl-offer__card-light p {
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.01em;
  color: var(--soft);
  font-weight: 700;
}

/* ── Work heading (mixed color) ── */
.wl-work__heading {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

/* ── Tools (dark horizontal slider) ── */
.tools__slider-wrapper {
  overflow: hidden;
  width: 100%;
  padding-left: max(calc((100vw - var(--container-max)) / 2), 20px);
}

.tools__slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-right: max(calc((100vw - var(--container-max)) / 2), 20px);
  padding-bottom: 4px;
}

.tools__slider::-webkit-scrollbar { display: none; }

.tools__slider .tools__card {
  flex: 0 0 380px;
  background: var(--hero-bg);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 214px;
  scroll-snap-align: start;
}

.tools__slider .tools__card h3 {
  color: var(--white);
}

.tools__slider .tools__card p {
  color: rgba(255, 255, 255, 0.6);
}

.tools__card-logo {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── FAQ arrows (open/closed) ── */
.faq__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main);
}

.faq__arrow--open { display: none; }
.faq__arrow--closed { display: flex; }

.faq__item[open] .faq__arrow--open { display: flex; }
.faq__item[open] .faq__arrow--closed { display: none; }

.faq__cta {
  margin-top: 40px;
  font-weight: 700;
}

/* ── WL CTA section ── */
.wl-cta {
  padding: 120px 0 160px;
  background: var(--white);
}

.wl-cta__text {
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--black);
}

.wl-cta__text .text-muted {
  color: var(--color-2);
}

.wl-cta__btn {
  margin-top: 60px;
}

/* ══════════════════════════════════════════
   WHITE LABEL — New sections responsive
   ══════════════════════════════════════════ */

@media (max-width: 1024px) {
  .wl-offer__bottom {
    grid-template-columns: 1fr 1fr;
  }

  .wl-work__heading {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

  .tools__slider .tools__card {
    flex: 0 0 320px;
  }
}

@media (max-width: 640px) {
  .wl-cta {
    padding-bottom: 88px;
  }

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

  .wl-offer__card-dark {
    min-height: 300px;
  }

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

  .tools__slider .tools__card {
    flex: 0 0 280px;
    min-height: 200px;
    padding: 28px 20px;
  }

  .wl-cta__text {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }
}

/* ══════════════════════════════════════════
   WHITE LABEL — Custom Hero
   ══════════════════════════════════════════ */

.wl-hero {
  background: var(--hero-bg);
  position: relative;
  overflow: hidden;
  padding-top: 120px; /* room for sticky nav */
  color: var(--white);
}

.wl-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.wl-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  opacity: 0.35;
}

.wl-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 80px;
}

.wl-hero__title {
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.wl-hero__right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
}

.wl-hero__sub {
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.7);
  font-weight: 700;
  max-width: 420px;
}

.wl-hero__actions {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.wl-hero__more {
  color: rgba(255,255,255,0.8) !important;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Showcase strip */
.wl-hero__showcase {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 60px;
}

.wl-hero__showcase-track {
  display: flex;
  gap: 16px;
  padding-left: max(calc((100vw - var(--container-max)) / 2), 20px);
  padding-right: 40px;
  overflow-x: auto;
  scrollbar-width: none;
}

.wl-hero__showcase-track::-webkit-scrollbar { display: none; }

.wl-hero__card {
  flex: 0 0 340px;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: #1a1f21;
  flex-shrink: 0;
}

.wl-hero__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  transition: transform 0.4s ease;
}

.wl-hero__card:hover img {
  transform: scale(1.04);
}

.wl-hero__card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wl-hero__card-client {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--main);
  opacity: 0.9;
}

.wl-hero__card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

/* Partner logos */
.wl-hero__partners {
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wl-hero__partners-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.wl-hero__partner-logos {
  max-width: 560px;
  height: 32px;
  object-fit: contain;
  object-position: left center;
  opacity: 0.6;
  filter: brightness(0) invert(1);
}

/* Responsive */
@media (max-width: 1024px) {
  .wl-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 60px;
  }

  .wl-hero__sub { max-width: 100%; }

  .wl-hero__card { flex: 0 0 280px; height: 180px; }
}

@media (max-width: 640px) {
  .wl-hero { padding-top: 100px; }

  .wl-hero__title { font-size: clamp(2rem, 8vw, 3rem); }

  .wl-hero__card { flex: 0 0 240px; height: 160px; }

  .wl-hero__actions { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════
   FÜR UNTERNEHMEN — fu- prefix
   ══════════════════════════════════════════ */

/* ── Hebel heading ── */
.fu-hebel {
  padding-top: 0;
}

.fu-hebel__heading {
  margin-bottom: 60px;
}

/* ── Offer Grid 3-spaltig ── */
.fu-offer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── Process (vertical numbered) ── */
.fu-process {
  padding: 0 0 160px;
}

.fu-process__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}

.fu-process__intro > p {
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--soft);
  padding-top: 8px;
}

.fu-process__steps {
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--color-2);
  margin-left: 28px;
}

.fu-process__step {
  position: relative;
  padding-left: 48px;
  padding-bottom: 56px;
}

.fu-process__step--last {
  padding-bottom: 0;
}

.fu-process__step-line {
  position: absolute;
  left: -9px;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--black);
  border: 3px solid var(--white);
  outline: 2px solid var(--black);
  flex-shrink: 0;
}

.fu-process__step-content {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.fu-process__step-num {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--color-2);
  flex-shrink: 0;
  min-width: 80px;
}

.fu-process__step-content h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.fu-process__step-content p {
  font-size: 16px;
  line-height: 25px;
  letter-spacing: -0.01em;
  color: var(--soft);
}

/* ── CTA buttons row ── */
.fu-cta__buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.wl-cta__btn-outline {
  margin-top: 60px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--black);
  text-decoration: none;
  border: 1.5px solid var(--black);
  border-radius: 100px;
  padding: 14px 28px;
  transition: background 0.2s, color 0.2s;
}

.wl-cta__btn-outline:hover {
  background: var(--black);
  color: var(--white);
  opacity: 1;
}

/* ═══ FÜR UNTERNEHMEN — Responsive ═══ */
@media (max-width: 1024px) {
  .fu-offer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .fu-process__intro {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }
}

@media (max-width: 640px) {
  .fu-process,
  .fu-hebel {
    padding-bottom: 88px;
  }

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

  .fu-process__step-num {
    font-size: 2.5rem;
    min-width: 56px;
  }

  .fu-process__step-content {
    gap: 20px;
  }
}

/* ══════════════════════════════════════════
   PROJEKTE — proj- prefix
   ══════════════════════════════════════════ */

.proj-cases {
  padding: 80px 0 120px;
}

.proj-cases__header {
  margin-bottom: 60px;
}

.proj-cases__intro {
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--soft);
  max-width: 640px;
  margin-top: 20px;
}

.proj-cases__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.proj-case-card {
  display: block;
  background: var(--hero-bg);
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.2s;
}

.proj-case-card:hover {
  opacity: 0.9;
}

.proj-case-card__image {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.proj-case-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  transition: transform 0.4s;
}

.proj-case-card:hover .proj-case-card__image img {
  transform: scale(1.03);
}

.proj-case-card__arrow {
  position: absolute !important;
  top: 20px;
  right: 20px;
  width: 40px !important;
  height: 40px !important;
  filter: invert(1);
}

.proj-case-card__body {
  padding: 28px 32px 32px;
}

.proj-case-card__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.proj-case-card__sub {
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--main);
  margin-bottom: 14px;
  font-weight: 700;
}

.proj-case-card__teaser {
  font-size: 15px;
  line-height: 23px;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}

.proj-case-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.proj-case-card__tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 4px 12px;
}

.proj-logos {
  padding: 0 0 120px;
}

.proj-logos__heading {
  margin-bottom: 20px;
}

.proj-logos__intro {
  font-size: 16px;
  line-height: 25px;
  letter-spacing: -0.01em;
  color: var(--soft);
  max-width: 560px;
  margin-bottom: 48px;
}

.proj-logos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--color-2);
  border-radius: var(--radius);
  overflow: hidden;
}

.proj-logos__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--soft);
  background: var(--white);
  border-right: 1px solid var(--color-2);
  border-bottom: 1px solid var(--color-2);
  text-align: center;
  min-height: 80px;
}

.proj-logos__item:nth-child(4n) {
  border-right: none;
}

.proj-mini {
  padding: 0 0 120px;
}

.proj-mini__heading {
  margin-bottom: 48px;
}

.proj-mini__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.proj-mini__card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color);
  text-decoration: none;
  color: var(--black);
  transition: opacity 0.2s;
}

.proj-mini__card:hover {
  opacity: 0.85;
}

.proj-mini__card-image {
  height: 200px;
  overflow: hidden;
}

.proj-mini__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

.proj-mini__card-body {
  padding: 20px 20px 24px;
}

.proj-mini__card-body h3 {
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.proj-mini__card-body p {
  font-size: 13px;
  line-height: 20px;
  color: var(--soft);
  letter-spacing: -0.01em;
}

@media (max-width: 1024px) {
  .proj-logos__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .proj-mini__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .proj-cases,
  .proj-logos,
  .proj-mini {
    padding-bottom: 88px;
  }

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

  .proj-logos__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* ══════════════════════════════════════════
   KONTAKT — kont- prefix
   ══════════════════════════════════════════ */

.kont-booking {
  padding: 80px 0 120px;
  background: var(--white);
}

.kont-booking__inner {
  max-width: 780px;
  margin: 0 auto;
}

.kont-booking__calendly {
  background: var(--white);
  border: 1px solid var(--color-2);
  border-radius: 12px;
  overflow: hidden;
}

.kont-booking__calendly-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--color-2);
}

.kont-booking__cal-icon {
  width: 40px;
  height: 40px;
  background: var(--color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--black);
}

.kont-booking__type {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--black);
}

.kont-booking__duration {
  font-size: 13px;
  color: var(--soft);
  letter-spacing: -0.01em;
  font-weight: 700;
}

.kont-team {
  padding: 0 0 120px;
}

.kont-team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 780px;
  margin: 0 auto;
}

.kont-team__card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--color);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.kont-team__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.kont-team__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

.kont-team__photo-placeholder {
  width: 100%;
  height: 100%;
  background: var(--hero-bg);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.kont-team__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.kont-team__name {
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.kont-team__contact {
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--soft);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}

.kont-team__contact:hover {
  color: var(--main);
  opacity: 1;
}

.kont-steps {
  padding: 0 0 120px;
}

.kont-steps__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-2);
  max-width: 780px;
  margin: 0 auto;
}

.kont-steps__item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--color-2);
}

.kont-steps__num {
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--color-2);
  flex-shrink: 0;
  min-width: 100px;
}

.kont-steps__body h3 {
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.kont-steps__body p {
  font-size: 16px;
  line-height: 25px;
  letter-spacing: -0.01em;
  color: var(--soft);
  max-width: 520px;
}

.kont-cta {
  padding: 120px 0 160px;
  background: var(--hero-bg);
}

.kont-cta__title {
  font-size: clamp(2.25rem, 4.5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}

.kont-cta__title .text-muted {
  color: rgba(255,255,255,0.4);
}

.kont-cta__title .text-light {
  color: var(--white);
}

.kont-cta__sub {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 48px;
}

.kont-cta__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.kont-cta .btn--primary {
  background: var(--main);
  color: var(--black);
}

.kont-cta .btn--outline {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

.kont-cta .btn--outline:hover {
  background: rgba(255,255,255,0.1);
  opacity: 1;
}

@media (max-width: 1024px) {
  .kont-team__grid {
    grid-template-columns: 1fr;
  }

  .kont-booking__inner {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .kont-booking,
  .kont-team,
  .kont-steps {
    padding-bottom: 88px;
  }

  .kont-cta {
    padding-bottom: 88px;
  }

  .kont-steps__item {
    gap: 20px;
  }

  .kont-steps__num {
    font-size: 2.5rem;
    min-width: 56px;
  }

  .kont-cta__title {
    font-size: clamp(1.75rem, 8vw, 3rem);
  }
}

/* ══════════════════════════════════════════
   CASE STUDY — Figma Layout
   ══════════════════════════════════════════ */

.case-header {
  padding: 120px 0 60px;
  background: var(--white);
}

.case-header__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.case-header__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--soft);
  transition: color 0.2s;
  text-decoration: none;
}

.case-header__back:hover {
  color: var(--black);
  opacity: 1;
}

.case-header__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--main);
}

.case-header__title {
  margin-top: 8px;
  max-width: 900px;
}

.case-header__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
  border-top: 1px solid var(--color-2);
  padding-top: 32px;
}

.case-header__meta-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.case-header__meta-key {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--soft);
}

.case-header__meta-val {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--black);
}

.case-header__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.case-header__tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  border: 1px solid var(--color-2);
  border-radius: 100px;
  padding: 4px 12px;
}

.case-hero-image {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  margin-bottom: 80px;
}

.case-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  max-height: 600px;
}

.case-challenge {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.case-challenge__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--color-2);
}

.case-challenge__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.case-challenge__heading {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.case-challenge__text p {
  font-size: 16px;
  line-height: 25px;
  letter-spacing: -0.01em;
  color: var(--soft);
}

.case-challenge__image {
  border-radius: var(--radius);
  overflow: hidden;
}

.case-challenge__image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  max-width: none;
}

.case-results {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.case-results__item {
  padding: 16px 20px;
  background: var(--color);
  border-radius: var(--radius);
  font-size: 15px;
  line-height: 22px;
  letter-spacing: -0.01em;
  color: var(--black);
}

@media (max-width: 1024px) {
  .case-header__meta {
    grid-template-columns: 1fr 1fr;
  }

  .case-challenge__item {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .case-header {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .case-header__meta {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .case-hero-image {
    max-height: 280px;
    margin-bottom: 48px;
  }

  .case-challenge__image img {
    height: 220px;
  }
}

/* ══════════════════════════════════════════
   FÜR UNTERNEHMEN — HERO (fu-hero)
   ══════════════════════════════════════════ */

.fu-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

.fu-hero__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fu-hero__visual img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 110%;
  width: auto;
  max-width: 67%;
  object-fit: contain;
}

.fu-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #000 38%, rgba(0,0,0,0.55) 52%, rgba(0,0,0,0) 72%);
}

.fu-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 160px;
  padding-bottom: 100px;
}

.fu-hero__left {
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 592px;
}

.fu-hero__title {
  font-size: clamp(2.5rem, 4.2vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.fu-hero__title .line-white { color: var(--white); }
.fu-hero__title .line-soft { color: #6b6b6b; }

.fu-hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.fu-hero__sub {
  font-size: 16px;
  line-height: 25px;
  letter-spacing: -0.01em;
  color: var(--white);
  font-weight: 700;
  max-width: 427px;
}

.fu-hero__proof {
  display: flex;
  align-items: center;
  gap: 16px;
}

.fu-hero__avatars { display: flex; }

.fu-hero__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #111313;
  margin-right: -9px;
}

.fu-hero__avatar:last-child { margin-right: 0; }

.fu-hero__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fu-hero__proof-text {
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  color: #cecece;
}

/* Projekte-Hero: Kunden-Logo-Strip am unteren Rand */
.proj-hero__logos {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 48px;
  display: flex;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
}

.proj-hero__logos img {
  width: min(64%, 760px);
  height: auto;
  opacity: 0.85;
  mix-blend-mode: screen;
}

@media (max-width: 1024px) {
  .fu-hero__visual img { max-width: 55%; opacity: 0.55; }
  .fu-hero__overlay { background: linear-gradient(90deg, #000 48%, rgba(0,0,0,0.3) 100%); }
  .proj-hero__logos img { width: 86%; }
}

@media (max-width: 640px) {
  .fu-hero__inner { padding-top: 120px; }
  .fu-hero__visual img { display: none; }
  .fu-hero__title { font-size: 2.25rem; }
  .proj-hero__logos { bottom: 24px; }
}

/* ══════════════════════════════════════════
   FÜR UNTERNEHMEN — DREI HEBEL (cards)
   ══════════════════════════════════════════ */

.fu-hebel__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.fu-hebel__card {
  background: var(--color);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fu-hebel__eyebrow {
  font-size: 16px;
  line-height: 25px;
  letter-spacing: -0.01em;
  color: var(--main);
  font-weight: 700;
}

.fu-hebel__card h3 {
  font-size: 24px;
  line-height: 33.8px;
  letter-spacing: -0.02em;
  color: var(--black);
  font-weight: 700;
}

.fu-hebel__card > p {
  font-size: 16px;
  line-height: 25px;
  letter-spacing: -0.01em;
  color: var(--black);
  flex-grow: 1;
}

.fu-hebel__link {
  align-self: flex-start;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--black);
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--black);
  transition: color 0.2s, border-color 0.2s;
}

.fu-hebel__link:hover { color: var(--main); border-color: var(--main); }

@media (max-width: 900px) {
  .fu-hebel__cols { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   FÜR UNTERNEHMEN — BENTO (Was wir machen)
   ══════════════════════════════════════════ */

.fu-bento { padding: 0 0 120px; }
.fu-bento__heading { margin-bottom: 40px; }

.fu-bento__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 404px 404px;
  gap: 20px;
}

.fu-bento__a { grid-column: 1 / 3; grid-row: 1; }
.fu-bento__b { grid-column: 3 / 4; grid-row: 1; }
.fu-bento__c { grid-column: 4 / 5; grid-row: 1; }
.fu-bento__d { grid-column: 1 / 2; grid-row: 2; }
.fu-bento__e { grid-column: 2 / 3; grid-row: 2; }
.fu-bento__f { grid-column: 3 / 5; grid-row: 2; }

.fu-bento__card {
  background: #21272b;
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  position: relative;
}

.fu-bento__card h3 {
  font-size: 24px;
  line-height: 33.8px;
  letter-spacing: -0.02em;
  color: var(--color);
  font-weight: 700;
}

.fu-bento__card > p {
  font-size: 16px;
  line-height: 25px;
  letter-spacing: -0.01em;
  color: var(--color-2);
}

.fu-bento__card--photo { padding: 0; }

.fu-bento__card--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fu-bento__card--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(206deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.9) 87%);
}

.fu-bento__photo-body {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fu-bento__photo-body h3 { color: var(--color); }

.fu-bento__photo-body p {
  color: var(--color);
  font-size: 16px;
  line-height: 25px;
  letter-spacing: -0.01em;
}

@media (max-width: 900px) {
  .fu-bento__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .fu-bento__a, .fu-bento__b, .fu-bento__c,
  .fu-bento__d, .fu-bento__e, .fu-bento__f {
    grid-column: auto;
    grid-row: auto;
    min-height: 300px;
  }
  .fu-bento__a, .fu-bento__f { grid-column: 1 / 3; }
}

@media (max-width: 560px) {
  .fu-bento__grid { grid-template-columns: 1fr; }
  .fu-bento__a, .fu-bento__f { grid-column: auto; }
}

/* ══════════════════════════════════════════
   KONTAKT — HERO (kont-hero)
   ══════════════════════════════════════════ */

.kont-hero {
  position: relative;
  min-height: 70vh;
  background: var(--hero-bg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.kont-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.kont-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.5;
}

.kont-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 180px;
  padding-bottom: 80px;
  max-width: 700px;
}

.kont-hero__title {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}

.kont-hero__title .line-white { color: var(--white); }
.kont-hero__title .line-soft { color: var(--main); }

.kont-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.kont-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
}

@media (max-width: 640px) {
  .kont-hero__inner { padding-top: 120px; }
  .kont-hero__title { font-size: 2.5rem; }
}

/* ══════════════════════════════════════════
   KONTAKT — TEAM ROLE LABEL
   ══════════════════════════════════════════ */

.kont-team__role {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 4px;
}

.kont-team__photo-alex {
  object-position: center 20%;
}

/* ══════════════════════════════════════════
   CASE — CHALLENGE NUMBERED LABEL
   ══════════════════════════════════════════ */

.case-challenge__num {
  display: block;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--main);
  line-height: 1;
  margin-bottom: 8px;
}
}

/* Final cascade: Figma desktop parity overrides loaded after all responsive blocks. */
@media (min-width: 1025px) {
  .stats__divider { background: var(--color-2) !important; }
  .work__nav { display: none !important; }
  .work__slider-wrapper { width: min(var(--container-max), 100%) !important; margin: 0 auto !important; overflow: hidden !important; }
  .work__slider { width: 1172px !important; max-width: 100% !important; padding: 0 !important; overflow: visible !important; scroll-snap-type: none !important; cursor: default !important; }
  .work__card--faded { opacity: .3 !important; }
  .work__card-arrow, .targets__card-arrow { width: 87px !important; max-width: 87px !important; top: 11px !important; right: 14px !important; }
  .testimonials__grid { columns: initial !important; column-gap: 0 !important; display: grid !important; grid-template-columns: 395px 397px 375px !important; grid-template-rows: 294px 92px 294px !important; gap: 20px 10px !important; height: 722px !important; overflow: hidden !important; }
  .testimonials__card { margin: 0 !important; min-height: 0 !important; height: 100% !important; justify-content: space-between !important; }
  .testimonials__card:nth-child(1) { grid-column: 1 !important; grid-row: 1 / span 2 !important; }
  .testimonials__card:nth-child(2) { grid-column: 2 !important; grid-row: 1 !important; }
  .testimonials__card:nth-child(3) { grid-column: 3 !important; grid-row: 1 / span 2 !important; }
  .testimonials__card:nth-child(4) { grid-column: 1 !important; grid-row: 3 !important; }
  .testimonials__card:nth-child(5) { grid-column: 2 !important; grid-row: 2 / span 2 !important; }
  .testimonials__card:nth-child(6) { grid-column: 3 !important; grid-row: 3 !important; }
  .testimonials__stats { margin-top: 40px !important; }
  .cta { min-height: 837px !important; padding: 0 !important; }
  .cta__inner { min-height: 837px !important; justify-content: center !important; }
  .cta__title { max-width: 1177px !important; }
}

@media (min-width: 1025px) {
  .testimonials__heading h2 { font-size: 48px !important; line-height: 48px !important; letter-spacing: -0.02em !important; }
  .testimonials__heading h2::before, .testimonials__heading h2 .text-muted::before { content: none !important; }
  .testimonials__heading h2 .text-muted { color: var(--color-2) !important; display: inline !important; font-size: inherit !important; line-height: inherit !important; }
}
