@import url("https://api.fontshare.com/v2/css?f[]=general-sans@300,400,500,600,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sofia+Sans+Condensed:wght@600;700&display=swap");

:root {
  --font-primary: "General Sans", "General Sans Fallback", sans-serif;
  --font-secondary: "Sofia Sans Condensed", "Sofia Sans Condensed Fallback", sans-serif;
  --dark: #121e2c;
  --dark-2: #1f2d3a;
  --blue: #04618a;
  --cyan: #0d80ac;
  --green: #16b66a;
  --red: #ff2248;
  --paper: #ffffff;
  --soft: #e9e9e9;
  --text: #222222;
  --text-secondary: #4d5661;
  --text-secondary-on-dark: rgba(255, 255, 255, 0.85);
  --muted: #4d5661;
  --layout-max: 1408px;
  /* ~108px at 1536px; never below 48px (design system device margin) */
  --device-margin: clamp(48px, 7vw, 108px);
  --container: min(var(--layout-max), calc(100vw - 2 * var(--device-margin)));
}

/* Cookie consent */
body.cmp-open {
  overflow: hidden;
}

.cmp-root {
  position: fixed;
  inset: 0;
  z-index: 11000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(18, 30, 44, 0.72);
}

.cmp-root.is-open {
  display: flex;
}

.cmp-panel {
  width: min(760px, 100%);
  max-height: min(90vh, 760px);
  overflow: hidden;
  color: var(--text);
  background: var(--paper);
  border: 1px solid var(--soft);
  border-radius: 2px;
}

.cmp-header {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 12px 28px;
  border-bottom: 1px solid var(--soft);
}

.cmp-header img {
  width: 52px;
  height: auto;
}

.cmp-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--soft);
}

.cmp-tab {
  min-height: 52px;
  border: 0;
  border-bottom: 3px solid transparent;
  padding: 12px 16px;
  color: var(--text);
  background: var(--paper);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}

.cmp-tab:hover,
.cmp-tab:focus-visible,
.cmp-tab.is-active {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
  outline: none;
}

.cmp-body {
  max-height: 390px;
  overflow-y: auto;
  padding: 32px;
}

.cmp-view {
  display: none;
}

.cmp-view.is-active {
  display: block;
}

.cmp-view h2 {
  margin: 0 0 16px;
  color: var(--dark);
  font-size: clamp(25px, 4vw, 34px);
  font-weight: 500;
  letter-spacing: 0;
}

.cmp-view h2 span,
.cmp-view a {
  color: var(--cyan);
}

.cmp-view p {
  margin: 0 0 16px;
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.cmp-view a {
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cmp-category {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--soft);
}

.cmp-category:first-child {
  padding-top: 0;
}

.cmp-category__summary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 36px;
  border: 0;
  padding: 0;
  color: var(--dark);
  background: transparent;
  font: 600 17px/1.3 var(--font-primary);
  text-align: left;
  cursor: pointer;
}

.cmp-category__chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.cmp-category__summary[aria-expanded="true"] .cmp-category__chevron {
  transform: rotate(225deg);
}

.cmp-category__copy {
  display: none;
  grid-column: 1 / -1;
  padding-left: 20px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.cmp-category__copy.is-open {
  display: block;
}

.cmp-switch {
  position: relative;
  display: inline-flex;
  width: 52px;
  height: 30px;
}

.cmp-switch__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.cmp-switch input {
  position: absolute;
  opacity: 0;
}

.cmp-switch__control {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--soft);
  cursor: pointer;
  transition: background 0.2s ease;
}

.cmp-switch__control::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--paper);
  transition: transform 0.2s ease;
}

.cmp-switch input:checked + .cmp-switch__control {
  background: var(--cyan);
}

.cmp-switch input:checked + .cmp-switch__control::after {
  transform: translateX(22px);
}

.cmp-switch input:focus-visible + .cmp-switch__control {
  outline: 3px solid var(--dark);
  outline-offset: 2px;
}

.cmp-switch input:disabled + .cmp-switch__control {
  opacity: 0.65;
  cursor: not-allowed;
}

.cmp-actions {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 12px;
  padding: 20px 28px 28px;
  border-top: 1px solid var(--soft);
  background: var(--paper);
}

.cmp-btn {
  min-height: 48px;
  border: 2px solid var(--dark);
  border-radius: 980px;
  padding: 11px 20px;
  font-family: var(--font-secondary);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}

.cmp-btn--primary {
  border-color: var(--cyan);
  color: var(--paper);
  background: var(--cyan);
}

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

.cmp-btn:hover,
.cmp-btn:focus-visible {
  border-color: var(--dark);
  color: var(--paper);
  background: var(--dark);
  outline: none;
}

.cmp-reopen {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 9990;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--paper);
  border-radius: 50%;
  padding: 9px;
  color: var(--paper);
  background: var(--dark);
  cursor: pointer;
}

.cmp-reopen img {
  display: block;
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.cmp-reopen svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cmp-reopen:hover,
.cmp-reopen:focus-visible {
  border-color: var(--cyan);
  background: var(--cyan);
  outline: none;
}

@media (max-width: 640px) {
  .cmp-root {
    align-items: flex-end;
    padding: 12px;
  }

  .cmp-panel {
    max-height: calc(100vh - 24px);
  }

  .cmp-header {
    min-height: 44px;
    padding: 10px 20px;
  }

  .cmp-header img {
    width: 44px;
  }

  .cmp-tab {
    min-height: 46px;
    padding: 9px 5px;
    font-size: 13px;
    letter-spacing: 0.5px;
  }

  .cmp-body {
    max-height: 48vh;
    padding: 24px 20px;
  }

  .cmp-view h2 {
    font-size: 25px;
  }

  .cmp-actions {
    grid-template-columns: 1fr;
    padding: 16px 20px 20px;
  }

  .cmp-btn--primary {
    grid-row: 1;
  }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--font-primary);
  font-weight: 300;
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 100;
  padding: 12px 18px;
  color: #fff;
  background: var(--blue);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }

p {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.5;
  margin-block: 15px;
}

li {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.5;
}

h1,
h2,
h3 {
  font-weight: 600;
  letter-spacing: .03em;
  line-height: 1.3;
  margin-block: 15px;
}

strong {
  font-weight: 600;
}

@media (min-width: 960px) {
  p,
  li {
    font-size: 1.5rem;
  }
}

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

.section-dark {
  color: var(--paper);
  background: var(--dark);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 108px 1fr 224px;
  align-items: center;
  column-gap: 34px;
  width: 100%;
  min-height: 78px;
  margin-inline: auto;
  padding: 14px var(--device-margin);
  background: #fff;
  box-shadow: none;
}

.if-logo {
  display: grid;
  align-content: center;
  width: 108px;
  height: 50px;
  padding: 7px 14px 6px 18px;
  color: #fff;
  background: var(--blue);
  line-height: 0.84;
}

.if-logo__ideo {
  font-size: 27px;
  font-weight: 300;
  letter-spacing: -0.5px;
}

.if-logo__force {
  justify-self: end;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.8px;
}

.topbar__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  justify-self: end;
  grid-column: 3;
}

.topbar__nav {
  display: flex;
  justify-content: center;
  gap: 42px;
  color: var(--dark);
  font-size: 13px;
  font-weight: 500;
  grid-column: 2;
  grid-row: 1;
}

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

.if-logo {
  grid-column: 1;
  grid-row: 1;
}

.topbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.topbar__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.topbar.is-menu-open .topbar__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.topbar.is-menu-open .topbar__toggle-bar:nth-child(2) {
  opacity: 0;
}

.topbar.is-menu-open .topbar__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.topbar__cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 224px;
  min-height: 50px;
  padding-inline: 28px 22px;
  color: #fff;
  background: var(--blue);
  border-radius: 28px;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 5px;
  line-height: 1;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 48px;
  padding: 13px 26px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .25rem;
  line-height: 1.5;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible { transform: translateY(-2px); }
