:root {
  color-scheme: only light;
  --purple: #4f2854;
  --purple-2: #6a2f70;
  --accent: #4f2854;
  --accent-contrast: #ffffff;
  --ink: #161517;
  --muted: #6f6c72;
  --line: #ddd9df;
  --paper: #fbfafb;
  --white: #ffffff;
  --shell: min(1440px, calc(100vw - 112px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #fbfafb;
  color-scheme: only light;
}

body {
  margin: 0;
  font-family: "Outfit", "Aptos", "Segoe UI Variable", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body[data-sector="services"] { --accent: #4f2854; --accent-contrast: #ffffff; }
body[data-sector="healthcare"] { --accent: #239886; --accent-contrast: #ffffff; }
body[data-sector="manufacturing"] { --accent: #ffcc00; --accent-contrast: #241d25; }

.dark-mode-probe {
  position: fixed;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  pointer-events: none;
  background-color: canvas;
  color-scheme: light;
}

html,
body,
body * {
  color-scheme: only light;
}

.chrome-auto-dark-detected,
.chrome-auto-dark-detected body,
.chrome-auto-dark-detected body * {
  color-scheme: only light !important;
}

@media (prefers-color-scheme: dark) {
  :root,
  html,
  body,
  body * {
    color-scheme: only light !important;
  }

  html,
  body {
    color: var(--ink) !important;
    background-color: var(--paper) !important;
  }

  .hero-photo,
  .hero-photo img,
  .product-gallery__main,
  .product-gallery__main img,
  .client-proof,
  .client-proof__logos,
  .footer,
  .footer-funding,
  .footer-funding__logos {
    color-scheme: only light !important;
  }

  .hero-photo img {
    filter: none !important;
    mix-blend-mode: normal !important;
  }

  .product-gallery__main img {
    filter: drop-shadow(0 18px 36px rgba(40, 25, 42, .10)) !important;
    mix-blend-mode: normal !important;
  }
}

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

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

button,
input,
textarea,
select {
  font: inherit;
  color-scheme: light;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
}

[id] {
  scroll-margin-top: 88px;
}

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

h2 {
  overflow-wrap: anywhere;
  hyphens: auto;
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(42px, 4.5vw, 72px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.045em;
}

h3 {
  overflow-wrap: anywhere;
  hyphens: auto;
  font-weight: 500;
  letter-spacing: -.025em;
}

p {
  line-height: 1.55;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: 118px 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #d8bbdd;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: #111;
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: none;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  height: 88px;
  padding: 0 48px;
  color: #fff;
  transition: background .3s ease, box-shadow .3s ease, color .3s ease, height .3s ease;
}

.site-header.is-scrolled {
  height: 74px;
  color: var(--ink);
  background: rgba(251, 250, 251, .94);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(32, 26, 33, .08);
}

.brand {
  position: relative;
  display: flex;
  align-items: center;
  width: 154px;
  height: 34px;
}

.brand-logo {
  position: absolute;
  inset: 0 auto auto 0;
  width: 154px;
  height: auto;
  transition: opacity .25s ease;
}

.brand-logo--dark {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo--light {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo--dark {
  opacity: 1;
}

.desktop-nav {
  display: flex;
  justify-content: flex-end;
  gap: 34px;
  font-size: 15px;
}

.desktop-nav a {
  opacity: .84;
  transition: opacity .2s ease;
}

.desktop-nav a:hover {
  opacity: 1;
}

.header-actions {
  grid-column: 3;
  display: flex;
  align-items: center;
  gap: 16px;
}


.language-switcher {
  position: relative;
  color: currentColor;
}

.language-switcher summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 54px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(20, 18, 21, .08);
  color: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  cursor: pointer;
  list-style: none;
  -webkit-user-select: none;
  user-select: none;
}

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

.language-switcher summary svg {
  width: 9px;
  height: 6px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  transition: transform .18s ease;
}

.language-switcher[open] summary svg {
  transform: rotate(180deg);
}

.site-header.is-scrolled .language-switcher summary {
  border-color: rgba(79, 40, 84, .16);
  background: rgba(79, 40, 84, .035);
}

.language-switcher__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 180px;
  padding: 7px;
  border: 1px solid rgba(37, 29, 39, .10);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 54px rgba(33, 24, 35, .16);
}

.language-switcher__menu a {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 7px 9px;
  border-radius: 9px;
  font-size: 13px;
  letter-spacing: 0;
}

.language-switcher__menu a:hover,
.language-switcher__menu a[aria-current="page"] {
  background: #f4f0f5;
}

.language-switcher__menu strong {
  color: var(--purple);
  font-size: 12px;
  letter-spacing: .06em;
}

.language-switcher__menu span {
  color: #625c64;
}

.anchor-alias {
  position: relative;
  top: -82px;
  display: block;
  width: 0;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
}


.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-contrast);
  font-size: 15px;
  transition: background-color 1.2s ease, color 1.2s ease, transform .2s ease, opacity .2s ease;
}

.site-header.is-scrolled .header-cta {
  border-color: transparent;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 0;
  background: transparent;
  color: currentColor;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 7px 0;
  background: currentColor;
  transition: transform .2s ease;
}

.mobile-nav {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: max(900px, 100svh);
  height: auto;
  overflow: hidden;
  background: #111;
  color: #fff;
}

.hero-media,
.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-photo {
  margin: 0;
  opacity: 0;
  transition: opacity 1.45s cubic-bezier(.4, 0, .2, 1);
}

.hero-photo.is-active {
  opacity: 1;
}

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 11, 13, .82) 0%, rgba(11, 11, 13, .67) 22%, rgba(11, 11, 13, .26) 49%, rgba(11, 11, 13, .06) 70%, rgba(11, 11, 13, .22) 100%),
    linear-gradient(180deg, rgba(8, 8, 9, .18) 0%, rgba(8, 8, 9, .02) 48%, rgba(8, 8, 9, .25) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: inherit;
  padding-block: 190px 116px;
}

.hero-copy {
  position: relative;
  width: min(660px, 56vw);
  margin-top: 0;
  min-width: 0;
}

.hero-copy::before {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: var(--accent);
  transition: background-color 1.2s ease;
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(70px, 7.5vw, 122px);
  font-weight: 500;
  line-height: .84;
  letter-spacing: -.055em;
  overflow-wrap: anywhere;
  hyphens: auto;
}

/* One shared gap controls both sides of the CTA, including wrapped translations. */
.hero-actions {
  --hero-action-gap: 42px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--hero-action-gap);
}

.hero-actions > .hero-subline,
.hero-actions > .hero-lead {
  margin: 0;
}

.hero-actions > .button {
  flex-shrink: 0;
}

.hero-subline {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: clamp(38px, 4vw, 66px);
  line-height: 1;
  letter-spacing: -.04em;
}

.hero-lead {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.45;
  letter-spacing: -.01em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 999px;
  font-size: 16px;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

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

.button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.button--primary {
  background: var(--accent);
  color: var(--accent-contrast);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .16);
  transition: transform .2s ease, background-color 1.2s ease, color 1.2s ease, filter .2s ease;
}

.button--primary:hover {
  filter: brightness(.94);
}

.scroll-hint {
  position: absolute;
  left: 0;
  bottom: 36px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.scroll-hint__mouse {
  position: relative;
  width: 31px;
  height: 47px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 18px;
}

.scroll-hint__mouse i {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 2px;
  height: 8px;
  background: var(--accent);
  transform: translateX(-50%);
  animation: wheel 1.6s ease-in-out infinite;
  transition: background-color 1.2s ease;
}

@keyframes wheel {
  0%, 100% { opacity: .2; transform: translate(-50%, 0); }
  45% { opacity: 1; }
  70% { opacity: .2; transform: translate(-50%, 7px); }
}

.hero-ratings {
  position: absolute;
  top: 106px;
  left: 50%;
  z-index: 4;
  display: flex;
  align-items: stretch;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(18, 17, 20, .48);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, .12);
  color: #fff;
  transform: translateX(-50%);
}

.hero-ratings a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 14px;
  border-right: 1px solid rgba(255, 255, 255, .16);
  white-space: nowrap;
  transition: background .2s ease;
}

.hero-ratings a:last-child {
  border-right: 0;
}

.hero-ratings a:hover {
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
}

.hero-ratings__platform {
  color: rgba(255, 255, 255, .84);
  font-size: 12px;
  font-weight: 500;
}

.hero-ratings__stars {
  color: #f5c34b;
  font-size: 10px;
  letter-spacing: .05em;
}

.hero-ratings strong {
  font-size: 12px;
  font-weight: 600;
}

/* Client proof */
.client-proof {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.client-proof__inner {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  gap: 32px;
  min-height: 132px;
  padding-block: 18px;
}

.client-proof__inner > .eyebrow { margin: 0; align-self: center; }
.client-proof__logos {
  display: grid;
  grid-template-columns: .65fr .75fr 1.6fr .6fr 1.35fr 1.6fr .7fr .7fr;
  align-items: center;
  gap: 16px 24px;
}
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 76px;
}
.client-logo__art {
  display: block;
  width: 100%;
  height: 60px;
  overflow: hidden;
  filter: grayscale(1);
}
.client-logo--szpital .client-logo__art { max-width: 44px; }
.client-logo--goon .client-logo__art { max-width: 52px; }
.client-logo--salve-medica .client-logo__art { max-width: 142px; }
.client-logo--umw .client-logo__art { max-width: 36px; }
.client-logo--eura7 .client-logo__art { max-width: 120px; }
.client-logo--unicell .client-logo__art { max-width: 142px; }
.client-logo--bitspiration .client-logo__art { max-width: 48px; }
.client-logo--beit .client-logo__art { max-width: 46px; }

/* Intro and use cases */
.section--intro {
  padding-top: 76px;
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: end;
  gap: 100px;
}

.section-lead {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(20px, 1.65vw, 27px);
  line-height: 1.46;
}

.situation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.intro-situation-grid {
  margin-top: 76px;
}

.situation-grid article {
  min-height: 250px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-situation-grid article {
  min-height: 220px;
}

.situation-grid article > span {
  color: var(--purple);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.situation-grid h3 {
  margin: 62px 0 10px;
  font-size: 28px;
}

.intro-situation-grid h3 {
  margin-top: 52px;
}

.situation-grid p {
  max-width: 350px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

/* Product */
.section--product {
  background: #fff;
}

.product-layout {
  display: grid;
  grid-template-columns: 1.22fr .78fr;
  align-items: center;
  gap: 64px;
}

.product-shot {
  margin: 0;
}

.product-shot__frame {
  overflow: hidden;
  border: 1px solid rgba(49, 42, 51, .09);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(40, 25, 42, .08);
}

.product-gallery {
  display: flex;
  flex-direction: column;
  padding: 12px;
}

.product-gallery__main {
  order: 1;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  aspect-ratio: 901 / 731;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  background: transparent;
}

.product-gallery__panel {
  position: absolute;
  inset: 0;
}

.product-gallery__panel[hidden] {
  display: none !important;
}

.product-gallery__main img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center top;
  filter: drop-shadow(0 18px 36px rgba(40, 25, 42, .10));
  transition: opacity .22s ease;
}

.product-gallery__main.is-switching img {
  opacity: 0;
}

.product-gallery > noscript {
  order: 3;
}

.product-gallery__fallback {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px 6px 0;
}

.product-tabs {
  order: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin-top: 14px;
  padding: 6px;
  border: 1px solid #e1d7e5;
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 10px 28px rgba(40, 25, 42, .05);
}

.product-tab {
  min-height: 44px;
  padding: 10px 12px;
  border: 0;
  border-radius: 13px;
  background: transparent;
  color: #5f5962;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.product-tab:hover {
  background: #f4eef6;
  color: var(--purple);
}

.product-tab.is-active {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 8px 18px rgba(79, 40, 84, .18);
}

.product-tab:focus-visible {
  outline-offset: 2px;
}

.product-shot figcaption {
  margin: 12px 4px 0;
  color: #817c84;
  font-size: 13px;
  line-height: 1.4;
}

.product-copy > p {
  max-width: 580px;
  margin: 30px 0 36px;
  color: var(--muted);
  font-size: 20px;
}

.product-steps {
  border-top: 1px solid #d7d1d9;
}

.product-steps > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #d7d1d9;
}

.product-steps strong {
  color: var(--purple);
  font-size: 13px;
}

.product-steps span {
  color: var(--muted);
}

.product-steps b {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-weight: 500;
}

.text-link {
  display: inline-flex;
  gap: 12px;
  margin-top: 30px;
  color: var(--purple);
  font-weight: 600;
}

/* Shared section headings */
.section-heading {
  margin-bottom: 64px;
}

.section-heading h2 {
  max-width: 1050px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 90px;
}

.section-heading--split > p {
  max-width: 540px;
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 20px;
}

/* Mechanism */
.section--mechanism {
  background: #fff;
}

.mechanism-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.mechanism-grid article {
  min-height: 330px;
  padding: 34px;
  background: #fff;
}

.mechanism-grid b {
  color: var(--purple);
  font-size: 13px;
  letter-spacing: .08em;
}

.mechanism-grid h3 {
  margin: 98px 0 14px;
  font-size: 25px;
}

.mechanism-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

/* Privacy */
.section--privacy {
  background: #171318;
  color: #fff;
}

.privacy-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 110px;
}

.section--privacy h2 {
  color: #fff;
}

.privacy-lead {
  max-width: 520px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 22px;
}

.privacy-list {
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.privacy-list > div {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.privacy-list span {
  color: #b88dc0;
  font-size: 13px;
}

.privacy-list p {
  overflow-wrap: anywhere;
  hyphens: auto;
  margin: 0;
  color: rgba(255, 255, 255, .8);
  font-size: 18px;
}

/* Evidence and testimonials */
.section--evidence {
  background: #f7f5f7;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metrics div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
  padding: 34px 0 30px;
  border-right: 1px solid var(--line);
}

.metrics div:nth-child(2),
.metrics div:last-child {
  padding-left: 44px;
}

.metrics div:last-child {
  border-right: 0;
}

.metrics strong {
  color: var(--purple);
  font-size: clamp(64px, 7vw, 104px);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.06em;
}

.metrics span {
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
}

.testimonials-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-top: 76px;
}

.testimonials-head .eyebrow {
  margin-bottom: 14px;
}

.testimonials-head h3 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1.03;
  letter-spacing: -.04em;
}

.testimonials-controls {
  display: flex;
  gap: 8px;
}

.testimonials-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid #cfc9d1;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}

.testimonials-controls button:hover {
  border-color: #aaa2ad;
  background: #fff;
}

.testimonials-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(340px, 31.5%);
  gap: 16px;
  margin-top: 34px;
  padding-bottom: 8px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 390px;
  padding: 30px;
  border: 1px solid rgba(49, 42, 51, .08);
  border-radius: 16px;
  background: #fff;
  scroll-snap-align: start;
}

