/* ============================================================
   POLARIS MEDIA – KI-Avatar | PDF-zu-Website 1:1
   ============================================================ */

/* ---------- Custom Properties ---------- */
:root {
  --blue:        #0071E3;
  --blue-dark:   #045EAC;
  --blue-mid:    #1d4ed8;
  --orange:      #EC660C;
  --dark:        #242424;
  --body:        #242424;
  --muted:       #6b7280;
  --light-muted: #94a3b8;
  --white:       #ffffff;
  --off-white:   #f8fafc;
  --bg-row:      #f9fafb;
  --border:      #e5e7eb;
  --shadow-sm:   0 1px 4px rgba(0,0,0,.07);
  --shadow-md:   0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.14);
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --px:    clamp(2.5rem, 5vw, 5rem);
  --py:    clamp(2.5rem, 4vw, 4rem);
  --transition: 180ms ease;
}

@font-face {
  font-family: 'Source Sans 3';
  src: url('assets/Source_Sans_3/SourceSans3-VariableFont_wght.ttf') format('truetype');
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   SAFE TYPOGRAPHY PATCH
   Diese Datei NICHT als Ersatz verwenden.
   Nur ganz unten an die bestehende CSS anhängen.
   ============================================================ */

/* Basis */
body {
  font-size: 18px;
}

/* H2 / große Section-Headlines */
.case-study__h2,
.value-prop__h2,
.benefits__heading,
.process__heading,
.phases__heading,
.operative__heading,
.use-cases__heading,
.contact__h2 {
  font-size: clamp(42px, 4.2vw, 71px);
}

/* H3 / Card-Titel */
.pc__title,
.ph-card__title,
.op-card__title {
  font-size: clamp(1.65rem, 2vw, 2.45rem);
}

.pc__img picture {
  display: block;
  width: 100%;
  height: 100%;
}

.pc__img picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Achtung:
   .insight-card__title und .lp-card__heading sind absichtlich NICHT enthalten,
   weil diese Bereiche in deinem Layout bewusst größer/anders gestaltet sind. */


/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 70px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

img { display: block; max-width: 100%; height: auto; }
ul  { list-style: none; }
a   { color: var(--blue); text-decoration: none; }

h1,
h2,
h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 500;
}

/* ---------- Shared slide structure ---------- */
.slide {
  position: relative;
  width: 100%;
  padding: var(--py) var(--px);
  overflow: hidden;
}
.slide--white  { background: var(--white); }
.slide--light  { background: var(--off-white); }
.slide--blue   { background: var(--blue-dark); }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 100;

  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(36, 36, 36, 0.08);

  transition:
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.header.scrolled {
  box-shadow: 0 8px 30px rgba(10, 25, 45, 0.08);
}

/* ============================================================
   NAV LAYOUT
   ============================================================ */

.nav {
  position: relative;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  min-height: 88px;
  width: 100%;
  padding: 0 clamp(2rem, 3vw, 4rem);
}

/* ============================================================
   SOCIAL LINKS LINKS
   ============================================================ */

.nav__social {
  grid-column: 1;
  justify-self: start;

  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2vw, 2rem);
}

.nav__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 36px;
  height: 36px;

  color: var(--dark);
  text-decoration: none;
}

