﻿:root {
  --bg: #f5f7fa;
  --bg-soft: #eef2f7;
  --surface: #ffffff;
  --text: #111827;
  --muted: #5f6778;
  --line: #e2e7ef;
  --primary: #3f4763;
  --primary-dark: #30364d;
  --accent: #5b7cfa;
  --radius-card: 20px;
  --radius-button: 5px;
  --shadow-soft: 0 8px 24px rgba(17, 24, 39, 0.06);
  --shadow-large: 0 16px 40px rgba(17, 24, 39, 0.1);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 34%, #fbfcfe 0%, #f7f9fc 46%, #eef2f6 100%),
    radial-gradient(circle at 85% 10%, rgba(91, 124, 250, 0.04) 0%, rgba(91, 124, 250, 0) 24%),
    var(--bg);
  line-height: 1.6;
}

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

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

.container {
  width: min(var(--max), 92vw);
  margin: 0 auto;
}

h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin: 0;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.12rem;
  line-height: 1.3;
}

p {
  color: var(--muted);
}

.section {
  padding: 104px 0;
}

.section-divider {
  border-top: 1px solid var(--line);
}

.section-soft {
  background: var(--bg-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(226, 231, 239, 0.9);
  background: rgba(245, 247, 250, 0.92);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.brand-wordmark {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--brand-700, var(--primary));
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  font-size: 0.94rem;
  font-weight: 500;
  color: #4d5568;
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.mobile-menu-toggle {
  display: none;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  min-height: 34px;
  padding: 0 7px;
  border: 1px solid rgba(213, 221, 232, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  color: #858d9c;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 1px 2px rgba(17, 24, 39, 0.025);
}

.language-switcher span {
  color: rgba(133, 141, 156, 0.46);
  font-size: 0.72rem;
}

.language-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 24px;
  padding: 0 5px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.language-option:hover,
.language-option:focus-visible {
  color: #3f4763;
}

.language-option.is-active {
  background: rgba(63, 71, 99, 0.1);
  color: var(--primary-dark);
  box-shadow:
    inset 0 0 0 1px rgba(63, 71, 99, 0.08),
    0 1px 2px rgba(17, 24, 39, 0.035);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius-button);
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

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

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--primary-dark);
}

.btn-secondary {
  background: #ffffff;
  color: var(--text);
  border-color: #d7dde7;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: #bcc7d6;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: #8d97ac;
}

.hero {
  padding: 74px 0 78px;
}

.hero-shell {
  display: grid;
  gap: 44px;
  justify-items: center;
}

.hero-copy {
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
  max-width: 1040px;
}

.hero-positioning {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 34px;
  margin: 0 auto 2px;
  padding: 0 14px;
  border: 1px solid rgba(213, 221, 232, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  color: #4d5568;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 8px 22px rgba(17, 24, 39, 0.035);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.swiss-flag {
  position: relative;
  width: 15px;
  height: 11px;
  flex: 0 0 auto;
  border-radius: 2.5px;
  background: linear-gradient(145deg, #d52b1e 0%, #bd2118 100%);
  box-shadow:
    inset 0 0 0 1px rgba(117, 25, 18, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 1px 2px rgba(17, 24, 39, 0.075);
}

.swiss-flag::before,
.swiss-flag::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 7px;
  height: 2.2px;
  border-radius: 999px;
  background: #ffffff;
  transform: translate(-50%, -50%);
}

.swiss-flag::after {
  width: 2.2px;
  height: 7px;
}

.hero h1 {
  margin: 0 auto;
  font-size: clamp(2.55rem, 3.85vw, 3.45rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  max-width: 14.8ch;
  font-weight: 700;
  text-wrap: balance;
}

.hero-lead {
  width: min(100%, 60ch);
  max-width: 60ch;
  margin: 0 auto;
  font-size: 1.16rem;
  line-height: 1.55;
  color: #4f5b70;
  text-align: center;
  text-wrap: balance;
}

html[lang="de"] .hero h1 {
  max-width: 17.5ch;
}

html[lang="de"] .hero-lead {
  max-width: 66ch;
}

html[lang="fr"] .hero h1 {
  max-width: 17ch;
}

html[lang="fr"] .hero-lead {
  max-width: 67ch;
}

.hero-model-stage,
.service-card,
.pricing-card,
.founder-portrait,
.reference-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.hero-model-stage {
  position: relative;
  width: min(100%, 1040px);
  min-height: clamp(520px, 49vw, 620px);
  padding: clamp(8px, 1.2vw, 16px);
  background:
    radial-gradient(circle at 72% 16%, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0) 31%),
    radial-gradient(circle at 15% 78%, rgba(63, 71, 99, 0.07) 0%, rgba(63, 71, 99, 0) 32%),
    linear-gradient(145deg, #f9fbfd 0%, #eef3f8 100%);
  border-color: #dce4ee;
  border-radius: 30px;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(17, 24, 39, 0.035),
    0 20px 44px rgba(17, 24, 39, 0.06),
    0 48px 96px rgba(17, 24, 39, 0.045);
}

.hero-model-stage::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(226, 231, 239, 0.64);
  border-radius: 22px;
  pointer-events: none;
}

.hero-model-stage::after {
  content: "";
  position: absolute;
  inset: auto 5% 4% 5%;
  height: 8%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(245, 247, 250, 0.64) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-screen {
  position: absolute;
  display: block;
  height: auto;
  border: 1px solid rgba(213, 220, 231, 0.72);
  border-radius: 18px;
  background: #ffffff;
  box-shadow:
    0 1px 2px rgba(17, 24, 39, 0.025),
    0 10px 26px rgba(17, 24, 39, 0.045);
  transform-origin: center;
  user-select: none;
  touch-action: manipulation;
  transition:
    opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 420ms cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 520ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity, filter;
}

.hero-screen.is-back {
  cursor: pointer;
}

.hero-screen.is-front {
  cursor: default;
}

.hero-screen.is-back:hover {
  opacity: 0.72;
  filter: saturate(0.96) contrast(1);
}

.hero-screen:focus-visible {
  outline: 2px solid rgba(63, 71, 99, 0.38);
  outline-offset: 5px;
}

.hero-screen-main,
.hero-model-stage.is-model-front .hero-screen-model {
  z-index: 5;
  width: min(83%, 880px);
  top: clamp(20px, 2.6vw, 34px);
  right: clamp(24px, 3vw, 35px);
  left: auto;
  opacity: 1;
  filter: none;
  border-radius: 24px;
  box-shadow:
    0 1px 2px rgba(17, 24, 39, 0.04),
    0 24px 52px rgba(17, 24, 39, 0.13),
    0 52px 104px rgba(17, 24, 39, 0.075);
}

.hero-screen-model,
.hero-model-stage.is-model-front .hero-screen-main {
  z-index: 2;
  width: min(55%, 630px);
  height: auto;
  left: clamp(24px, 3vw, 35px);
  right: auto;
  top: clamp(78px, 7.8vw, 98px);
  border-radius: 18px;
  object-fit: contain;
  object-position: center;
  opacity: 0.62;
  filter: saturate(0.92) contrast(0.98);
  box-shadow:
    0 1px 2px rgba(17, 24, 39, 0.025),
    0 10px 26px rgba(17, 24, 39, 0.045);
}

@media (max-width: 980px) {
  .hero-model-stage {
    min-height: clamp(500px, 64vw, 620px);
  }

  .hero-screen-main {
    width: 80%;
    top: 8%;
  }

  .hero-screen-model {
    width: 58%;
  }
}

@media (max-width: 760px) {
  .hero-model-stage {
    display: grid;
    gap: 14px;
    min-height: 0;
    padding: 16px;
    border-radius: 26px;
  }

  .hero-model-stage::before,
  .hero-model-stage::after {
    display: none;
  }

  .hero-screen {
    position: relative;
    inset: auto;
    width: 100%;
    border-radius: 16px;
  }

  .hero-screen-main {
    order: 1;
  }

  .hero-screen-model {
    order: 2;
    height: auto;
    object-fit: contain;
  }

  .hero-model-stage.is-model-front .hero-screen-model,
  .hero-model-stage.is-model-front .hero-screen-main {
    position: relative;
    inset: auto;
    width: 100%;
    border-radius: 16px;
  }

  .hero-model-stage.is-model-front .hero-screen-model {
    order: 1;
  }

  .hero-model-stage.is-model-front .hero-screen-main {
    order: 2;
  }
}

.section-head {
  margin-bottom: 36px;
}

.section-head p {
  max-width: 62ch;
  margin-top: 12px;
}

.solution-section {
  padding-top: 68px;
}

#solution {
  scroll-margin-top: 108px;
}

.solution-head {
  max-width: 72ch;
  margin-bottom: 44px;
}

.solution-head h2 {
  max-width: 14ch;
}

.solution-head > p {
  max-width: 54ch;
  margin-top: 18px;
}

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

.solution-card {
  min-height: 368px;
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 250, 253, 0.97) 100%);
  border: 1px solid #e3e9f1;
  border-radius: 26px;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.02), 0 18px 40px rgba(17, 24, 39, 0.045);
}

