@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

.co-page,
.co-page * {
  box-sizing: border-box;
}

.co-page {
  --co-blue: #00a9ff;
  --co-blue-deep: #007bdc;
  --co-ink: #101820;
  --co-ink-soft: #243447;
  --co-muted: #667487;
  --co-line: #dbe5ee;
  --co-cloud: #f4f8fb;
  --co-cloud-blue: #edf8ff;
  --co-white: #ffffff;
  --co-green: #20d0a0;
  --co-yellow: #ffbf3f;
  --co-orange: #ff7a22;
  --co-shadow: 0 28px 80px rgba(31, 55, 75, .13);
  --co-max: 1240px;
  position: relative;
  overflow-x: hidden;
  color: var(--co-ink);
  background: #fff;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.co-page img,
.co-page svg {
  display: block;
}

.co-page a {
  color: inherit;
}

.co-page section[id] {
  scroll-margin-top: 92px;
}

.co-wrap {
  width: min(var(--co-max), calc(100% - 48px));
  margin: 0 auto;
  position: relative;
}

.co-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255, 255, 255, .82);
  border-bottom: 1px solid rgba(188, 207, 222, .55);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}

.co-nav.is-scrolled {
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 36px rgba(42, 67, 88, .08);
}

.co-nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.co-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.co-brand-logo {
  display: block;
  width: auto;
  height: 39px;
  max-width: 290px;
  object-fit: contain;
  filter: invert(1);
}

.co-brand-aufinity {
  font-size: 27px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.06em;
}

.co-brand-slashes {
  display: inline-block;
  margin-left: 5px;
  letter-spacing: -.22em;
  transform: skewX(-10deg);
}

.co-brand-product {
  position: relative;
  padding-left: 14px;
  border-left: 1px solid #aeb9c4;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 630;
}

.co-brand-product small {
  display: block;
  margin-top: 3px;
  color: var(--co-blue-deep);
  font-size: 9px;
  line-height: 1;
  font-weight: 780;
}

.co-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.co-nav-links > a:not(.co-btn) {
  color: #405064;
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
  transition: color .2s ease;
}

.co-nav-links > a:not(.co-btn):hover {
  color: var(--co-blue-deep);
}

.co-nav-mobile-cta {
  display: none;
  color: var(--co-blue-deep);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.co-btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 760;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

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

.co-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--co-blue), #0788ff);
  box-shadow: 0 15px 34px rgba(0, 152, 242, .24);
}

.co-btn-primary:hover {
  box-shadow: 0 20px 42px rgba(0, 152, 242, .31);
}

.co-btn-secondary {
  color: var(--co-ink-soft);
  border: 1px solid #c8d5df;
  background: rgba(255, 255, 255, .72);
}

.co-btn-secondary:hover {
  border-color: #8fb7d0;
  background: #fff;
}

.co-btn-small {
  min-height: 44px;
  padding-inline: 20px;
  font-size: 14px;
}

.co-eyebrow {
  margin: 0;
  color: var(--co-blue-deep);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.co-eyebrow-light {
  color: #68ccff;
}

.co-hero {
  min-height: 920px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 150px 0 104px;
  background:
    linear-gradient(180deg, #fff 0%, #fbfdff 65%, #f5f9fc 100%);
  isolation: isolate;
}

.co-hero::before {
  content: "";
  position: absolute;
  inset: 76px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, #dce9f2 20%, #dce9f2 80%, transparent);
}

.co-hero::after {
  content: "";
  position: absolute;
  width: 760px;
  height: 760px;
  right: -220px;
  top: 30px;
  z-index: -2;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 169, 255, .11), rgba(0, 169, 255, 0) 68%);
}

.co-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr);
  gap: 58px;
  align-items: center;
}

.co-hero-copy {
  position: relative;
  z-index: 4;
  max-width: 670px;
}

.co-hero h1 {
  margin: 18px 0 0;
  max-width: 700px;
  font-size: clamp(58px, 6.4vw, 92px);
  line-height: .93;
  letter-spacing: -.065em;
  font-weight: 720;
}

.co-hero h1 span {
  display: block;
  color: var(--co-blue);
}

.co-hero-lead,
.co-lead {
  margin: 26px 0 0;
  color: #526175;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.55;
}

.co-hero-lead {
  max-width: 620px;
}

.co-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.co-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 34px;
  color: #56667a;
  font-size: 13px;
  font-weight: 650;
}

.co-hero-proof span {
  position: relative;
  padding-left: 19px;
}

.co-hero-proof span::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--co-blue);
  box-shadow: 0 0 0 5px rgba(0, 169, 255, .12);
}

.co-hero-visual {
  position: relative;
  min-width: 0;
  transform: translate3d(0, var(--co-parallax-y, 0px), 0);
  transition: transform .08s linear;
}

.co-hero-image-shell {
  position: relative;
  height: 640px;
  overflow: hidden;
  border-radius: 34px 34px 96px 34px;
  background: #f0f3f5;
  box-shadow: var(--co-shadow);
}

.co-hero-image-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(191, 207, 219, .6);
  border-radius: inherit;
  pointer-events: none;
}

.co-hero-image-shell img {
  width: 175%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: 75% 0%;
  transform: translateX(-37%) scale(1.025);
}

.co-hero-float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 17px;
  border: 1px solid rgba(185, 206, 220, .78);
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 16px 42px rgba(30, 58, 79, .12);
  backdrop-filter: blur(15px);
  color: #33445a;
  font-size: 13px;
  font-weight: 720;
}

.co-hero-float-top {
  top: 40px;
  left: -26px;
}

.co-hero-float-bottom {
  right: -18px;
  bottom: 38px;
  display: block;
  min-width: 170px;
  border-radius: 22px;
}

.co-hero-float-bottom strong,
.co-hero-float-bottom span {
  display: block;
}

.co-hero-float-bottom strong {
  color: var(--co-blue-deep);
  font-size: 19px;
}

.co-hero-float-bottom span {
  color: #6f7d8d;
  font-size: 12px;
}

.co-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #18cb93;
  box-shadow: 0 0 0 5px rgba(24, 203, 147, .13);
}

.co-hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.co-hero-glow-one {
  width: 320px;
  height: 180px;
  left: 43%;
  bottom: 160px;
  background: rgba(0, 169, 255, .12);
}

.co-hero-glow-two {
  width: 220px;
  height: 140px;
  right: 6%;
  top: 250px;
  background: rgba(36, 203, 255, .12);
}

.co-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 35px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
  color: #7a8796;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.co-scroll-hint span {
  width: 26px;
  height: 42px;
  position: relative;
  border: 1px solid #bbc9d4;
  border-radius: 20px;
}

.co-scroll-hint span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 7px;
  border-radius: 4px;
  background: var(--co-blue);
  transform: translateX(-50%);
  animation: co-scroll-dot 1.8s ease-in-out infinite;
}

@keyframes co-scroll-dot {
  0%, 100% { transform: translate(-50%, 0); opacity: .35; }
  50% { transform: translate(-50%, 15px); opacity: 1; }
}

.co-story {
  min-height: 115vh;
  position: relative;
  padding: 140px 0;
  background: #fff;
}

.co-story-grid {
  min-height: calc(115vh - 280px);
  display: grid;
  grid-template-columns: .38fr 1.62fr;
  gap: 72px;
  align-items: center;
}

.co-story-label {
  align-self: start;
  position: sticky;
  top: 130px;
  padding-top: 14px;
}

.co-story-label span {
  display: inline-block;
  max-width: 190px;
  color: #6b7a8d;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.co-story-copy {
  display: grid;
  gap: 16px;
}

.co-story-line {
  margin: 0;
  color: #d9e1e8;
  font-size: clamp(48px, 7.4vw, 106px);
  line-height: .98;
  letter-spacing: -.06em;
  font-weight: 720;
  transition: color .45s ease, transform .45s ease;
}

.co-story-line.is-active {
  color: var(--co-ink);
  transform: translateX(18px);
}

.co-story-line.is-active:last-child {
  color: var(--co-blue);
}

.co-story-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #e8eef3;
}

.co-story-progress span {
  display: block;
  width: var(--co-story-progress, 0%);
  height: 100%;
  background: var(--co-blue);
}

.co-section {
  position: relative;
  padding: 120px 0;
}

.co-section-head h2,
.co-system h2,
.co-form-copy h2 {
  margin: 16px 0 0;
  font-size: clamp(44px, 5.3vw, 76px);
  line-height: 1;
  letter-spacing: -.055em;
  font-weight: 710;
}

.co-section-head-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr);
  gap: 70px;
  align-items: end;
}

.co-section-head-split .co-lead {
  margin: 0 0 6px;
}

.co-benefits {
  background: #f5f9fc;
  border-top: 1px solid #e2ebf1;
  border-bottom: 1px solid #e2ebf1;
}

.co-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 58px;
}

.co-benefit-card {
  min-height: 410px;
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid #d8e4ec;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(48, 77, 98, .08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.co-benefit-card:hover {
  transform: translateY(-7px);
  border-color: #b9dff4;
  box-shadow: 0 26px 65px rgba(48, 77, 98, .12);
}

.co-benefit-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 169, 255, .11), transparent 70%);
}

.co-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #eff9ff;
  color: var(--co-blue);
}

.co-icon svg {
  width: 38px;
  height: 38px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.co-benefit-card h3 {
  margin: 86px 0 0;
  max-width: 280px;
  font-size: clamp(28px, 2.7vw, 38px);
  line-height: 1.04;
  letter-spacing: -.045em;
  font-weight: 710;
}

.co-benefit-card p {
  margin: 18px 0 0;
  max-width: 315px;
  color: #617083;
  font-size: 15px;
  line-height: 1.55;
}

.co-card-index {
  position: absolute;
  right: 28px;
  top: 30px;
  color: #c3d0d9;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
}

.co-kpis {
  padding-top: 104px;
  padding-bottom: 104px;
  background: #fff;
}

.co-kpi-shell {
  display: grid;
  grid-template-columns: minmax(320px, .75fr) minmax(0, 1.25fr);
  gap: 52px;
  align-items: center;
  padding: 54px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 94% 8%, rgba(0, 169, 255, .22), transparent 26rem),
    radial-gradient(circle at 0 100%, rgba(20, 82, 130, .25), transparent 28rem),
    #041728;
  color: #fff;
  box-shadow: 0 30px 90px rgba(4, 23, 40, .22);
}