.nav__social img,
.nav__social svg {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav__social a:hover {
  opacity: 0.7;
}

/* ============================================================
   NAV LINKS MITTIG
   ============================================================ */

.nav__links {
  grid-column: 2;
  justify-self: center;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 3vw, 4rem);

  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__link {
  position: relative;

  display: inline-flex;
  align-items: center;

  padding: 0.25rem 0;

  font-size: clamp(1rem, 1vw, 1.15rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--dark);
  text-decoration: none;

  transition: color 0.2s ease;
}

.nav__link:hover,
.nav__link.active,
.nav__link--active {
  color: var(--blue);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;

  width: 0;
  height: 2px;

  background: var(--blue);
  transition: width 0.2s ease;
}

.nav__link:hover::after,
.nav__link.active::after,
.nav__link--active::after {
  width: 100%;
}

/* Kein Button-Look mehr */
.nav__link--cta {
  background: none;
  color: var(--dark);
  padding: 0.25rem 0;
  border-radius: 0;
  font-weight: 400;
}

.nav__link--cta:hover {
  background: none;
  color: var(--blue);
}

/* ============================================================
   LOGO RECHTS
   ============================================================ */

.nav__logo {
  grid-column: 3;
  justify-self: end;

  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.nav__logo img {
  display: block;
  width: 200px;
  height: auto;
}

/* ============================================================
   BURGER
   ============================================================ */

.nav__burger {
  display: none;

  grid-column: 3;
  justify-self: end;

  width: 42px;
  height: 42px;

  flex-direction: column;
  justify-content: center;
  gap: 5px;

  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger__line {
  display: block;
  width: 100%;
  height: 2px;

  background: var(--dark);
  border-radius: 2px;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

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

.nav__burger.is-open .burger__line:nth-child(2) {
  opacity: 0;
}

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

/* ============================================================
   RESPONSIVE – HEADER
   ============================================================ */


/* ============================================================
   PAGE 1 – HERO
   ============================================================ */
.hero {
  background: var(--white);
  padding: clamp(2rem, 4vw, 3.5rem) var(--px) 0;
  overflow: hidden;
}
.hero__top {
  margin-bottom: 0;
}
.hero__text { max-width: 100%; }
.hero__heading {
  font-size: clamp(42px, 4.2vw, 71px);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.12;
  margin-bottom: .3rem;
}
.hero__heading-blue {
  color: var(--blue);
  display: block;
}
.hero__sub {
  color: var(--body);
  font-weight: 500;
  margin-top: .9rem;
}

/* Hero image stage */
.hero__stage {
  position: relative;
  width: 100%;
}
.hero__main-img {
  width: 100%;
  aspect-ratio: 16/7.5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  background: var(--bg-row);
  display: block;
}


/* Volksbank badge inside image */
.hero__vb-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
  padding: .65rem 1rem;
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.hero__vb-badge__label {
  font-size: 9px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: .02em;
}
.hero__vb-badge__logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--dark);
}

/* Hero actions */
.hero__actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.6rem;
  border-radius: 99px;
  font-size: .9375rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
.btn--primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn--primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,.35); }
.btn--outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn--outline:hover { background: #dbeafe; }
.btn--large { padding: .9rem 2rem; font-size: 1rem; }
.btn__icon { width: 16px; height: 16px; flex-shrink: 0; }

/* ============================================================
   PAGE 2 – CASE STUDY
   ============================================================ */
.case-study {
  position: relative;
  display: grid;
  grid-template-columns: 44% 56%;
  min-height: 820px;
  overflow: hidden;
  background: #fff;
  padding: 5% 0;
}

/* Linkes Foto */
.case-study__photo {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-top-right-radius: 24px;
}

.case-study__photo img {
  width: 100%;
  height: 100%;
  min-height: 820px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Rechter Inhaltsbereich */
.case-study__content {
  position: relative;
  padding: 92px 150px 90px 120px;
  z-index: 2;
}

.case-study__vb-logo {
  margin-bottom: 62px;
}

.case-study__vb-logo img {
  width: 150px;
  height: auto;
  display: block;
}

/* Headline */
.case-study__h2 {
  padding: 0 0 8% 0;
  font-size: clamp(42px, 4.2vw, 71px);
  line-height: 1.05;
  font-weight: 600;
  color: #045EAC;
  letter-spacing: -0.03em;
}

.case-study__h2 span {
  display: block;
  color: #ec6608;
}

/* Textblock */
.case-study__text {
  max-width: 690px;
  margin-left: 145px;
}

.case-study__text p {
  margin: 0 0 34px;
  font-size: 18px;
  font-size: 18px;
  line-height: 1.9;
  color: #222;
}

/* Kamera */
.case-study__camera {
  position: absolute;
  z-index: 4;

  width: clamp(220px, 20vw, 360px);
  height: auto;

  left: 40%;
  bottom: 0px;

  transform: translateX(-28%);
  pointer-events: none;
  user-select: none;
}

/* ============================================================
   PAGE 3 – VALUE PROP
   ============================================================ */

.value-prop {
  position: relative;
  display: grid;
  grid-template-columns: 48% 1fr;
  min-height: 600px;
  background: var(--white);
  overflow: hidden;
  padding: 5% 0;
}

.value-prop__content {
  position: relative;
  z-index: 2;
  padding: 5% 10% 5% 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.value-prop__h2 {
  padding: 0 0 8% 0;
  font-size: clamp(42px, 4.2vw, 71px);
  line-height: 1.05;
  font-weight: 600;
  color: var(--body);
  letter-spacing: -0.03em;
}

.value-prop__h2 span {
  color: var(--blue);
  display: block;
}

.value-prop__content p strong {
  color: var(--dark);
  font-weight: 700;
}

.value-prop__photo {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top-left-radius: 24px;
}

.value-prop__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: #c8d3e8;
}

/* Kamera */
.value-prop__camera {
  position: absolute;
  z-index: 4;

  width: clamp(210px, 18vw, 330px);
  height: auto;

  left: 43%;
  bottom: 30px;

  transform: translateX(-8%);
  pointer-events: none;
  user-select: none;
}

/* ============================================================
   PAGE 4 – BENEFITS
   ============================================================ */

.benefits {
  position: relative;
  min-height: 100vh;
  padding: clamp(4rem, 6vw, 7rem) var(--px) clamp(3rem, 5vw, 5rem);
  background-color: var(--white);

  /* Dateiname prüfen */
  background-image: url('assets/background-benefits.webp');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;

  overflow: hidden;
}

.benefits__heading {
  position: relative;
  z-index: 2;
  font-size: clamp(42px, 4.2vw, 71px);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0 0 clamp(3rem, 5vw, 4.8rem);
}

/* Tabelle bündig zur Überschrift */
.benefits__table {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.72rem;

  width: 100%;
  max-width: none;
  margin: 0;
}

.benefits__row {
  display: grid;
  grid-template-columns: 88px minmax(270px, 420px) 1fr;
  align-items: center;
  gap: 0 1.75rem;

  min-height: 76px;
  padding: 0.9rem 2rem 0.9rem 1.5rem;

  border: 0;
  border-radius: 16px;
  background: rgba(22, 56, 140, 0.04);

  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.benefits__row:hover {
  background: rgba(22, 56, 140, 0.07);
  transform: translateY(-1px);
}

.benefits__icon-cell {
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits__icon-wrap {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits__icon-wrap svg {
  width: 34px;
  height: 34px;
}

.benefits__icon-wrap svg * {
  stroke: var(--blue);
}

.benefits__title-cell {
  font-weight: 600;
  color: var(--dark);
  line-height: 1.35;
}

.benefits__desc-cell {
  color: var(--body);
  line-height: 1.55;
  max-width: 92ch;
}

/* ============================================================
   PROCESS – ABLAUF
   ============================================================ */

.process-wrapper {
  --process-head-space: clamp(15rem, 18vw, 19rem);

  position: relative;
  background: var(--white);
  overflow: visible;
	padding: 0;
}

.process-wrapper,
.process,
.process.slide,
.process.slide--light {
  overflow: visible;
  transform: none;

}

/* ---------- Process headline ---------- */

.process-floating-head {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  z-index: 40;
  padding: clamp(1.5rem, 3vw, 3rem) var(--px) clamp(1.5rem, 2.5vw, 3rem);

  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 1) 82%,
      rgba(255, 255, 255, 0.92) 92%,
      rgba(255, 255, 255, 0) 100%
    );
}

.process-floating-head.is-fixed {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
}

.process-floating-head.is-bottom {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
}

.process__heading {
  position: relative;
  z-index: 2;

  padding: 0 0 4% 0;
  font-size: clamp(42px, 4.2vw, 71px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--dark);
}

.process__heading span {
  display: block;
  color: var(--blue);
}

/* ---------- Process sections ---------- */

.process {
  position: relative;
  min-height: auto;
  background: var(--white);
	padding: 2% 5%;
}



/* ---------- Process grid ---------- */

.process__grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 3% 3%;

  width: 100%;
}

.process__grid--single {
  grid-template-columns: 1fr;
  padding-bottom: clamp(2rem, 3vw, 3rem);
}
/* ---------- Process cards ---------- */

.pc {
  display: grid;
  grid-template-columns: 72% 28%;
  min-height: clamp(380px, 35vw, 500px);

  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(22, 56, 140, 0.14);
  border-radius: 18px;
  box-shadow: none;

  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.pc:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(10, 25, 45, 0.08);
}

.pc__body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(2rem, 2.7vw, 3rem);
}

.pc__num {
  display: block;
  margin-bottom: clamp(1.8rem, 2.8vw, 2.8rem);

  font-size: clamp(0.8rem, 0.75vw, 1rem);
  font-weight: 700;
  line-height: 1;
  color: var(--blue);
}

.pc__title {
  margin: 0 0 clamp(1rem, 1.4vw, 1.45rem);

  font-size: clamp(1.65rem, 2vw, 2.45rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--dark);
}

.pc__desc {
  max-width: 46ch;
  margin: 0 0 clamp(1rem, 1.3vw, 1.4rem);

  line-height: 1.55;
  color: var(--body);
}

.pc__sub {
  max-width: 42ch;
  margin: 0 0 0.65rem;

  font-weight: 600;
  line-height: 1.45;
  color: var(--dark);
}

.pc__list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pc__list li {
  position: relative;
  padding-left: 0.85rem;

  line-height: 1.45;
  color: var(--body);
}

.pc__list li::before {
  content: "•";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--dark);
}