.solution-card-line {
  width: 46px;
  height: 1px;
  margin-bottom: 28px;
  background: #cad3df;
}

.solution-card h3 {
  font-size: 1.54rem;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.solution-card-copy {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.solution-card-copy p {
  margin: 0;
  max-width: 31ch;
  font-size: 1.03rem;
  line-height: 1.68;
  color: #5a667a;
}

.services-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.service-card {
  padding: 28px;
}

.service-card-featured {
  background:
    linear-gradient(180deg, rgba(91, 124, 250, 0.05) 0%, rgba(91, 124, 250, 0) 42%),
    var(--surface);
}

.service-label {
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.service-card h3 {
  margin-top: 10px;
}

.service-card p + .service-list,
.service-card h3 + p {
  margin-top: 10px;
}

.service-stack {
  display: grid;
  gap: 18px;
}

.service-list,
.pricing-list {
  list-style: none;
  padding: 0;
}

.service-list {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.service-list li,
.pricing-list li {
  position: relative;
  padding-left: 16px;
  color: #263142;
}

.service-list li::before,
.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.process-list {
  position: relative;
  list-style: none;
  padding: 8px 0 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.process-list::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 34px;
  bottom: 34px;
  width: 1px;
  background: #cfd7e4;
}

.process-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: start;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #bac5d6;
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.process-list h3 + p {
  margin-top: 6px;
}

.step-output {
  min-width: 230px;
  padding-left: 14px;
  border-left: 1px solid #d6dde8;
  font-size: 0.85rem;
  color: #445164;
}

#pricing .pricing-head {
  display: grid;
  justify-items: center;
  text-align: center;
  max-width: 860px;
  margin: 0 auto 48px;
}

#pricing .pricing-head h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(1.72rem, 2.35vw, 2.32rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 650;
}

#pricing .pricing-head p {
  max-width: 62ch;
  margin: 16px auto 0;
  font-size: 1.05rem;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 34px 32px 30px;
  border-radius: 28px;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 0;
  height: 4px;
  border-radius: 0 0 999px 999px;
}

.pricing-card-primary {
  padding: 40px 38px 34px;
  border-color: #d9e0ea;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
  box-shadow:
    0 20px 48px rgba(17, 24, 39, 0.09),
    0 4px 12px rgba(17, 24, 39, 0.04);
}

.pricing-card-primary::before {
  background: linear-gradient(90deg, var(--primary-dark) 0%, #838da0 100%);
}

.pricing-card-secondary {
  padding: 34px 32px 30px;
  border-color: #d5dce7;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(243, 246, 250, 0.98) 100%);
  box-shadow:
    0 18px 40px rgba(17, 24, 39, 0.07),
    0 3px 10px rgba(17, 24, 39, 0.03);
}

.pricing-card-secondary::before {
  background: rgba(63, 71, 99, 0.24);
}

.pricing-card-top {
  display: grid;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(63, 71, 99, 0.08);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin-top: 18px;
  font-size: clamp(1.7rem, 2.3vw, 2.3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.pricing-card-secondary h3 {
  font-size: clamp(1.45rem, 2vw, 1.85rem);
}

.pricing-price {
  margin-top: 18px;
  font-size: clamp(2rem, 2.8vw, 2.75rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  color: var(--text);
  font-weight: 560;
}

.pricing-secondary-price {
  margin-top: 16px;
  font-size: clamp(1.55rem, 2.15vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  font-weight: 700;
}

.pricing-note {
  max-width: 34ch;
  margin-top: 12px;
  font-size: 1rem;
  line-height: 1.6;
}

#pricing .pricing-list {
  margin: 28px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(95, 103, 120, 0.16);
  display: grid;
  gap: 14px;
}

#pricing .pricing-list li {
  padding-left: 24px;
  line-height: 1.58;
  color: #263142;
}

#pricing .pricing-list li::before {
  left: 0;
  top: 0.48em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--primary) 0%, #808a9b 100%);
  box-shadow: 0 0 0 4px rgba(63, 71, 99, 0.08);
}

.pricing-list-secondary {
  margin-top: 26px;
}

.pricing-cta {
  width: 100%;
  margin-top: auto;
  min-height: 52px;
}

.pricing-card-primary .pricing-cta {
  margin-top: 30px;
  box-shadow: 0 16px 34px rgba(48, 54, 77, 0.16);
}

.pricing-card-secondary .pricing-cta {
  margin-top: 28px;
  border-color: rgba(63, 71, 99, 0.24);
  background: rgba(255, 255, 255, 0.92);
}

.pricing-cta-note {
  margin: 10px auto 0;
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.4;
  color: #6a7485;
}

@media (max-width: 760px) {
  #pricing .pricing-head {
    justify-items: start;
    text-align: left;
    margin-bottom: 34px;
  }

  #pricing .pricing-head h2 {
    max-width: 12ch;
  }

  #pricing .pricing-head p {
    margin: 14px 0 0;
    max-width: 34ch;
    font-size: 1rem;
  }

  .pricing-card,
  .pricing-card-primary,
  .pricing-card-secondary {
    padding: 30px 24px 26px;
    border-radius: 24px;
  }

  .pricing-card::before {
    left: 24px;
    right: 24px;
  }

  .pricing-price {
    font-size: clamp(2.5rem, 12vw, 3.25rem);
  }

  .pricing-secondary-price {
    font-size: 1.4rem;
  }

  .pricing-card-primary .pricing-cta,
  .pricing-card-secondary .pricing-cta {
    margin-top: 24px;
  }

  .pricing-cta-note {
    margin-top: 8px;
    font-size: 0.86rem;
  }
}

.about-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: center;
}

.founder-portrait {
  overflow: hidden;
}

.founder-portrait img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
}

.about-copy p + p {
  margin-top: 14px;
}

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

.reference-card {
  padding: 28px;
}

.client-wordmark {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary-dark);
  font-weight: 700;
}

.reference-url {
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #72809a;
}

.reference-card .reference-url + p {
  margin-top: 14px;
}

#pricing {
  padding-top: clamp(76px, 7vw, 88px);
  padding-bottom: 72px;
}

.final-cta {
  padding-top: 0;
  padding-bottom: 112px;
}

.final-cta-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-large);
  padding: 52px 28px 48px;
  text-align: center;
}

.final-cta-box .eyebrow {
  justify-content: center;
}

.final-cta-box h2 {
  max-width: none;
  margin: 0 auto;
}

.final-cta-copy {
  max-width: 58ch;
  margin: 12px auto 18px;
}

.final-cta-box .btn {
  margin-top: 0;
}

.final-cta-reassurance {
  margin: 10px auto 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.final-cta-break {
  display: inline;
}

@media (max-width: 760px) {
  .final-cta-box {
    padding: 46px 24px 42px;
  }

  .final-cta-box h2 {
    max-width: 12ch;
  }

  .final-cta-copy {
    margin: 12px auto 16px;
  }

  .final-cta-break {
    display: none;
  }

  .final-cta-reassurance {
    margin-top: 8px;
  }
}

.site-footer {
  background: #f7f8fa;
  border-top: 1px solid #e5e7eb;
  color: #2f3747;
  padding: 96px 0 36px;
}

.footer-shell {
  display: grid;
  gap: 44px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 0.75fr));
  gap: 56px;
  align-items: start;
  padding-bottom: 46px;
  border-bottom: 1px solid #e5e7eb;
}

.footer-brand {
  display: grid;
  gap: 14px;
  max-width: 32ch;
}

.footer-logo {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: #202938;
}

.footer-brand p,
.footer-bottom p {
  color: #667085;
}

.footer-column {
  display: grid;
  gap: 12px;
}