.co-kpi-intro h2 {
  margin: 16px 0 0;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -.05em;
  font-weight: 690;
}

.co-kpi-intro > p:last-child {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 16px;
}

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

.co-kpi-card {
  min-height: 158px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border: 2px solid rgba(255, 255, 255, .25);
  border-radius: 22px;
  background: rgba(255, 255, 255, .025);
}

.co-kpi-card strong {
  display: block;
  color: #fff;
  font-size: clamp(34px, 3.3vw, 50px);
  line-height: 1;
  letter-spacing: -.045em;
  font-weight: 760;
}

.co-kpi-card strong small,
.co-kpi-card strong em {
  font-size: .45em;
  font-style: normal;
  letter-spacing: -.02em;
}

.co-kpi-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: 15px;
  font-weight: 690;
}

.co-kpi-green { border-color: #23d5a3; }
.co-kpi-yellow { border-color: #ffbd3c; }
.co-kpi-blue { border-color: #0aa8ff; }
.co-kpi-orange { border-color: #ff7b24; }

.co-product {
  padding-top: 126px;
  background:
    linear-gradient(180deg, #f8fbfd 0%, #fff 100%);
  border-top: 1px solid #e5edf2;
}

.co-section-head-center {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.co-section-head-center .co-lead {
  max-width: 720px;
  margin-inline: auto;
}

.co-cockpit {
  position: relative;
  margin-top: 64px;
  padding: 16px;
  border: 1px solid #d6e1e9;
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--co-shadow);
  transform: perspective(1600px) rotateX(var(--co-cockpit-rotate, 2.5deg)) translateY(var(--co-cockpit-y, 0px));
  transform-origin: center bottom;
  transition: transform .12s linear;
}

.co-cockpit-browser {
  min-height: 96px;
  display: grid;
  grid-template-columns: 1fr .88fr .45fr;
  gap: 24px;
  align-items: center;
  padding: 0 26px;
  border-bottom: 1px solid #dde7ee;
  background: #fff;
  border-radius: 22px 22px 0 0;
}

.co-cockpit-brand strong,
.co-cockpit-brand span {
  display: block;
}

.co-cockpit-brand strong {
  color: #233247;
  font-size: 22px;
  letter-spacing: -.03em;
}

.co-cockpit-brand span {
  color: #5b6a7e;
  font-size: 13px;
}

.co-cockpit-search {
  padding: 13px 18px;
  border: 1px solid #d7e2eb;
  border-radius: 12px;
  color: #738196;
  font-size: 13px;
}

.co-cockpit-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.co-cockpit-actions span {
  width: 44px;
  height: 36px;
  border: 1px solid #d7e2eb;
  border-radius: 10px;
  background: #fbfdff;
}

.co-cockpit-viewport {
  height: 625px;
  overflow: hidden;
  position: relative;
  border-radius: 0 0 22px 22px;
  background: #edf4f9;
}

.co-cockpit-viewport img {
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: translateY(-92px) scale(1.025);
}

.co-cockpit-callout {
  position: absolute;
  z-index: 3;
  padding: 12px 16px;
  border: 1px solid #c9dce8;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 34px rgba(38, 67, 89, .12);
  color: #34465a;
  font-size: 12px;
  font-weight: 730;
  backdrop-filter: blur(12px);
}

.co-callout-one { left: -24px; top: 190px; }
.co-callout-two { right: -24px; top: 320px; }
.co-callout-three { left: 20%; bottom: -18px; }

.co-workflow {
  position: relative;
  padding: 120px 0 128px;
  background:
    radial-gradient(circle at 92% 12%, rgba(0, 169, 255, .10), transparent 26rem),
    #fff;
}

.co-workflow-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .72fr);
  gap: 70px;
  align-items: end;
}

.co-workflow-head h2 {
  margin: 18px 0 0;
  max-width: 850px;
  font-size: clamp(48px, 5.4vw, 76px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 710;
}

.co-workflow-head h2 span {
  color: var(--co-blue);
}

.co-workflow-head > p {
  margin: 0 0 6px;
  max-width: 520px;
  color: #607084;
  font-size: 17px;
  line-height: 1.55;
}

.co-workflow-carousel {
  margin-top: 54px;
  padding: 22px;
  border: 1px solid #d7e4ed;
  border-radius: 36px;
  background: #f7fbfe;
  box-shadow: 0 28px 90px rgba(39, 70, 92, .11);
}

.co-workflow-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 8px;
  border: 1px solid #dce8f0;
  border-radius: 24px;
  background: rgba(255, 255, 255, .88);
}

.co-workflow-tab {
  min-width: 0;
  min-height: 72px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
  border: 0;
  border-radius: 18px;
  color: #637487;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.co-workflow-tab:hover {
  color: #26394c;
  background: #f0f8fd;
}

.co-workflow-tab:focus-visible,
.co-workflow-arrow:focus-visible {
  outline: 3px solid rgba(0, 169, 255, .30);
  outline-offset: 3px;
}

.co-workflow-tab span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid #bfd4e1;
  border-radius: 50%;
  color: #748698;
  background: #fff;
  font-size: 13px;
  font-weight: 820;
  transition: inherit;
}

.co-workflow-tab strong {
  overflow: hidden;
  font-size: 13px;
  line-height: 1.22;
  font-weight: 760;
  text-overflow: ellipsis;
}

.co-workflow-tab.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--co-blue), #0788ff);
  box-shadow: 0 12px 28px rgba(0, 152, 242, .22);
  transform: translateY(-1px);
}

.co-workflow-tab.is-active span {
  color: var(--co-blue-deep);
  border-color: rgba(255, 255, 255, .80);
  background: #fff;
}

.co-workflow-stage {
  position: relative;
  margin-top: 18px;
  border: 1px solid #dce7ee;
  border-radius: 28px;
  background: #fff;
  overflow: hidden;
}

.co-workflow-slide {
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(390px, 1.12fr);
  gap: 48px;
  align-items: center;
  padding: 48px 52px;
}

.co-workflow-slide[hidden] {
  display: none !important;
}

.co-workflow-slide.is-active {
  animation: co-workflow-in .44s cubic-bezier(.22, .72, .24, 1) both;
}

@keyframes co-workflow-in {
  from { opacity: 0; transform: translateX(18px); }
  to { opacity: 1; transform: translateX(0); }
}

.co-workflow-slide-copy {
  max-width: 550px;
}

.co-step-number {
  color: var(--co-blue);
  font-size: 13px;
  font-weight: 830;
  letter-spacing: .13em;
}

.co-step-kicker {
  margin: 20px 0 0;
  color: #66778a;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.co-workflow-slide h3 {
  margin: 12px 0 0;
  max-width: 610px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -.05em;
  font-weight: 700;
}

.co-workflow-slide-copy > p:last-child {
  margin: 20px 0 0;
  max-width: 560px;
  color: #617184;
  font-size: 17px;
  line-height: 1.55;
}

.co-workflow-screen {
  width: min(455px, 100%);
  aspect-ratio: 512 / 730;
  justify-self: center;
  border: 1px solid #dbe5ec;
  border-radius: 24px;
  background-image: url("https://aufinity.b-cdn.net/cashflow-optimizer/assets/ChatGPT%20Image%2011.%20Juli%202026%2C%2018_36_39.png");
  background-repeat: no-repeat;
  background-size: 400% 100%;
  box-shadow: 0 22px 60px rgba(41, 69, 91, .12);
}

.co-screen-one { background-position: 0% 0; }
.co-screen-two { background-position: 33.333% 0; }
.co-screen-three { background-position: 66.666% 0; }
.co-screen-four { background-position: 100% 0; }

.co-workflow-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 16px 4px 0;
}

.co-workflow-arrow {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid #cbdce7;
  border-radius: 50%;
  color: #21374a;
  background: #fff;
  font: inherit;
  font-size: 20px;
  cursor: pointer;
  transition: transform .2s ease, color .2s ease, border-color .2s ease, background .2s ease;
}

.co-workflow-arrow:hover {
  color: #fff;
  border-color: var(--co-blue);
  background: var(--co-blue);
  transform: translateY(-1px);
}

.co-workflow-count {
  min-width: 58px;
  color: #8795a4;
  font-size: 13px;
  font-weight: 720;
  text-align: center;
}

.co-workflow-count strong {
  color: var(--co-ink);
  font-size: 16px;
}