.pc__img {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.pc__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ---------- Process wide card ---------- */

.pc--wide {
  grid-template-columns: 53% 47%;
  min-height: clamp(380px, 34vw, 520px);
  max-width: none;

  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.pc--wide .pc__body {
  padding: clamp(2.6rem, 4vw, 4.5rem);
}

.pc--wide .pc__num {
  color: rgba(255, 255, 255, 0.75);
}

.pc--wide .pc__title,
.pc--wide .pc__sub {
  color: var(--white);
}

.pc--wide .pc__desc,
.pc--wide .pc__list li {
  color: rgba(255, 255, 255, 0.9);
}

.pc--wide .pc__list li::before {
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- Process progress bar ---------- */

.process-progress {
  position: sticky;
  bottom: 0;
  left: 0;
  z-index: 100;

  width: 100%;
  height: 12px;
  margin-top: -12px;

  pointer-events: none;
}

.process-progress__track {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(
      to right,
      #e8ebef 0,
      #e8ebef calc((100% / 7) - 2px),
      transparent calc((100% / 7) - 2px),
      transparent calc(100% / 7)
    );
}

.process-progress__fill {
  position: absolute;
  inset: 0 auto 0 0;

  width: 0%;
  height: 100%;

  background:
    repeating-linear-gradient(
      to right,
      var(--blue) 0,
      var(--blue) calc((100vw / 7) - 2px),
      transparent calc((100vw / 7) - 2px),
      transparent calc(100vw / 7)
    );

  transition: width 0.25s ease;
}

/* ============================================================
   PAGE 9 – PROJEKTPHASEN
   ============================================================ */

.phases {
  position: relative;
  background: var(--white);
  padding: 5%;

  overflow: hidden;
}

.phases__heading {
  font-size: clamp(42px, 4.2vw, 71px);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.05;
  letter-spacing: -0.04em;
  padding: 0 0 4% 0;
}

.phases__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2vw, 2rem);
  align-items: stretch;
  width: 100%;
}

/* ============================================================
   PHASE CARD
   ============================================================ */

.ph-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: clamp(620px, 62vh, 780px);

  background: var(--white);
  border: 1px solid rgba(22, 56, 140, 0.14);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: none;
}

.ph-card__body {
  position: relative;
  z-index: 2;
  padding: clamp(2.2rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.6rem, 2vw, 2.2rem);
}

.ph-card__num {
  display: block;
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--orange);
  line-height: 1;
}

.ph-card__title {
  font-size: clamp(1.65rem, 2vw, 2.45rem);
  font-weight: 600;
  color: var(--blue-dark);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0;
}

/* ============================================================
   CHECK LIST
   ============================================================ */

.ph-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1vw, 1rem);
  margin: 0;
  padding: 0;
}

.ph-card__list li {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  align-items: center;
  gap: 1rem;

  min-height: clamp(4.2rem, 5vw, 5.2rem);
  padding: 1rem 1.25rem;


  line-height: 1.45;
  color: var(--body);

  background: rgba(22, 56, 140, 0.035);
  border-radius: 18px;
}

.ph-card__list li span {
  display: block;
}

.ph-card__list .check-ico {
  width: 1.4rem;
  height: 1.4rem;
  color: var(--orange);
}

/* ============================================================
   IMAGE AREA
   ============================================================ */

.ph-card__img {
  position: relative;
  margin-top: auto;
  height: clamp(260px, 24vw, 360px);
  overflow: hidden;
}

.ph-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}

/* dezenter Verlauf, damit Bild weicher in die Karte läuft */
.ph-card__img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

}

/* ============================================================
   RESPONSIVE
   ============================================================ */


/* ============================================================
   PAGE 10 – ERFOLGSFAKTOREN / LEARNINGS
   ============================================================ */

.insights {
  position: relative;
  min-height: 100vh;
  padding: 0 5% 10%;
  background: var(--white);
  overflow: hidden;
}

/* Grid */
.insights__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 2vw, 2rem);
  width: 100%;
}

/* ============================================================
   INSIGHT CARD
   ============================================================ */

.insight-card {
  position: relative;
  padding: 8% 8% 30%;
  border-radius: 18px;
  color: var(--white);
  overflow: hidden;
}

.insight-card--blue {
  background: #0f67ad;
}

.insight-card--orange {
  background: #f25a05;
}

.insight-card__title {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--white);
  margin: 0 0 clamp(2.2rem, 3vw, 3rem);
}

/* ============================================================
   LISTE
   ============================================================ */

.insight-card__list {
  position: relative;
  z-index: 2;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(0.8rem, 1.1vw, 1.1rem);
  margin: 0;
  padding: 0;
}

.insight-card__list li {
  display: grid;
  grid-template-columns: 1.4rem 1fr;
  align-items: center;
  gap: 1.25rem;

  min-height: clamp(4rem, 4.8vw, 5rem);
  padding: 1rem 1.6rem;

  font-size: clamp(1rem, 1.05vw, 1.2rem);
  line-height: 1.45;
  color: var(--white);

  border-radius: 18px;
}

.insight-card--blue .insight-card__list li {
  background: rgba(0, 76, 145, 0.24);
}

.insight-card--orange .insight-card__list li {
  background: rgba(194, 64, 0, 0.22);
}

.insight-card__star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1;
}

/* ============================================================
   DEKORATIVE BILDER
   ============================================================ */

.insights__deco {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  user-select: none;
  display: block;
}

/* Scribble links unten */
.insights__deco--scribble {
  left: clamp(-5rem, -4vw, -2rem);
  bottom: clamp(-4rem, -5vw, -2rem);
  width: clamp(280px, 30vw, 520px);
  opacity: 0.9;
  transform: rotate(-6deg);
}

/* Großes einzelnes Play-Element mittig unten */
.insights__deco--single {
  left: 40%;
  bottom: clamp(-6rem, -7vw, -3rem);
  width: clamp(300px, 28vw, 520px);
  transform: translateX(-50%) rotate(-14deg);
}