.testimonial-card--featured {
  background: #2d1b30;
  color: #fff;
}

.testimonial-card__source {
  align-self: flex-start;
  color: var(--purple);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.testimonial-card--featured .testimonial-card__source {
  color: #d7b7dc;
}

.testimonial-card blockquote {
  margin: 44px 0 46px;
  font-size: 24px;
  line-height: 1.28;
  letter-spacing: -.025em;
}

.testimonial-card p {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
}

.testimonial-card p strong {
  font-weight: 600;
}

.testimonial-card p span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.testimonial-card--featured p span {
  color: rgba(255, 255, 255, .62);
}

/* Roles */
.section--roles {
  background: #fff;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
}

.role-grid article {
  min-height: 280px;
  padding: 34px 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.role-grid article:nth-child(2n) {
  border-right: 0;
}

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

.role-grid span {
  color: var(--purple);
  font-size: 13px;
  font-weight: 700;
}

.role-grid h3 {
  margin: 76px 0 12px;
  font-size: 31px;
}

.role-grid p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

/* Sectors */
.section--sectors {
  padding-top: 0;
  background: #fff;
}

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

.sector-grid article {
  position: relative;
  min-height: 330px;
  padding: 34px;
  overflow: hidden;
  border-radius: 16px;
  background: #f6f3f7;
}

.sector-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--sector-accent, var(--purple));
}