.footer-column h3 {
  margin: 0;
  color: #30364d;
  font-size: 0.82rem;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a,
.footer-bottom a {
  color: #5f6778;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #202938;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1120px) {
  .footer-main {
    grid-template-columns: 1.3fr repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .site-footer {
    padding-top: 72px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

@media (max-width: 1120px) {
  .solution-grid {
    gap: 18px;
  }
  .services-layout,
  .pricing-layout,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 72px 0 100px;
  }

  .hero-shell {
    gap: 54px;
  }

  .hero h1 {
  margin: 0 auto;
  font-size: clamp(2.55rem, 5vw, 3.45rem);
  line-height: 1.01;
  letter-spacing: -0.06em;
  max-width: 18ch;
  font-weight: 700;
  text-wrap: balance;
}

  .hero-lead {
  width: min(100%, 68ch);
  max-width: 68ch;
  margin: 0 auto;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #4f5b70;
  text-align: center;
  text-wrap: balance;
}

  .process-list::before {
    display: none;
  }

  .process-list li {
    grid-template-columns: auto 1fr;
  }

  .step-output {
    grid-column: 2;
    min-width: 0;
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .solution-section {
    padding-top: 48px;
  }

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

  .solution-card {
    min-height: 0;
    padding: 30px 24px 28px;
  }

  .solution-card h3 {
    font-size: 1.4rem;
  }
  .site-header {
    position: static;
  }

  .nav-wrap {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .brand-wordmark {
    font-size: 1.9rem;
  }

  .nav {
    order: 3;
    width: 100%;
    gap: 12px;
    overflow-x: visible;
    white-space: normal;
    padding-bottom: 2px;
  }

  .nav a {
    flex: 0 0 auto;
  }

  .nav-actions {
    gap: 9px;
  }

  .language-switcher {
    min-height: 32px;
    padding: 0 6px;
  }

  .language-option {
    min-width: 24px;
    height: 22px;
    font-size: 0.66rem;
  }

  .hero {
    padding: 78px 0 56px;
  }

  .hero-shell {
    gap: 28px;
  }

  .hero-copy {
    gap: 16px;
  }

  .hero-positioning {
    min-height: 32px;
    padding: 0 12px;
    font-size: 0.68rem;
  }

  .section {
    padding: 84px 0;
  }

  .hero h1 {
    margin: 0 auto;
    font-size: clamp(2.35rem, 10vw, 3.18rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
    max-width: 12ch;
    font-weight: 700;
    text-wrap: balance;
  }

  .hero-lead {
    width: min(100%, 36ch);
    max-width: 36ch;
    margin: 0 auto;
    font-size: 1.04rem;
    line-height: 1.52;
    color: #4f5b70;
    text-align: center;
    text-wrap: balance;
  }

  html[lang="de"] .hero h1,
  html[lang="fr"] .hero h1 {
    max-width: 13ch;
  }

  html[lang="de"] .hero-lead,
  html[lang="fr"] .hero-lead {
    max-width: 38ch;
  }

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

  .final-cta-box {
    padding: 40px 18px;
  }
}

@media (max-width: 1120px) {
  .solution-section {
    padding-top: 56px;
  }

  .solution-grid {
    gap: 20px;
  }

  .solution-card {
    min-height: 340px;
    padding: 36px 30px 32px;
  }
}

@media (max-width: 760px) {
  .solution-section {
    padding-top: 48px;
  }

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

  .solution-card {
    min-height: 0;
    padding: 30px 24px 28px;
  }

  .solution-card h3 {
    font-size: 1.4rem;
  }
}
.solution-head {
  margin-bottom: 38px;
}

.solution-grid {
  gap: 24px;
}

.solution-card {
  min-height: 392px;
  padding: 40px 36px 36px;
  border-color: #e2e8f0;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.995) 0%, rgba(249, 251, 253, 0.97) 100%);
  box-shadow:
    0 1px 2px rgba(17, 24, 39, 0.02),
    0 14px 30px rgba(17, 24, 39, 0.035);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.solution-card:hover,
.solution-card:focus-within {
  transform: translateY(-3px);
  border-color: #d7deea;
  box-shadow:
    0 1px 2px rgba(17, 24, 39, 0.02),
    0 18px 34px rgba(17, 24, 39, 0.05);
}

.solution-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border: 1px solid rgba(63, 71, 99, 0.09);
  border-radius: 12px;
  background: rgba(63, 71, 99, 0.04);
  color: var(--primary);
}

.solution-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-card h3 {
  font-size: 1.56rem;
}

.solution-card-copy {
  margin-top: 18px;
  gap: 14px;
}

.solution-card-copy p {
  max-width: 32ch;
  color: #586578;
}

@media (max-width: 1120px) {
  .solution-card {
    min-height: 356px;
    padding: 36px 30px 32px;
  }
}

@media (max-width: 760px) {
  #solution {
    scroll-margin-top: 0;
  }

  .solution-head {
    margin-bottom: 30px;
  }

  .solution-card {
    min-height: 0;
    padding: 30px 24px 28px;
  }

  .solution-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 22px;
  }
}
.solution-section .solution-head {
  display: grid;
  justify-items: center;
  text-align: center;
  max-width: none;
  margin: 0 auto 40px;
}

.solution-section .solution-head h2 {
  max-width: 12.2ch;
  margin: 0 auto;
}

.solution-section .solution-grid {
  gap: 28px;
}

.solution-section .solution-card {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  padding: 42px 38px 38px;
  border-color: #dde4ed;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.995) 0%, rgba(248, 250, 253, 0.975) 100%);
  box-shadow:
    0 1px 2px rgba(17, 24, 39, 0.018),
    0 10px 24px rgba(17, 24, 39, 0.028),
    0 28px 60px rgba(17, 24, 39, 0.04);
}

.solution-section .solution-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 76px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.solution-section .solution-card:hover,
.solution-section .solution-card:focus-within {
  transform: translateY(-4px);
  border-color: #d3dbe7;
  box-shadow:
    0 1px 2px rgba(17, 24, 39, 0.018),
    0 16px 30px rgba(17, 24, 39, 0.038),
    0 34px 68px rgba(17, 24, 39, 0.048);
}

.solution-section .solution-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 30px;
  border-radius: 14px;
  border: 1px solid rgba(63, 71, 99, 0.11);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(63, 71, 99, 0.045) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 8px 18px rgba(17, 24, 39, 0.04);
}

.solution-section .solution-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.55;
}

.solution-section .solution-card h3 {
  font-size: 1.58rem;
  letter-spacing: -0.035em;
  max-width: 12ch;
}

.solution-section .solution-card-copy {
  margin-top: 20px;
  gap: 14px;
}

.solution-section .solution-card-copy p {
  max-width: 31ch;
  line-height: 1.72;
  color: #556274;
}

@media (max-width: 1120px) {
  .solution-section .solution-head {
    margin-bottom: 36px;
  }

  .solution-section .solution-grid {
    gap: 22px;
  }

  .solution-section .solution-card {
    min-height: 378px;
    padding: 38px 30px 34px;
  }
}

@media (max-width: 760px) {
  .solution-section .solution-head {
    justify-items: start;
    text-align: left;
    margin-bottom: 28px;
  }

  .solution-section .solution-head h2 {
    max-width: 13ch;
    margin: 0;
  }

  .solution-section .solution-card {
    min-height: 0;
    padding: 32px 24px 28px;
  }

  .solution-section .solution-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 24px;
  }
}
.solution-section .solution-head {
  margin: 0 auto 34px;
}

.solution-section .solution-head h2 {
  max-width: none;
  white-space: nowrap;
  letter-spacing: -0.045em;
}

html[lang="fr"] .solution-section .solution-head {
  justify-items: center;
  text-align: center;
}

html[lang="fr"] .solution-section .solution-head h2 {
  max-width: 25ch;
  white-space: normal;
  text-align: center;
  text-wrap: balance;
}

.solution-section .solution-grid {
  gap: 30px;
}

.solution-section .solution-card {
  min-height: 424px;
  padding: 42px 38px 40px;
  border-color: #dbe3ee;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.998) 0%, rgba(248, 250, 253, 0.985) 100%);
  box-shadow:
    0 1px 2px rgba(17, 24, 39, 0.018),
    0 14px 28px rgba(17, 24, 39, 0.03),
    0 34px 72px rgba(17, 24, 39, 0.045);
}

.solution-section .solution-card::after {
  content: "";
  position: absolute;
  top: -34px;
  right: -28px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 71, 99, 0.06) 0%, rgba(63, 71, 99, 0) 72%);
  pointer-events: none;
}

.solution-section .solution-card > * {
  position: relative;
  z-index: 1;
}