/* Play-Stapel rechts unten */
.insights__deco--stack {
  right: clamp(-3rem, -3vw, -1rem);
  bottom: clamp(-5rem, -6vw, -2.5rem);
  width: clamp(420px, 40vw, 760px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */


/* ============================================================
   PAGE 11 – OPERATIVE UMSETZUNG
   ============================================================ */

.operative {
  position: relative;
  min-height: 100vh;
  padding: 5%;
  background: var(--white);
  overflow: hidden;
}

.operative__heading {
  margin: 0 0 0.75rem;

  font-size: clamp(42px, 4.2vw, 71px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--dark);
}

.operative__heading span {
  display: block;
  color: var(--blue);
}

.operative__sub {
  max-width: 90ch;
  margin: 0 0 clamp(3rem, 5vw, 5rem);

  font-size: clamp(1rem, 1.05vw, 1.25rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--body);
}

/* ============================================================
   FLOW GRID
   ============================================================ */

.op-flow {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.2vw, 1.25rem);

  width: 100%;
  padding-bottom: 5rem;
}

/* gestrichelte Linie unten */
.op-flow::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 1.45rem;

  height: 2px;

  background:
    repeating-linear-gradient(
      to right,
      var(--blue) 0,
      var(--blue) 12px,
      transparent 12px,
      transparent 24px
    );
}

/* kleine senkrechte Marker */
.op-flow::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 1.45rem;

  height: 2.8rem;

  background:
    linear-gradient(var(--blue), var(--blue)) 0 0 / 2px 100% no-repeat,
    linear-gradient(var(--blue), var(--blue)) 50% 0 / 2px 100% no-repeat,
    linear-gradient(var(--blue), var(--blue)) 100% 0 / 2px 100% no-repeat;

  pointer-events: none;
}

/* ============================================================
   OP CARD
   ============================================================ */

.op-card {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;

  min-height: clamp(560px, 58vh, 700px);
  padding: clamp(1.8rem, 2.2vw, 2.5rem);

  background: var(--white);
  border: 1px solid rgba(22, 56, 140, 0.14);
  border-radius: 18px;
  box-shadow: none;
  overflow: hidden;
}

.op-card__num {
  display: block;
  margin-bottom: clamp(1.5rem, 2vw, 2.2rem);

  font-size: clamp(1rem, 1vw, 1.15rem);
  font-weight: 700;
  line-height: 1;
  color: var(--blue);
}

.op-card__title {
  margin: 0 0 clamp(1.6rem, 2.3vw, 2.5rem);

  font-size: clamp(1.55rem, 1.8vw, 2.15rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--dark);
}

.op-card__body {
  margin-top: auto;

  font-size: clamp(1rem, 1.05vw, 1.2rem);
  line-height: 1.55;
  color: var(--body);
}

/* ============================================================
   IMAGE / MEDIA AREA
   ============================================================ */

.op-card__media {
  width: 100%;
  margin-bottom: clamp(2rem, 3vw, 3rem);
}

.op-card__media img {
  display: block;
  width: 100%;
  height: auto;
}

/* Einzelne Größen je Asset */
.op-card__media--table {
  max-width: 100%;
}

.op-card__media--personalization {
  max-width: 100%;
}

.op-card__media--composition {
  max-width: 100%;
}

.op-card__media--quality {
  max-width: 100%;
  padding-top: 0.5rem;
}

.op-card__media--delivery {
  max-width: 100%;
  padding-top: 0.5rem;
}

/* ============================================================
   CTA BADGE
   ============================================================ */

.op-cta {
  position: relative;
  z-index: 4;

  display: flex;
  justify-content: center;

  margin-top: -3.35rem;
  pointer-events: none;
}

.op-cta__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 3rem;
  padding: 0.65rem 1.75rem;

  background: var(--blue);
  color: var(--white);
  border-radius: 6px;

  font-size: clamp(0.95rem, 1vw, 1.15rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

/* ============================================================
   RESPONSIVE – OPERATIVE
   ============================================================ */


/* ============================================================
   PAGE 12 – LANDING PAGE EXAMPLE
   ============================================================ */

.lp-slide {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(3rem, 5vw, 5rem) var(--px);
  background: var(--white);
  overflow: hidden;
}

.lp-slide__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lp-slide__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.18);
}

.lp-slide__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.lp-slide__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
}

.lp-card {
  width: min(100%, 640px);
  margin-left: 0; /* wichtig: kein zusätzlicher Versatz */
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  padding: clamp(2rem, 3vw, 3rem);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(2px);
}

.lp-card__heading {
  margin: 0;
  font-size: clamp(3rem, 4.2vw, 4.9rem);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.04em;
  color: var(--dark);
}

.lp-card__heading-blue {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  color: var(--blue);
}

.lp-check-badge {
  width: clamp(2.2rem, 2.5vw, 3rem);
  height: clamp(2.2rem, 2.5vw, 3rem);
  flex-shrink: 0;
  color: var(--blue);
}

.lp-card__tagline {
  margin: 0.25rem 0 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--dark);
}

.lp-card__text {
  margin: 0;
  max-width: 38ch;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--body);
}

/* ============================================================
   FIELDS
   ============================================================ */

.lp-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.lp-field label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}

.lp-field__row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 3.25rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(36, 36, 36, 0.16);
  font-size: 0.98rem;
  line-height: 1.4;
}

.lp-field__row svg {
  flex-shrink: 0;
  width: 1.05rem;
  height: 1.05rem;
}

.lp-field__row span {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.lp-field__row--link {
  color: var(--blue);
  font-weight: 600;
}

.lp-field__row--pw {
  color: var(--dark);
  font-weight: 600;
}

.lp-card__btn {
  align-self: flex-start;
  margin-top: 1.6rem;
  border-radius: 999px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */


/* ============================================================
   PAGE 13 – USE CASES
   ============================================================ */

.use-cases {
  position: relative;
  min-height: 100vh;
  padding: 5%;
  background: var(--white);
  overflow: hidden;
}

/* ============================================================
   HEADING
   ============================================================ */

.use-cases__heading {
  padding: 0 0 4% 0;

  font-size: clamp(42px, 4.2vw, 71px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--dark);
}

.use-cases__heading span {
  display: block;
  color: var(--blue);
}

/* ============================================================
   LISTE
   ============================================================ */

.uc-list {
  display: flex;
  flex-direction: column;
  gap: clamp(1.35rem, 1.8vw, 1.8rem);

  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ============================================================
   ROW
   ============================================================ */

.uc-row {
  position: relative;

  display: grid;
  grid-template-columns: minmax(240px, 30%) minmax(360px, 1fr) minmax(420px, 38%);
  align-items: center;
  gap: clamp(2rem, 4vw, 5rem);

  min-height: clamp(115px, 8vw, 145px);
  padding: clamp(1.2rem, 1.6vw, 1.6rem) clamp(1.8rem, 2.5vw, 2.5rem);

  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(36, 36, 36, 0.12);
  border-radius: 18px;

  transition:
    box-shadow var(--transition),
    transform var(--transition),
    border-color var(--transition);
}

.uc-row:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 113, 227, 0.22);
  box-shadow: 0 16px 36px rgba(10, 25, 45, 0.08);
}

/* dezenter Verlauf in Richtung Bild */
.uc-row::after {
  content: "";
  position: absolute;
  top: 0;
  right: 26%;
  bottom: 0;
  z-index: 1;

  width: 28%;
  pointer-events: none;

  background:
    linear-gradient(
      to right,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.94) 35%,
      rgba(255, 255, 255, 0) 100%
    );
}