.button--light { color: var(--dark); background: #fff; }
.button--blue { color: #fff; background: var(--blue); }
.button--dark { color: #fff; background: var(--dark); }

.mobile-break { display: none; }

.hero {
  padding: 126px 0 88px;
  text-align: center;
}

.hero__content {
  width: min(1160px, var(--container));
  margin-inline: auto;
}

.hero h1 {
  margin-bottom: 30px;
  color: #fff;
  font-family: var(--font-primary, "General Sans", Arial, sans-serif);
  font-size: clamp(52px, 4.45vw, 64px);
  font-weight: 600;
  letter-spacing: .03em;
  line-height: 1.3;
}

.hero p {
  max-width: 850px;
  margin: 0 auto 34px;
  color: var(--text-secondary-on-dark);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
}

.inline-checks {
  display: flex;
  justify-content: center;
  gap: 72px;
  padding: 28px 0 0;
  margin: 0;
  color: var(--text-secondary-on-dark);
  font-size: 1.125rem;
  font-weight: 400;
  list-style: none;
}

.inline-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 0;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list--blue li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--cyan);
  font-weight: 700;
}

.inline-checks li::before {
  position: static;
  content: "✓";
  color: var(--cyan);
  font-weight: 700;
}

.logo-strip {
  display: flex;
  justify-content: center;
  gap: 76px;
  width: var(--container);
  margin: 90px auto 0;
}

.logo-strip img {
  width: auto;
  max-width: 128px;
  height: 48px;
  object-fit: contain;
  opacity: 1;
  filter: grayscale(1) brightness(.72);
  transition: filter .3s ease;
}

.logo-strip img:hover {
  filter: grayscale(0) brightness(1);
}

.logo-strip__warta {
  width: 118px;
  max-width: none;
  height: 54px;
}

.logo-strip__brw {
  width: 60px;
  max-width: none;
  height: 60px;
  max-height: none;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 66px;
  align-items: center;
  width: var(--container);
  margin-inline: auto;
  padding: 122px 0 112px;
}

.about__image {
  display: flex;
  justify-content: center;
}

.about__image img {
  width: 672px;
  filter: none;
}

.about h2 {
  margin-bottom: 30px;
  font-size: 64px;
  line-height: 1.3;
}

.about h2 span { font-weight: 300; }

.about p {
  max-width: 650px;
  margin-bottom: 24px;
  color: var(--text-secondary);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
}

.check-list {
  display: grid;
  gap: 20px;
  padding: 0;
  margin: 38px 0 54px;
  color: #222;
  font-size: 1.5rem;
  line-height: 1.5;
  list-style: none;
}

.check-list strong { font-weight: 600; }

.cert-row {
  display: flex;
  gap: 56px;
  align-items: center;
}

.cert-row img {
  width: 145px;
  max-height: 58px;
  object-fit: contain;
}

.modern-process {
  background: var(--soft);
}

.modern-process__content {
  width: var(--container);
  margin-inline: auto;
  padding: 104px 0 112px;
}

.modern-process__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px 88px;
  align-items: end;
  margin-bottom: 64px;
}

.modern-process__kicker {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--cyan);
  font-family: var(--font-secondary);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 4px;
  line-height: 1.3;
  text-transform: uppercase;
}

.modern-process h2 {
  max-width: 820px;
  margin: 0;
  color: var(--dark);
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.2;
}

.modern-process h2 strong {
  font-weight: 600;
}

@media (min-width: 1181px) {
  .js h2[data-typewriter]:not(.is-typewriter-active) [data-typewriter-part] {
    visibility: hidden;
  }

  h2[data-typewriter] .typewriter-dot {
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  h2[data-typewriter].is-typewriter-active .typewriter-dot.is-visible {
    opacity: 1;
  }

  .typewriter-cursor::after {
    content: "";
    display: inline-block;
    width: 3px;
    height: 0.92em;
    margin-left: 3px;
    background: var(--cyan);
    vertical-align: -0.08em;
    animation: typewriterBlink 0.85s steps(1) infinite;
  }
}

@media (min-width: 1181px) and (prefers-reduced-motion: reduce) {
  .js h2[data-typewriter]:not(.is-typewriter-active) [data-typewriter-part] {
    visibility: visible;
  }

  h2[data-typewriter] .typewriter-dot {
    opacity: 1;
  }
}

@keyframes typewriterBlink {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

.modern-process__intro > p:last-child {
  margin: 0;
  color: var(--text-secondary);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.55;
}

.modern-process__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.modern-process__item {
  min-height: 330px;
  padding: 36px 34px 40px;
  background: var(--paper);
  border-radius: 2px;
}

.modern-process__item > span {
  display: block;
  margin-bottom: 56px;
  color: var(--cyan);
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 3px;
}

.modern-process__item h3 {
  margin: 0 0 18px;
  color: var(--dark);
  font-size: 27px;
  font-weight: 600;
  line-height: 1.25;
}

.modern-process__item p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}

.results {
  padding: 100px 0 106px;
}

.gradient-label {
  margin-bottom: 94px;
  background: linear-gradient(90deg, #04618a, #e4eef2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--font-secondary);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 12px;
  line-height: 1.5;
  text-transform: uppercase;
}

.main-case {
  padding: 48px;
  border: 3px solid rgba(255,255,255,.18);
}

.main-case__summary {
  display: grid;
  gap: 70px;
  margin-bottom: 66px;
}

.main-case__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 0;
}

.main-case h2 {
  margin: 0;
  font-size: 72px;
  font-weight: 300;
  line-height: 1.3;
}

.main-case h2 strong { font-weight: 600; }

.case-logo {
  display: grid;
  place-items: center;
  flex: 0 0 188px;
  height: 188px;
  background: #fff;
}

.case-logo img {
  width: 125px;
  max-height: 84px;
  object-fit: contain;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
  margin: 0;
}

.metric-row > div {
  flex: 0 1 auto;
}

.metric-row strong {
  display: block;
  margin-bottom: 8px;
  font-size: 88px;
  font-weight: 600;
  line-height: 1;
}

.metric-row span {
  display: block;
  color: var(--text-secondary-on-dark);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
}

.chart-title {
  margin-bottom: 22px;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
}

.chart {
  display: block;
  width: 100%;
  margin-bottom: 28px;
}

.main-case > .button { margin-inline: auto; display: flex; width: fit-content; }

.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin-top: 90px;
}

.small-case {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  aspect-ratio: 1 / 0.95;
  padding: 44px;
  border: 2px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
}

.small-case__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 104px;
  gap: 36px;
  align-items: start;
}

.small-case h3 {
  margin: 0;
  font-size: 42px;
  line-height: 1.3;
}

.small-case h3 span {
  display: block;
  font-weight: 300;
}

.small-case__top img {
  width: 104px;
  height: 104px;
  padding: 17px;
  object-fit: contain;
  background: #fff;
}

.small-case__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin: 52px 0 42px;
}

.small-case__metrics > div {
  display: grid;
  justify-self: center;
  width: min-content;
}

.small-case__metrics strong {
  display: block;
  font-size: 70px;
  line-height: 1;
  white-space: nowrap;
}

.small-case__metrics span {
  display: block;
  width: 100%;
  color: var(--text-secondary-on-dark);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
}

.small-case .button {
  align-self: center;
}

.testimonials {
  padding: 96px 0;
  overflow: hidden;
}

.testimonials h2 {
  margin-bottom: 52px;
  text-align: center;
  font-size: 56px;
  font-weight: 300;
}

.testimonials h2 strong { font-weight: 600; }
.blue-dot {
  color: var(--blue);
}

.testimonial-slider {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  gap: 24px;
  align-items: center;
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 50px;
  transform: translateX(0);
  transition: transform .45s ease;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 100px) / 3);
  min-height: 390px;
  padding: 48px 32px 42px;
  color: #fff;
  background: var(--dark);
}

.testimonial-arrow {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
  color: var(--blue);
  background: #fff;
  transform: translateY(-2px);
}

.testimonial-card span {
  display: block;
  margin-bottom: 38px;
  color: var(--cyan);
  font-size: 92px;
  line-height: .45;
}

.testimonial-card p {
  color: var(--text-secondary-on-dark);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
}