.solution-section .solution-card:hover,
.solution-section .solution-card:focus-within {
  transform: translateY(-4px);
  border-color: #d2dbe8;
  box-shadow:
    0 1px 2px rgba(17, 24, 39, 0.018),
    0 18px 34px rgba(17, 24, 39, 0.04),
    0 40px 80px rgba(17, 24, 39, 0.05);
}

.solution-section .solution-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 32px;
  border-radius: 16px;
  border: 1px solid rgba(63, 71, 99, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(63, 71, 99, 0.05) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 20px rgba(17, 24, 39, 0.038);
}

.solution-section .solution-icon svg {
  width: 21px;
  height: 21px;
  stroke-width: 1.45;
}

.solution-section .solution-card h3 {
  max-width: 11ch;
}

.solution-section .solution-card-copy {
  margin-top: 22px;
  gap: 15px;
}

.solution-section .solution-card-copy p {
  max-width: 31ch;
  margin: 0;
}

.solution-section .solution-card-copy p:first-child {
  color: #253246;
  font-weight: 500;
  line-height: 1.62;
}

.solution-section .solution-card-copy p:last-child {
  color: #5a6779;
  line-height: 1.72;
}

@media (max-width: 1120px) {
  .solution-section .solution-head h2 {
    white-space: normal;
  }

  .solution-section .solution-grid {
    gap: 24px;
  }

  .solution-section .solution-card {
    min-height: 390px;
    padding: 38px 30px 36px;
  }

  .solution-section .solution-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 28px;
  }
}

@media (max-width: 760px) {
  .solution-section .solution-head h2 {
    white-space: normal;
  }

  .solution-section .solution-card {
    min-height: 0;
    padding: 32px 24px 30px;
  }

  .solution-section .solution-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 24px;
  }
}
.solution-section .solution-card h3 {
  max-width: none;
  white-space: nowrap;
  font-size: 1.5rem;
}

@media (max-width: 760px) {
  .solution-section .solution-card h3 {
    font-size: 1.28rem;
  }
}

/* How it works refinement */
#how-it-works {
  overflow: hidden;
  padding: 72px 0 84px;
}

#how-it-works .workflow-head {
  display: grid;
  justify-items: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 32px;
}

#how-it-works .workflow-head .eyebrow {
  justify-content: center;
  margin-top: 0;
}

#how-it-works .workflow-head h2 {
  max-width: none;
  font-size: clamp(1.96rem, 2.72vw, 2.62rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

#how-it-works .workflow-head > p:last-child {
  max-width: 46ch;
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.62;
  color: #596578;
  text-wrap: balance;
}

.workflow-rail {
  position: relative;
  list-style: none;
  width: min(100%, 1020px);
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: 0;
}

.workflow-rail::before,
.workflow-rail::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-0.5px);
}

.workflow-rail::before {
  top: 4px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, rgba(205, 214, 226, 0.08) 0%, rgba(207, 216, 228, 0.74) 16%, rgba(198, 208, 221, 0.82) 50%, rgba(207, 216, 228, 0.72) 84%, rgba(205, 214, 226, 0.08) 100%);
}

.workflow-rail::after {
  top: 4px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, rgba(63, 71, 99, 0) 0%, rgba(63, 71, 99, 0.2) 20%, rgba(63, 71, 99, 0.28) 50%, rgba(63, 71, 99, 0.18) 80%, rgba(63, 71, 99, 0) 100%);
  opacity: 0;
}

#how-it-works.workflow-motion .workflow-rail::after {
  transform: translateX(-0.5px) scaleY(0.08);
  transform-origin: top;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
}

#how-it-works.workflow-motion.is-visible .workflow-rail::after {
  opacity: 0.9;
  transform: translateX(-0.5px) scaleY(1);
}

.workflow-entry {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px minmax(0, 1fr);
  align-items: start;
  min-height: 146px;
}

#how-it-works.workflow-motion .workflow-entry {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1), transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

#how-it-works.workflow-motion .workflow-entry:nth-child(2) {
  transition-delay: 70ms;
}

#how-it-works.workflow-motion .workflow-entry:nth-child(3) {
  transition-delay: 140ms;
}

#how-it-works.workflow-motion .workflow-entry:nth-child(4) {
  transition-delay: 210ms;
}

#how-it-works.workflow-motion .workflow-entry.is-visible {
  opacity: 1;
  transform: none;
}

.workflow-content {
  position: relative;
  max-width: 420px;
  padding: 2px 0 26px;
  transition: transform 0.26s ease, opacity 0.26s ease;
}

.workflow-content::before {
  content: "";
  position: absolute;
  top: 19px;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(210, 217, 228, 0.7) 0%, rgba(196, 206, 219, 0.82) 100%);
  transition: width 0.26s ease, opacity 0.26s ease;
}

.workflow-content-left {
  justify-self: end;
  text-align: right;
  padding-right: 28px;
}

.workflow-content-left::before {
  right: -24px;
}

.workflow-content-left p,
.workflow-content-left .workflow-meta {
  margin-left: auto;
}

.workflow-content-right {
  justify-self: start;
  text-align: left;
  padding-left: 28px;
}

.workflow-content-right::before {
  left: -24px;
  background: linear-gradient(90deg, rgba(196, 206, 219, 0.82) 0%, rgba(210, 217, 228, 0.7) 100%);
}

.workflow-entry:hover .workflow-content,
.workflow-entry:focus-within .workflow-content {
  transform: translateY(-2px);
}

.workflow-entry:hover .workflow-content::before,
.workflow-entry:focus-within .workflow-content::before {
  width: 34px;
}

.workflow-kicker {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7c879b;
}

.workflow-content h3 {
  margin-top: 10px;
  font-size: 1.34rem;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.workflow-content p {
  margin-top: 10px;
  max-width: 34ch;
  font-size: 0.98rem;
  line-height: 1.64;
  color: #596578;
}

.workflow-meta {
  width: fit-content;
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.workflow-output-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7d889c;
}

.workflow-tag {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(215, 222, 234, 0.86);
  background: rgba(255, 255, 255, 0.6);
  color: #314155;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.workflow-entry:hover .workflow-tag,
.workflow-entry:focus-within .workflow-tag {
  transform: translateY(-1px);
  border-color: #ccd6e4;
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 8px 18px rgba(17, 24, 39, 0.04);
}

.workflow-number-wrap {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 146px;
  padding-top: 2px;
}

.workflow-number {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  border: 1px solid rgba(209, 217, 229, 0.92);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 247, 251, 0.98) 100%);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 8px 18px rgba(17, 24, 39, 0.045);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
}

.workflow-entry:hover .workflow-number,
.workflow-entry:focus-within .workflow-number {
  transform: translateY(-3px) scale(1.02);
  border-color: #c7d1e0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(239, 244, 250, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 16px 30px rgba(17, 24, 39, 0.08);
}

.workflow-empty {
  min-height: 1px;
}

@media (max-width: 1080px) {
  #how-it-works .workflow-head {
    margin-bottom: 30px;
  }

  #how-it-works .workflow-head h2 {
    white-space: nowrap;
    font-size: clamp(1.82rem, 2.5vw, 2.42rem);
  }

  .workflow-entry {
    grid-template-columns: minmax(0, 1fr) 78px minmax(0, 1fr);
    min-height: 138px;
  }

  .workflow-content-left {
    padding-right: 24px;
  }

  .workflow-content-right {
    padding-left: 24px;
  }

  .workflow-number-wrap {
    min-height: 138px;
  }
}

html[lang="de"] #how-it-works .workflow-head {
  max-width: min(100%, 1000px);
}

html[lang="de"] #how-it-works .workflow-head h2 {
  max-width: 26ch;
  white-space: normal;
  text-align: center;
  text-wrap: balance;
  font-size: clamp(1.86rem, 2.42vw, 2.4rem);
}

html[lang="de"] #how-it-works .workflow-head > p:last-child {
  max-width: 58ch;
  margin-inline: auto;
}

html[lang="de"] .workflow-content p,
html[lang="fr"] .workflow-content p {
  max-width: 38ch;
}

html[lang="fr"] #how-it-works .workflow-head {
  justify-items: center;
  text-align: center;
  max-width: min(100%, 980px);
}

html[lang="fr"] #how-it-works .workflow-head h2 {
  max-width: 24ch;
  white-space: normal;
  text-align: center;
  text-wrap: balance;
  font-size: clamp(1.86rem, 2.48vw, 2.46rem);
}

html[lang="fr"] #how-it-works .workflow-head > p:last-child {
  max-width: 60ch;
  margin-inline: auto;
  text-align: center;
}