.uc-row__category,
.uc-row__desc {
  position: relative;
  z-index: 2;
}

.uc-row__category {
  font-size: clamp(1.45rem, 1.7vw, 2rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--dark);
}

.uc-row__desc {
  max-width: 62ch;

  font-size: clamp(1rem, 1.05vw, 1.18rem);
  line-height: 1.45;
  color: var(--body);
}

/* ============================================================
   IMAGE
   ============================================================ */

.uc-row__img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;

  z-index: 0;
  width: 43%;

  overflow: hidden;
  pointer-events: none;
}

.uc-row__img img {
  display: block;
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

/* ============================================================
   RESPONSIVE – USE CASES
   ============================================================ */


/* ============================================================
   PAGE 14 – CONTACT
   ============================================================ */

.contact {
  position: relative;

  display: grid;
  grid-template-columns: 44% 56%;
  align-items: stretch;


  padding: 0 0 80px;
  background: var(--white);
  overflow: hidden;
}

/* ============================================================
   LEFT IMAGE
   ============================================================ */

.contact__gallery {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  border-top-right-radius: 28px;
}

.contact__gallery img {
  display: block;
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

/* ============================================================
   RIGHT CONTENT
   ============================================================ */

.contact__info {
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: clamp(4rem, 7vw, 8rem) clamp(4rem, 8vw, 9rem);
  background: var(--white);
}

.contact__h2 {
  padding: 0 0 8% 0;

  font-size: clamp(42px, 4.2vw, 71px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--dark);
}

.contact__lead {
  max-width: 78ch;
  margin: 0 0 clamp(4rem, 5vw, 5.5rem);

  font-size: clamp(1rem, 1.05vw, 1.18rem);
  line-height: 1.85;
  color: var(--body);
}

/* ============================================================
   PERSONS
   ============================================================ */

.contact__persons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 5rem);

  padding: 0 0 clamp(1.8rem, 2.5vw, 2.5rem);
  border-bottom: 1px solid rgba(36, 36, 36, 0.12);
}

.contact__person {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact__person img {
  flex-shrink: 0;

  width: 44px;
  height: 44px;

  object-fit: cover;
  border-radius: 50%;
  background: #d8d8d8;
}

.contact__person strong {
  display: block;

  font-size: clamp(1rem, 1vw, 1.15rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}

.contact__person span {
  display: block;

  font-size: clamp(0.9rem, 0.95vw, 1.05rem);
  line-height: 1.35;
  color: var(--body);
}

/* ============================================================
   DETAILS
   ============================================================ */

.contact__details {
  display: flex;
  flex-direction: column;
}

.contact__row {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 1.5rem;

  padding: clamp(1.8rem, 2.5vw, 2.5rem) 0;
  border-bottom: 1px solid rgba(36, 36, 36, 0.12);
}

.contact__row--two-cols {
  grid-template-columns: 24px 1fr 1fr;
  column-gap: clamp(1.5rem, 3vw, 4rem);
}

.contact__icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;

  padding-top: 0.15rem;
  color: var(--dark);
}

.contact__icon svg {
  width: 18px;
  height: 18px;
}

.contact__col {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact__col a {
  display: block;

  font-size: clamp(0.95rem, 1vw, 1.08rem);
  line-height: 1.4;
  color: var(--body);
}

.contact__col a:hover {
  color: var(--blue);
}

/* ============================================================
   HOURS
   ============================================================ */

.contact__hours {
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
}

.contact__hours p {
  margin: 0;
}

.contact__hours strong {
  display: block;

  margin-bottom: 0.25rem;

  font-size: clamp(1rem, 1vw, 1.12rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--dark);
}

.contact__hours span {
  display: block;

  font-size: clamp(0.95rem, 1vw, 1.08rem);
  line-height: 1.5;
  color: var(--body);
}

/* ============================================================
   CLOSING
   ============================================================ */

.contact__closing {
  margin: clamp(1.8rem, 2.5vw, 2.5rem) 0 0;

  font-size: clamp(1rem, 1vw, 1.12rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--dark);
}

/* ============================================================
   RESPONSIVE – CONTACT
   ============================================================ */


/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  position: relative;
  overflow: hidden;
  background: var(--white);

  min-height: clamp(420px, 30vw, 560px);
  padding: 0 var(--px) clamp(1.5rem, 2vw, 2.25rem);
}

/* ---------- Berge ---------- */

.footer__mountains {
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.footer__mountains img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- Eisbär ---------- */

.footer__bear {
  position: absolute;
  left: clamp(4rem, 7vw, 8rem);
  bottom: clamp(4.2rem, 5vw, 6rem);

  width: clamp(130px, 12vw, 230px);

  z-index: 2;
  pointer-events: none;
  user-select: none;
}

.footer__bear img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- Inhalt unten ausrichten ---------- */

.footer__content {
  position: absolute;
  left: var(--px);
  right: var(--px);
  bottom: clamp(1.5rem, 2vw, 2.25rem);
  z-index: 3;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  column-gap: 2rem;
}

/* ---------- Navigation unten mittig ---------- */

.footer__nav {
  grid-column: 2;
  justify-self: center;
  align-self: end;
}

.footer__nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 3vw, 3.5rem);

  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__nav a {
  color: rgba(36, 36, 36, 0.42);
  font-size: 18px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* ---------- Rechte Spalte unten rechts ---------- */

.footer__right {
  grid-column: 3;
  justify-self: end;
  align-self: end;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 1.4vw, 1.4rem);
}

/* ---------- Google Rating als Bild ---------- */

.footer__rating img {
  display: block;
  width: clamp(100px, 11vw, 150px);
  height: auto;
}

/* ---------- Social Icons ---------- */

.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.1rem, 1.5vw, 1.6rem);
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  color: #000;
  text-decoration: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer__social a:hover {
  color: var(--blue);
  transform: translateY(-1px);
}