.testimonial-card small {
  display: block;
  margin-top: auto;
  min-height: 42px;
  background: linear-gradient(90deg, #04618a, #e4eef2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 5px;
  line-height: 1.6;
  text-transform: uppercase;
}

.why {
  padding: 108px 0 118px;
}

.why__intro {
  width: min(900px, var(--container));
  margin: 0 auto 54px;
  text-align: center;
}

.why h2 {
  margin-bottom: 34px;
  font-size: 58px;
  font-weight: 300;
  line-height: 1.18;
}

.why h2 strong { font-weight: 600; }

.why__intro p {
  color: var(--text-secondary-on-dark);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
}

.why__intro p strong {
  color: #fff;
  font-weight: 600;
}

.why-list {
  display: grid;
  gap: 42px;
  width: min(1180px, var(--container));
  margin: 0 auto;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 38px;
  width: 100%;
}

.why-item--right {
  justify-content: flex-end;
}

.why-item--left {
  justify-content: flex-start;
}

.why-item > div {
  flex: 0 0 auto;
  width: min(1004px, calc(100% - 114px));
  min-height: 150px;
  padding: 31px 118px;
  color: var(--text);
  background: #fff;
  border-radius: 6px;
  box-sizing: border-box;
}

.why-item h3 {
  margin-bottom: 10px;
  font-size: 42px;
  font-weight: 300;
  line-height: 1.3;
}

.why-item p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.why-icon {
  flex: 0 0 62px;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: var(--cyan);
  border: 2px solid #fff;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
  box-shadow: 0 0 0 8px rgba(255,255,255,.025);
}

.why-icon svg {
  width: 34px;
  height: 34px;
}

.why-icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-icon--square {
  border-radius: 6px;
}

.why-icon--outline {
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  color: #fff;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.why-icon--outline svg {
  width: 76px;
  height: 76px;
}

.why-icon--outline svg * {
  stroke: currentColor;
  stroke-width: 2.72727;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process {
  padding: 100px 0 116px;
}

.ai-stack {
  padding: 100px 0 108px;
  background: var(--soft);
}

.ai-stack h2 {
  max-width: 920px;
  margin-bottom: 28px;
  font-size: 60px;
  font-weight: 300;
  line-height: 1.16;
}

.ai-stack h2 strong {
  font-weight: 600;
}

.ai-stack__lead {
  max-width: 860px;
  margin-bottom: 56px;
  color: var(--text-secondary);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
}

.ai-stack__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.ai-stack__card {
  min-height: 220px;
  padding: 34px 28px 32px;
  background: #fff;
  border: 1px solid rgba(18, 30, 44, 0.08);
  border-radius: 6px;
}

.ai-stack__card h3 {
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.25;
}

.ai-stack__card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.approach {
  padding: 100px 0 108px;
  color: var(--text);
  background: var(--paper);
}

.approach h2 {
  max-width: 980px;
  margin-bottom: 28px;
  font-size: 60px;
  font-weight: 300;
  line-height: 1.16;
}

.approach h2 strong {
  font-weight: 600;
}

.approach__lead {
  max-width: 980px;
  margin-bottom: 56px;
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.5;
}

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

.approach__column {
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
}

.approach__column--traditional {
  color: var(--paper);
  background: var(--dark-2);
}

.approach__column--smart {
  color: var(--text);
  background: var(--paper);
  border-color: var(--cyan);
}

.approach__eyebrow {
  margin-bottom: 12px;
  color: var(--cyan);
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 1.3;
  text-transform: uppercase;
}

.approach__column h3 {
  margin-bottom: 30px;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.2;
}

.approach__stages {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
}

.approach__stages li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 58px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.approach__column--smart .approach__stages li {
  border-bottom-color: rgba(18, 30, 44, 0.12);
}

.approach__stages li span {
  line-height: 1.4;
}

.approach__stages li strong {
  color: var(--cyan);
  font-size: 1.125rem;
  white-space: nowrap;
}

.approach__summary {
  margin: 0;
  color: var(--text-secondary-on-dark);
  line-height: 1.5;
}

.approach__column--smart .approach__summary {
  color: var(--text-secondary);
}

.approach__column--smart .approach__summary strong {
  color: var(--blue);
}

.approach__note {
  margin: 24px 0 0;
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
}

.approach__cta {
  display: flex;
  width: fit-content;
  margin: 40px auto 0;
}

.process h2 {
  max-width: 920px;
  margin-bottom: 28px;
  font-size: 60px;
  font-weight: 300;
  line-height: 1.16;
}

.process h2 strong { font-weight: 600; }

.process > .container > p {
  max-width: 1240px;
  margin-bottom: 72px;
  color: var(--text-secondary);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-grid li {
  display: grid;
  grid-template-rows: 82px 92px 1fr;
  min-height: 330px;
  padding: 38px 32px 32px;
  background: var(--soft);
}

.process-grid .dark-card {
  color: #fff;
  background: var(--dark);
}

.process-grid span {
  display: block;
  font-size: 70px;
  font-weight: 300;
  line-height: 1.3;
}

.process-grid h3 {
  margin: 0;
  font-size: 30px;
  font-weight: 300;
  line-height: 1.3;
}

.process-grid p {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}

.process-grid li:not(.dark-card) p {
  color: var(--text-secondary);
}

.process-grid li.dark-card p {
  color: var(--text-secondary-on-dark);
}

.pricing {
  padding: 104px 0 102px;
  text-align: center;
}

.pricing h2 {
  margin-bottom: 28px;
  font-size: 58px;
  line-height: 1.3;
}

.pricing-lead {
  margin-bottom: 62px;
  color: var(--text-secondary-on-dark);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  align-items: end;
  text-align: left;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 910px;
  padding: 70px 50px 44px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 6px;
  background: #162332;
}

.price-card--featured {
  background: #293542;
}

.recommended {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 36px;
  margin: 0;
  display: grid;
  place-items: center;
  color: var(--dark);
  background: #fff;
  border-radius: 6px 6px 0 0;
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.bars {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 7px;
  height: 56px;
  margin-bottom: 38px;
}

.bars i {
  display: block;
  width: 8px;
  background: #fff;
  border-radius: 5px;
  opacity: .85;
}

.bars i:nth-child(1) { height: 18px; }
.bars i:nth-child(2) { height: 32px; }
.bars i:nth-child(3) { height: 48px; background: transparent; border: 2px solid #fff; }

.price-card h3 {
  margin-bottom: 24px;
  color: var(--cyan);
  text-align: center;
  font-size: 34px;
  font-weight: 300;
  line-height: 1.3;
  text-transform: uppercase;
}

.price-card h3 strong {
  background: linear-gradient(90deg, #8fcfe2 0%, #d8eef5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

.price {
  margin-bottom: 38px;
  text-align: center;
  font-size: 42px;
  font-weight: 600;
}

.time {
  margin-bottom: 38px;
  text-align: center;
  color: var(--text-secondary-on-dark);
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .03em;
  line-height: 1.5;
  text-transform: uppercase;
}

.time strong {
  display: block;
  color: #fff;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.desc {
  min-height: 72px;
  margin-bottom: 32px;
  color: var(--text-secondary-on-dark);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.5;
}

.feature-list {
  display: grid;
  gap: 24px;
  padding: 0;
  margin: 0 0 44px;
  list-style: none;
  color: var(--text-secondary-on-dark);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.5;
}

.feature-list li {
  position: relative;
  padding-left: 38px;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  top: -1px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.feature-list .yes::before { content: "✓"; color: var(--green); }
.feature-list .no { color: rgba(255,255,255,.34); }
.feature-list .no::before { content: "×"; color: var(--red); }

.price-card .button {
  align-self: center;
  margin-top: auto;
}

.more {
  max-width: 780px;
  margin: 76px auto 0;
  text-align: center;
}

.more h3 {
  margin-bottom: 24px;
  font-size: 44px;
}

.more p {
  margin-bottom: 44px;
  color: var(--text-secondary-on-dark);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.5;
}

.form-section {
  padding: 100px 0 92px;
  background: var(--soft);
}

.form-section h2 {
  margin-bottom: 58px;
  font-size: 64px;
  font-weight: 300;
  line-height: 1.3;
}

.form-section h2 strong { font-weight: 600; }

.contact-form {
  display: grid;
  gap: 28px;
}

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

.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.contact-form label {
  position: relative;
  display: grid;
}

.contact-form label > span:not(.consent span) {
  position: absolute;
  left: 28px;
  top: 29px;
  z-index: 1;
  transform: translateY(-50%);
  color: rgba(34,34,34,.48);
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 4px;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
}

.contact-form label:focus-within > span:not(.consent span),
.contact-form label:has(input:not(:placeholder-shown)) > span:not(.consent span) {
  opacity: 0;
}

.contact-form label:has(textarea:not(:placeholder-shown)) > span:not(.consent span),
.select-label > span {
  opacity: 0;
}

input,
textarea {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font: inherit;
  outline: none;
}

input {
  padding: 16px 28px;
}

.select-label {
  width: 66%;
}

.custom-select {
  position: relative;
  z-index: 5;
}

.custom-select__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  padding: 16px 28px;
  border: 0;
  border-radius: 999px;
  color: rgba(34,34,34,.48);
  background: #fff;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.custom-select__button::after {
  content: "";
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border: solid var(--blue);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-select__button span {
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 4px;
  line-height: 1;
  text-transform: uppercase;
}

.custom-select__button.is-selected span {
  color: var(--text);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
}

.custom-select__list {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  gap: 2px;
  max-height: 280px;
  padding: 10px;
  margin: 0;
  overflow: auto;
  list-style: none;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(18,30,44,.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .18s ease, transform .18s ease;
}

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

.custom-select__list li {
  padding: 12px 20px;
  border-radius: 14px;
  color: var(--text);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.3;
}

.custom-select__list li:hover,
.custom-select__list li.is-selected {
  color: #fff;
  background: var(--blue);
}

textarea {
  min-height: 260px;
  padding: 24px 28px;
  border-radius: 24px;
  resize: vertical;
}

.contact-form label:has(textarea) > span {
  top: 28px;
  transform: none;
}

input:focus,
textarea:focus {
  box-shadow: 0 0 0 2px var(--blue);
}

.custom-select__button:focus-visible {
  box-shadow: 0 0 0 2px var(--blue);
  outline: none;
}

.field-error {
  display: none;
  margin: 7px 20px 0;
  color: var(--red);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.field-error.is-visible {
  display: block;
}

input.is-invalid,
textarea.is-invalid,
.custom-select.has-error .custom-select__button {
  box-shadow: 0 0 0 2px var(--red);
}

.legal,
.consent {
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
}

.legal {
  margin: 8px 0 0;
}

.legal a,
.consent a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
}

.consent {
  display: flex !important;
  gap: 12px;
  align-items: flex-start;
  margin-top: 4px;
}

.consent span {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
}

.consent input[type="checkbox"] {
  appearance: none;
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
  min-height: 15px;
  margin: 2px 0 0;
  padding: 0;
  border: 1px solid rgba(34, 34, 34, 0.28);
  border-radius: 0;
  background: #fff;
  cursor: pointer;
}

.consent input[type="checkbox"]:checked {
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10' fill='none'%3E%3Cpath d='M1 5.2 4.2 8.4 11 1.6' stroke='%23121e2c' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 10px 8px no-repeat;
}

.consent input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
}

.contact-form__submit {
  width: fit-content;
  justify-self: start;
  min-height: 44px;
  margin-top: 12px;
  padding: 11px 28px;
  font-size: 14px;
  letter-spacing: .22rem;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--blue);
  font-weight: 600;
}

body.form-success-open {
  overflow: hidden;
}

.form-success {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.form-success.is-open {
  display: flex;
}

.form-success__overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 30, 44, 0.72);
}

.form-success__dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  padding: 40px 36px 36px;
  text-align: center;
  color: var(--text);
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(18, 30, 44, 0.22);
}

.form-success__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  color: var(--text);
  background: var(--soft);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.form-success__close:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.form-success__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 32px;
  font-weight: 700;
}

.form-success__title {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 300;
  line-height: 1.2;
}

.form-success__title strong,
.form-success__title .blue-dot {
  font-weight: 600;
}

.form-success__text {
  max-width: 38ch;
  margin: 0 auto 28px;
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.5;
}

.form-success__button {
  display: inline-flex;
  width: fit-content;
  min-width: 220px;
  min-height: 44px;
  margin: 0 auto;
  padding: 11px 32px;
  color: #fff;
  background: var(--dark);
  font-size: 14px;
  letter-spacing: 0.22rem;
}

.form-success__button:hover,
.form-success__button:focus-visible {
  color: #fff;
  background: var(--dark-2);
}

@media (max-width: 640px) {
  .form-success {
    padding: 16px;
  }

  .form-success__dialog {
    padding: 32px 24px 28px;
  }
}

.footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--dark);
}

.footer__inner {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.8vw, 48px);
  min-height: 94px;
  padding-block: 24px;
}

.footer__item,
.footer__link {
  margin: 0;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  white-space: nowrap;
}

.footer__item strong {
  font-weight: 600;
}

.footer a:hover {
  color: #fff;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.footer__socials img {
  display: block;
  width: 24px;
  height: 24px;
}

[data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 550ms ease, transform 550ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  :root {
    --device-margin: clamp(24px, 4vw, 40px);
    --container: min(calc(100vw - 2 * var(--device-margin)), 1000px);
  }
  .topbar { grid-template-columns: 160px 1fr; }
  .topbar__nav { display: none; }
  .topbar__cta { min-height: 54px; padding-inline: 28px; font-size: 18px; letter-spacing: 4px; }
  .about,
  .case-grid,
  .pricing-grid,
  .process-grid,
  .form-row { grid-template-columns: 1fr; }
  .ai-stack__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid { align-items: stretch; }
  .metric-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 48px;
  }
  .price-card { min-height: auto; }
  .select-label { width: 100%; }
  .why-item > div {
    width: min(100%, calc(100% - 114px));
    padding: 28px 48px;
  }

  .why-item {
    gap: 24px;
  }

  .why-icon--outline,
  .why-icon--outline svg {
    width: 60px;
    height: 60px;
  }

  .why-icon--outline {
    flex-basis: 60px;
  }
  .footer__inner {
    flex-wrap: wrap;
    row-gap: 20px;
    padding-block: 28px;
  }

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

@media (max-width: 720px) {
  :root {
    --device-margin: 16px;
    --container: min(calc(100vw - 2 * var(--device-margin)), 640px);
  }
  .topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    min-height: 64px;
    padding-inline: 16px;
  }
  .if-logo { width: 66px; flex: 0 0 auto; justify-self: start; }
  .if-logo__ideo { font-size: 31px; }
  .if-logo__force { font-size: 12px; }
  .topbar__cta {
    display: inline-flex;
    width: auto;
    min-width: 0;
    min-height: 44px;
    padding-inline: 18px 16px;
    font-size: 12px;
    letter-spacing: 2.5px;
    gap: 10px;
  }
  .hero { padding: 72px 0 56px; }
  .hero__content {
    width: var(--container);
    max-width: var(--container);
  }
  .hero h1 {
    max-width: none;
    margin-inline: auto;
    font-size: clamp(26px, 7vw, 30px);
    line-height: 1.25;
  }
  .hero__line {
    white-space: nowrap;
  }
  .mobile-break { display: block; }
  .hero p {
    max-width: none;
    margin-inline: auto;
    margin-bottom: 28px;
    font-size: 16px;
  }
  .hero .button {
    width: 100%;
  }
  .inline-checks {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    text-align: center;
  }
  .inline-checks li {
    justify-content: center;
    text-align: center;
  }
  .logo-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: stretch;
    align-items: center;
    gap: 28px 16px;
    width: var(--container);
    margin-top: 48px;
    overflow: visible;
  }
  .logo-strip img {
    flex: none;
    width: 100%;
    max-width: 96px;
    height: 36px;
    margin-inline: auto;
  }
  .logo-strip__warta {
    width: 100%;
    max-width: 96px;
    height: 40px;
  }
  .logo-strip__brw {
    width: 48px;
    height: 48px;
    max-width: none;
  }
  .about,
  .results,
  .testimonials,
  .why,
  .ai-stack,
  .approach,
  .process,
  .pricing,
  .form-section { padding-block: 64px; }
  .about {
    display: flex;
    flex-direction: column;
    gap: 36px;
    width: var(--container);
    padding-block: 64px;
  }
  .about__text { order: 1; }
  .about__image { order: 2; }
  .about__image img {
    width: 100%;
  }
  .about h2,
  .testimonials h2,
  .why h2,
  .ai-stack h2,
  .approach h2,
  .process h2,
  .pricing h2,
  .form-section h2 {
    font-size: clamp(28px, 8vw, 34px);
  }
  .about h2 {
    max-width: none;
  }
  .about p,
  .check-list { font-size: 16px; }
  .check-list { margin: 28px 0 36px; gap: 14px; }
  .cert-row {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .cert-row img {
    width: 96px;
    max-height: 44px;
  }
  .gradient-label {
    margin-bottom: 32px;
    font-size: 18px;
    letter-spacing: 4px;
  }
  .main-case { padding: 22px; }
  .main-case__summary { gap: 28px; margin-bottom: 28px; }
  .main-case__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .main-case h2 { font-size: clamp(28px, 8vw, 34px); }
  .case-logo {
    width: 88px;
    height: 88px;
    flex-basis: 88px;
  }
  .case-logo img {
    width: 64px;
    max-height: 48px;
  }
  .metric-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 16px;
  }
  .metric-row strong { font-size: clamp(32px, 9vw, 40px); }
  .metric-row span { font-size: 0.95rem; }
  .case-grid {
    gap: 24px;
    margin-top: 28px;
  }
  .small-case { padding: 24px; }
  .small-case__top {
    grid-template-columns: minmax(0, 1fr) 72px;
    gap: 12px;
  }
  .small-case__metrics {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 28px;
    text-align: center;
  }
  .small-case h3 { font-size: clamp(20px, 5.4vw, 24px); }
  .small-case__metrics strong { font-size: clamp(48px, 13vw, 64px); }
  .small-case .button,
  .main-case > .button {
    width: 100%;
  }
  .testimonial-slider {
    display: block;
  }
  .testimonial-arrow { display: none; }
  .testimonial-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .testimonial-viewport::-webkit-scrollbar { display: none; }
  .testimonial-track { gap: 16px; }
  .testimonial-card {
    flex-basis: 100%;
    min-height: 280px;
    padding: 32px 24px 28px;
    scroll-snap-align: start;
  }
  .testimonial-card--clone { display: none; }
  .testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
  }
  .testimonial-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(18, 30, 44, 0.22);
    cursor: pointer;
  }
  .testimonial-dot.is-active {
    background: var(--blue);
  }
  .why-item,
  .why-item--right,
  .why-item--left {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin: 0;
    gap: 14px;
  }
  .why-item--right { align-items: stretch; }
  .why-item > .why-icon,
  .why-item > .why-icon--outline {
    order: 1;
    align-self: flex-start;
  }
  .why-item > div {
    order: 2;
    width: 100%;
    min-height: auto;
    padding: 24px;
  }
  .why-icon--outline,
  .why-icon--outline svg {
    width: 48px;
    height: 48px;
  }
  .why-icon--outline { flex-basis: 48px; }
  .why-item h3 { font-size: 26px; }
  .process-grid { grid-template-columns: 1fr; gap: 16px; }
  .process-grid li {
    min-height: auto;
    grid-template-rows: auto auto 1fr;
    padding: 28px 24px;
  }
  .process-grid span { font-size: 48px; }
  .process-grid h3 { font-size: 26px; }
  .ai-stack__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ai-stack__card {
    min-height: auto;
    padding: 28px 24px;
  }
  .ai-stack__card h3 {
    font-size: 24px;
  }
  .approach__comparison {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .approach__column {
    padding: 28px 24px;
  }
  .approach__column h3 {
    font-size: 28px;
  }
  .approach__lead {
    margin-bottom: 36px;
    font-size: 16px;
  }
  .approach__stages li {
    gap: 16px;
  }
  .pricing-grid { gap: 20px; }
  .price-card--featured { order: -1; }
  .price-card {
    padding: 40px 24px 28px;
  }
  .price-card .button {
    width: 100%;
  }
  .more .button {
    width: 100%;
  }
  .form-row { gap: 14px; }
  .contact-form__submit {
    width: 100%;
  }
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-block: 32px;
  }
  .footer__item,
  .footer__link {
    white-space: normal;
  }
}