@media (max-width: 900px) {
  #how-it-works .workflow-head h2 {
    white-space: normal;
    max-width: 14ch;
  }

  html[lang="de"] #how-it-works .workflow-head h2 {
    max-width: 19ch;
    font-size: clamp(1.72rem, 5.4vw, 2.22rem);
  }

  html[lang="fr"] .solution-section .solution-head h2,
  html[lang="fr"] #how-it-works .workflow-head h2 {
    max-width: 18ch;
  }

  html[lang="fr"] #how-it-works .workflow-head > p:last-child {
    max-width: 48ch;
  }
}

@media (max-width: 760px) {
  #how-it-works {
    padding: 64px 0 68px;
  }

  #how-it-works .workflow-head {
    justify-items: start;
    text-align: left;
    max-width: none;
    margin-bottom: 24px;
  }

  #how-it-works .workflow-head .eyebrow {
    justify-content: flex-start;
  }

  #how-it-works .workflow-head h2 {
    max-width: 12ch;
    white-space: normal;
  }

  html[lang="de"] #how-it-works .workflow-head h2 {
    max-width: 13ch;
    text-align: left;
  }

  html[lang="fr"] .solution-section .solution-head,
  html[lang="fr"] #how-it-works .workflow-head {
    justify-items: center;
    text-align: center;
  }

  html[lang="fr"] .solution-section .solution-head h2,
  html[lang="fr"] #how-it-works .workflow-head h2 {
    max-width: 13ch;
    margin-inline: auto;
    text-align: center;
  }

  html[lang="fr"] #how-it-works .workflow-head .eyebrow {
    justify-content: center;
  }

  html[lang="fr"] #how-it-works .workflow-head > p:last-child {
    max-width: 34ch;
    margin-inline: auto;
    text-align: center;
  }

  #how-it-works .workflow-head > p:last-child {
    max-width: 34ch;
    font-size: 0.98rem;
  }

  .workflow-rail {
    gap: 0;
    padding-top: 0;
  }

  .workflow-rail::before,
  .workflow-rail::after {
    left: 30px;
  }

  .workflow-rail::before {
    top: 2px;
    bottom: 10px;
  }

  .workflow-rail::after {
    top: 2px;
    bottom: 10px;
  }

  .workflow-entry {
    grid-template-columns: 54px minmax(0, 1fr);
    min-height: 0;
    column-gap: 16px;
  }

  .workflow-empty {
    display: none;
  }

  .workflow-number-wrap {
    grid-column: 1;
    min-height: 0;
    padding-top: 5px;
  }

  .workflow-content,
  .workflow-content-left,
  .workflow-content-right {
    grid-column: 2;
    justify-self: stretch;
    text-align: left;
    max-width: none;
    padding: 2px 0 22px;
  }

  .workflow-content::before,
  .workflow-content-left::before,
  .workflow-content-right::before {
    left: -18px;
    right: auto;
    width: 18px;
  }

  .workflow-content-left p,
  .workflow-content-left .workflow-meta {
    margin-left: 0;
  }

  .workflow-content h3 {
    margin-top: 10px;
    font-size: 1.28rem;
  }

  .workflow-content p {
    max-width: none;
    margin-top: 10px;
  }

  .workflow-meta {
    gap: 8px;
    margin-top: 15px;
  }

  .workflow-number {
    width: 40px;
    height: 40px;
    border-radius: 13px;
    font-size: 0.68rem;
  }
}
/* End how it works refinement */

/* Solution interaction refinement */
.solution-section .solution-card,
.solution-section .solution-card::before,
.solution-section .solution-card::after,
.solution-section .solution-icon,
.solution-section .solution-icon svg {
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.34s ease,
    opacity 0.34s ease,
    background-color 0.34s ease;
}

.solution-section .solution-card {
  will-change: transform, box-shadow;
  transform-origin: center bottom;
}

.solution-section .solution-card::before {
  opacity: 0.62;
}

.solution-section .solution-card::after {
  opacity: 0.56;
}

.solution-section .solution-card:hover,
.solution-section .solution-card:focus-within {
  transform: translateY(-9px) scale(1.012);
  border-color: #ced8e6;
  box-shadow:
    0 1px 2px rgba(17, 24, 39, 0.018),
    0 24px 42px rgba(17, 24, 39, 0.045),
    0 54px 96px rgba(17, 24, 39, 0.055);
}

.solution-section .solution-card:hover::before,
.solution-section .solution-card:focus-within::before {
  opacity: 0.82;
}

.solution-section .solution-card:hover::after,
.solution-section .solution-card:focus-within::after {
  opacity: 0.82;
  transform: scale(1.08) translate(4px, -2px);
}

.solution-section .solution-card:hover .solution-icon,
.solution-section .solution-card:focus-within .solution-icon {
  transform: translateY(-3px) scale(1.06);
  border-color: rgba(63, 71, 99, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 14px 24px rgba(17, 24, 39, 0.055);
}

.solution-section .solution-card:hover .solution-icon svg,
.solution-section .solution-card:focus-within .solution-icon svg {
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .solution-section .solution-card,
  .solution-section .solution-card::before,
  .solution-section .solution-card::after,
  .solution-section .solution-icon,
  .solution-section .solution-icon svg,
  #how-it-works.workflow-motion .workflow-entry,
  #how-it-works.workflow-motion .workflow-rail::after,
  .workflow-content,
  .workflow-content::before,
  .workflow-number,
  .workflow-tag {
    transition: none !important;
    animation: none !important;
  }

  .solution-section .solution-card:hover,
  .solution-section .solution-card:focus-within,
  .solution-section .solution-card:hover .solution-icon,
  .solution-section .solution-card:focus-within .solution-icon,
  .solution-section .solution-card:hover .solution-icon svg,
  .solution-section .solution-card:focus-within .solution-icon svg,
  .workflow-entry:hover .workflow-content,
  .workflow-entry:focus-within .workflow-content,
  .workflow-entry:hover .workflow-number,
  .workflow-entry:focus-within .workflow-number,
  .workflow-entry:hover .workflow-tag,
  .workflow-entry:focus-within .workflow-tag {
    transform: none !important;
  }

  #how-it-works.workflow-motion .workflow-entry {
    opacity: 1 !important;
  }

  #how-it-works.workflow-motion .workflow-rail::after {
    opacity: 0.9;
    transform: translateX(-0.5px) scaleY(1);
  }
}
/* End solution interaction refinement */

/* Trusted by founder teams */
.trust-section {
  padding: 56px 0 68px;
  background: rgba(248, 250, 253, 0.78);
}

.trust-head {
  display: grid;
  justify-items: center;
  text-align: center;
  margin-bottom: 34px;
}

.trust-head h2 {
  max-width: none;
  white-space: nowrap;
}

.trust-grid {
  position: relative;
  width: min(100%, 1020px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 46px;
}

.trust-grid::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, rgba(226, 231, 239, 0) 0%, rgba(226, 231, 239, 0.86) 16%, rgba(219, 226, 235, 0.9) 50%, rgba(226, 231, 239, 0.86) 84%, rgba(226, 231, 239, 0) 100%);
  transform: translateX(-0.5px);
}

.trust-item {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  gap: 20px;
}

.trust-logo-stage {
  width: 100%;
  min-height: 102px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 22px;
  border-bottom: 1px solid rgba(226, 231, 239, 0.92);
}

.trust-logo-stage img {
  width: auto;
  max-width: min(100%, 350px);
  max-height: 78px;
}

.trust-item p {
  max-width: 37ch;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.66;
  color: #556274;
}

@media (max-width: 900px) {
  .trust-section {
    padding: 50px 0 64px;
  }

  .trust-head h2 {
    white-space: normal;
    max-width: 16ch;
  }

  .trust-grid {
    gap: 34px;
  }

  .trust-item {
    max-width: 390px;
  }

  .trust-logo-stage {
    min-height: 92px;
  }
}

@media (max-width: 760px) {
  .trust-section {
    padding: 44px 0 56px;
  }

  .trust-head {
    justify-items: start;
    text-align: left;
    margin-bottom: 26px;
  }

  .trust-head h2 {
    white-space: normal;
    max-width: 12ch;
  }

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

  .trust-grid::before {
    display: none;
  }

  .trust-item {
    max-width: none;
    justify-items: start;
    text-align: left;
  }

  .trust-logo-stage {
    min-height: 0;
    justify-content: flex-start;
    padding: 0 0 18px;
  }

  .trust-logo-stage img {
    max-width: min(100%, 300px);
    max-height: 68px;
  }

  .trust-item p {
    max-width: none;
    margin: 0;
  }
}
/* End trusted by founder teams */