@media (max-width: 1050px) {
  .co-workflow-head {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .co-workflow-head > p {
    margin: 0;
  }

  .co-workflow-slide {
    grid-template-columns: minmax(0, .92fr) minmax(340px, 1.08fr);
    gap: 30px;
    padding: 42px;
  }

  .co-workflow-tab {
    grid-template-columns: 34px minmax(0, 1fr);
    padding-inline: 10px;
  }

  .co-workflow-tab span {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 820px) {
  .co-workflow-tabs {
    grid-template-columns: repeat(4, 1fr);
  }

  .co-workflow-tab {
    min-height: 56px;
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    padding: 7px;
    text-align: center;
  }

  .co-workflow-tab strong {
    display: none;
  }

  .co-workflow-slide {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 36px;
  }

  .co-workflow-slide-copy {
    max-width: 670px;
  }

  .co-workflow-screen {
    width: min(430px, 100%);
  }
}

@media (max-width: 700px) {
  .co-workflow {
    padding: 92px 0;
  }

  .co-workflow-head h2 {
    font-size: clamp(44px, 13vw, 58px);
  }

  .co-workflow-carousel {
    margin-top: 34px;
    padding: 10px;
    border-radius: 26px;
  }

  .co-workflow-tabs {
    gap: 5px;
    padding: 5px;
    border-radius: 19px;
  }

  .co-workflow-tab {
    min-height: 50px;
    border-radius: 14px;
  }

  .co-workflow-tab span {
    width: 32px;
    height: 32px;
  }

  .co-workflow-stage {
    margin-top: 10px;
    border-radius: 21px;
  }

  .co-workflow-slide {
    gap: 26px;
    padding: 28px 22px;
  }

  .co-workflow-slide h3 {
    font-size: 35px;
  }

  .co-workflow-slide-copy > p:last-child {
    font-size: 16px;
  }

  .co-workflow-screen {
    border-radius: 18px;
  }

  .co-workflow-controls {
    justify-content: center;
    padding-top: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .co-workflow-slide.is-active {
    animation: none;
  }
}

.co-system {
  background: #f1f8fc;
  border-top: 1px solid #dceaf2;
  border-bottom: 1px solid #dceaf2;
}

.co-system-shell {
  padding: 64px;
  border: 1px solid #d7e6ef;
  border-radius: 34px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 22px 70px rgba(52, 83, 105, .08);
}

.co-system-copy {
  max-width: 850px;
}

.co-system-copy p:last-child {
  margin: 22px 0 0;
  max-width: 730px;
  color: #5e6f82;
  font-size: 17px;
}

.co-system-flow {
  display: grid;
  grid-template-columns: repeat(7, auto);
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 58px;
}

.co-system-node {
  min-width: 158px;
  min-height: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid #dce7ee;
  border-radius: 22px;
  background: #fff;
}

.co-system-node img {
  max-width: 128px;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.co-system-node em {
  color: #758395;
  font-size: 11px;
  font-style: normal;
  font-weight: 690;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.co-system-arrow {
  color: #87a0b2;
  font-size: 24px;
}

.co-bezahl-logo strong {
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.06em;
}

.co-bezahl-logo strong span {
  color: var(--co-blue);
}

.co-bezahl-logo strong small {
  color: #768291;
  font-size: .72em;
}

.co-form-section {
  padding-top: 128px;
  padding-bottom: 128px;
  background: #fff;
}

.co-form-shell {
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(420px, 1.07fr);
  gap: 60px;
  align-items: center;
  padding: 70px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 8% 8%, rgba(0, 169, 255, .16), transparent 23rem),
    radial-gradient(circle at 100% 100%, rgba(0, 117, 214, .18), transparent 27rem),
    #061829;
  color: #fff;
  box-shadow: 0 32px 90px rgba(6, 24, 41, .24);
}

.co-form-copy h2 {
  max-width: 650px;
}

.co-form-copy .co-lead {
  color: rgba(255, 255, 255, .72);
}

.co-form-benefits {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}

.co-form-benefits > div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.co-form-benefits > div > span {
  width: 28px;
  height: 28px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 169, 255, .17);
  color: #69d0ff;
  font-size: 13px;
  font-weight: 850;
}

.co-form-benefits p,
.co-form-benefits strong {
  display: block;
  margin: 0;
}

.co-form-benefits p {
  color: rgba(255, 255, 255, .63);
  font-size: 14px;
}

.co-form-benefits strong {
  margin-bottom: 4px;
  color: #fff;
  font-size: 15px;
}

.co-form-card {
  padding: 34px;
  border-radius: 28px;
  background: #fff;
  color: var(--co-ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
}

.co-form-card > h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -.04em;
  font-weight: 710;
}

.co-form-card > p {
  margin: 10px 0 24px;
  color: #6b7888;
  font-size: 14px;
}

.co-form-fallback {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.co-form-fallback input,
.co-form-fallback textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #d8e2e9;
  border-radius: 12px;
  background: #fafdff;
  color: var(--co-ink);
  font: inherit;
  font-size: 14px;
  padding: 0 14px;
  outline: none;
}

.co-form-fallback textarea {
  grid-column: 1 / -1;
  min-height: 100px;
  padding-top: 14px;
  resize: vertical;
}

.co-form-fallback input:focus,
.co-form-fallback textarea:focus {
  border-color: var(--co-blue);
  box-shadow: 0 0 0 3px rgba(0, 169, 255, .11);
}

.co-form-fallback button {
  grid-column: 1 / -1;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--co-blue), #0788ff);
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 760;
  cursor: pointer;
}

.co-form-card .hs-form .hs-form-field {
  margin-bottom: 14px;
}

.co-form-card .hs-form label {
  color: #314156;
  font-size: 13px;
  font-weight: 650;
}

.co-form-card .hs-form input,
.co-form-card .hs-form select,
.co-form-card .hs-form textarea {
  width: 100% !important;
  border: 1px solid #d8e2e9 !important;
  border-radius: 12px !important;
  background: #fafdff !important;
  box-shadow: none !important;
  color: var(--co-ink) !important;
  font-family: inherit !important;
}

.co-form-card .hs-form input,
.co-form-card .hs-form select {
  min-height: 50px;
  padding: 0 14px !important;
}

.co-form-card .hs-form textarea {
  min-height: 100px;
  padding: 14px !important;
}

.co-form-card .hs-button {
  width: 100% !important;
  min-height: 54px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--co-blue), #0788ff) !important;
  color: #fff !important;
  font-family: inherit !important;
  font-size: 15px !important;
  font-weight: 760 !important;
  box-shadow: 0 14px 30px rgba(0, 152, 242, .22) !important;
}

.co-footer {
  padding: 34px 0;
  border-top: 1px solid #dde7ee;
  background: #f8fbfd;
}

.co-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.co-brand-logo-footer {
  height: 34px;
}

.co-footer p {
  margin: 0;
  color: #6b7889;
  font-size: 13px;
}

.co-footer-inner > a:last-child {
  color: var(--co-blue-deep);
  text-decoration: none;
  font-size: 14px;
  font-weight: 760;
}

.co-page.co-js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s cubic-bezier(.2, .7, .2, 1), transform .72s cubic-bezier(.2, .7, .2, 1);
}

.co-page.co-js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.co-benefit-grid [data-reveal]:nth-child(2),
.co-kpi-grid [data-reveal]:nth-child(2) { transition-delay: .08s; }
.co-benefit-grid [data-reveal]:nth-child(3),
.co-kpi-grid [data-reveal]:nth-child(3) { transition-delay: .16s; }
.co-kpi-grid [data-reveal]:nth-child(4) { transition-delay: .24s; }

@media (max-width: 1180px) {
  .co-hero {
    min-height: 820px;
  }

  .co-hero-grid {
    grid-template-columns: minmax(0, .94fr) minmax(390px, .86fr);
    gap: 38px;
  }

  .co-hero h1 {
    font-size: clamp(54px, 6.2vw, 76px);
  }

  .co-hero-image-shell {
    height: 560px;
  }

  .co-kpi-shell,
  .co-form-shell {
    padding: 48px;
  }

  .co-cockpit-viewport {
    height: 535px;
  }

  .co-system-flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .co-system-arrow {
    display: none;
  }

  .co-system-node {
    min-width: 0;
  }
}

@media (max-width: 980px) {
  .co-nav-links > a:not(.co-btn) {
    display: none;
  }

  .co-hero {
    min-height: auto;
    padding-top: 136px;
  }

  .co-hero-grid,
  .co-section-head-split,
  .co-kpi-shell,
  .co-workflow-layout,
  .co-form-shell {
    grid-template-columns: 1fr;
  }

  .co-hero-copy {
    max-width: 760px;
  }

  .co-hero-visual {
    width: min(720px, 100%);
    margin: 16px auto 0;
  }

  .co-hero-image-shell {
    height: 590px;
  }

  .co-scroll-hint {
    display: none;
  }

  .co-story {
    min-height: auto;
  }

  .co-story-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .co-story-label {
    position: static;
  }

  .co-benefit-grid {
    grid-template-columns: 1fr;
  }

  .co-benefit-card {
    min-height: 310px;
  }

  .co-benefit-card h3 {
    margin-top: 52px;
  }

  .co-kpi-shell {
    gap: 38px;
  }

  .co-cockpit-viewport {
    height: 440px;
  }

  .co-cockpit-callout {
    display: none;
  }

  .co-workflow-sticky {
    position: static;
    margin-bottom: 50px;
  }

  .co-workflow-step {
    min-height: 660px;
  }

  .co-system-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .co-form-shell {
    gap: 42px;
  }
}