/* Final responsive safety net moved below late overrides */
/* Custom package dropdown */
.contact-form .custom-select {
  position: relative;
  z-index: 6;
}

.contact-form .custom-select input[type="hidden"] {
  display: none;
}

.custom-select__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  padding: 16px 28px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: rgba(34, 34, 34, 0.48);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.custom-select__button::after {
  content: "";
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border: solid var(--blue);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-select__button span {
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 4px;
  line-height: 1;
  text-transform: uppercase;
}

.custom-select__button.is-selected span {
  color: var(--text);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
}

.custom-select__button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--blue);
}

.custom-select__list {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  gap: 2px;
  max-height: 280px;
  margin: 0;
  padding: 10px;
  overflow: auto;
  list-style: none;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(18, 30, 44, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

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

.custom-select__list li {
  padding: 12px 20px;
  border-radius: 14px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.3;
  cursor: pointer;
}

.custom-select__list li:hover,
.custom-select__list li.is-selected {
  color: #fff;
  background: var(--blue);
}
.pricing-card .time,
.pricing-card__time,
.price-card .time,
#cennik .time {
  font-family: var(--font-primary) !important;
  font-size: 16px !important;
  font-weight: 300 !important;
  line-height: 1.35 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

.pricing-card .time strong,
.pricing-card__time strong,
.price-card .time strong,
#cennik .time strong {
  display: block;
  font-family: var(--font-primary) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.pricing-card .description,
.pricing-card__description,
.price-card .description,
#cennik .pricing-card > p:last-of-type,
#cennik .price-card > p:last-of-type {
  font-family: var(--font-primary) !important;
  font-size: 18px !important;
  font-weight: 300 !important;
  line-height: 1.48 !important;
  letter-spacing: 0 !important;
}
/* Figma parity: process cards typography and proportions */
#proces .process-card,
.process-section .process-card {
  min-height: 324px !important;
  aspect-ratio: 3 / 4 !important;
}

#proces .process-card .number,
.process-section .process-card .number {
  font-family: "General Sans", var(--font-primary), Arial, sans-serif !important;
  font-size: 64px !important;
  font-weight: 300 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}

#proces .process-card h3,
.process-section .process-card h3 {
  font-family: "General Sans", var(--font-primary), Arial, sans-serif !important;
  font-size: 30px !important;
  font-weight: 300 !important;
  line-height: 1.15 !important;
  letter-spacing: 0 !important;
}

#proces .process-card p,
.process-section .process-card p {
  font-family: "General Sans", var(--font-primary), Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 300 !important;
  line-height: 1.5 !important;
  letter-spacing: 0 !important;
  width: 100% !important;
  max-width: 269.5px !important;
  align-self: stretch !important;
}
#proces .section-intro,
#proces .process-intro,
.process-section .section-intro,
.process-section .process-intro,
#proces > .container > p,
.process-section > .container > p {
  width: 100% !important;
  max-width: 1408px !important;
  font-family: "General Sans", var(--font-primary), Arial, sans-serif !important;
  font-size: 24px !important;
  font-weight: 300 !important;
  line-height: 1.5 !important;
  letter-spacing: 0 !important;
  color: #222222 !important;
}
#hero .hero-lead,
#hero .hero-copy,
#hero .hero-content > p,
.hero .hero-lead,
.hero .hero-copy,
.hero .hero-content > p {
  width: 100% !important;
  max-width: 935px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-family: "General Sans", var(--font-primary), Arial, sans-serif !important;
  font-size: 24px !important;
  font-weight: 300 !important;
  line-height: 1.5 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  color: #ffffff !important;
}
/* Figma parity: checkmark icon shape */
:root {
  --figma-checkmark-icon: url("data:image/svg+xml,%3Csvg width='20' height='15' viewBox='0 0 20 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 2L7 13L2 8' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.hero-benefits li,
.benefits-list li,
.benefit-list li,
.check-list li,
.offer-highlights li,
.intro-benefits li,
.pricing-card li,
.price-card li {
  list-style: none !important;
}

.hero-benefits li::before,
.benefits-list li::before,
.benefit-list li::before,
.check-list li::before,
.offer-highlights li::before,
.intro-benefits li::before {
  content: "" !important;
  display: inline-block !important;
  width: 20px !important;
  height: 15px !important;
  flex: 0 0 20px !important;
  margin-right: 12px !important;
  background: #04618a !important;
  -webkit-mask: var(--figma-checkmark-icon) center / contain no-repeat !important;
  mask: var(--figma-checkmark-icon) center / contain no-repeat !important;
}

.pricing-card li:not(.is-disabled):not(.disabled):not(.unavailable):not(.excluded):not(.not-included):not(.negative)::before,
.price-card li:not(.is-disabled):not(.disabled):not(.unavailable):not(.excluded):not(.not-included):not(.negative)::before {
  content: "" !important;
  display: inline-block !important;
  width: 20px !important;
  height: 15px !important;
  flex: 0 0 20px !important;
  margin-right: 12px !important;
  background: var(--green, #79c96b) !important;
  -webkit-mask: var(--figma-checkmark-icon) center / contain no-repeat !important;
  mask: var(--figma-checkmark-icon) center / contain no-repeat !important;
}

.pricing-card li.is-disabled::before,
.pricing-card li.disabled::before,
.pricing-card li.unavailable::before,
.pricing-card li.excluded::before,
.pricing-card li.not-included::before,
.pricing-card li.negative::before,
.price-card li.is-disabled::before,
.price-card li.disabled::before,
.price-card li.unavailable::before,
.price-card li.excluded::before,
.price-card li.not-included::before,
.price-card li.negative::before {
  content: "" !important;
  display: inline-block !important;
  width: 36px !important;
  height: 36px !important;
  flex: 0 0 36px !important;
  margin-right: 8px !important;
  background: #8a041a !important;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 9L27 27M27 9L9 27' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat !important;
  mask: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 9L27 27M27 9L9 27' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat !important;
}

.hero-benefits li svg,
.benefits-list li svg,
.benefit-list li svg,
.check-list li svg,
.offer-highlights li svg,
.intro-benefits li svg,
.pricing-card li svg,
.price-card li svg {
  width: 20px !important;
  height: 15px !important;
  flex: 0 0 20px !important;
}

.hero-benefits li svg path,
.benefits-list li svg path,
.benefit-list li svg path,
.check-list li svg path,
.offer-highlights li svg path,
.intro-benefits li svg path {
  stroke: #04618a !important;
  stroke-width: 4 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.pricing-card li svg path,
.price-card li svg path {
  stroke: var(--green, #79c96b) !important;
  stroke-width: 4 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}
/* Figma parity: testimonial quote mark */
.testimonial-card::before,
.testimonial::before,
.opinion-card::before,
.review-card::before {
  content: "" !important;
  display: block !important;
  width: 96px !important;
  height: 93px !important;
  margin: 0 0 18px !important;
  background: #04618a !important;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='96' height='93' viewBox='0 0 96 93' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M76.991 23.7156C81.1118 28.0903 83.3246 33 83.3246 40.9588C83.3246 54.9564 73.4986 67.5052 59.2022 73.7072L55.6314 68.1968C68.9726 60.9784 71.5798 51.6156 72.6222 45.712C70.4742 46.8228 67.6622 47.2132 64.9058 46.958C57.6882 46.2888 51.9998 40.3636 51.9998 33C51.9998 25.268 58.2678 19 65.9998 19C70.2922 19 74.3966 20.9618 76.991 23.7156ZM36.991 23.7156C41.1118 28.0903 43.3246 33 43.3246 40.9588C43.3246 54.9564 33.4986 67.5052 19.2022 73.7072L15.6315 68.1968C28.9724 60.9784 31.5799 51.6156 32.6221 45.712C30.4741 46.8228 27.6623 47.2132 24.9058 46.958C17.6883 46.2888 12 40.3636 12 33C12 25.268 18.268 19 26 19C30.2922 19 34.3968 20.9618 36.991 23.7156Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat !important;
  mask: url("data:image/svg+xml,%3Csvg width='96' height='93' viewBox='0 0 96 93' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M76.991 23.7156C81.1118 28.0903 83.3246 33 83.3246 40.9588C83.3246 54.9564 73.4986 67.5052 59.2022 73.7072L55.6314 68.1968C68.9726 60.9784 71.5798 51.6156 72.6222 45.712C70.4742 46.8228 67.6622 47.2132 64.9058 46.958C57.6882 46.2888 51.9998 40.3636 51.9998 33C51.9998 25.268 58.2678 19 65.9998 19C70.2922 19 74.3966 20.9618 76.991 23.7156ZM36.991 23.7156C41.1118 28.0903 43.3246 33 43.3246 40.9588C43.3246 54.9564 33.4986 67.5052 19.2022 73.7072L15.6315 68.1968C28.9724 60.9784 31.5799 51.6156 32.6221 45.712C30.4741 46.8228 27.6623 47.2132 24.9058 46.958C17.6883 46.2888 12 40.3636 12 33C12 25.268 18.268 19 26 19C30.2922 19 34.3968 20.9618 36.991 23.7156Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat !important;
}

.testimonial-card .quote,
.testimonial-card .quote-mark,
.testimonial-card .quotes,
.testimonial-card .quotation,
.testimonial-card .quote-icon,
.testimonial-card blockquote::before,
.testimonial-card blockquote::after,
.testimonial-card p::before,
.testimonial-card p::after,
.testimonial .quote,
.testimonial .quote-mark,
.testimonial .quotes,
.testimonial .quotation,
.testimonial .quote-icon,
.testimonial blockquote::before,
.testimonial blockquote::after,
.testimonial p::before,
.testimonial p::after,
.opinion-card .quote,
.opinion-card .quote-mark,
.opinion-card .quotes,
.opinion-card .quotation,
.opinion-card .quote-icon,
.opinion-card blockquote::before,
.opinion-card blockquote::after,
.opinion-card p::before,
.opinion-card p::after,
.review-card .quote,
.review-card .quote-mark,
.review-card .quotes,
.review-card .quotation,
.review-card .quote-icon,
.review-card blockquote::before,
.review-card blockquote::after,
.review-card p::before,
.review-card p::after {
  display: none !important;
}

.testimonial-card::after,
.testimonial::after,
.opinion-card::after,
.review-card::after {
  content: none !important;
  display: none !important;
}

.testimonial-card [class*="quote"]:not(blockquote),
.testimonial-card [class*="Quote"]:not(blockquote),
.testimonial [class*="quote"]:not(blockquote),
.testimonial [class*="Quote"]:not(blockquote),
.opinion-card [class*="quote"]:not(blockquote),
.opinion-card [class*="Quote"]:not(blockquote),
.review-card [class*="quote"]:not(blockquote),
.review-card [class*="Quote"]:not(blockquote) {
  display: none !important;
}
#formularz .section-lead,
#formularz .form-lead,
#formularz .form-intro,
#formularz .contact-lead,
#formularz .container > p,
.form-section .section-lead,
.form-section .form-lead,
.form-section .form-intro,
.form-section .contact-lead,
.form-section .container > p {
  width: 100% !important;
  max-width: 987px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-family: "General Sans", var(--font-primary), Arial, sans-serif !important;
  font-size: 24px !important;
  font-weight: 300 !important;
  line-height: 1.5 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  color: #ffffff !important;
}
/* Figma parity: arrows in buttons and links */
:root {
  --figma-arrow-right: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 7H13M8 2L13 7L8 12' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.figma-arrow-right,
a .arrow,
button .arrow,
.btn .arrow,
.button .arrow,
.cta .arrow,
.cta-button .arrow,
.nav-cta .arrow {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  width: 24px !important;
  height: 24px !important;
  padding: 5px !important;
  gap: 10px !important;
  flex: 0 0 24px !important;
  font-size: 0 !important;
  line-height: 0 !important;
}

.figma-arrow-right::before,
a .arrow::before,
button .arrow::before,
.btn .arrow::before,
.button .arrow::before,
.cta .arrow::before,
.cta-button .arrow::before,
.nav-cta .arrow::before {
  content: "" !important;
  display: block !important;
  width: 14px !important;
  height: 14px !important;
  background: currentColor !important;
  -webkit-mask: var(--figma-arrow-right) center / 14px 14px no-repeat !important;
  mask: var(--figma-arrow-right) center / 14px 14px no-repeat !important;
}

a .arrow svg,
button .arrow svg,
.btn .arrow svg,
.button .arrow svg,
.cta .arrow svg,
.cta-button .arrow svg,
.nav-cta .arrow svg {
  display: none !important;
}

.nav-cta::after,
.header-cta::after,
.site-header .cta::after,
.main-nav .cta::after,
.navbar .cta::after,
.navbar a[href*="formularz"]::after,
.navbar a[href*="kontakt"]::after,
.site-header a[href*="formularz"]::after,
.site-header a[href*="kontakt"]::after {
  content: "" !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 24px !important;
  height: 24px !important;
  padding: 5px !important;
  flex: 0 0 24px !important;
  margin-left: 10px !important;
  color: inherit !important;
  background: currentColor !important;
  -webkit-mask: var(--figma-arrow-right) center / 14px 14px no-repeat !important;
  mask: var(--figma-arrow-right) center / 14px 14px no-repeat !important;
}

.nav-cta > svg,
.nav-cta > img,
.header-cta > svg,
.header-cta > img,
.site-header .cta > svg,
.site-header .cta > img,
.main-nav .cta > svg,
.main-nav .cta > img,
.navbar .cta > svg,
.navbar .cta > img,
.navbar a[href*="formularz"] > svg,
.navbar a[href*="kontakt"] > svg,
.site-header a[href*="formularz"] > svg,
.site-header a[href*="kontakt"] > svg {
  display: none !important;
}

/* Kierownik feedback pass */
.topbar {
  grid-template-columns: 76px 1fr auto;
}

.if-logo {
  display: flex;
  align-items: center;
  justify-self: start;
  width: 72px;
  height: auto;
  padding: 0;
  color: var(--dark);
  background: transparent;
  line-height: 1;
}

.if-logo img {
  display: block;
  width: 72px;
  height: auto;
}

.topbar__nav {
  gap: 44px;
  font-size: 15px;
}

.topbar__cta {
  width: 246px;
  min-height: 54px;
  font-size: 14px;
  letter-spacing: 4px;
}

.hero h1 {
  max-width: 1120px;
  margin-inline: auto;
  font-size: clamp(50px, 4.15vw, 60px);
  line-height: 1.22;
}

.hero p {
  font-weight: 300;
}

.check-list li,
.inline-checks li,
.feature-list li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  min-height: 1.5em;
  padding-left: 0 !important;
}

/* Keep mixed text + <strong> as one flowing sentence (flex otherwise splits them into columns). */
.check-list li {
  display: block !important;
  position: relative !important;
  padding-left: 32px !important;
  gap: 0 !important;
}

.inline-checks li {
  display: flex !important;
  align-items: center !important;
  position: relative !important;
  padding-left: 0 !important;
  gap: 10px !important;
}

.check-list li::before,
.inline-checks li::before,
.feature-list li::before {
  position: static !important;
  flex: 0 0 20px !important;
  align-self: flex-start !important;
  margin-top: 0.35em !important;
  margin-right: 0 !important;
}

.check-list li::before {
  position: absolute !important;
  left: 0 !important;
  top: 0.35em !important;
  margin-top: 0 !important;
  margin-right: 0 !important;
}

.inline-checks li::before {
  position: static !important;
  top: auto !important;
  left: auto !important;
  margin-top: 0 !important;
  margin-right: 0 !important;
  flex: 0 0 auto !important;
  align-self: center !important;
}

.feature-list .no::before {
  content: "" !important;
  display: inline-block !important;
  width: 20px !important;
  height: 20px !important;
  flex: 0 0 20px !important;
  background: var(--red) !important;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4L16 16M16 4L4 16' stroke='black' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat !important;
  mask: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4L16 16M16 4L4 16' stroke='black' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat !important;
}

:is(#landing-fix, .price-card .feature-list li.no)::before {
  content: "" !important;
  width: 20px !important;
  height: 20px !important;
  flex-basis: 20px !important;
  background: var(--red) !important;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4L16 16M16 4L4 16' stroke='black' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat !important;
  mask: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4L16 16M16 4L4 16' stroke='black' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat !important;
}

.main-case__summary {
  gap: 52px;
  margin-bottom: 50px;
}

.main-case h2 {
  font-size: clamp(48px, 4.2vw, 58px);
  line-height: 1.18;
  white-space: nowrap;
}

.chart {
  margin-bottom: 46px;
}

.case-grid {
  max-width: none;
  gap: 70px;
  margin: 90px auto 0;
}

.small-case {
  padding: 38px;
}

.small-case h3 {
  font-size: 38px;
}

.small-case__metrics {
  justify-items: start;
  margin: 42px 0 34px;
}

.small-case__metrics > div {
  justify-self: start;
  width: auto;
  min-width: 0;
  text-align: left;
}

.small-case__metrics > div:nth-child(2) {
  justify-self: end;
  text-align: left;
}

.small-case__metrics strong {
  font-size: clamp(76px, 5.8vw, 96px);
  letter-spacing: -0.02em;
}

.small-case__metrics span {
  max-width: 260px;
  font-size: 1.35rem;
  line-height: 1.38;
}

.testimonial-slider {
  display: block;
}

.testimonial-arrow {
  display: none !important;
}

.testimonial-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  padding-right: 80px;
  cursor: grab;
  scrollbar-width: none;
  scroll-behavior: auto;
  scroll-snap-type: none;
  touch-action: auto;
  -webkit-overflow-scrolling: touch;
}

.testimonial-viewport::-webkit-scrollbar {
  display: none;
}

.testimonial-viewport.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.testimonial-track {
  gap: 28px;
  transform: none !important;
  transition: none !important;
}

.testimonial-card {
  flex: 0 0 calc((100% - 56px) / 3.25);
  min-height: 328px;
  padding: 38px 28px 34px;
}

.testimonial-card::before {
  width: 58px !important;
  height: 56px !important;
  margin-bottom: 18px !important;
}

.testimonial-card p {
  font-size: 1rem;
  font-weight: 300;
}

.testimonial-card > span {
  display: none !important;
}

.process-grid li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 310px;
  padding: 34px 30px;
}

.process-grid span {
  margin-bottom: 16px;
  line-height: 1;
}

.process-grid h3 {
  margin-bottom: 14px;
}

.why-item > div {
  display: grid;
  align-items: center;
  min-height: 156px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.why-item__content {
  display: grid;
  gap: 8px;
  align-content: center;
  width: 100%;
}

.why-item h3 {
  margin: 0;
  line-height: 1.15;
}

.why-item p {
  margin: 0;
}

.hero p,
.about__text > p,
.check-list,
.why__intro p,
.process > .container > p,
.pricing-lead,
.more p {
  font-family: "General Sans", var(--font-primary), Arial, sans-serif !important;
  font-size: 24px !important;
  font-weight: 300 !important;
  line-height: 1.5 !important;
  letter-spacing: 0 !important;
}

.why__intro p {
  color: rgba(255, 255, 255, 0.86) !important;
  text-align: center !important;
}

.why__intro p strong {
  display: inline-block !important;
  color: #fff !important;
  font-weight: 700 !important;
}

.why__intro p {
  max-width: 1080px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  color: rgba(255, 255, 255, 0.86) !important;
}

.why__intro p strong {
  display: inline-block;
  color: #fff !important;
  font-weight: 700 !important;
}

.hero p,
.pricing-lead,
.more p {
  color: rgba(255, 255, 255, 0.86) !important;
}

.about__text > p,
.check-list,
.why__intro p,
.process > .container > p {
  color: #222222 !important;
}

.check-list strong,
.why__intro p strong {
  font-weight: 600 !important;
}

.about__text > p {
  max-width: 900px;
}

.check-list {
  max-width: 900px;
}

.why__intro p,
.process > .container > p {
  max-width: 1408px !important;
}

.pricing-lead {
  max-width: 1408px;
  margin-left: auto;
  margin-right: auto;
}

.more p {
  max-width: 860px;
}

.price-card {
  min-height: 820px;
  padding: 48px 40px 34px;
}

.price-card--featured {
  padding-top: 58px;
  transform: translateY(-48px);
  z-index: 1;
}

.bars {
  height: 44px;
  margin-bottom: 16px;
}

.price-card h3 {
  margin-bottom: 10px;
  font-size: 31px;
}

.price {
  margin-bottom: 16px;
  font-size: 39px;
}

.time {
  margin-bottom: 18px;
}

.desc {
  min-height: 54px;
  margin-bottom: 18px;
}

.feature-list {
  gap: 15px;
  margin-bottom: 28px;
}

.price-card .feature-list li::before {
  position: static !important;
  align-self: center !important;
  flex: 0 0 20px !important;
  width: 20px !important;
  height: 15px !important;
  margin-top: 0 !important;
  margin-right: 0 !important;
}

.more {
  max-width: 960px;
  margin-top: 82px;
}

.more h3 {
  margin-bottom: 18px;
  font-size: 46px;
}

.more p {
  max-width: 760px;
  margin: 0 auto 44px;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.45;
}

.hero p,
.about__text > p,
.check-list,
.why__intro p,
.process > .container > p,
.pricing-lead,
.more p {
  font-family: "General Sans", var(--font-primary), Arial, sans-serif !important;
  font-size: 24px !important;
  font-weight: 300 !important;
  line-height: 1.5 !important;
  letter-spacing: 0 !important;
}

@media (max-width: 1180px) {
  .topbar {
    grid-template-columns: 76px 1fr;
  }

  .testimonial-card {
    flex-basis: calc((100% - 28px) / 2.2);
  }
}

@media (max-width: 720px) {
  .if-logo,
  .if-logo img {
    width: 66px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(28px, 8.2vw, 34px);
  }

  .small-case__top {
    grid-template-columns: minmax(0, 1fr) 72px;
    gap: 12px;
  }

  .testimonial-viewport {
    padding-right: 0;
  }

  .testimonial-card {
    flex-basis: 100%;
    min-height: 280px;
  }

  .small-case__metrics > div:nth-child(2) {
    justify-self: center;
  }

  .price-card {
    padding: 40px 24px 28px;
  }
}

.why__intro p {
  color: rgba(255, 255, 255, 0.86) !important;
  text-align: center !important;
}

.why__intro p strong {
  color: #fff !important;
  font-weight: 600 !important;
}

/* Final responsive safety net: keep late desktop parity rules from leaking into mobile. */
@media (max-width: 1180px) {
  .price-card,
  .process-grid li {
    min-height: auto;
  }

  .price-card--featured {
    transform: none;
  }

  .main-case h2 {
    white-space: normal;
  }

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

  .small-case {
    aspect-ratio: auto;
  }
}

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

@media (max-width: 720px) {
  .hero p {
    max-width: none !important;
    font-size: 16px !important;
  }

  .about__text > p,
  .check-list,
  .why__intro p,
  .process > .container > p,
  .pricing-lead,
  .more p {
    font-size: 16px !important;
    line-height: 1.5 !important;
  }

  .why__intro,
  .why-list {
    width: var(--container);
  }

  .main-case h2 {
    font-size: clamp(28px, 8vw, 34px) !important;
    white-space: normal;
  }

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

  .process-grid span {
    font-size: 48px;
  }

  .process-grid h3,
  .why-item h3 {
    font-size: 26px;
  }

  .small-case {
    padding: 24px;
  }

  .small-case h3 {
    font-size: clamp(20px, 5.4vw, 24px);
  }

  .small-case__metrics strong {
    font-size: clamp(48px, 13vw, 64px);
  }

  .more h3 {
    font-size: 28px;
  }

  .button {
    max-width: 100%;
    white-space: normal;
  }

  .pricing-grid {
    display: flex;
    flex-direction: column;
  }
}

/* Mobile RWD — final overrides (must stay last; desktop rules above stay untouched >720px) */
.testimonial-dots {
  display: none;
}

@media (max-width: 1180px) {
  .about {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .about__text {
    order: 1;
  }

  .about__image {
    order: 2;
  }

  .about__image img {
    width: 100%;
  }
}

.card-slider__hint {
  display: none;
}

@media (max-width: 720px) {
  .topbar {
    display: flex !important;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    overflow: visible;
  }

  .topbar__actions {
    margin-left: auto;
    grid-column: auto;
  }

  .if-logo {
    grid-column: auto;
    grid-row: auto;
  }

  .topbar__cta {
    display: inline-flex !important;
    width: auto !important;
    min-width: 0 !important;
    min-height: 44px !important;
    padding-inline: 18px 16px !important;
    font-size: 12px !important;
    letter-spacing: 2.5px !important;
    gap: 10px;
  }

  .hero h1 {
    max-width: none !important;
    font-size: clamp(26px, 7vw, 30px) !important;
    line-height: 1.25 !important;
  }

  .hero__line {
    white-space: nowrap;
  }

  .hero p {
    max-width: none !important;
    width: 100% !important;
    font-size: 16px !important;
  }

  .hero .button,
  .main-case > .button,
  .small-case .button,
  .price-card .button,
  .more .button,
  .contact-form__submit {
    width: 100%;
  }

  .inline-checks {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 16px !important;
    width: 100%;
    text-align: center;
  }

  .inline-checks li {
    flex: 0 1 auto;
    width: auto;
    max-width: none;
    justify-content: center;
    font-size: 15px;
    text-align: center;
  }

  .logo-strip {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 16px;
    overflow: visible;
  }

  .cert-row {
    justify-content: center !important;
    width: 100%;
  }

  .metric-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px 16px !important;
  }

  .metric-row strong {
    font-size: clamp(32px, 9vw, 40px) !important;
  }

  .small-case__top {
    grid-template-columns: minmax(0, 1fr) 72px !important;
    gap: 12px !important;
    align-items: start;
  }

  .small-case h3 {
    font-size: clamp(20px, 5.4vw, 24px) !important;
    line-height: 1.2 !important;
  }

  .small-case__top img {
    width: 72px !important;
    height: 72px !important;
    padding: 10px !important;
  }

  .small-case__metrics {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    gap: 28px !important;
    margin: 28px 0 !important;
    text-align: center;
  }

  .small-case__metrics > div,
  .small-case__metrics > div:nth-child(2) {
    justify-self: center !important;
    width: 100%;
    text-align: center !important;
  }

  .small-case__metrics strong {
    font-size: clamp(48px, 13vw, 64px) !important;
  }

  .small-case__metrics span {
    max-width: 280px;
    margin-inline: auto;
    font-size: 1rem !important;
  }

  .testimonial-slider {
    display: block !important;
  }

  .testimonial-arrow {
    display: none !important;
  }

  .testimonial-card--clone {
    display: none !important;
  }

  .testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
  }

  .testimonial-card {
    flex-basis: 100% !important;
    min-height: 280px !important;
  }

  .why-item,
  .why-item--right,
  .why-item--left {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 14px !important;
  }

  .why-item > .why-icon,
  .why-item > .why-icon--outline {
    display: none !important;
  }

  .why-item > div {
    order: 1 !important;
    width: 100% !important;
  }

  .price-card {
    min-height: auto !important;
    padding: 40px 24px 28px !important;
  }

  .price-card--featured {
    order: 0;
    padding-top: 48px !important;
    transform: none !important;
  }

  .process-slider,
  .ai-stack-slider,
  .pricing-slider,
  .approach-slider {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .card-slider__hint {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    margin-bottom: 10px;
    padding-inline: 16px;
  }

  .card-slider__hint-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--blue);
    font-size: 0;
    line-height: 0;
    cursor: pointer;
  }

  .card-slider__hint-arrow::before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background: currentColor;
    -webkit-mask: var(--figma-arrow-right) center / 14px 14px no-repeat;
    mask: var(--figma-arrow-right) center / 14px 14px no-repeat;
  }

  .card-slider__hint-arrow--prev::before {
    transform: scaleX(-1);
  }

  .card-slider__hint-arrow:disabled {
    opacity: 0.35;
    cursor: default;
  }

  .pricing .card-slider__hint-arrow {
    color: #fff;
  }

  .process-viewport,
  .ai-stack-viewport,
  .pricing-viewport,
  .approach-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    padding-inline: 16px;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    touch-action: auto;
  }

  .process-viewport::-webkit-scrollbar,
  .ai-stack-viewport::-webkit-scrollbar,
  .pricing-viewport::-webkit-scrollbar,
  .approach-viewport::-webkit-scrollbar {
    display: none;
  }

  .process-viewport.is-dragging,
  .ai-stack-viewport.is-dragging,
  .pricing-viewport.is-dragging,
  .approach-viewport.is-dragging {
    cursor: grabbing;
    user-select: none;
    scroll-snap-type: none;
  }

  .process-grid,
  .ai-stack__grid,
  .pricing-grid,
  .approach__comparison {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 12px;
    grid-template-columns: none !important;
    width: max-content;
    margin: 0;
    padding: 0;
    align-items: stretch;
    text-align: left;
  }

  .process-grid li,
  .ai-stack__card,
  .price-card,
  .approach__column {
    flex: 0 0 calc(100vw - 76px);
    max-width: calc(100vw - 76px);
    scroll-snap-align: start;
  }

  .process-grid li {
    min-height: 280px;
    display: grid !important;
    grid-template-rows: auto auto 1fr;
    padding: 28px 24px;
  }

  .ai-stack__card {
    min-height: 220px;
    padding: 28px 24px;
  }

  .approach__column {
    padding: 28px 24px;
  }

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

  .pricing-viewport .price-card,
  .ai-stack-viewport .ai-stack__card,
  .process-viewport .process-grid li,
  .approach-viewport .approach__column {
    opacity: 1 !important;
    transform: none !important;
  }

  body.is-menu-open {
    overflow: hidden;
  }

  .topbar__toggle {
    display: inline-flex;
  }

  .topbar.is-menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 48;
    background: rgba(18, 30, 44, 0.45);
    pointer-events: auto;
    cursor: pointer;
  }

  .topbar.is-menu-open .if-logo,
  .topbar.is-menu-open .topbar__actions {
    position: relative;
    z-index: 51;
  }

  .topbar__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 49;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 16px;
    background: #fff;
    border-top: 1px solid rgba(18, 30, 44, 0.08);
    box-shadow: 0 12px 24px rgba(18, 30, 44, 0.12);
  }

  .topbar__nav a {
    padding: 14px 16px !important;
    font-size: 15px;
    border-bottom: 1px solid rgba(18, 30, 44, 0.06);
  }

  .topbar__nav a:last-child {
    border-bottom: 0;
  }

  .topbar.is-menu-open .topbar__nav {
    display: flex;
    z-index: 51;
  }
}