/* Founder section refinement */
#about {
  padding: 76px 0 96px;
}

#about > .container {
  width: min(1240px, 94vw);
}

.founder-section-head {
  display: grid;
  width: min(100%, 1060px);
  margin: 0 auto 38px;
  padding-left: calc(306px + clamp(38px, 5vw, 62px));
  box-sizing: border-box;
  justify-items: start;
  text-align: left;
}

.founder-section-head h2 {
  max-width: none;
  font-size: clamp(1.7rem, 2.05vw, 2.18rem);
  font-weight: 600;
  white-space: nowrap;
}

.about-layout {
  grid-template-columns: minmax(270px, 306px) minmax(0, 1fr);
  max-width: 1060px;
  margin-inline: auto;
  justify-content: center;
  gap: clamp(38px, 5vw, 62px);
  align-items: center;
}

.founder-portrait {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 306px;
  height: auto;
  justify-self: center;
  isolation: isolate;
  cursor: pointer;
}

.founder-portrait img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center top;
  transition:
    transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.32s ease;
}

.founder-contact-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(31, 41, 55, 0.05) 0%, rgba(31, 41, 55, 0.22) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.founder-contact-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.founder-contact-link {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.96);
  color: var(--primary-dark);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.16);
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}

.founder-contact-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.founder-contact-link .linkedin-icon {
  width: 21px;
  height: 21px;
  fill: currentColor;
  stroke: none;
}

.founder-portrait:hover img,
.founder-portrait:focus img,
.founder-portrait:focus-within img,
.founder-portrait.is-contact-open img {
  transform: scale(1.02);
  filter: saturate(0.92) brightness(0.9);
}

.founder-portrait:hover .founder-contact-overlay,
.founder-portrait:focus .founder-contact-overlay,
.founder-portrait:focus-within .founder-contact-overlay,
.founder-portrait.is-contact-open .founder-contact-overlay {
  opacity: 1;
  pointer-events: auto;
}

.founder-portrait:hover .founder-contact-actions,
.founder-portrait:focus .founder-contact-actions,
.founder-portrait:focus-within .founder-contact-actions,
.founder-portrait.is-contact-open .founder-contact-actions {
  opacity: 1;
  transform: none;
}

.founder-contact-link:hover,
.founder-contact-link:focus-visible {
  transform: translateY(-2px);
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 16px 32px rgba(17, 24, 39, 0.2);
}

.about-copy {
  display: grid;
  width: 100%;
  max-width: 720px;
  justify-self: start;
  align-content: start;
  row-gap: 0;
  padding-block: 0;
}

.about-copy h2 {
  display: inline-block;
  max-width: 39ch;
  font-size: clamp(1.27rem, 1.52vw, 1.64rem);
  line-height: 1.16;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 22px;
}

.founder-headline-break {
  display: inline;
}

.about-copy p {
  max-width: 58ch;
  font-size: clamp(1.02rem, 1.05vw, 1.1rem);
  line-height: 1.72;
  color: #566274;
}

.about-copy p:first-of-type {
  color: #30394b;
  font-weight: 500;
}

.about-copy p + p {
  margin-top: 16px;
}

html[lang="de"] .about-copy,
html[lang="fr"] .about-copy {
  max-width: 760px;
}

html[lang="de"] .about-copy h2,
html[lang="fr"] .about-copy h2 {
  max-width: 42ch;
}

html[lang="de"] .about-copy p,
html[lang="fr"] .about-copy p {
  max-width: 62ch;
}

@media (hover: none) {
  .founder-contact-overlay {
    align-items: center;
    justify-content: center;
    padding: 0;
    background: linear-gradient(180deg, rgba(31, 41, 55, 0.04) 0%, rgba(31, 41, 55, 0.2) 100%);
  }

  .founder-contact-actions {
    opacity: 0;
    transform: translateY(8px);
  }
}

@media (max-width: 1120px) {
  #about {
    padding: 66px 0 88px;
  }

  .founder-section-head {
    width: min(100%, 720px);
    margin-bottom: 34px;
    padding-left: 0;
  }

  .about-layout {
    max-width: 760px;
    gap: 32px;
  }

  .founder-portrait {
    max-width: 300px;
  }

  .about-copy {
    justify-self: center;
    max-width: 720px;
  }

  .about-copy h2,
  .about-copy p {
    max-width: none;
  }
}

@media (max-width: 760px) {
  #about {
    padding: 56px 0 74px;
  }

  .founder-section-head {
    width: 100%;
    margin-bottom: 28px;
    justify-items: start;
    text-align: left;
  }

  .founder-section-head h2 {
    max-width: none;
    white-space: normal;
  }

  .about-layout {
    gap: 24px;
  }

  .about-copy {
    max-width: none;
  }

  .founder-headline-break {
    display: none;
  }

  .founder-portrait {
    max-width: min(100%, 360px);
    justify-self: center;
  }

  .founder-portrait img {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .about-copy h2 {
    margin-bottom: 18px;
    font-size: clamp(1.2rem, 5.5vw, 1.48rem);
  }

  .about-copy p {
    font-size: 1rem;
    line-height: 1.68;
  }

  .about-copy p + p {
    margin-top: 14px;
  }

  .founder-contact-link {
    width: 48px;
    height: 48px;
  }

  .founder-contact-link svg {
    width: 20px;
    height: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .founder-portrait img,
  .founder-contact-overlay,
  .founder-contact-actions,
  .founder-contact-link {
    transition: none !important;
  }

  .founder-portrait:hover img,
  .founder-portrait:focus-within img,
  .founder-contact-link:hover,
  .founder-contact-link:focus-visible {
    transform: none !important;
  }
}
/* End founder section refinement */

/* Mobile responsiveness refinement */
body {
  overflow-x: hidden;
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 32px), var(--max));
  }

  .site-header {
    position: static;
  }

  .nav-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px 14px;
    min-height: 0;
    padding: 14px 0 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand-wordmark {
    font-size: clamp(1.68rem, 7.8vw, 1.9rem);
  }

  .nav-actions {
    justify-self: end;
    gap: 8px;
  }

  .nav-actions .btn {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.86rem;
    white-space: nowrap;
  }

  .language-switcher {
    min-height: 31px;
    padding: 0 5px;
  }

  .language-option {
    min-width: 23px;
    height: 21px;
    font-size: 0.64rem;
  }

  .nav {
    grid-column: 1 / -1;
    order: initial;
    width: auto;
    margin-inline: 0;
    padding: 4px 0 2px;
    gap: 18px;
    overflow-x: visible;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

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

  .nav a {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .hero {
    padding: 46px 0 52px;
  }

  .hero-shell {
    gap: 26px;
  }

  .hero-copy {
    gap: 14px;
  }

  .hero h1 {
    font-size: clamp(2.08rem, 8.7vw, 2.82rem);
    line-height: 1;
    max-width: 12.8ch;
  }

  html[lang="de"] .hero h1,
  html[lang="fr"] .hero h1 {
    max-width: 15.5ch;
  }

  .hero-lead,
  html[lang="de"] .hero-lead,
  html[lang="fr"] .hero-lead {
    width: min(100%, 37ch);
    max-width: 37ch;
    font-size: 1rem;
    line-height: 1.54;
  }

  .hero-model-stage {
    gap: 10px;
    padding: 10px;
    border-radius: 22px;
  }

  .hero-model-stage .hero-screen.is-front {
    width: 100%;
    justify-self: center;
  }

  .hero-model-stage .hero-screen.is-back {
    width: min(88%, 420px);
    justify-self: center;
    opacity: 0.7;
  }

  .solution-section {
    padding-top: 50px;
  }

  #how-it-works {
    padding-top: 56px;
  }

  .trust-section {
    padding-top: 44px;
  }

  #about {
    padding-top: 58px;
  }

  #pricing {
    padding-top: 58px;
  }

  .solution-section .solution-head h2 {
    max-width: 15ch;
  }

  html[lang="fr"] .solution-section .solution-head h2 {
    max-width: 18ch;
  }

  .solution-section .solution-card {
    padding: 28px 22px 26px;
    border-radius: 24px;
  }

  .solution-section .solution-card h3 {
    white-space: normal;
    font-size: 1.26rem;
    line-height: 1.18;
  }

  .solution-section .solution-card-copy p {
    max-width: none;
    line-height: 1.66;
  }

  #how-it-works .workflow-head h2 {
    max-width: 15ch;
  }

  html[lang="de"] #how-it-works .workflow-head h2,
  html[lang="fr"] #how-it-works .workflow-head h2 {
    max-width: 17ch;
  }

  #how-it-works .workflow-head > p:last-child,
  html[lang="fr"] #how-it-works .workflow-head > p:last-child {
    max-width: 36ch;
  }

  .workflow-entry {
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 14px;
  }

  .workflow-rail::before,
  .workflow-rail::after {
    left: 24px;
  }

  .workflow-number {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .workflow-content,
  .workflow-content-left,
  .workflow-content-right {
    padding-bottom: 24px;
  }

  .trust-head h2 {
    max-width: 14ch;
  }

  .trust-logo-stage img {
    max-width: min(100%, 260px);
  }

  .founder-section-head h2 {
    font-size: clamp(1.56rem, 7vw, 2rem);
    line-height: 1.12;
  }

  .founder-portrait {
    max-width: min(100%, 320px);
  }

  .about-copy h2 {
    font-size: clamp(1.14rem, 5vw, 1.38rem);
    line-height: 1.22;
  }

  .about-copy p {
    line-height: 1.64;
  }

  #pricing .pricing-head {
    margin-bottom: 30px;
  }

  #pricing .pricing-head h2 {
    max-width: 17ch;
    font-size: clamp(1.58rem, 6.8vw, 2rem);
    line-height: 1.08;
  }

  html[lang="de"] #pricing .pricing-head h2,
  html[lang="fr"] #pricing .pricing-head h2 {
    max-width: 19ch;
  }

  #pricing .pricing-head p {
    max-width: 36ch;
    line-height: 1.56;
  }

  .pricing-card,
  .pricing-card-primary,
  .pricing-card-secondary {
    padding: 28px 22px 24px;
  }

  .pricing-card h3 {
    font-size: clamp(1.42rem, 7vw, 1.76rem);
  }

  .pricing-price {
    font-size: clamp(2rem, 9vw, 2.5rem);
    letter-spacing: -0.045em;
  }

  #pricing .pricing-list {
    margin-top: 24px;
    padding-top: 22px;
    gap: 12px;
  }

  #pricing .pricing-list li {
    line-height: 1.52;
  }

  .final-cta {
    padding-bottom: 70px;
  }

  .final-cta-box {
    padding: 38px 20px 36px;
    border-radius: 24px;
  }

  .final-cta-box h2 {
    max-width: 15ch;
    font-size: clamp(1.74rem, 8vw, 2.28rem);
  }

  .final-cta-copy {
    max-width: 34ch;
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .final-cta-box .btn {
    width: 100%;
    max-width: 260px;
  }

  .site-footer {
    padding: 60px 0 30px;
  }

  .footer-shell {
    gap: 34px;
  }

  .footer-main {
    gap: 30px;
    padding-bottom: 34px;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-column {
    gap: 10px;
  }
}

@media (max-width: 430px) {
  .nav-wrap {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
  }

  .nav-actions {
    justify-self: center;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.45rem);
  }

  html[lang="de"] .hero h1,
  html[lang="fr"] .hero h1 {
    max-width: 14.5ch;
  }

  .pricing-card,
  .pricing-card-primary,
  .pricing-card-secondary {
    padding-inline: 20px;
  }
}
/* End mobile responsiveness refinement */