.footer__social svg,
.footer__social img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

/* ---------- Back to top ---------- */

.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 99;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 50%;
  box-shadow: var(--shadow-md);

  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.back-to-top:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.back-to-top[hidden] {
  display: none;
}

.back-to-top svg {
  width: 16px;
  height: 16px;
}

/* ============================================================
   RESPONSIVE – FOOTER
   ============================================================ */


/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Laptop 1024-1199 */


/* Tablet 768-1023 */


/* Mobile 0-767 */


/* ============================================================
   RESPONSIVE – PROCESS
   ============================================================ */

/* ============================================================
   RESPONSIVE CLEANUP
   Sortierte Breakpoints:
   1. bis 1536px
   2. bis 1199px
   3. bis 1023px Tablet
   4. bis 767px Mobile
   5. bis 480px Small Mobile
   ============================================================ */


/* ============================================================
   LAPTOP / SMALL DESKTOP
   bis 1536px
   ============================================================ */

@media screen and (max-width: 1536px) {
  :root {
    --px: clamp(2rem, 4vw, 3.5rem);
    --py: clamp(3rem, 4.5vw, 4.5rem);
  }

  body {
    font-size: 17px;
  }

  .nav {
    min-height: 78px;
    padding-inline: 2rem;
  }

  .nav__links {
    gap: clamp(1.4rem, 2vw, 2.6rem);
  }

  .nav__link {
    font-size: 1rem;
  }

  .nav__logo img {
    width: clamp(165px, 12vw, 210px);
  }

  .hero {
    padding-top: 3rem;
  }

  .hero__main-img {
    aspect-ratio: 16 / 8.2;
  }



  .case-study__photo img {
    min-height: 720px;
  }

  .case-study__content {
    padding: 5% 5% 5% 9%;
  }

  .case-study__text {
    margin-left: 6rem;
  }

  .value-prop {
    grid-template-columns: 46% 54%;
  }
	
	.value-prop__content {
		padding: 5% 9% 5% 5%;
	}

  .benefits {
    min-height: auto;
    padding-top: var(--py);
    padding-bottom: var(--py);
  }

  .process {
    padding: 0 5% 3% 5%;
  }

  .process__grid {
    gap: clamp(2rem, 3vw, 4rem);
  }
	
	.process__heading {
		padding: 0 0 4% 0;
	}
	

  .pc {
    grid-template-columns: 68% 32%;
  }

  .pc__body {
    padding: clamp(1.8rem, 2.2vw, 2.4rem);
  }

  .ph-card {
    min-height: clamp(560px, 58vh, 680px);
  }

  .insight-card {
    min-height: clamp(600px, 56vh, 760px);
  }

  .operative {
    min-height: auto;
	  padding: 5%;
  }

  .op-flow {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .op-card {
    min-height: clamp(500px, 52vh, 620px);
    padding: 1.5rem;
  }

  .op-card__title {
    font-size: clamp(1.35rem, 1.5vw, 1.8rem);
  }

  .op-card__body {
    font-size: 0.95rem;
  }

  .op-card__media {
    margin-bottom: 1.8rem;
  }

  .contact {
    grid-template-columns: 42% 58%;
  }

  .contact__info {
    padding: clamp(4rem, 6vw, 6rem) clamp(3rem, 5vw, 5.5rem);
  }

  .footer {
    min-height: clamp(360px, 28vw, 500px);
  }

  .footer__mountains {
    top: -105px;
  }
}


/* ============================================================
   LAPTOP / TABLET QUERFORMAT
   bis 1199px
   ============================================================ */

@media screen and (max-width: 1199px) {
  :root {
    --px: 2.5rem;
  }

  .nav {
    min-height: 72px;
    grid-template-columns: auto 1fr auto;
  }

  .nav__social {
    gap: 1rem;
  }

  .nav__social img,
  .nav__social svg {
    width: 28px;
    height: 28px;
  }

  .nav__links {
    gap: 1.5rem;
  }

  .nav__logo img {
    width: 165px;
  }

  .case-study,
  .value-prop {
    min-height: auto;
  }

  .case-study__content {
    padding: 5%;
  }

  .case-study__text {
    margin-left: 0;
    max-width: 100%;
  }

  .case-study__camera,
  .value-prop__camera {
    width: clamp(180px, 22vw, 260px);
  }

  .benefits__row {
    grid-template-columns: 64px minmax(220px, 320px) 1fr;
    gap: 0 1.25rem;
    padding: 1rem 1.4rem;
  }

  .process-floating-head.is-fixed {
    top: 72px;
  }

  .phases {
    min-height: auto;
  }

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

  .ph-card {
    min-height: 560px;
  }

  .ph-card__body {
    padding: 1.7rem;
  }

  .ph-card__list li {
    min-height: auto;
    padding: 0.85rem 1rem;
  }

  .insights {
    min-height: auto;
    padding-bottom: clamp(8rem, 10vw, 12rem);
  }

  .insight-card {
    min-height: 560px;
    padding: 2.5rem;
  }

  .op-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .op-flow::before,
  .op-flow::after {
    display: none;
  }

  .op-card {
    min-height: auto;
  }

  .op-cta {
    margin-top: 2rem;
  }

  .use-cases {
    min-height: auto;
	  padding: 5% 0;
  }

  .uc-row {
    grid-template-columns: minmax(190px, 28%) 1fr;
    min-height: 130px;
  }

  .uc-row__img {
    width: 40%;
    opacity: 0.75;
  }

  .lp-slide {
    min-height: 760px;
  }

  .lp-card {
    width: min(100%, 560px);
  }

  .contact__info {
    padding: 4rem 3rem;
  }

  .contact__row--two-cols {
    grid-template-columns: 24px 1fr;
  }

  .contact__col + .contact__col {
    grid-column: 2;
    margin-top: 1rem;
  }
}


/* ============================================================
   TABLET
   bis 1023px
   ============================================================ */

@media screen and (max-width: 1023px) {
  :root {
    --px: 2rem;
    --py: 3.5rem;
  }

  body {
    font-size: 17px;
  }

  h2,
  .hero__heading,
  .case-study__h2,
  .value-prop__h2,
  .benefits__heading,
  .process__heading,
  .phases__heading,
  .operative__heading,
  .use-cases__heading,
  .contact__h2 {
    font-size: clamp(2.65rem, 6vw, 4.2rem);
    line-height: 1.05;
	  padding: 0 0 4% 0;
    
  }

  .nav {
    min-height: 72px;
    padding-inline: 1.5rem;
  }

  .nav__social {
    display: flex;
  }

  .nav__logo {
    justify-self: center;
  }

  .nav__logo img {
    width: 150px;
  }

  .nav__burger {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;

    padding: 2rem 1.5rem 2.25rem;

    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(36, 36, 36, 0.08);
    box-shadow: 0 18px 40px rgba(10, 25, 45, 0.08);

    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);

    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
  }

  .nav__links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav__link {
    font-size: 1.1rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero__main-img {
    aspect-ratio: 16 / 9;
    border-radius: 22px 22px 0 0;
  }

  .hero__vb-badge {
    display: none !important;
  }

  .case-study,
  .value-prop,
  .contact {
    display: grid;
    grid-template-columns: 1fr;
  }

  .case-study {
    border-bottom: 1px solid rgba(36, 36, 36, 0.1);
	  padding: 5%;
  }

  .case-study__photo,
  .value-prop__photo {
    display: none;
  }

  .case-study__photo img {
    min-height: 0;
    height: 100%;
  }

  .case-study__content {
    padding: 0;
  }

  .case-study__vb-logo {
    margin-bottom: 2.5rem;
  }


  .case-study__text {
    margin-left: 0;
    margin-bottom: 0;
    max-width: 100%;
  }

  .case-study__camera,
  .value-prop__camera {
    display: none;
  }

  .value-prop {
    padding: 5%;
	  border-bottom: 1px solid rgba(36, 36, 36, 0.1);
  }

  .value-prop__content {
    padding: 5%;
  }

  .benefits {
    min-height: auto;
    padding: var(--py) var(--px);
    background-size: cover;
  }

  .benefits__row {
    grid-template-columns: 54px 1fr;
    grid-template-rows: auto auto;
    gap: 0 1rem;
    align-items: flex-start;
    padding: 1.1rem 1.25rem;
  }

  .benefits__icon-cell {
    grid-row: 1 / span 2;
  }

  .benefits__desc-cell {
    grid-column: 2;
    margin-top: 0.35rem;
  }

  .process-floating-head {
    position: relative;
    padding: var(--py) var(--px) 2rem;
    background: var(--white);
  }

  .process-floating-head.is-fixed,
  .process-floating-head.is-bottom {
    position: relative;
    top: auto;
    bottom: auto;
  }

  .process {
    padding: 0 var(--px) 2.25rem;
  }

  .process__heading span {
    padding-bottom: 0;
  }

  .process__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
	
	.process__grid--single {
		padding-bottom: 0;
	}

  .pc,
  .pc--wide {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .pc__img {
    min-height: 230px;
    order: 2;
  }

  .pc__body,
  .pc--wide .pc__body {
    padding: 2rem;
  }

  .process-progress {
    display: none;
  }

  .phases {
    min-height: auto;
    padding: 5%;
  }

  section#phasen {
    border-top: 1px solid rgba(36, 36, 36, 0.1);
  }

  .phases__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .ph-card {
    min-height: auto;
  }

  .ph-card__body {
    padding: clamp(1.6rem, 4vw, 2.2rem);
  }

  .ph-card__img {
    display: none;
  }

  .insights {
    min-height: auto;
    padding: var(--py) var(--px) clamp(12rem, 18vw, 18rem);
  }

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

  .insight-card {
    min-height: auto;
  }

  .insights__deco--scribble {
    width: 300px;
    left: -4rem;
  }

  .insights__deco--single {
    width: 300px;
    left: 35%;
  }

  .insights__deco--stack {
    width: 500px;
    right: -5rem;
  }

  .operative {
    padding: 5%;
  }

  .op-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-bottom: 0;
  }

  .op-card {
    min-height: auto;
  }

  .op-card__body {
    margin-top: 2rem;
  }

  .lp-slide {
    min-height: auto;
    align-items: flex-start;
    padding: var(--py) var(--px);
  }

  .lp-card {
    width: min(100%, 560px);
  }

  .use-cases {
    min-height: auto;
    padding: 5%;
  }

  .uc-row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    min-height: 220px;
    padding: 1.5rem;
    align-items: flex-start;
  }

  .uc-row__category,
  .uc-row__desc {
    max-width: 70%;
  }

  .uc-row__img {
    width: 100%;
    opacity: 0.65;
  }

  .uc-row::after {
    right: 0;
    width: 100%;
    background:
      linear-gradient(
        to bottom,
        rgba(255,255,255,1) 0%,
        rgba(255,255,255,0.96) 48%,
        rgba(255,255,255,0.55) 100%
      );
  }

  .contact {
    padding-bottom: 0;
  }

  .contact__gallery {
    min-height: 520px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 28px;
  }

  .contact__info {
    padding: 5%;
  }

  .contact__persons {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}