@media (max-width: 700px) {
  .co-wrap {
    width: min(var(--co-max), calc(100% - 28px));
  }

  .co-nav-inner {
    min-height: 66px;
  }

  .co-brand {
    gap: 9px;
  }

  .co-brand-logo {
    height: 31px;
    max-width: 225px;
  }

  .co-brand-aufinity {
    font-size: 22px;
  }

  .co-brand-product {
    padding-left: 9px;
    font-size: 11px;
  }

  .co-brand-product small {
    font-size: 7px;
  }

  .co-nav-links {
    display: none;
  }

  .co-nav-mobile-cta {
    display: inline-block;
  }

  .co-hero {
    padding: 110px 0 72px;
  }

  .co-hero h1 {
    font-size: clamp(45px, 14vw, 61px);
  }

  .co-hero-lead,
  .co-lead {
    font-size: 16px;
  }

  .co-hero-actions,
  .co-btn {
    width: 100%;
  }

  .co-hero-proof {
    display: grid;
  }

  .co-hero-image-shell {
    height: 440px;
    border-radius: 26px 26px 62px 26px;
  }

  .co-hero-image-shell img {
    width: 190%;
    object-position: 78% 0;
    transform: translateX(-44%) scale(1.02);
  }

  .co-hero-float-top {
    left: 10px;
    top: 20px;
  }

  .co-hero-float-bottom {
    right: 8px;
    bottom: 18px;
  }

  .co-story {
    padding: 90px 0;
  }

  .co-story-line {
    font-size: clamp(42px, 13vw, 58px);
  }

  .co-story-line.is-active {
    transform: translateX(6px);
  }

  .co-section {
    padding: 84px 0;
  }

  .co-section-head h2,
  .co-system h2,
  .co-form-copy h2 {
    font-size: clamp(39px, 12vw, 52px);
  }

  .co-benefit-grid {
    margin-top: 40px;
  }

  .co-benefit-card {
    min-height: 330px;
    padding: 26px;
  }

  .co-benefit-card h3 {
    font-size: 31px;
  }

  .co-kpi-shell,
  .co-system-shell,
  .co-form-shell {
    padding: 28px;
    border-radius: 26px;
  }

  .co-kpi-grid {
    grid-template-columns: 1fr;
  }

  .co-kpi-card {
    min-height: 130px;
  }

  .co-cockpit {
    margin-top: 42px;
    padding: 8px;
    border-radius: 24px;
  }

  .co-cockpit-browser {
    min-height: 72px;
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .co-cockpit-brand strong {
    font-size: 17px;
  }

  .co-cockpit-search,
  .co-cockpit-actions {
    display: none;
  }

  .co-cockpit-viewport {
    height: 330px;
  }

  .co-cockpit-viewport img {
    width: 132%;
    max-width: none;
    transform: translate(-12%, -50px) scale(1.02);
  }

  .co-workflow {
    padding: 92px 0;
  }

  .co-workflow-sticky h2 {
    font-size: clamp(44px, 13vw, 58px);
  }

  .co-workflow-progress i {
    width: 25px;
  }

  .co-workflow-steps {
    gap: 28px;
  }

  .co-workflow-step {
    min-height: 0;
    padding: 28px;
    border-radius: 26px;
    opacity: 1;
    transform: none;
  }

  .co-workflow-step h3 {
    font-size: 35px;
  }

  .co-workflow-screen {
    width: 100%;
    margin-top: 28px;
    border-radius: 18px;
  }

  .co-system-flow {
    grid-template-columns: 1fr;
  }

  .co-form-card {
    padding: 24px;
  }

  .co-form-fallback {
    grid-template-columns: 1fr;
  }

  .co-form-fallback textarea,
  .co-form-fallback button {
    grid-column: auto;
  }

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

  .co-footer p {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .co-page *,
  .co-page *::before,
  .co-page *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .co-page.co-js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   V3 – complete brand lockup + new hero artwork
   ========================================================= */

.co-brand-logo {
  flex: 0 0 auto;
}

.co-brand-product {
  min-width: 0;
  padding-left: 16px;
  border-left: 1px solid #aeb9c4;
  color: #172235;
  font-size: 16px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -.025em;
}

.co-brand-product small {
  margin-top: 5px;
  color: var(--co-blue-deep);
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

/* The source artwork contains a broad white panel on its left side.
   The controlled zoom and right alignment crop that panel out instead
   of showing it as an unintended gap inside the image card. */
.co-hero-image-shell img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: 100% 50%;
  transform: scale(1.26);
  transform-origin: 100% 50%;
}

@media (max-width: 1180px) {
  .co-hero-image-shell img {
    transform: scale(1.3);
  }
}

@media (max-width: 980px) {
  .co-hero-image-shell img {
    transform: scale(1.27);
  }
}

@media (max-width: 700px) {
  .co-brand {
    gap: 8px;
  }

  .co-brand-logo {
    height: 28px;
    max-width: 132px;
  }

  .co-brand-product {
    padding-left: 9px;
    font-size: 10.5px;
    line-height: 1.05;
  }

  .co-brand-product small {
    margin-top: 3px;
    font-size: 7.5px;
  }

  .co-hero-image-shell img {
    object-position: 88% 50%;
    transform: scale(1.04);
  }
}

@media (max-width: 390px) {
  .co-brand-logo {
    height: 25px;
    max-width: 118px;
  }

  .co-brand-product {
    font-size: 9.5px;
  }

  .co-brand-product small {
    font-size: 7px;
  }
}


/* =========================================================
   V4 – kompaktere Desktop-Darstellung + Logo- und Text-Fixes
   ========================================================= */

/* Echtes bezahl.de-Logo statt typografischem Platzhalter */
.co-bezahl-logo {
  background: #061829;
  border-color: #061829;
}

.co-bezahl-logo img {
  width: min(146px, 100%);
  max-width: 146px;
  max-height: 58px;
  object-fit: contain;
}

.co-bezahl-logo em {
  color: rgba(255, 255, 255, .72);
}

/* Benefit-Icons bewusster und etwas größer */
.co-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
}

.co-icon svg {
  width: 44px;
  height: 44px;
}

/* Die Desktop-Fassung ist bewusst dichter gesetzt, damit bereits bei
   100 % Browser-Zoom mehr Inhalt sichtbar bleibt. */
@media (min-width: 981px) {
  .co-page {
    --co-max: 1180px;
  }

  .co-page section[id] {
    scroll-margin-top: 78px;
  }

  .co-nav-inner {
    min-height: 66px;
    gap: 24px;
  }

  .co-brand-logo {
    height: 34px;
    max-width: 250px;
  }

  .co-brand-product {
    padding-left: 13px;
    font-size: 14px;
  }

  .co-brand-product small {
    margin-top: 4px;
    font-size: 9px;
  }

  .co-nav-links {
    gap: 20px;
  }

  .co-nav-links > a:not(.co-btn) {
    font-size: 13px;
  }

  .co-btn {
    min-height: 48px;
    padding-inline: 22px;
    font-size: 14px;
  }

  .co-btn-small {
    min-height: 40px;
    padding-inline: 18px;
    font-size: 13px;
  }

  .co-hero {
    min-height: 760px;
    padding: 116px 0 78px;
  }

  .co-hero::before {
    inset: 66px 0 auto;
  }

  .co-hero-grid {
    grid-template-columns: minmax(0, .94fr) minmax(410px, 1.06fr);
    gap: 44px;
  }

  .co-hero-copy {
    max-width: 610px;
  }

  .co-hero h1 {
    max-width: 630px;
    font-size: clamp(52px, 5.45vw, 76px);
  }

  .co-hero-lead,
  .co-lead {
    margin-top: 21px;
    font-size: clamp(16px, 1.22vw, 18px);
    line-height: 1.5;
  }

  .co-hero-lead {
    max-width: 570px;
  }

  .co-hero-actions {
    margin-top: 27px;
  }

  .co-hero-proof {
    margin-top: 26px;
    font-size: 12px;
  }

  .co-hero-image-shell {
    height: 520px;
    border-radius: 30px 30px 76px 30px;
  }

  .co-hero-float {
    padding: 11px 15px;
    font-size: 12px;
  }

  .co-hero-float-top {
    top: 30px;
    left: -20px;
  }

  .co-hero-float-bottom {
    right: -12px;
    bottom: 28px;
    min-width: 150px;
  }

  .co-hero-float-bottom strong {
    font-size: 17px;
  }

  .co-scroll-hint {
    bottom: 24px;
    font-size: 10px;
  }

  .co-scroll-hint span {
    width: 23px;
    height: 37px;
  }

  .co-story {
    min-height: 90vh;
    padding: 96px 0;
  }

  .co-story-grid {
    min-height: calc(90vh - 192px);
    grid-template-columns: .34fr 1.66fr;
    gap: 54px;
  }

  .co-story-label {
    top: 108px;
  }

  .co-story-line {
    font-size: clamp(44px, 6vw, 82px);
  }

  .co-section {
    padding: 88px 0;
  }

  .co-section-head h2,
  .co-system h2,
  .co-form-copy h2 {
    font-size: clamp(40px, 4.45vw, 62px);
  }

  .co-section-head-split {
    grid-template-columns: minmax(0, 1fr) minmax(330px, .76fr);
    gap: 52px;
  }

  .co-benefit-grid {
    gap: 16px;
    margin-top: 42px;
  }

  .co-benefit-card {
    min-height: 330px;
    padding: 28px;
    border-radius: 24px;
  }

  .co-benefit-card h3 {
    margin-top: 48px;
    font-size: clamp(26px, 2.35vw, 33px);
  }

  .co-benefit-card p {
    margin-top: 15px;
    font-size: 14px;
  }

  .co-card-index {
    right: 24px;
    top: 25px;
  }

  .co-kpis {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .co-kpi-shell {
    grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
    gap: 42px;
    padding: 42px;
    border-radius: 30px;
  }

  .co-kpi-intro h2 {
    font-size: clamp(34px, 3.5vw, 48px);
  }

  .co-kpi-intro > p:last-child {
    margin-top: 17px;
    font-size: 14px;
  }

  .co-kpi-card {
    min-height: 132px;
    padding: 19px;
    border-radius: 19px;
  }

  .co-kpi-card strong {
    font-size: clamp(31px, 2.8vw, 42px);
  }

  .co-kpi-card p {
    margin-top: 8px;
    font-size: 14px;
  }

  .co-product {
    padding-top: 94px;
  }

  .co-section-head-center {
    max-width: 850px;
  }

  .co-cockpit {
    margin-top: 46px;
    padding: 13px;
    border-radius: 29px;
  }

  .co-cockpit-browser {
    min-height: 78px;
    grid-template-columns: 1fr .88fr .42fr;
    gap: 20px;
    padding-inline: 22px;
  }

  .co-cockpit-brand strong {
    font-size: 19px;
  }

  .co-cockpit-viewport {
    height: 500px;
  }

  .co-cockpit-callout {
    padding: 10px 14px;
    font-size: 11px;
  }

  .co-callout-one { top: 158px; }
  .co-callout-two { top: 268px; }

  .co-workflow {
    padding: 88px 0 94px;
  }

  .co-workflow-head {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .72fr);
    gap: 52px;
  }

  .co-workflow-head h2 {
    font-size: clamp(42px, 4.5vw, 62px);
  }

  .co-workflow-head > p {
    font-size: 15px;
  }

  .co-workflow-carousel {
    margin-top: 40px;
    padding: 18px;
    border-radius: 30px;
  }

  .co-workflow-tabs {
    gap: 8px;
    padding: 6px;
    border-radius: 20px;
  }

  .co-workflow-tab {
    min-height: 62px;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    padding: 8px 11px;
    border-radius: 15px;
  }

  .co-workflow-tab span {
    width: 34px;
    height: 34px;
  }

  .co-workflow-tab strong {
    font-size: 12px;
  }

  .co-workflow-stage {
    margin-top: 14px;
    border-radius: 24px;
  }

  .co-workflow-slide {
    min-height: 470px;
    grid-template-columns: minmax(0, .9fr) minmax(350px, 1.1fr);
    gap: 38px;
    padding: 38px 42px;
  }

  .co-step-kicker {
    margin-top: 16px;
  }

  .co-workflow-slide h3 {
    font-size: clamp(32px, 3.35vw, 46px);
  }

  .co-workflow-slide-copy > p:last-child {
    margin-top: 16px;
    font-size: 15px;
  }

  .co-workflow-screen {
    width: min(365px, 100%);
    border-radius: 20px;
  }

  .co-workflow-controls {
    padding-top: 12px;
  }

  .co-workflow-arrow {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .co-system-shell {
    padding: 48px;
    border-radius: 30px;
  }

  .co-system-copy p:last-child {
    margin-top: 18px;
    font-size: 15px;
  }

  .co-system-flow {
    gap: 14px;
    margin-top: 42px;
  }

  .co-system-node {
    min-width: 138px;
    min-height: 108px;
    gap: 12px;
    padding: 15px;
    border-radius: 19px;
  }

  .co-system-node img {
    max-width: 116px;
    max-height: 46px;
  }

  .co-bezahl-logo img {
    max-width: 130px;
    max-height: 50px;
  }

  .co-form-section {
    padding-top: 94px;
    padding-bottom: 94px;
  }

  .co-form-shell {
    grid-template-columns: minmax(0, .94fr) minmax(400px, 1.06fr);
    gap: 48px;
    padding: 52px;
    border-radius: 32px;
  }

  .co-form-benefits {
    gap: 12px;
    margin-top: 28px;
  }

  .co-form-card {
    padding: 29px;
    border-radius: 24px;
  }

  .co-form-card > h3 {
    font-size: 27px;
  }

  .co-footer {
    padding: 27px 0;
  }

  .co-brand-logo-footer {
    height: 31px;
  }
}

@media (min-width: 701px) and (max-width: 980px) {
  .co-section {
    padding: 96px 0;
  }

  .co-hero {
    padding-top: 118px;
    padding-bottom: 82px;
  }

  .co-hero-image-shell {
    height: 520px;
  }

  .co-story {
    padding: 105px 0;
  }

  .co-benefit-card {
    min-height: 280px;
  }

  .co-benefit-card h3 {
    margin-top: 44px;
  }

  .co-workflow-slide {
    min-height: 520px;
  }
}


/* =========================================================
   V5 – Aufinity OPOS Manager, light CI sections, neutral KPIs,
   meaningful cockpit actions and open integration landscape
   ========================================================= */

/* Light KPI area with one neutral visual language. */
.co-kpi-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid #d9e7f0;
  background:
    radial-gradient(circle at 92% 10%, rgba(0, 169, 255, .13), transparent 24rem),
    radial-gradient(circle at 4% 100%, rgba(0, 123, 220, .07), transparent 24rem),
    linear-gradient(135deg, #ffffff 0%, #f3f9fd 100%);
  color: var(--co-ink);
  box-shadow: 0 26px 72px rgba(55, 88, 111, .10);
}

.co-kpi-shell::after {
  content: "";
  position: absolute;
  inset: auto -90px -120px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(0, 169, 255, .13);
  pointer-events: none;
}

.co-kpi-shell .co-eyebrow-light {
  color: var(--co-blue-deep);
}

.co-kpi-intro > p:last-child {
  color: #66778a;
}

.co-kpi-card,
.co-kpi-green,
.co-kpi-yellow,
.co-kpi-blue,
.co-kpi-orange {
  border: 1px solid #d6e2ea;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 12px 32px rgba(61, 91, 112, .07);
}

.co-kpi-card strong {
  color: #112337;
}

.co-kpi-card strong > span,
.co-kpi-card strong:first-letter {
  color: var(--co-blue-deep);
}

.co-kpi-card p {
  color: #526377;
}

/* Replace the two empty decorative boxes in the cockpit header. */
.co-cockpit-actions {
  align-items: center;
}

.co-cockpit-actions .co-cockpit-action {
  width: auto;
  min-width: 48px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 10px;
  border: 1px solid #d7e2eb;
  border-radius: 10px;
  background: #fbfdff;
  color: #405167;
}

.co-cockpit-actions .co-cockpit-action-wide {
  min-width: 108px;
}

.co-cockpit-action svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.co-cockpit-action em {
  font-size: 11px;
  font-style: normal;
  font-weight: 670;
}

.co-cockpit-action b {
  min-width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  padding: 0 4px;
  border-radius: 999px;
  background: #eaf6ff;
  color: var(--co-blue-deep);
  font-size: 9px;
  line-height: 1;
}

/* Open system landscape instead of a mandatory linear chain. */
.co-system {
  background: #f6fafc;
}

.co-system-shell {
  overflow: hidden;
  padding: 58px;
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 169, 255, .08), transparent 28rem),
    #ffffff;
}

.co-system-copy {
  max-width: 900px;
}

.co-integration-map {
  position: relative;
  min-height: 430px;
  margin-top: 46px;
  overflow: hidden;
  border: 1px solid #dbe8f0;
  border-radius: 30px;
  background:
    linear-gradient(rgba(157, 185, 204, .10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157, 185, 204, .10) 1px, transparent 1px),
    linear-gradient(135deg, #fbfdff 0%, #eef8fe 100%);
  background-size: 34px 34px, 34px 34px, auto;
}

.co-integration-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.co-integration-lines path {
  fill: none;
  stroke: #9cc9e5;
  stroke-width: 2;
  stroke-dasharray: 6 8;
  vector-effect: non-scaling-stroke;
}

.co-integration-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 316px;
  min-height: 224px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border: 1px solid rgba(0, 146, 235, .28);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(27, 84, 122, .16);
  transform: translate(-50%, -50%);
  text-align: center;
}

.co-integration-status {
  align-self: center;
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: #e8f6ff;
  color: var(--co-blue-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.co-integration-hub strong {
  margin-top: 18px;
  color: #12243a;
  font-size: 34px;
  line-height: 1.02;
  letter-spacing: -.045em;
}

.co-integration-hub p {
  margin: 14px 0 0;
  color: #657588;
  font-size: 13px;
  line-height: 1.5;
}

.co-integration-node {
  position: absolute;
  z-index: 2;
  width: 220px;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid #d8e5ed;
  border-radius: 20px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 14px 36px rgba(57, 88, 109, .09);
}

.co-integration-node img {
  width: auto;
  height: auto;
  max-width: 122px;
  max-height: 38px;
  object-fit: contain;
}

.co-integration-node em {
  color: #6f7e90;
  font-size: 10px;
  font-style: normal;
  font-weight: 720;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.co-integration-tag {
  position: absolute;
  left: 12px;
  top: 10px;
  color: #8a99aa;
  font-size: 8px;
  font-weight: 760;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.co-integration-tag-optional {
  color: var(--co-blue-deep);
}

.co-node-datev { left: 5.5%; top: 12%; }
.co-node-fibunet { right: 5.5%; top: 12%; }
.co-node-gypsilon { left: 5.5%; bottom: 12%; }
.co-node-bezahl { right: 5.5%; bottom: 12%; }

.co-node-bezahl img {
  max-width: 136px;
}

.co-integration-more {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid #cfe2ee;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 10px 24px rgba(52, 85, 107, .08);
  transform: translateX(-50%);
  white-space: nowrap;
}

.co-integration-more strong {
  color: #203449;
  font-size: 11px;
}

.co-integration-more span {
  color: #7b8a99;
  font-size: 10px;
}

.co-system-note {
  margin: 20px 0 0;
  color: #718194;
  font-size: 12px;
  text-align: center;
}

/* Light demo section – no dark gray/navy background. */
.co-form-shell {
  border: 1px solid #d8e7f0;
  background:
    radial-gradient(circle at 8% 8%, rgba(0, 169, 255, .11), transparent 24rem),
    radial-gradient(circle at 100% 100%, rgba(0, 123, 220, .07), transparent 26rem),
    linear-gradient(135deg, #f8fcff 0%, #eaf6fd 100%);
  color: var(--co-ink);
  box-shadow: 0 28px 74px rgba(50, 84, 107, .11);
}

.co-form-shell .co-eyebrow-light {
  color: var(--co-blue-deep);
}

.co-form-copy .co-lead {
  color: #627386;
}

.co-form-benefits > div > span {
  background: #dff3ff;
  color: var(--co-blue-deep);
}

.co-form-benefits p {
  color: #647588;
}

.co-form-benefits strong {
  color: #172b41;
}

.co-form-card {
  border: 1px solid #dce7ee;
  box-shadow: 0 20px 54px rgba(58, 89, 111, .11);
}

@media (max-width: 1180px) {
  .co-integration-node {
    width: 190px;
  }

  .co-node-datev,
  .co-node-gypsilon { left: 3%; }
  .co-node-fibunet,
  .co-node-bezahl { right: 3%; }
}

@media (max-width: 920px) {
  .co-integration-map {
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 20px;
    background: #f4faff;
  }

  .co-integration-lines {
    display: none;
  }

  .co-integration-hub,
  .co-integration-node,
  .co-integration-more {
    position: relative;
    inset: auto;
    width: auto;
    transform: none;
  }

  .co-integration-hub {
    grid-column: 1 / -1;
    min-height: 210px;
  }

  .co-integration-node {
    min-height: 118px;
  }

  .co-integration-more {
    grid-column: 1 / -1;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 700px) {
  .co-system-shell {
    padding: 24px;
  }

  .co-integration-map {
    grid-template-columns: 1fr;
  }

  .co-integration-hub,
  .co-integration-more {
    grid-column: auto;
  }

  .co-integration-more {
    flex-direction: column;
    gap: 2px;
  }

  .co-cockpit-actions .co-cockpit-action-wide {
    min-width: 48px;
  }

  .co-cockpit-action em {
    display: none;
  }
}

/* =========================================================
   V6 – integration labels and clearer workflow interaction
   ========================================================= */

/* The small labels inside all integration cards are now
   centered and visually read as actual pills. */
.co-integration-node {
  padding-top: 42px;
}

.co-integration-tag {
  left: 50%;
  top: 10px;
  width: max-content;
  max-width: calc(100% - 24px);
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border: 1px solid #dce8ef;
  border-radius: 999px;
  background: #f4f8fb;
  color: #708195;
  line-height: 1.15;
  text-align: center;
  transform: translateX(-50%);
  white-space: nowrap;
}

.co-integration-tag-optional {
  border-color: #cfe8f8;
  background: #eaf7ff;
  color: var(--co-blue-deep);
}

/* The dark bezahl.de logo is intended for the light card. */
.co-node-bezahl img {
  max-width: 154px;
  max-height: 42px;
}

/* Prominent interaction hint beside the workflow headline. */
.co-workflow-instruction {
  position: relative;
  min-height: 122px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  margin: 0 0 4px;
  padding: 20px 22px;
  border: 1px solid #b9def4;
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 169, 255, .12), transparent 14rem),
    linear-gradient(135deg, #f4fbff 0%, #eaf7ff 100%);
  box-shadow: 0 16px 38px rgba(33, 104, 147, .10);
}

.co-workflow-instruction-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--co-blue), #0788ff);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 151, 242, .22);
}

.co-workflow-instruction-icon svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.co-workflow-instruction-label {
  display: block;
  margin-bottom: 3px;
  color: var(--co-blue-deep);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.co-workflow-instruction strong {
  display: block;
  color: #17283b;
  font-size: 18px;
  line-height: 1.2;
}

.co-workflow-instruction p {
  margin: 5px 0 0;
  color: #5c7084;
  font-size: 14px;
  line-height: 1.45;
}

.co-workflow-instruction-badge {
  position: absolute;
  right: 14px;
  top: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #fff;
  color: var(--co-blue-deep);
  box-shadow: 0 5px 14px rgba(35, 83, 113, .09);
  font-size: 9px;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Remove the former plain-paragraph layout rule from relevance. */
.co-workflow-head > .co-workflow-instruction {
  max-width: 520px;
}

@media (max-width: 1050px) {
  .co-workflow-head > .co-workflow-instruction {
    max-width: 680px;
    margin-top: 2px;
  }
}

@media (max-width: 700px) {
  .co-workflow-instruction {
    min-height: 0;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 17px;
    border-radius: 19px;
  }

  .co-workflow-instruction-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .co-workflow-instruction strong {
    padding-right: 54px;
    font-size: 16px;
  }

  .co-workflow-instruction p {
    font-size: 13px;
  }

  .co-workflow-instruction-badge {
    right: 11px;
    top: 10px;
  }

  .co-integration-tag {
    max-width: calc(100% - 18px);
    font-size: 7px;
  }
}

/* =========================================================
   V7 – softer light-blue surfaces, no decorative KPI circle,
   DSO fully blue
   ========================================================= */

/*
  The previous light-blue gradients were deliberately visible.
  V7 keeps the airy CI feeling, but moves every affected surface
  much closer to white and reduces the saturation of blue glows.
*/

/* Hero background and its large ambient glow. */
.co-hero {
  background:
    linear-gradient(180deg, #ffffff 0%, #fcfdfe 66%, #f8fafc 100%);
}

.co-hero::after {
  background:
    radial-gradient(circle, rgba(0, 169, 255, .045), rgba(0, 169, 255, 0) 68%);
}

/* Decorative glows inside the three benefit cards. */
.co-benefit-card::after {
  background:
    radial-gradient(circle, rgba(0, 169, 255, .045), transparent 70%);
}

/* Workflow section ambient background. */
.co-workflow {
  background:
    radial-gradient(circle at 92% 12%, rgba(0, 169, 255, .035), transparent 28rem),
    #ffffff;
}

/* The interaction hint stays noticeable, but no longer looks
   like a strong blue-gradient card. */
.co-workflow-instruction {
  border-color: #d4e5ef;
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 169, 255, .04), transparent 15rem),
    linear-gradient(135deg, #ffffff 0%, #f6fafc 100%);
  box-shadow: 0 13px 30px rgba(44, 83, 108, .075);
}

/* KPI panel: almost white, with only a very subtle cool cast. */
.co-kpi-shell {
  background:
    radial-gradient(circle at 92% 10%, rgba(0, 169, 255, .045), transparent 25rem),
    radial-gradient(circle at 4% 100%, rgba(0, 123, 220, .018), transparent 25rem),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

/* Remove the large outlined circle completely. */
.co-kpi-shell::after {
  content: none;
  display: none;
}

/* DSO is now fully rendered in the product blue. */
.co-kpi-card-dso strong {
  color: var(--co-blue-deep);
}

/* Keep the supporting line neutral. */
.co-kpi-card-dso p {
  color: #526377;
}

/* Product/system section glows are also softened consistently. */
.co-system-shell {
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 169, 255, .025), transparent 30rem),
    #ffffff;
}

.co-integration-map {
  background:
    linear-gradient(rgba(157, 185, 204, .065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157, 185, 204, .065) 1px, transparent 1px),
    linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
  background-size: 34px 34px, 34px 34px, auto;
}

/* Demo/form panel: light neutral surface instead of a visible
   blue wash. */
.co-form-shell {
  background:
    radial-gradient(circle at 8% 8%, rgba(0, 169, 255, .035), transparent 26rem),
    radial-gradient(circle at 100% 100%, rgba(0, 123, 220, .018), transparent 28rem),
    linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
}

/* Slightly soften pale-blue utility backgrounds as well. */
.co-icon {
  background: #f4f8fb;
}

.co-form-benefits > div > span {
  background: #edf6fb;
}

.co-integration-tag-optional {
  border-color: #d8e8f1;
  background: #f2f8fb;
}

@media (max-width: 700px) {
  .co-workflow-instruction {
    background:
      linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
  }
}

/* =========================================================
   V8 – Nadja feedback:
   Inter type family, Driven by AI, unified Aufinity-blue toplines
   ========================================================= */

/*
  Force the complete landing page to use Inter. This also
  overrides possible Webflow heading styles that use another
  family such as Inter Tight.
*/
.co-page,
.co-page *,
.co-page input,
.co-page textarea,
.co-page select,
.co-page button {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif !important;
  font-optical-sizing: auto;
}

/*
  The previous negative tracking made the large headings appear
  visibly narrower. Inter remains bold, but with more natural
  character spacing.
*/
.co-hero h1 {
  letter-spacing: -.038em;
}

.co-section-head h2,
.co-kpi-intro h2,
.co-product-head h2,
.co-workflow-head h2,
.co-system-copy h2,
.co-form-copy h2 {
  letter-spacing: -.035em;
}

.co-story-line {
  letter-spacing: -.038em;
}

.co-benefit-card h3,
.co-workflow-slide h3,
.co-product-copy h3,
.co-form-card h3 {
  letter-spacing: -.025em;
}

/*
  All toplines now use exactly the same blue as the highlighted
  headline text and the core Aufinity accents.
*/
.co-eyebrow,
.co-eyebrow-light,
.co-kpi-shell .co-eyebrow-light,
.co-form-shell .co-eyebrow-light,
.co-story-label span,
.co-step-kicker,
.co-workflow-instruction-label {
  color: var(--co-blue) !important;
}

/* Keep the product lockup line clean and readable. */
.co-brand-product small {
  color: var(--co-blue);
  letter-spacing: 0;
  text-transform: none;
}

/* Mobile typography remains compact without becoming narrow. */
@media (max-width: 700px) {
  .co-hero h1 {
    letter-spacing: -.032em;
  }

  .co-section-head h2,
  .co-kpi-intro h2,
  .co-product-head h2,
  .co-workflow-head h2,
  .co-system-copy h2,
  .co-form-copy h2,
  .co-story-line {
    letter-spacing: -.03em;
  }
}

/* =========================================================
   V9 – unify ALL blue tones to one Aufinity blue
   ========================================================= */

/*
  One single official brand blue across the entire landing page.
  This intentionally removes the previous split between a light
  azure and a deeper blue.
*/
.co-page {
  --co-blue: #00a9ff;
  --co-blue-deep: #00a9ff;
}

/* Any blue gradient/button/icon surface should now use only
   the same Aufinity blue instead of multiple close shades. */
.co-btn-primary,
.co-workflow-arrow,
.co-workflow-instruction-icon,
.co-step-number.is-active,
.co-dot.is-active,
.co-form-card button,
.co-kpi-card .co-pill,
.co-product-nav button.is-active {
  background: #00a9ff !important;
  color: #ffffff;
}

.co-btn-primary:hover,
.co-workflow-arrow:hover,
.co-form-card button:hover,
.co-product-nav button.is-active:hover {
  background: #00a9ff !important;
}

/* Blue outlines / borders */
.co-kpi-blue,
.co-workflow-step.is-active,
.co-integration-node.is-active,
.co-product-nav button.is-active,
.co-workflow-instruction {
  border-color: #00a9ff !important;
}

/* Blue text accents */
.co-page .co-eyebrow,
.co-page .co-eyebrow-light,
.co-page .co-brand-product small,
.co-page .co-kpi-card strong,
.co-page .co-story-line .is-blue,
.co-page .co-benefit-card h3,
.co-page .co-workflow-slide h3,
.co-page .co-step-title,
.co-page .co-workflow-instruction-label,
.co-page .co-workflow-instruction-badge,
.co-page .co-system-note strong,
.co-page .co-highlight,
.co-page .co-product-copy .is-blue,
.co-page .co-form-copy .is-blue {
  color: #00a9ff !important;
}

/* Icons and icon strokes */
.co-page .co-icon,
.co-page .co-kpi-icon,
.co-page .co-workflow-instruction-icon svg,
.co-page .co-benefit-card svg,
.co-page .co-system-copy svg {
  color: #00a9ff !important;
  stroke: #00a9ff !important;
}

/* Blue chips and small UI elements */
.co-page .co-workflow-chip,
.co-page .co-status-chip-blue,
.co-page .co-badge-blue,
.co-page .co-dot,
.co-page .co-integration-line::before,
.co-page .co-integration-line::after {
  background-color: #00a9ff !important;
  border-color: #00a9ff !important;
}

/* Keep pale blue backgrounds subtle but aligned to the same hue */
.co-page .co-icon,
.co-page .co-kpi-icon,
.co-page .co-form-benefits > div > span,
.co-page .co-integration-tag-optional {
  background-color: rgba(0, 169, 255, 0.08) !important;
}

/* Links should also inherit the same blue where they are styled blue */
.co-page a[href*="datenschutz"],
.co-page .co-link {
  color: #00a9ff !important;
}

/* Special DSO handling stays blue, now in the unified brand blue */
.co-kpi-card-dso strong {
  color: #00a9ff !important;
}

/* =========================================================
   V10 – CTA contrast, restored workflow icon, unified counter
   ========================================================= */

/*
  .co-page a { color: inherit; } has greater selector specificity
  than the base .co-btn-primary rule. Explicitly enforce white text
  on both primary CTA links.
*/
.co-page a.co-btn.co-btn-primary,
.co-page .co-nav-links a.co-btn.co-btn-primary,
.co-page .co-hero-actions a.co-btn.co-btn-primary {
  color: #ffffff !important;
}

.co-page a.co-btn.co-btn-primary:visited,
.co-page a.co-btn.co-btn-primary:hover,
.co-page a.co-btn.co-btn-primary:focus,
.co-page a.co-btn.co-btn-primary:active {
  color: #ffffff !important;
}

/*
  V9 recolored every SVG stroke blue. Because the cursor sits on a
  blue tile, that made it effectively disappear. Restore white here.
*/
.co-page .co-workflow-instruction-icon {
  color: #ffffff !important;
}

.co-page .co-workflow-instruction-icon svg,
.co-page .co-workflow-instruction-icon svg path {
  fill: none !important;
  color: #ffffff !important;
  stroke: #ffffff !important;
}

/*
  Current step, slash and total step now have the same color and
  weight. No more visually disabled-looking second number.
*/
.co-workflow-count {
  min-width: 72px;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  color: var(--co-ink-soft);
  font-size: 15px;
  font-weight: 760;
}

.co-workflow-count strong,
.co-workflow-count .co-workflow-total,
.co-workflow-count > span {
  color: var(--co-ink-soft) !important;
  font-size: 15px;
  font-weight: 760;
  line-height: 1;
}

/* Slightly stronger contrast for the primary CTA labels on hover. */
.co-page a.co-btn.co-btn-primary:hover {
  text-shadow: 0 1px 1px rgba(0, 64, 110, .12);
}

/* =========================================================
   V11 – new three-column KPI design
   ========================================================= */

.co-kpis-v11 {
  padding-top: 104px;
  padding-bottom: 104px;
  background: #ffffff;
}

.co-kpi-head {
  max-width: 860px;
  margin-bottom: 34px;
}

.co-kpi-head h2 {
  max-width: 820px;
  margin: 14px 0 0;
  color: var(--co-ink);
  font-size: clamp(38px, 4.2vw, 60px);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.02;
}

.co-kpi-head > p:last-child {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--co-muted);
  font-size: 17px;
  line-height: 1.55;
}

.co-kpi-shell-v11 {
  display: block;
  padding: 38px 44px 34px;
  border: 1px solid #d5dde4;
  border-radius: 20px;
  background: #ffffff;
  color: var(--co-ink);
  box-shadow:
    0 20px 48px rgba(24, 43, 58, .10),
    0 2px 6px rgba(24, 43, 58, .04);
}

.co-kpi-shell-v11::after {
  content: none !important;
  display: none !important;
}

.co-kpi-grid-v11 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.co-kpi-card-v11 {
  position: relative;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 38px;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
}

.co-kpi-card-v11 + .co-kpi-card-v11 {
  border-left: 1px solid #cfd7de;
}

.co-kpi-value {
  min-height: 104px;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  color: var(--co-blue);
  font-variant-numeric: tabular-nums;
  line-height: .86;
  white-space: nowrap;
}

.co-kpi-value > span {
  color: var(--co-blue);
  font-size: clamp(78px, 8vw, 132px);
  font-weight: 700;
  letter-spacing: -.06em;
}

.co-kpi-value > small:not(.co-kpi-prefix) {
  margin-left: 6px;
  color: var(--co-blue);
  font-size: clamp(38px, 4.2vw, 64px);
  font-weight: 700;
  letter-spacing: -.04em;
}

.co-kpi-value-with-prefix {
  gap: 13px;
}

.co-kpi-prefix {
  align-self: flex-end;
  margin-bottom: 18px;
  color: var(--co-blue);
  font-size: clamp(18px, 1.9vw, 27px);
  font-weight: 700;
  letter-spacing: -.02em;
}

.co-kpi-card-v11 p {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 20px 0 0;
  color: var(--co-ink);
  font-size: clamp(16px, 1.45vw, 21px);
  font-weight: 400;
  line-height: 1.35;
}

.co-kpi-card-v11 p strong {
  color: var(--co-ink);
  font-size: inherit;
  font-weight: 700;
  letter-spacing: -.015em;
}

.co-kpi-card-v11 p span {
  color: #3e4650;
  font-size: inherit;
  font-weight: 400;
}

.co-kpi-card-v11 sup,
.co-kpi-sources sup {
  position: relative;
  top: -.2em;
  font-size: .55em;
  line-height: 0;
}

.co-kpi-sources {
  margin: 18px 14px 0;
  color: #4f5964;
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 1050px) {
  .co-kpi-shell-v11 {
    padding: 30px 24px;
  }

  .co-kpi-card-v11 {
    padding-right: 22px;
    padding-left: 22px;
  }

  .co-kpi-value > span {
    font-size: clamp(68px, 9vw, 102px);
  }
}

@media (max-width: 780px) {
  .co-kpis-v11 {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .co-kpi-head {
    margin-bottom: 26px;
  }

  .co-kpi-head h2 {
    font-size: clamp(34px, 9vw, 46px);
  }

  .co-kpi-head > p:last-child {
    font-size: 16px;
  }

  .co-kpi-shell-v11 {
    padding: 8px 24px;
    border-radius: 22px;
  }

  .co-kpi-grid-v11 {
    grid-template-columns: 1fr;
  }

  .co-kpi-card-v11 {
    min-height: 190px;
    padding: 26px 8px;
  }

  .co-kpi-card-v11 + .co-kpi-card-v11 {
    border-top: 1px solid #cfd7de;
    border-left: 0;
  }

  .co-kpi-value {
    min-height: 82px;
  }

  .co-kpi-value > span {
    font-size: clamp(72px, 22vw, 104px);
  }

  .co-kpi-value > small:not(.co-kpi-prefix) {
    font-size: clamp(36px, 11vw, 54px);
  }

  .co-kpi-prefix {
    margin-bottom: 13px;
    font-size: 20px;
  }

  .co-kpi-card-v11 p {
    margin-top: 15px;
    font-size: 17px;
  }

  .co-kpi-sources {
    margin: 14px 4px 0;
    font-size: 11px;
  }
}

/* =========================================================
   V12 – refined, calmer KPI section
   ========================================================= */

.co-kpis-v12 {
  padding-top: 96px;
  padding-bottom: 96px;
  background: #ffffff;
}

.co-kpi-head-v12 {
  max-width: 860px;
  margin-bottom: 30px;
}

.co-kpi-head-v12 h2 {
  max-width: 820px;
  margin: 12px 0 0;
  color: var(--co-ink);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -.032em;
  line-height: 1.04;
}

.co-kpi-head-v12 > p:last-child {
  max-width: 710px;
  margin: 16px 0 0;
  color: var(--co-muted);
  font-size: 17px;
  line-height: 1.55;
}

/*
  One clean card without an additional white inset or individual
  white KPI boxes.
*/
.co-kpi-shell-v12 {
  display: block;
  overflow: hidden;
  padding: 0;
  border: 1px solid #d7e0e7;
  border-radius: 22px;
  background: #f7f9fb;
  color: var(--co-ink);
  box-shadow: 0 16px 36px rgba(31, 55, 75, .07);
}

.co-kpi-shell-v12::after {
  content: none !important;
  display: none !important;
}

.co-kpi-grid-v12 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.co-kpi-card-v12 {
  position: relative;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 34px 26px;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: center;
}

.co-kpi-card-v12 + .co-kpi-card-v12 {
  border-left: 1px solid #d5dde4 !important;
}

/* Smaller, calmer numbers. */
.co-kpi-value-v12 {
  min-height: 74px;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  color: var(--co-blue);
  font-variant-numeric: tabular-nums;
  line-height: .92;
  white-space: nowrap;
}

.co-kpi-value-v12 > span {
  color: var(--co-blue) !important;
  font-size: clamp(56px, 5.4vw, 82px);
  font-weight: 700;
  letter-spacing: -.05em;
}

.co-kpi-value-v12 > small:not(.co-kpi-prefix-v12) {
  margin-left: 5px;
  color: var(--co-blue) !important;
  font-size: clamp(27px, 2.7vw, 40px);
  font-weight: 700;
  letter-spacing: -.03em;
}

.co-kpi-value-with-prefix-v12 {
  gap: 10px;
}

.co-kpi-prefix-v12 {
  align-self: center;
  margin-top: 18px;
  color: var(--co-blue) !important;
  font-size: clamp(15px, 1.5vw, 21px);
  font-weight: 700;
  letter-spacing: -.01em;
}

/* All explanatory copy uses the same dark text color. */
.co-kpi-description {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin: 17px 0 0 !important;
  color: var(--co-ink-soft) !important;
  font-size: clamp(15px, 1.35vw, 19px) !important;
  line-height: 1.34 !important;
}

.co-kpi-description span,
.co-kpi-description strong {
  color: var(--co-ink-soft) !important;
  font-size: inherit !important;
  letter-spacing: -.01em;
}

.co-kpi-description span {
  font-weight: 500;
}

.co-kpi-description strong {
  font-weight: 700;
}

/* Real superscript footnote markers. */
.co-kpi-footnote-mark {
  position: static !important;
  top: auto !important;
  display: inline !important;
  margin-left: 1px;
  color: inherit !important;
  font-size: .58em !important;
  font-weight: 700 !important;
  line-height: 0 !important;
  vertical-align: super !important;
}

/* Proper source row rather than loose text appended below. */
.co-kpi-sources-v12 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin: 16px 8px 0;
  color: #667487;
  font-size: 12px;
  line-height: 1.4;
}

.co-kpi-source-item {
  display: inline-flex;
  align-items: flex-start;
  gap: 4px;
}

.co-kpi-source-item sup {
  position: static !important;
  top: auto !important;
  color: #47586a !important;
  font-size: .68em !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  vertical-align: super !important;
}

.co-kpi-source-divider {
  width: 1px;
  height: 13px;
  background: #cbd5dd;
}

@media (max-width: 980px) {
  .co-kpi-card-v12 {
    padding-right: 22px;
    padding-left: 22px;
  }

  .co-kpi-value-v12 > span {
    font-size: clamp(52px, 7vw, 72px);
  }

  .co-kpi-description {
    font-size: 15px !important;
  }
}

@media (max-width: 760px) {
  .co-kpis-v12 {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .co-kpi-head-v12 h2 {
    font-size: clamp(34px, 9vw, 46px);
  }

  .co-kpi-head-v12 > p:last-child {
    font-size: 16px;
  }

  .co-kpi-shell-v12 {
    border-radius: 20px;
  }

  .co-kpi-grid-v12 {
    grid-template-columns: 1fr;
  }

  .co-kpi-card-v12 {
    min-height: 172px;
    padding: 26px 18px;
  }

  .co-kpi-card-v12 + .co-kpi-card-v12 {
    border-top: 1px solid #d5dde4 !important;
    border-left: 0 !important;
  }

  .co-kpi-value-v12 {
    min-height: 65px;
  }

  .co-kpi-value-v12 > span {
    font-size: clamp(58px, 18vw, 78px);
  }

  .co-kpi-value-v12 > small:not(.co-kpi-prefix-v12) {
    font-size: clamp(28px, 9vw, 38px);
  }

  .co-kpi-prefix-v12 {
    margin-top: 15px;
    font-size: 17px;
  }

  .co-kpi-description {
    margin-top: 13px !important;
    font-size: 16px !important;
  }

  .co-kpi-sources-v12 {
    margin-right: 2px;
    margin-left: 2px;
    gap: 7px 10px;
    font-size: 10px;
  }

  .co-kpi-source-divider {
    display: none;
  }
}

/* =========================================================
   V13 – hero/cockpit pills aligned to one card style
   ========================================================= */

/* Top hero pill now looks like the lower "Cashflow" card. */
.co-hero-float-top {
  top: 44px;
  left: -14px;
  display: block;
  min-width: 156px;
  padding: 13px 18px 12px;
  border-radius: 22px;
  text-align: left;
}

.co-hero-float-top strong,
.co-hero-float-top span {
  display: block;
}

.co-hero-float-top strong {
  color: var(--co-blue) !important;
  font-size: 17px;
  line-height: 1.05;
}

.co-hero-float-top span {
  margin-top: 3px;
  color: #6f7d8d;
  font-size: 12px;
  line-height: 1.15;
}

/* No green status dot anymore in this badge variant. */
.co-hero-float-top .co-status-dot {
  display: none !important;
}

/* Dashboard screenshot callouts now use the exact same
   visual language as the hero card pills. */
.co-cockpit-callout {
  min-width: 184px;
  padding: 13px 18px 12px;
  border: 1px solid rgba(185, 206, 220, .78);
  border-radius: 22px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 16px 42px rgba(30, 58, 79, .12);
  backdrop-filter: blur(15px);
  text-align: left;
  color: #33445a;
}

.co-cockpit-callout strong,
.co-cockpit-callout span {
  display: block;
}

.co-cockpit-callout strong {
  color: var(--co-blue) !important;
  font-size: 17px;
  font-weight: 760;
  line-height: 1.06;
}

.co-cockpit-callout span {
  margin-top: 3px;
  color: #6f7d8d;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.15;
}

.co-callout-one { left: -22px; top: 190px; }
.co-callout-two { right: -24px; top: 304px; }
.co-callout-three { left: 20%; bottom: -20px; }

@media (max-width: 1100px) {
  .co-cockpit-callout {
    min-width: 164px;
    padding: 11px 15px 11px;
  }

  .co-cockpit-callout strong,
  .co-hero-float-top strong {
    font-size: 15px;
  }

  .co-cockpit-callout span,
  .co-hero-float-top span {
    font-size: 11px;
  }
}

@media (max-width: 760px) {
  .co-hero-float-top {
    min-width: 138px;
    left: 0;
    top: 16px;
    padding: 11px 14px 10px;
  }

  .co-cockpit-callout {
    min-width: 148px;
    padding: 10px 13px;
    border-radius: 18px;
  }

  .co-cockpit-callout strong,
  .co-hero-float-top strong {
    font-size: 14px;
  }

  .co-cockpit-callout span,
  .co-hero-float-top span {
    font-size: 10px;
  }

  .co-callout-one { left: 0; top: 18%; }
  .co-callout-two { right: 0; top: 47%; }
  .co-callout-three { left: 10%; bottom: -14px; }
}

/* =========================================================
   V14 – smaller, bottom-aligned “bis zu”
   ========================================================= */

.co-kpi-value-with-prefix-v12 {
  align-items: flex-end;
  gap: 9px;
}

.co-kpi-prefix-v12 {
  align-self: flex-end;
  margin: 0 1px 9px 0;
  color: var(--co-blue) !important;
  font-size: clamp(12px, 1.05vw, 15px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .co-kpi-prefix-v12 {
    margin-bottom: 8px;
    font-size: 13px;
  }
}

@media (max-width: 760px) {
  .co-kpi-value-with-prefix-v12 {
    gap: 8px;
  }

  .co-kpi-prefix-v12 {
    margin-bottom: 8px;
    font-size: 13px;
  }
}

/* =========================================================
   V15 – definitive fix for the "bis zu" qualifier
   ========================================================= */

/*
  Older KPI CSS targeted every <small> except .co-kpi-prefix.
  The qualifier now carries that class as well, and this selector
  additionally locks in the intended compact size.
*/
.co-kpi-value.co-kpi-value-v12.co-kpi-value-with-prefix-v12 {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
}

.co-kpi-value.co-kpi-value-v12.co-kpi-value-with-prefix-v12
  > small.co-kpi-prefix.co-kpi-prefix-v12 {
  flex: 0 0 auto;
  align-self: flex-end;
  margin: 0 0 9px 0 !important;
  color: var(--co-blue) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .co-kpi-value.co-kpi-value-v12.co-kpi-value-with-prefix-v12
    > small.co-kpi-prefix.co-kpi-prefix-v12 {
    margin-bottom: 8px !important;
    font-size: 12px !important;
  }
}

@media (max-width: 760px) {
  .co-kpi-value.co-kpi-value-v12.co-kpi-value-with-prefix-v12 {
    gap: 7px;
  }

  .co-kpi-value.co-kpi-value-v12.co-kpi-value-with-prefix-v12
    > small.co-kpi-prefix.co-kpi-prefix-v12 {
    margin-bottom: 8px !important;
    font-size: 12px !important;
  }
}

/* =========================================================
   V16 – replace "Aufinity" hub text with logo
   ========================================================= */

.co-integration-hub-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 18px 0 10px;
}

.co-integration-hub-brand img {
  display: block;
  width: min(100%, 196px);
  height: auto;
}

.co-integration-hub > strong {
  display: block;
  color: #17283b;
  font-size: clamp(34px, 4.6vw, 64px);
  font-weight: 700;
  letter-spacing: -.05em;
  line-height: .98;
}

@media (max-width: 760px) {
  .co-integration-hub-brand {
    margin: 15px 0 9px;
  }

  .co-integration-hub-brand img {
    width: min(100%, 160px);
  }

  .co-integration-hub > strong {
    font-size: clamp(28px, 9vw, 44px);
  }
}

/* =========================================================
   V17 – central Aufinity logo in hub reduced in size
   ========================================================= */

.co-integration-hub-brand {
  margin: 14px 0 8px;
}

.co-integration-hub-brand img {
  width: min(100%, 132px) !important;
  height: auto;
}

@media (max-width: 760px) {
  .co-integration-hub-brand {
    margin: 12px 0 7px;
  }

  .co-integration-hub-brand img {
    width: min(100%, 118px) !important;
  }
}

/* =========================================================
   V18 – central hub logo: fixed-size, black, not pasted-in
   ========================================================= */

.co-integration-hub-brand {
  margin: 10px 0 8px;
}

.co-integration-hub-brand img,
.co-integration-hub-brand-logo {
  display: block;
  width: 112px !important;
  max-width: 112px !important;
  height: auto !important;
  margin: 0 auto;
  object-fit: contain;
  opacity: 1 !important;
  filter: brightness(0) saturate(100%) !important;
  mix-blend-mode: normal !important;
}

.co-integration-hub > strong {
  margin-top: 10px;
}

@media (max-width: 760px) {
  .co-integration-hub-brand img,
  .co-integration-hub-brand-logo {
    width: 104px !important;
    max-width: 104px !important;
  }
}

/* =========================================================
   V19 – smaller "OPOS Manager" and tighter spacing to logo
   ========================================================= */

.co-integration-hub-brand {
  margin: 8px 0 4px !important;
}

.co-integration-hub > strong {
  margin-top: 4px !important;
  font-size: clamp(26px, 2.3vw, 38px) !important;
  line-height: 1.02 !important;
  letter-spacing: -.045em !important;
}

@media (max-width: 760px) {
  .co-integration-hub-brand {
    margin: 7px 0 4px !important;
  }

  .co-integration-hub > strong {
    margin-top: 3px !important;
    font-size: clamp(24px, 7.2vw, 34px) !important;
  }
}

/* =========================================================
   V21 – rename to bezahl.de OPOS Manager
   ========================================================= */

.co-brand-logo {
  width: auto;
  max-width: 182px;
  height: 28px;
  object-fit: contain;
}

.co-brand-logo-footer {
  width: auto;
  max-width: 182px;
  height: 28px;
  object-fit: contain;
}

.co-integration-hub-brand {
  margin: 10px 0 6px;
}

.co-integration-hub-brand img,
.co-integration-hub-brand-logo {
  display: block;
  width: 156px !important;
  max-width: 156px !important;
  height: auto !important;
  margin: 0 auto;
  object-fit: contain;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

.co-integration-hub > strong {
  margin-top: 2px !important;
}

@media (max-width: 760px) {
  .co-brand-logo,
  .co-brand-logo-footer {
    max-width: 156px;
    height: 24px;
  }

  .co-integration-hub-brand img,
  .co-integration-hub-brand-logo {
    width: 138px !important;
    max-width: 138px !important;
  }
}

/* =========================================================
   V22 – bezahl.de logo color correction
   ========================================================= */

/*
  The old Aufinity asset needed inversion.
  The new bezahl.de dark logo is already correct and must not
  be filtered.
*/
.co-brand-logo,
.co-brand-logo-footer,
.co-nav .co-brand-logo,
.co-footer .co-brand-logo {
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

/* =========================================================
   V23 – footer only: bezahl.de by Aufinity Group logo
   ========================================================= */

.co-brand-logo-footer-group {
  width: auto !important;
  max-width: 230px !important;
  height: 30px !important;
  object-fit: contain;
}

@media (max-width: 760px) {
  .co-brand-logo-footer-group {
    max-width: 200px !important;
    height: 26px !important;
  }
}