/* Mobile viewport fixes */
@media (max-width: 1024px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body,
  main,
  .site-header,
  .hero,
  .section,
  .site-footer {
    width: 100%;
    max-width: 100%;
  }

  .site-header,
  main,
  .section,
  .site-footer {
    overflow-x: hidden;
  }

  .container,
  #about > .container {
    width: min(calc(100% - 40px), var(--max));
    max-width: 100%;
  }

  .nav-wrap {
    min-height: 74px;
    flex-wrap: wrap;
    gap: 14px;
    padding: 12px 0;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 22px;
    overflow: visible;
    white-space: normal;
  }

  .nav a,
  .nav-actions,
  .hero-copy,
  .solution-card,
  .workflow-content,
  .trust-item,
  .about-copy,
  .pricing-card,
  .footer-main,
  .footer-column {
    min-width: 0;
  }

  .solution-grid,
  .pricing-layout,
  .about-layout,
  .trust-grid {
    width: 100%;
    max-width: 100%;
  }

  .pricing-layout,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .founder-section-head {
    width: min(100%, 760px);
    padding-left: 0;
  }

  .about-layout {
    max-width: 760px;
    gap: 30px;
  }

  .founder-portrait {
    width: min(100%, 320px);
    max-width: 320px;
  }

  .about-copy {
    max-width: 100%;
    justify-self: stretch;
  }

  .about-copy h2,
  .about-copy p,
  html[lang="de"] .about-copy h2,
  html[lang="de"] .about-copy p,
  html[lang="fr"] .about-copy h2,
  html[lang="fr"] .about-copy p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .container,
  #about > .container {
    width: min(calc(100% - 48px), 560px);
    margin-inline: auto;
  }

  .site-header {
    position: static;
  }

  .nav-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    justify-items: stretch;
    gap: 10px 12px;
    min-height: 0;
    padding: 14px 0;
  }

  .brand,
  .nav-actions,
  .nav {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
  }

  .brand {
    justify-content: flex-start;
  }

  .brand-wordmark {
    font-size: 1.78rem;
  }

  .mobile-menu-toggle {
    grid-column: 2;
    grid-row: 1;
    width: 40px;
    height: 40px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    justify-self: end;
    border: 1px solid rgba(213, 221, 232, 0.82);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--primary-dark);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.88),
      0 6px 16px rgba(17, 24, 39, 0.045);
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition:
      transform 0.2s ease,
      opacity 0.2s ease;
  }

  .site-header.is-menu-open .mobile-menu-toggle span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .mobile-menu-toggle span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-actions {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: auto minmax(0, max-content);
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    overflow: hidden;
  }

  .language-switcher {
    min-height: 31px;
    padding: 0 5px;
  }

  .language-option {
    min-width: 22px;
    height: 21px;
    font-size: 0.64rem;
  }

  .nav-actions .btn {
    width: auto;
    max-width: 100%;
    justify-self: end;
    min-height: 32px;
    padding: 0 11px;
    font-size: 0.76rem;
    line-height: 1.1;
    white-space: normal;
    text-align: center;
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 3;
    display: none;
    grid-template-columns: 1fr;
    gap: 2px;
    margin: 2px 0 0;
    padding: 8px;
    border: 1px solid rgba(213, 221, 232, 0.82);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.84),
      0 14px 30px rgba(17, 24, 39, 0.055);
    overflow: hidden;
  }

  .site-header.is-menu-open .nav {
    display: grid;
  }

  .nav a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 36px;
    padding: 9px 10px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    font-size: 0.86rem;
    font-weight: 560;
    line-height: 1.25;
    text-align: left;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .nav a:hover,
  .nav a:focus-visible {
    background: rgba(63, 71, 99, 0.055);
  }

  .section {
    padding: 70px 0;
  }

  .hero {
    padding: 44px 0 56px;
  }

  .hero-positioning {
    max-width: 100%;
    min-height: 30px;
    padding: 7px 11px;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
  }

  .hero h1 {
    max-width: 13ch;
    font-size: 2.32rem;
    line-height: 1;
    overflow-wrap: break-word;
  }

  html[lang="de"] .hero h1,
  html[lang="fr"] .hero h1 {
    max-width: 15ch;
  }

  .hero-lead,
  html[lang="de"] .hero-lead,
  html[lang="fr"] .hero-lead {
    width: 100%;
    max-width: 36ch;
    font-size: 1rem;
    line-height: 1.52;
    overflow-wrap: break-word;
  }

  .hero-model-stage {
    width: 100%;
    padding: 10px;
    border-radius: 20px;
  }

  .hero-screen,
  .hero-model-stage .hero-screen.is-front,
  .hero-model-stage .hero-screen.is-back,
  .hero-model-stage.is-model-front .hero-screen-model,
  .hero-model-stage.is-model-front .hero-screen-main {
    width: 100%;
    max-width: 100%;
  }

  .solution-section,
  #how-it-works,
  .trust-section,
  #about,
  #pricing {
    padding-top: 64px;
  }

  .section-head,
  .solution-section .solution-head,
  #how-it-works .workflow-head,
  .trust-head,
  .founder-section-head,
  #pricing .pricing-head {
    width: 100%;
    max-width: 100%;
    margin-bottom: 26px;
    justify-items: start;
    text-align: left;
  }

  .section-head h2,
  .solution-section .solution-head h2,
  #how-it-works .workflow-head h2,
  .trust-head h2,
  .founder-section-head h2,
  #pricing .pricing-head h2,
  .final-cta-box h2 {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .solution-section .solution-head h2,
  #how-it-works .workflow-head h2,
  .trust-head h2,
  .founder-section-head h2,
  #pricing .pricing-head h2 {
    font-size: 2rem;
    line-height: 1.08;
  }

  .section-head p,
  #how-it-works .workflow-head > p:last-child,
  #pricing .pricing-head p {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.56;
    overflow-wrap: break-word;
  }

  .solution-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }

  .solution-section .solution-card {
    width: 100%;
    max-width: 520px;
    padding: 26px 20px 24px;
    border-radius: 20px;
  }

  .solution-section .solution-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
  }

  .solution-section .solution-card h3 {
    max-width: 100%;
    font-size: 1.22rem;
    line-height: 1.2;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .solution-section .solution-card-copy {
    margin-top: 16px;
    gap: 10px;
  }

  .solution-section .solution-card-copy p {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .workflow-rail {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
  }

  .workflow-entry {
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 12px;
    align-items: start;
    padding-bottom: 26px;
  }

  .workflow-entry:last-child {
    padding-bottom: 0;
  }

  .workflow-rail::before,
  .workflow-rail::after {
    left: 22px;
  }

  .workflow-number-wrap {
    grid-column: 1;
    grid-row: 1;
    width: 44px;
    min-height: 0;
    padding-top: 0;
    align-self: start;
  }

  .workflow-number {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    font-size: 0.66rem;
  }

  .workflow-content,
  .workflow-content-left,
  .workflow-content-right {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    max-width: 100%;
    padding-bottom: 0;
  }

  .workflow-content::before,
  .workflow-content-left::before,
  .workflow-content-right::before {
    left: -14px;
    width: 14px;
  }

  .workflow-content h3 {
    font-size: 1.2rem;
    line-height: 1.18;
    overflow-wrap: break-word;
  }

  .workflow-content p {
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.58;
    overflow-wrap: break-word;
  }

  .workflow-tag {
    width: fit-content;
    max-width: 100%;
    min-height: 0;
    padding: 7px 10px;
    line-height: 1.25;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    justify-items: center;
  }

  .trust-grid::before {
    display: none;
  }

  .trust-item {
    max-width: 100%;
    gap: 14px;
    justify-items: start;
    text-align: left;
  }

  .trust-logo-stage {
    min-height: 0;
    justify-content: flex-start;
    padding: 0 0 14px;
  }

  .trust-logo-stage img {
    max-width: min(100%, 230px);
    max-height: 56px;
  }

  .trust-item p {
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.56;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
    justify-items: center;
    margin-inline: auto;
  }

  .founder-portrait {
    width: min(100%, 320px);
    max-width: 320px;
    justify-self: center;
  }

  .founder-contact-overlay {
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .founder-contact-actions {
    transform: none;
  }

  .about-copy h2 {
    margin-bottom: 16px;
    font-size: 1.3rem;
    line-height: 1.22;
    overflow-wrap: break-word;
  }

  .about-copy p {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.6;
    overflow-wrap: break-word;
  }

  .pricing-layout {
    grid-template-columns: 1fr;
    gap: 22px;
    justify-items: center;
    margin-inline: auto;
  }

  .pricing-card,
  .pricing-card-primary,
  .pricing-card-secondary {
    width: 100%;
    max-width: 100%;
    padding: 26px 20px 24px;
    border-radius: 20px;
  }

  .pricing-card::before {
    left: 20px;
    right: 20px;
  }

  .pricing-badge {
    max-width: 100%;
    white-space: normal;
    line-height: 1.2;
    text-align: center;
  }

  .pricing-card h3,
  .pricing-card-secondary h3 {
    max-width: 100%;
    font-size: 1.58rem;
    line-height: 1.1;
    overflow-wrap: break-word;
  }

  .pricing-price {
    max-width: 100%;
    font-size: 2.32rem;
    line-height: 1;
    overflow-wrap: break-word;
  }

  .pricing-secondary-price {
    max-width: 100%;
    font-size: 1.32rem;
    line-height: 1.16;
    overflow-wrap: break-word;
  }

  .pricing-note {
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.55;
  }

  #pricing .pricing-list {
    margin-top: 22px;
    padding-top: 20px;
    gap: 11px;
  }

  #pricing .pricing-list li {
    padding-left: 22px;
    font-size: 0.95rem;
    line-height: 1.5;
    overflow-wrap: break-word;
  }

  #pricing .pricing-list li::before {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 3px rgba(63, 71, 99, 0.08);
  }

  #pricing {
    padding-bottom: 42px;
  }

  .pricing-cta {
    min-height: 46px;
  }

  .final-cta {
    padding-bottom: 74px;
  }

  .final-cta-box {
    padding: 34px 18px 32px;
    border-radius: 20px;
  }

  .final-cta-box h2 {
    font-size: 2rem;
    line-height: 1.08;
  }

  .final-cta-copy {
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.56;
  }

  .final-cta-box .btn {
    width: 100%;
    max-width: 260px;
  }

  .site-footer {
    padding: 56px 0 30px;
  }

  .footer-shell {
    gap: 30px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-bottom: 30px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-logo {
    font-size: 1.8rem;
    overflow-wrap: break-word;
  }

  .footer-brand p,
  .footer-column a,
  .footer-bottom p,
  .footer-bottom a {
    overflow-wrap: anywhere;
  }

  .footer-column {
    gap: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .container,
  #about > .container {
    width: min(calc(100% - 42px), 440px);
    margin-inline: auto;
  }

  .nav-wrap {
    padding: 14px 0;
  }

  .brand-wordmark {
    font-size: 1.68rem;
  }

  .nav-actions {
    gap: 7px;
  }

  .language-switcher {
    gap: 2px;
    padding: 0 4px;
  }

  .language-option {
    min-width: 21px;
    padding: 0 4px;
  }

  .nav-actions .btn {
    min-height: 31px;
    padding: 0 10px;
    font-size: 0.74rem;
  }

  .nav {
    width: 100%;
    justify-content: initial;
    gap: 7px;
  }

  .nav a {
    min-height: 36px;
    padding: 8px 7px;
    font-size: 0.8rem;
  }

  .hero {
    padding: 40px 0 50px;
  }

  .hero h1 {
    font-size: 2.04rem;
  }

  .hero-lead,
  html[lang="de"] .hero-lead,
  html[lang="fr"] .hero-lead {
    font-size: 0.96rem;
  }

  .hero-model-stage {
    padding: 8px;
    border-radius: 18px;
  }

  .section {
    padding: 62px 0;
  }

  .solution-section,
  #how-it-works,
  .trust-section,
  #about,
  #pricing {
    padding-top: 56px;
  }

  .solution-section .solution-head h2,
  #how-it-works .workflow-head h2,
  .trust-head h2,
  .founder-section-head h2,
  #pricing .pricing-head h2,
  .final-cta-box h2 {
    font-size: 1.72rem;
  }

  .solution-section .solution-card,
  .pricing-card,
  .pricing-card-primary,
  .pricing-card-secondary {
    padding: 24px 18px 22px;
  }

  .workflow-entry {
    grid-template-columns: 38px minmax(0, 1fr);
    column-gap: 10px;
    padding-bottom: 24px;
  }

  .workflow-rail::before,
  .workflow-rail::after {
    left: 19px;
  }

  .workflow-number-wrap {
    width: 38px;
  }

  .workflow-number {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    font-size: 0.62rem;
  }

  .workflow-content::before,
  .workflow-content-left::before,
  .workflow-content-right::before {
    left: -11px;
    width: 11px;
  }

  .workflow-content h3 {
    font-size: 1.12rem;
  }

  .workflow-content p,
  .solution-section .solution-card-copy p,
  .trust-item p,
  .about-copy p,
  #pricing .pricing-list li {
    font-size: 0.94rem;
  }

  .workflow-tag {
    font-size: 0.74rem;
  }

  .trust-logo-stage img {
    max-width: min(100%, 210px);
    max-height: 50px;
  }

  .founder-portrait {
    width: min(100%, 290px);
    max-width: 290px;
  }

  #pricing {
    padding-bottom: 34px;
  }

  .about-copy h2 {
    font-size: 1.18rem;
  }

  .pricing-card h3,
  .pricing-card-secondary h3 {
    font-size: 1.42rem;
  }

  .pricing-price {
    font-size: 2.06rem;
  }

  .pricing-secondary-price {
    font-size: 1.2rem;
  }

  .footer-logo {
    font-size: 1.64rem;
  }
}