.sector-card--services { --sector-accent: #4f2854; }
.sector-card--healthcare { --sector-accent: #239886; }
.sector-card--manufacturing { --sector-accent: #ffcc00; }
.sector-card--services .eyebrow { color: #4f2854; }
.sector-card--healthcare .eyebrow { color: #197b6c; }
.sector-card--manufacturing .eyebrow { color: #8a7000; }

.sector-grid h3 {
  margin: 66px 0 16px;
  font-size: 30px;
  line-height: 1.08;
}

.sector-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

/* Implementation */
.section--implementation {
  background: var(--paper);
}

.implementation-layout {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: start;
  gap: 110px;
}

.implementation-layout .section-lead {
  margin: 32px 0 38px;
  font-size: 20px;
}

.implementation-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.implementation-cta p {
  margin: 0 0 0 2px;
  color: var(--muted);
  font-size: 14px;
}

.button--outline-dark {
  border: 1px solid #282429;
  background: transparent;
  color: var(--ink);
}

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

.implementation-options article {
  min-height: 248px;
  padding: 28px 28px 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.implementation-options article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #efe6f1;
  color: var(--purple);
  font-size: 12px;
  font-weight: 600;
}

.implementation-options h3 {
  margin: 52px 0 12px;
  font-size: 27px;
  line-height: 1.05;
}

.implementation-options p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.implementation-option--guided {
  border-color: #e1d4e4;
  background: #f6f1f7;
}

.implementation-steps {
  border-top: 1px solid var(--line);
}

.implementation-steps > div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.implementation-steps strong {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #efe6f1;
  color: var(--purple);
  font-weight: 500;
}

.implementation-steps p {
  margin: 4px 0 0;
  color: #4e4a50;
  font-size: 18px;
}

.implementation-steps--compact {
  margin-top: 24px;
}

.implementation-steps--compact > div {
  padding: 18px 0;
}

.implementation-steps--compact p {
  font-size: 16px;
}

/* Final CTA and footer */
.final-cta {
  padding: 86px 0;
  background: linear-gradient(120deg, #2c1830 0%, #4f2854 45%, #6a2f70 100%);
  color: #fff;
}

.final-cta__inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 80px;
}

.final-cta h2 {
  color: #fff;
}

.final-cta p {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 18px;
}

.button--light {
  background: #fff;
  color: #241d25;
}

.footer {
  padding: 72px 0 24px;
  background: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(150px, .72fr) minmax(190px, .88fr) minmax(245px, 1fr);
  gap: 56px;
  align-items: start;
}

.footer-brand__logo {
  display: inline-flex;
}

.footer-logo {
  display: block;
  width: 166px;
  height: auto;
}

.footer-brand__claim {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -.02em;
}

.footer-brand__description {
  max-width: 310px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.footer-column,
.footer-company {
  min-width: 0;
}

.footer-column h2,
.footer-company h2 {
  margin: 2px 0 20px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column a,
.footer-company a,
.footer-legal a {
  color: #5f5961;
  transition: color .18s ease;
}

.footer-column a {
  font-size: 14px;
  line-height: 1.45;
}

.footer-column a:hover,
.footer-company a:hover,
.footer-legal a:hover {
  color: var(--purple);
}

.footer-company address {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  margin: 0;
  color: #6f6871;
  font-size: 14px;
  font-style: normal;
  line-height: 1.45;
}

.footer-company address strong {
  margin-bottom: 2px;
  color: var(--ink);
  font-weight: 600;
}

.footer-company__nip {
  margin-top: 3px;
  color: #918a93;
  font-size: 12px;
}

.footer-funding {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  margin-top: 46px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.footer-funding__label {
  color: #8a858c;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-funding__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px 28px;
}

.footer-funding__logos img {
  display: block;
  width: auto;
  object-fit: contain;
}

.footer-funding__logos img:nth-child(1) {
  height: 34px;
}

.footer-funding__logos img:nth-child(2) {
  height: 32px;
}

.footer-funding__logos img:nth-child(3) {
  height: 26px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 22px;
  color: #8a858c;
  font-size: 13px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}

/* Responsive */
@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 64px, 1120px);
  }

  .site-header {
    padding: 0 32px;
  }

  .desktop-nav {
    gap: 22px;
  }

  .hero {
    min-height: max(820px, 100svh);
  }

  .hero h1 {
    font-size: clamp(68px, 8vw, 100px);
  }

  .product-layout,
  .privacy-layout,
  .implementation-layout {
    gap: 56px;
  }

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

  .mechanism-grid article {
    min-height: 280px;
  }

  .mechanism-grid h3 {
    margin-top: 60px;
  }
}

@media (max-width: 960px) {
  :root {
    --shell: min(100% - 48px, 860px);
  }

  .section {
    padding: 88px 0;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    padding: 18px 24px 26px;
    border-top: 1px solid #e8e3e9;
    background: rgba(251, 250, 251, .98);
    color: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease;
  }

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

  .mobile-nav a {
    padding: 13px 4px;
    border-bottom: 1px solid #ece8ed;
  }

  .mobile-nav__cta {
    color: var(--purple);
    font-weight: 600;
  }

  .site-header:not(.is-scrolled).menu-open {
    background: rgba(17, 17, 19, .96);
  }

  .hero {
    min-height: max(840px, 100svh);
  }

  .hero-photo img {
    object-position: 58% center;
  }

  .hero-copy {
    width: min(620px, 78vw);
  }

  .hero-ratings {
    top: 90px;
  }

  .client-proof__inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 0;
  }

  .client-proof__label {
    text-align: center;
  }

  .client-proof__logos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }

  .intro-grid,
  .section-heading--split,
  .product-layout,
  .privacy-layout,
  .implementation-layout {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .section-heading--split {
    gap: 34px;
  }

  .intro-situation-grid {
    margin-top: 64px;
  }

  .product-layout {
    gap: 58px;
  }

  .product-copy {
    order: 1;
  }

  .product-shot {
    order: 2;
  }

  .product-gallery__main {
    min-height: 0;
  }

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

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

  .testimonials-track {
    grid-auto-columns: minmax(330px, 52%);
  }

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

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

@media (max-width: 680px) {
  :root {
    --shell: calc(100vw - 36px);
  }

  [id] {
    scroll-margin-top: 76px;
  }

  .site-header {
    height: 72px;
    padding: 0 18px;
    gap: 8px;
  }

  .site-header.is-scrolled {
    height: 68px;
  }

  .header-actions {
    gap: 8px;
  }

  .language-switcher summary {
    min-width: 48px;
    min-height: 40px;
    padding: 0 10px;
  }

  .language-switcher__menu {
    right: -48px;
    width: 174px;
  }

  .brand,
  .brand-logo {
    width: 132px;
  }

  .mobile-nav {
    top: 68px;
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    min-height: max(760px, 100svh);
  }

  .hero-photo img {
    object-position: 67% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(11, 11, 13, .82) 0%, rgba(11, 11, 13, .56) 44%, rgba(11, 11, 13, .14) 100%),
      linear-gradient(180deg, rgba(8, 8, 9, .22), rgba(8, 8, 9, .08) 56%, rgba(8, 8, 9, .35));
  }

  .hero-copy {
    width: 92%;
    margin-top: 0;
  }

  .hero-content { padding-block: 170px 100px; }

  .hero h1 {
    font-size: clamp(40px, 13vw, 78px);
    line-height: .88;
  }

  .hero-actions { --hero-action-gap: 32px; }

  .hero-subline {
    font-size: clamp(35px, 11vw, 52px);
  }

  .hero-lead {
    max-width: 92%;
    font-size: 16px;
    line-height: 1.42;
  }

  .hero-ratings {
    top: 80px;
    width: calc(100vw - 24px);
    padding: 4px;
    border-radius: 18px;
  }

  .hero-ratings a {
    flex: 1 1 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3px;
    min-width: 0;
    padding: 6px 5px;
    text-align: center;
  }

  .hero-ratings__platform {
    flex-basis: 100%;
    font-size: 9px;
    line-height: 1.05;
  }

  .hero-ratings__stars {
    font-size: 8px;
  }

  .hero-ratings strong {
    font-size: 10px;
  }

  .button {
    min-height: 54px;
    padding: 0 24px;
  }

  .scroll-hint {
    bottom: 22px;
    font-size: 12px;
  }

  .client-proof__logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
  }



  h2 {
    font-size: clamp(39px, 12vw, 56px);
  }

  .section-lead {
    font-size: 19px;
  }

  .intro-situation-grid {
    margin-top: 48px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

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

  .situation-grid article {
    min-height: 210px;
    padding: 26px;
  }

  .situation-grid h3 {
    margin-top: 42px;
  }

  .product-gallery {
    padding: 10px;
  }

  .product-gallery__main {
    min-height: 0;
    padding: 0;
    border-radius: 16px;
  }

  .product-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
    padding: 5px;
    border-radius: 16px;
  }

  .product-tab {
    min-height: 42px;
    font-size: 13px;
  }

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

  .mechanism-grid article {
    min-height: 250px;
  }

  .privacy-layout {
    gap: 48px;
  }

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

  .metrics div,
  .metrics div:nth-child(2),
  .metrics div:last-child {
    min-height: 150px;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics div:last-child {
    border-bottom: 0;
  }

  .metrics strong {
    font-size: 72px;
  }

  .testimonials-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
    margin-top: 72px;
  }

  .testimonials-track {
    grid-auto-columns: 88%;
  }

  .testimonial-card {
    min-height: 360px;
    padding: 26px 22px;
  }

  .testimonial-card blockquote {
    font-size: 21px;
  }

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

  .role-grid article,
  .role-grid article:nth-child(2n),
  .role-grid article:nth-child(n+3) {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .role-grid article:last-child {
    border-bottom: 0;
  }

  .role-grid h3 {
    margin-top: 50px;
  }

  .sector-grid article {
    min-height: 280px;
  }

  .implementation-layout {
    gap: 52px;
  }

  .implementation-options {
    grid-template-columns: 1fr;
  }

  .implementation-options article {
    min-height: 220px;
  }

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

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 56px;
  }

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

  .footer-funding__label {
    text-align: right;
  }

  .footer-funding__logos {
    justify-content: flex-end;
  }

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

@media (max-width: 680px) {
  .footer {
    padding-top: 56px;
  }

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

  .footer-brand__description {
    max-width: 360px;
  }

  .footer-funding {
    margin-top: 38px;
    padding: 18px 0;
  }

  .footer-funding__label {
    text-align: right;
  }

  .footer-funding__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px 20px;
  }

  .footer-funding__logos img {
    max-width: 100%;
  }

  .footer-funding__logos img:nth-child(1) {
    height: 30px;
  }

  .footer-funding__logos img:nth-child(2) {
    height: 28px;
  }

  .footer-funding__logos img:nth-child(3) {
    height: 23px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 680px) {
  .section--intro { padding-top: 72px; }
}

@media (min-width: 1101px) {
  .footer-main--compact { grid-template-columns: minmax(260px, 1.35fr) minmax(150px, .72fr) minmax(245px, 1fr); }
}

@media (min-width: 681px) and (max-width: 1100px) {
  .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 44px 40px; }
}

@media (min-width: 961px) and (max-width: 1180px) {
  .client-proof__logos { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.knowledge-preview { display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;margin-block:32px; }
.knowledge-preview a { padding:24px;border:1px solid var(--line);border-radius:16px; }
.knowledge-preview h3 { font-size:22px;margin:0; }
.knowledge-preview p { font-size:16px;line-height:1.6;margin-bottom:0; }
@media (max-width:960px) { .knowledge-preview { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width:680px) { .knowledge-preview { grid-template-columns:1fr; } }

/* Knowledge content shares the document template and its typography. */
.warto-zapamietac{padding:clamp(20px,4vw,36px);margin-block:32px;background:#f3edf5;border:1px solid #e2d7e7;border-radius:18px}
.warto-zapamietac h2{margin-top:0}.tip-action-links{display:flex;flex-wrap:wrap;align-items:center;gap:14px 22px}.tip-video-link{display:inline-flex;align-items:center;gap:7px}.tip-video-link svg{width:18px;height:18px;flex:none}.tip-video-link__icon-mark{width:24px!important}.knowledge-pagination{display:flex;flex-wrap:wrap;gap:12px;margin-block:20px}.knowledge-pagination a,.knowledge-pagination strong{padding:7px 12px;border:1px solid #e2d7e7;border-radius:7px}

/* Account navigation: always visible, including compact screens. */
.account-actions{display:flex;align-items:center;gap:16px;white-space:nowrap}
.header-login{display:inline-flex;align-items:center;min-height:44px;font-size:14px;color:inherit}
.header-login:hover{text-decoration:underline;text-underline-offset:4px}
.account-actions a:focus-visible{outline:2px solid currentColor;outline-offset:4px}
.account-actions .header-cta{display:inline-flex;white-space:nowrap}
@media(min-width:961px) and (max-width:1360px){
 .desktop-nav{display:none}.menu-toggle{display:block}
 .mobile-nav{position:fixed;top:88px;left:0;right:0;display:flex;flex-direction:column;padding:18px 24px 26px;border-top:1px solid #e8e3e9;background:rgba(251,250,251,.98);color:var(--ink);opacity:0;visibility:hidden;pointer-events:none;transform:translateY(-8px);transition:opacity .2s ease,transform .2s ease}
 .mobile-nav.is-open{opacity:1;visibility:visible;pointer-events:auto;transform:none}
 .mobile-nav a{padding:13px 4px;border-bottom:1px solid #ece8ed}
 .site-header.is-scrolled .mobile-nav{top:74px}
 .site-header:not(.is-scrolled).menu-open{background:rgba(17,17,19,.96)}
}
@media(max-width:960px){.mobile-nav{visibility:hidden}.mobile-nav.is-open{visibility:visible}}
@media(max-width:680px){
 .site-header,.site-header.is-scrolled{height:112px;grid-template-columns:1fr auto auto;grid-template-rows:38px 44px;gap:4px 8px;padding:10px 18px}
 .site-header .brand{grid-column:1;grid-row:1}.header-actions{display:contents}
 .header-actions>.language-switcher{grid-column:2;grid-row:1}.header-actions>.menu-toggle{grid-column:3;grid-row:1}
 .account-actions{grid-column:1/-1;grid-row:2;justify-content:flex-end;gap:16px}
 .header-login,.account-actions .header-cta{font-size:13px;min-height:40px}.account-actions .header-cta{padding:0 16px}
 .site-header .mobile-nav{top:112px}[id]{scroll-margin-top:122px}
}