/* Laptop ~1536×864 — cała strona −20%; hero + topbar +29% względem reszty */
@media (min-width: 1181px) and (max-width: 1536px) and (max-height: 920px) {
  html {
    zoom: 0.8;
  }

  .topbar,
  .hero {
    zoom: 1.29;
  }

  /* Nagłówek trochę wyżej — żeby hero zmieściło się nad linią zanurzenia */
  .hero {
    padding-top: 92px;
    padding-bottom: 72px;
  }
}

/* reCAPTCHA — wyżej nad UI; na mobile tylko ikona (bez rozwiniętego paska) */
.grecaptcha-badge {
  z-index: 10050 !important;
}

@media (max-width: 720px) {
  .grecaptcha-badge {
    right: 0 !important;
    bottom: 7px !important;
    left: auto !important;
    width: 70px !important;
    height: 60px !important;
    overflow: hidden !important;
    transform: none !important;
    box-shadow: none !important;
  }
}

@media (max-width: 1180px) {
  .modern-process__intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .modern-process__kicker {
    grid-column: auto;
  }

  .modern-process__intro > p:last-child {
    max-width: 850px;
  }

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

@media (max-width: 720px) {
  .modern-process__content {
    padding: 64px 0 72px;
  }

  .modern-process__intro {
    margin-bottom: 40px;
  }

  .modern-process__kicker {
    font-size: 16px;
    letter-spacing: 3px;
  }

  .modern-process h2 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .modern-process__intro > p:last-child,
  .modern-process__item p {
    font-size: 16px;
  }

  .modern-process__grid {
    grid-template-columns: 1fr;
  }

  .modern-process__item {
    min-height: 0;
    padding: 28px 24px 32px;
  }

  .modern-process__item > span {
    margin-bottom: 32px;
  }

  .modern-process__item h3 {
    font-size: 22px;
  }
}