/* ============================================================
   SMARTPHONE
   bis 767px
   ============================================================ */

@media screen and (max-width: 767px) {
  :root {
    --px: 1.25rem;
    --py: 3rem;
  }

  body {
    font-size: 16px;
    line-height: 1.6;
  }

  h2,
  .case-study__h2,
  .value-prop__h2,
  .benefits__heading,
  .process__heading,
  .phases__heading,
  .operative__heading,
  .use-cases__heading,
  .contact__h2 {
    font-size: clamp(2.25rem, 9vw, 3.25rem);
    line-height: 1.05;
	  padding: 0 0 4% 0;
  }

  h1.hero__heading,
  .hero__heading {
    font-size: clamp(1.95rem, 8.5vw, 2.9rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
    margin-bottom: 0.75rem;
  }

  h3,
  .pc__title,
  .ph-card__title,
  .op-card__title {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .slide {
    padding: var(--py) var(--px);
  }

  .nav {
    min-height: 68px;
    grid-template-columns: 1fr auto;
    padding-inline: var(--px);
  }

  .nav__social {
    display: none;
  }

  .nav__logo {
    grid-column: 1;
    justify-self: start;
  }

  .nav__logo img {
    width: 140px;
  }

  .nav__burger {
    grid-column: 2;
    display: flex;
  }

  .nav__links {
    top: 68px;
    display: flex;
  }

  .hero {
    padding: 2.5rem var(--px) 0;
  }

  .hero__sub {
    font-size: 1rem;
    line-height: 1.45;
  }

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

  .btn,
  .btn--large {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .hero__main-img {
    aspect-ratio: 4 / 3;
    border-radius: 18px 18px 0 0;
  }

  .hero__vb-badge {
    display: none !important;
  }

  .case-study {
    border-bottom: 1px solid rgba(36, 36, 36, 0.1);
	  padding: 5%;
  }

  .case-study__content,
  .value-prop__content {
    padding: 0;
	  gap: 0;
  }

  .case-study__vb-logo {
    margin-bottom: 2rem;
  }


  .case-study__text p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
  }

  .case-study__text p:last-child {
    margin-bottom: 0;
  }

  .benefits {
    padding: var(--py) var(--px);
  }

  .benefits__heading {
    margin-bottom: 2rem;
  }

  .benefits__table {
    gap: 0.8rem;
  }

  .benefits__row {
    grid-template-columns: 42px 1fr;
    padding: 1rem;
    border-radius: 14px;
  }

  .benefits__icon-wrap {
    width: 36px;
    height: 36px;
  }

  .benefits__icon-wrap svg {
    width: 28px;
    height: 28px;
  }

  .benefits__title-cell {
    font-size: 1rem;
  }

  .benefits__desc-cell {
    font-size: 0.95rem;
  }

  .process-floating-head {
    padding: var(--py) var(--px) 1.5rem;
  }

  .process__heading span {
    padding-bottom: 0;
  }

  .process {
    padding: 0 var(--px) 2rem;
  }

  .process__grid {
    gap: 1.5rem;
  }
	
	.process__grid--single {
		padding-bottom: 0;
	}

  .pc,
  .pc--wide {
    border-radius: 16px;
  }

  .pc__body,
  .pc--wide .pc__body {
    padding: 1.5rem;
  }

  .pc__img {
    min-height: 240px;
  }

  .pc__desc,
  .pc__sub,
  .pc__list li {
    font-size: 0.95rem;
  }

  .phases,
  .insights,
  .operative,
  .lp-slide,
  .use-cases {
    padding: 5%;
  }

  .phases__heading,
  .operative__heading,
  .use-cases__heading {
    padding 0 0 4% 0;
  }

  .ph-card__body {
    padding: 1.4rem;
  }

  .ph-card__list li {
    min-height: auto;
    padding: 0.9rem 1rem;
    border-radius: 14px;
  }

  .insights {
    padding-bottom: 15rem;
  }

  .insight-card {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .insight-card__title {
    font-size: 2rem;
  }

  .insight-card__list li {
    grid-template-columns: 1.2rem 1fr;
    gap: 1rem;
    min-height: auto;
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    border-radius: 14px;
  }

  .insights__deco--scribble {
    width: 220px;
    left: -6rem;
    bottom: 1rem;
  }

  .insights__deco--single {
    width: 220px;
    left: 45%;
    bottom: -3rem;
  }

  .insights__deco--stack {
    width: 350px;
    right: -8rem;
    bottom: -3rem;
  }

  .op-flow {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .op-card {
    padding: 1.35rem;
    border-radius: 16px;
  }

  .op-card__media {
    margin-bottom: 1.5rem;
  }

  .op-cta {
    margin-top: 1.5rem;
  }

  .op-cta__badge {
    width: 100%;
    min-height: auto;
    padding: 0.85rem 1rem;
    text-align: center;
    border-radius: 10px;
  }

  .lp-slide {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .lp-card {
    width: 100%;
    padding: 1.5rem;
    border-radius: 18px;
  }

  .lp-card__heading {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .lp-card__heading-blue {
    display: inline-flex;
  }

  .lp-card__tagline,
  .lp-card__text,
  .lp-field__row {
    font-size: 0.95rem;
  }

  .lp-card__btn {
    width: 100%;
    justify-content: center;
  }

  .uc-list {
    gap: 1rem;
  }

  .uc-row {
    min-height: auto;
    padding: 1.25rem;
    border-radius: 16px;
  }

  .uc-row__category {
    font-size: 1.45rem;
  }

  .uc-row__desc {
    max-width: 86%;
    font-size: 0.95rem;
  }

  .uc-row__img {
    opacity: 0.5;
  }

  .contact__gallery {
    min-height: 360px;
  }

  .contact__info {
    padding: 5% 0;
  }

  .contact__h2 {
    margin-bottom: 2rem;
  }

  .contact__lead {
    margin-bottom: 2.5rem;
    font-size: 1rem;
    line-height: 1.65;
  }

  .contact__row,
  .contact__row--two-cols {
    grid-template-columns: 22px 1fr;
    gap: 1rem;
  }

  .contact__col + .contact__col {
    grid-column: 2;
  }

  .footer {
    min-height: 520px;
  }

  .footer__mountains {
    top: 0px;
  }

  .footer__bear {
    left: 6.25rem;
    bottom: 22rem;
    width: 155px;
  }

  .footer__content {
    left: var(--px);
    right: var(--px);
    bottom: 1.5rem;

    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 1.2rem;
  }

  .footer__right {
    grid-column: 1;
    justify-self: center;
    order: 1;
  }

  .footer__nav {
    grid-column: 1;
    order: 2;
  }

  .footer__nav ul {
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
  }

  .footer__nav a {
    font-size: 15px;
  }

  .footer__rating img {
    width: 135px;
  }

  .footer__social img,
  .footer__social svg {
    width: 28px;
    height: 28px;
  }

  .back-to-top {
    right: 1rem;
    bottom: 1rem;
    width: 40px;
    height: 40px;
  }
}


/* ============================================================
   SMALL SMARTPHONE
   bis 480px
   ============================================================ */

@media screen and (max-width: 480px) {
  :root {
    --px: 1rem;
    --py: 2.5rem;
  }

  .nav__logo img {
    width: 130px;
  }

  h1.hero__heading,
  .hero__heading {
    font-size: clamp(1.75rem, 9vw, 2.45rem);
    line-height: 1.03;
  }

  .case-study__h2,
  .value-prop__h2,
  .benefits__heading,
  .process__heading,
  .phases__heading,
  .operative__heading,
  .use-cases__heading,
  .contact__h2 {
    font-size: clamp(2rem, 9vw, 3rem);
	  padding: 0 0 4% 0;
  }

  .hero__main-img {
    aspect-ratio: 1 / 1;
  }

  .hero__vb-badge {
    display: none !important;
  }

  .contact__gallery {
    height: 300px;
    min-height: 300px;
  }

  .pc__body,
  .pc--wide .pc__body,
  .ph-card__body,
  .op-card,
  .lp-card,
  .insight-card {
    padding: 1.25rem;
  }

  .pc__img {
    min-height: 220px;
    height: 220px;
  }

  .uc-row {
    min-height: auto;
  }

  .uc-row__category,
  .uc-row__desc {
    max-width: 100%;
  }

  .uc-row__img {
    opacity: 0.38;
  }

  .footer {
    min-height: 560px;
  }

  .footer__nav ul {
    flex-direction: column;
    gap: 0.65rem;
  }

  .footer__bear {
    bottom: 22rem;
    width: 155px;
  }
}
