@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: none;
}

.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;
  }
}

/* =========================================================
   V25 – first KPI: one shared status
   ========================================================= */

.co-kpi-value-status {
  align-items: center;
  gap: 10px;
}

.co-kpi-value-v12 > .co-kpi-status-label {
  margin: 0 !important;
  color: var(--co-blue) !important;
  font-size: clamp(13px, 1.15vw, 17px) !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  line-height: 1.05 !important;
  text-align: left;
  white-space: normal;
}

.co-kpi-description span > strong {
  color: var(--co-ink-soft) !important;
  font-size: inherit !important;
  font-weight: 700 !important;
}

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

  .co-kpi-value-v12 > .co-kpi-status-label {
    font-size: 14px !important;
  }
}

/* =========================================================
   Pilot experience – Slider + simulated OPOS import
   ========================================================= */
.co-pilot-experience {
  background:
    radial-gradient(circle at 8% 8%, rgba(0, 169, 255, .11), transparent 25rem),
    radial-gradient(circle at 92% 92%, rgba(0, 123, 220, .08), transparent 28rem),
    #f4f9fc;
  border-top: 1px solid #dfeaf1;
  border-bottom: 1px solid #dfeaf1;
}

.co-pilot-head {
  max-width: 920px;
}

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

.co-pilot-head .co-lead {
  max-width: 760px;
}

.co-pilot-calculator {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 18px;
  margin-top: 48px;
}

.co-pilot-controls,
.co-pilot-outcomes {
  border: 1px solid #d6e4ed;
  border-radius: 28px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 22px 58px rgba(41, 70, 92, .08);
}

.co-pilot-controls {
  display: grid;
  gap: 28px;
  padding: 30px;
}

.co-pilot-range {
  display: grid;
  gap: 12px;
}

.co-pilot-range > span {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.co-pilot-range b {
  max-width: 330px;
  color: #26384c;
  font-size: 14px;
  line-height: 1.35;
}

.co-pilot-range strong {
  color: var(--co-blue-deep);
  font-size: 16px;
  white-space: nowrap;
}

.co-pilot-range input[type="range"] {
  width: 100%;
  height: 30px;
  margin: 0;
  accent-color: var(--co-blue);
  cursor: grab;
}

.co-pilot-outcomes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}

.co-pilot-outcomes article {
  min-width: 0;
  padding: 26px 22px;
  border-right: 1px solid #e0e9ef;
}

.co-pilot-outcomes article:last-child {
  border-right: 0;
}

.co-pilot-outcomes span {
  display: block;
  color: #768598;
  font-size: 10px;
  font-weight: 820;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.co-pilot-outcomes strong {
  display: block;
  margin-top: 10px;
  color: var(--co-blue-deep);
  font-size: clamp(25px, 2.4vw, 39px);
  font-weight: 760;
  letter-spacing: -.045em;
  line-height: 1;
}

.co-pilot-outcomes p {
  margin: 12px 0 0;
  color: #657589;
  font-size: 12px;
  line-height: 1.45;
}

.co-pilot-import {
  display: grid;
  grid-template-columns: minmax(250px, .82fr) 88px minmax(320px, 1.18fr);
  gap: 16px;
  align-items: center;
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #d5e3ec;
  border-radius: 32px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 26px 74px rgba(41, 70, 92, .09);
}

.co-pilot-file {
  overflow: hidden;
  border: 1px solid #d0dce5;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(34, 62, 84, .14);
  cursor: grab;
  transform: rotate(-1deg);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.co-pilot-file:hover,
.co-pilot-file:focus-visible {
  outline: none;
  transform: rotate(0) translateY(-3px);
  box-shadow: 0 24px 56px rgba(34, 62, 84, .18);
}

.co-pilot-experience.is-dragging .co-pilot-file {
  opacity: .68;
  transform: rotate(-3deg) scale(.985);
}

.co-pilot-file-head {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid #e3e9ee;
  background: #f8fafc;
}

.co-pilot-excel {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #1d6f42;
  color: #fff;
  font-size: 12px;
  font-weight: 850;
}

.co-pilot-file-head b,
.co-pilot-file-head small {
  display: block;
}

.co-pilot-file-head b {
  overflow: hidden;
  color: #223247;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.co-pilot-file-head small {
  margin-top: 3px;
  color: #7a8798;
  font-size: 9px;
}

.co-pilot-file-head em {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--co-blue);
  color: #fff;
  font-size: 10px;
  font-style: normal;
  font-weight: 780;
}

.co-pilot-file-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  padding: 14px 16px;
}

.co-pilot-file-kpis span {
  padding: 11px;
  border-radius: 12px;
  background: #f4f8fb;
}

.co-pilot-file-kpis small,
.co-pilot-file-kpis b {
  display: block;
}

.co-pilot-file-kpis small {
  color: #7b8798;
  font-size: 9px;
  text-transform: uppercase;
}

.co-pilot-file-kpis b {
  margin-top: 4px;
  color: #223247;
  font-size: 14px;
}

.co-pilot-file-table {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) .7fr .7fr;
  padding: 0 16px 12px;
  color: #34465b;
  font-size: 10px;
}

.co-pilot-file-table > * {
  min-width: 0;
  overflow: hidden;
  padding: 6px 3px;
  border-bottom: 1px solid #edf1f4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.co-pilot-file-table > span {
  color: #8996a6;
  font-size: 8px;
  font-weight: 780;
  text-transform: uppercase;
}

.co-pilot-file-table i {
  color: #788698;
  font-style: normal;
}

.co-pilot-file-table strong {
  text-align: right;
}

.co-pilot-file > button {
  display: none;
}

.co-pilot-arrow {
  display: grid;
  gap: 4px;
  place-items: center;
  color: var(--co-blue);
  text-align: center;
}

.co-pilot-arrow span {
  font-size: 46px;
  line-height: 1;
  animation: co-pilot-arrow 1.5s ease-in-out infinite;
}

.co-pilot-arrow small {
  color: var(--co-blue-deep);
  font-size: 9px;
  font-weight: 760;
}

@keyframes co-pilot-arrow {
  0%, 100% { transform: translateX(-4px); opacity: .45; }
  50% { transform: translateX(5px); opacity: 1; }
}

.co-pilot-drop {
  min-height: 306px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 32px;
  border: 2px dashed #b9d9eb;
  border-radius: 23px;
  background: #ebf8ff;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.co-pilot-drop.is-hot,
.co-pilot-experience.is-loading .co-pilot-drop {
  border-color: var(--co-blue);
  background: #dff4ff;
  transform: scale(1.01);
}

.co-pilot-drop-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #fff;
  color: var(--co-blue-deep);
  box-shadow: 0 14px 34px rgba(0, 169, 255, .16);
  font-size: 24px;
  font-weight: 850;
}

.co-pilot-experience.is-loading .co-pilot-drop-icon {
  animation: co-pilot-loading .85s linear infinite;
}

@keyframes co-pilot-loading {
  to { transform: rotate(360deg); }
}

.co-pilot-drop h3 {
  margin: 16px 0 0;
  color: #223247;
  font-size: 20px;
  letter-spacing: -.025em;
}

.co-pilot-drop p {
  max-width: 410px;
  margin: 8px 0 0;
  color: #627286;
  font-size: 13px;
}

.co-pilot-drop > span {
  margin-top: 16px;
  color: #8491a1;
  font-size: 10px;
}

.co-pilot-result {
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid #d5e3ec;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 26px 74px rgba(41, 70, 92, .11);
  animation: co-pilot-result-in .5s cubic-bezier(.2, .72, .2, 1) both;
}

.co-pilot-result[hidden] {
  display: none !important;
}

@keyframes co-pilot-result-in {
  from { opacity: 0; transform: translateY(18px) scale(.99); }
  to { opacity: 1; transform: none; }
}

.co-pilot-result-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 20px;
  background: #061829;
  color: #fff;
}

.co-pilot-result-badge {
  font-size: 10px;
  font-weight: 820;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.co-pilot-result-top button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .72);
  font: inherit;
  font-size: 11px;
  cursor: pointer;
}

.co-pilot-result-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
  padding: 30px;
}

.co-pilot-result-intro h3 {
  max-width: 710px;
  margin: 8px 0 0;
  color: #17283b;
  font-size: clamp(34px, 4.2vw, 61px);
  font-weight: 710;
  letter-spacing: -.055em;
  line-height: 1;
}

.co-pilot-result-intro > div:first-child > p:last-child {
  max-width: 670px;
  margin: 14px 0 0;
  color: #5f7084;
}

.co-pilot-result-volume {
  min-width: 220px;
  padding: 18px;
  border-radius: 16px;
  background: #edf8ff;
  text-align: right;
}

.co-pilot-result-volume small,
.co-pilot-result-volume strong {
  display: block;
}

.co-pilot-result-volume small {
  color: #758497;
  font-size: 9px;
  text-transform: uppercase;
}

.co-pilot-result-volume strong {
  margin-top: 5px;
  color: var(--co-blue-deep);
  font-size: 23px;
}

.co-pilot-result-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  padding: 0 30px 22px;
}

.co-pilot-result-steps article {
  min-height: 148px;
  padding: 19px;
  border: 1px solid #dfe8ee;
  border-radius: 17px;
  background: #f8fbfd;
}

.co-pilot-result-steps span {
  color: var(--co-blue-deep);
  font-size: 10px;
  font-weight: 850;
}

.co-pilot-result-steps b {
  display: block;
  margin-top: 24px;
  color: #223247;
  font-size: 16px;
}

.co-pilot-result-steps p {
  margin: 6px 0 0;
  color: #6a7889;
  font-size: 12px;
}

.co-pilot-result-case {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin: 0 30px;
  padding: 17px;
  border: 1px solid #cce7f7;
  border-radius: 16px;
  background: #eff9ff;
}

.co-pilot-result-case small,
.co-pilot-result-case b,
.co-pilot-result-case span {
  display: block;
}

.co-pilot-result-case small {
  color: #788698;
  font-size: 9px;
  text-transform: uppercase;
}

.co-pilot-result-case b {
  margin-top: 4px;
  color: #223247;
  font-size: 14px;
}

.co-pilot-result-case span {
  margin-top: 3px;
  color: #657589;
  font-size: 11px;
}

.co-pilot-result-case button {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--co-blue), #0788ff);
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 760;
  cursor: pointer;
}

.co-pilot-result-case button.is-done {
  background: #20b98a;
}

.co-pilot-result-summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding: 19px 30px;
  background: #f4f8fb;
}

.co-pilot-result-summary strong {
  color: #223247;
  font-size: 15px;
}

.co-pilot-result-summary span {
  color: #6c7a8c;
  font-size: 11px;
}

.co-pilot-testimonial {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(230px, .55fr);
  gap: 34px;
  align-items: end;
  margin: 20px 0 0;
  padding: 30px;
  border: 1px solid #d8e5ed;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(41, 70, 92, .07);
}

.co-pilot-testimonial p {
  margin: 0;
  color: #223247;
  font-size: clamp(18px, 2vw, 26px);
  font-style: italic;
  font-weight: 610;
  letter-spacing: -.025em;
  line-height: 1.45;
}

.co-pilot-testimonial footer strong,
.co-pilot-testimonial footer span {
  display: block;
}

.co-pilot-testimonial footer strong {
  color: #223247;
  font-size: 14px;
}

.co-pilot-testimonial footer span {
  margin-top: 5px;
  color: #758397;
  font-size: 11px;
}

.co-pilot-footnote {
  margin: 14px 0 0;
  color: #7c8999;
  font-size: 10px;
}

@media (max-width: 980px) {
  .co-pilot-calculator,
  .co-pilot-testimonial {
    grid-template-columns: 1fr;
  }

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

  .co-pilot-arrow {
    transform: rotate(90deg);
  }

  .co-pilot-drop {
    min-height: 225px;
  }
}

@media (max-width: 700px) {
  .co-pilot-head h2 {
    font-size: clamp(39px, 12vw, 52px);
  }

  .co-pilot-calculator {
    margin-top: 34px;
  }

  .co-pilot-controls {
    padding: 22px;
  }

  .co-pilot-range > span {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

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

  .co-pilot-outcomes article {
    border-right: 0;
    border-bottom: 1px solid #e0e9ef;
  }

  .co-pilot-outcomes article:last-child {
    border-bottom: 0;
  }

  .co-pilot-import {
    padding: 12px;
    border-radius: 24px;
  }

  .co-pilot-file {
    transform: none;
  }

  .co-pilot-file-head {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .co-pilot-file-head em {
    display: none;
  }

  .co-pilot-file > button {
    width: calc(100% - 24px);
    min-height: 44px;
    display: block;
    margin: 3px 12px 12px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--co-blue), #0788ff);
    color: #fff;
    font: inherit;
    font-size: 12px;
    font-weight: 780;
  }

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

  .co-pilot-drop {
    min-height: 175px;
    padding: 22px;
  }

  .co-pilot-result-intro,
  .co-pilot-result-case {
    grid-template-columns: 1fr;
  }

  .co-pilot-result-intro {
    padding: 24px;
  }

  .co-pilot-result-volume {
    min-width: 0;
    text-align: left;
  }

  .co-pilot-result-steps {
    grid-template-columns: 1fr;
    padding: 0 24px 18px;
  }

  .co-pilot-result-steps article {
    min-height: auto;
  }

  .co-pilot-result-steps b {
    margin-top: 13px;
  }

  .co-pilot-result-case {
    margin: 0 24px;
  }

  .co-pilot-result-case button {
    width: 100%;
  }

  .co-pilot-result-summary {
    align-items: flex-start;
    flex-direction: column;
    padding-inline: 24px;
  }

  .co-pilot-testimonial {
    padding: 24px;
  }
}



/* =========================================================
   V4 – Feedback-Refinement für OPOS-Interaktion
   ========================================================= */
.co-pilot-experience {
  background: #eef4f8;
  border-top: 1px solid #dde8f0;
  border-bottom: 1px solid #dde8f0;
}

.co-pilot-head { max-width: 980px; margin: 0 auto 34px; }
.co-pilot-head h2 {
  margin-top: 14px;
  max-width: 900px;
  font-size: clamp(44px, 5.5vw, 74px);
  line-height: .96;
  letter-spacing: -.06em;
  font-weight: 760;
}
.co-pilot-head .co-lead { max-width: 900px; margin-top: 18px; }

.co-pilot-calculator {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: 22px;
  align-items: stretch;
}
.co-pilot-controls,
.co-pilot-outcomes,
.co-pilot-result,
.co-pilot-testimonial {
  border: 1px solid #d8e4ec;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(39, 69, 91, .08);
}
.co-pilot-controls {
  padding: 34px 38px;
}
.co-pilot-range { display: block; }
.co-pilot-range + .co-pilot-range { margin-top: 34px; }
.co-pilot-range > span {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.co-pilot-range b {
  max-width: 70%;
  color: #132237;
  font-size: clamp(28px, 2vw, 42px);
  line-height: 1.06;
  letter-spacing: -.04em;
}
.co-pilot-range strong {
  color: var(--co-blue);
  font-size: clamp(24px, 1.95vw, 34px);
  line-height: 1;
  font-weight: 800;
  text-align: right;
}
.co-pilot-range input[type="range"] {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(90deg, var(--co-blue) 0%, var(--co-blue) 18%, #3a3a3a 18%, #3a3a3a 100%);
}
.co-pilot-range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: var(--co-blue);
  box-shadow: 0 0 0 5px rgba(0, 169, 255, .15);
  cursor: pointer;
}
.co-pilot-range input[type="range"]::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: var(--co-blue);
  box-shadow: 0 0 0 5px rgba(0, 169, 255, .15);
  cursor: pointer;
}
.co-pilot-outcomes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}
.co-pilot-outcomes article {
  padding: 34px 30px;
  border-left: 1px solid #e2ebf1;
}
.co-pilot-outcomes article:first-child { border-left: 0; }
.co-pilot-outcomes span {
  display: block;
  color: #7a8699;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.co-pilot-outcomes strong {
  display: block;
  margin-top: 18px;
  color: var(--co-blue);
  font-size: clamp(44px, 4.2vw, 64px);
  line-height: .9;
  letter-spacing: -.06em;
  font-weight: 820;
}
.co-pilot-outcomes p {
  margin-top: 14px;
  color: #445269;
  font-size: 15px;
  line-height: 1.5;
}

.co-pilot-import {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(320px, 430px) 84px minmax(320px, 1fr);
  gap: 20px;
  align-items: center;
}
.co-pilot-file,
.co-pilot-drop {
  border: 1px solid #d1dbe4;
  background: #fff;
  box-shadow: 0 22px 60px rgba(40, 67, 88, .08);
}
.co-pilot-file {
  position: relative;
  padding: 18px;
  border-radius: 18px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  transform: rotate(-1.5deg);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.co-pilot-file:hover,
.co-pilot-experience.is-dragging .co-pilot-file {
  transform: translateY(-3px) rotate(-1deg);
  border-color: #8dbbdb;
  box-shadow: 0 26px 70px rgba(34, 63, 84, .12);
}
.co-pilot-file::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 10px;
  border: 1px solid #e6edf2;
  pointer-events: none;
}
.co-pilot-file-head,
.co-pilot-file-meta,
.co-pilot-file-kpis,
.co-pilot-file-table {
  position: relative;
  z-index: 1;
}
.co-pilot-file-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}
.co-pilot-excel {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #107c41;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}
.co-pilot-file-head b {
  display: block;
  color: #122136;
  font-size: 15px;
}
.co-pilot-file-head small,
.co-pilot-file-head em,
.co-pilot-file-meta,
.co-pilot-file-table i {
  color: #6a788a;
  font-size: 11px;
  font-style: normal;
}
.co-pilot-file-head em { white-space: nowrap; font-weight: 700; }
.co-pilot-file-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #d9e2e8;
}
.co-pilot-file-table {
  display: grid;
  grid-template-columns: 1.6fr .8fr .8fr;
  gap: 8px 14px;
  margin-top: 12px;
  font-size: 11px;
  line-height: 1.45;
}
.co-pilot-file-table > span {
  color: #7d8897;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.co-pilot-file-table b,
.co-pilot-file-table strong { color: #0f1d32; font-size: 12px; }
.co-pilot-file-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px dashed #d9e2e8;
}
.co-pilot-file-kpis span {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f7fafc;
}
.co-pilot-file-kpis small {
  display: block;
  color: #758395;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.co-pilot-file-kpis b {
  display: block;
  margin-top: 6px;
  color: #102137;
  font-size: 16px;
}
.co-pilot-file > button {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 14px;
  min-height: 46px;
  border: 1px solid #cfe0ea;
  border-radius: 999px;
  background: #fff;
  color: #16355a;
  font: inherit;
  font-size: 14px;
  font-weight: 780;
  cursor: pointer;
}
.co-pilot-arrow {
  display: grid;
  place-items: center;
  gap: 10px;
  color: #627185;
  font-size: 13px;
  font-weight: 760;
}
.co-pilot-arrow span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #d7e4ed;
  box-shadow: 0 12px 26px rgba(35, 61, 82, .08);
  color: var(--co-blue);
  font-size: 28px;
}
.co-pilot-drop {
  min-height: 280px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 28px;
  border-radius: 28px;
  text-align: center;
}
.co-pilot-drop.is-hot,
.co-pilot-experience.is-loading .co-pilot-drop {
  border-color: #86bee2;
  background: #f7fbff;
}
.co-pilot-drop-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #ebf7ff;
  color: var(--co-blue);
  font-size: 28px;
  font-weight: 800;
}
.co-pilot-drop h3 {
  margin-top: 16px;
  color: #102137;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1;
  letter-spacing: -.05em;
}
.co-pilot-drop p {
  max-width: 460px;
  margin-top: 12px;
  color: #5a687b;
  font-size: 16px;
}
.co-pilot-drop > span {
  margin-top: 12px;
  color: #8090a3;
  font-size: 12px;
  font-weight: 700;
}

.co-pilot-result {
  margin-top: 24px;
  padding: 28px;
}
.co-pilot-result-top,
.co-pilot-result-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.co-pilot-result-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: #ebf7ff;
  color: var(--co-blue-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.co-pilot-result-top button,
.co-pilot-queue-action button {
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--co-blue), #0788ff);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(0, 152, 242, .18);
}
.co-pilot-result-top button { background: #f1f6fa; color: #20374b; box-shadow: none; }
.co-pilot-result-intro { margin-top: 18px; }
.co-pilot-result-intro h3 {
  max-width: 820px;
  color: #111f34;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.03;
  letter-spacing: -.05em;
}
.co-pilot-result-intro p {
  max-width: 820px;
  margin-top: 14px;
  color: #5a687b;
  font-size: 16px;
  line-height: 1.55;
}
.co-pilot-result-volume {
  min-width: 220px;
  padding: 18px 20px;
  border-radius: 20px;
  background: #f6fafc;
  border: 1px solid #dfe9f0;
}
.co-pilot-result-volume small,
.co-pilot-result-volume strong { display: block; }
.co-pilot-result-volume small {
  color: #6f7d8f;
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.co-pilot-result-volume strong {
  margin-top: 8px;
  color: #101f34;
  font-size: 30px;
  letter-spacing: -.04em;
}
.co-pilot-result-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.co-pilot-result-metrics article {
  padding: 22px;
  border-radius: 22px;
  background: #f7fbfe;
  border: 1px solid #dde8ef;
}
.co-pilot-result-metrics span {
  display: block;
  color: #778395;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.co-pilot-result-metrics strong {
  display: block;
  margin-top: 12px;
  color: #0c1e33;
  font-size: clamp(34px, 3.3vw, 48px);
  line-height: .95;
  letter-spacing: -.05em;
}
.co-pilot-result-metrics p {
  margin-top: 10px;
  color: #5e6b7f;
  font-size: 14px;
}
.co-pilot-result-queue {
  margin-top: 20px;
  border: 1px solid #dde8ef;
  border-radius: 22px;
  overflow: hidden;
}
.co-pilot-queue-head,
.co-pilot-queue-row {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) 130px minmax(220px, .92fr) minmax(170px, .72fr);
  gap: 16px;
  align-items: center;
}
.co-pilot-queue-head {
  padding: 14px 18px;
  background: #f7fbfe;
  color: #748193;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.co-pilot-queue-row {
  padding: 18px;
  border-top: 1px solid #edf2f6;
}
.co-pilot-queue-main b,
.co-pilot-queue-main small,
.co-pilot-queue-status small,
.co-pilot-queue-amount { display: block; }
.co-pilot-queue-main b,
.co-pilot-queue-amount {
  color: #102137;
  font-size: 17px;
  font-weight: 780;
}
.co-pilot-queue-main small,
.co-pilot-queue-status small {
  margin-top: 6px;
  color: #6f7d8f;
  font-size: 12px;
}
.co-pilot-chip,
.co-pilot-action-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.co-pilot-chip.is-critical { background: #fff1f1; color: #c53a46; }
.co-pilot-chip.is-warning { background: #fff6e8; color: #aa6a00; }
.co-pilot-chip.is-neutral { background: #eff4f8; color: #42546c; }
.co-pilot-chip.is-active { background: #eaf9f3; color: #1c8c61; }
.co-pilot-action-pill { background: #f1f6fa; color: #42546c; }
.co-pilot-queue-action button.is-done { background: #1da572; box-shadow: none; }
.co-pilot-result-summary {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(160px, auto) 1fr;
  gap: 22px;
  align-items: center;
  padding: 28px 30px;
  border-radius: 24px;
  background: linear-gradient(135deg, #edf8ff, #f8fbfd);
  border: 1px solid #dceaf3;
}
.co-pilot-result-summary strong {
  display: block;
  color: var(--co-blue-deep);
  font-size: clamp(56px, 7vw, 86px);
  line-height: .86;
  letter-spacing: -.07em;
  font-weight: 840;
}
.co-pilot-result-summary b {
  display: block;
  color: #102137;
  font-size: clamp(22px, 2.1vw, 32px);
  line-height: 1.05;
  letter-spacing: -.03em;
}
.co-pilot-result-summary p {
  margin-top: 8px;
  color: #617083;
  font-size: 15px;
}
.co-pilot-testimonial {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 20px;
  padding: 28px 30px;
  align-items: start;
}
.co-pilot-testimonial__mark {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: #ebf7ff;
  color: var(--co-blue);
  font-size: 60px;
  line-height: 1;
  font-weight: 800;
}
.co-pilot-testimonial__quote {
  color: #14243a;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.24;
  letter-spacing: -.03em;
  font-weight: 650;
}
.co-pilot-testimonial__person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}
.co-pilot-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f3f8fc, #e7f2f8);
  border: 1px solid #d5e3ec;
  color: var(--co-blue-deep);
  font-size: 22px;
  font-weight: 820;
}
.co-pilot-testimonial__person strong,
.co-pilot-testimonial__person span,
.co-pilot-testimonial__person small { display: block; }
.co-pilot-testimonial__person strong { color: #112137; font-size: 18px; }
.co-pilot-testimonial__person span,
.co-pilot-testimonial__person small { color: #6b7a8c; font-size: 14px; }
.co-pilot-footnote {
  margin: 16px 6px 0;
  color: #7b8798;
  font-size: 12px;
  line-height: 1.55;
}

@media (max-width: 1180px) {
  .co-pilot-calculator,
  .co-pilot-import { grid-template-columns: 1fr; }
  .co-pilot-arrow { display: none; }
  .co-pilot-outcomes { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 900px) {
  .co-pilot-range > span,
  .co-pilot-result-top,
  .co-pilot-result-intro,
  .co-pilot-testimonial {
    grid-template-columns: 1fr;
    display: grid;
  }
  .co-pilot-range b { max-width: none; }
  .co-pilot-range strong { text-align: left; }
  .co-pilot-outcomes,
  .co-pilot-result-metrics,
  .co-pilot-queue-head,
  .co-pilot-queue-row,
  .co-pilot-result-summary { grid-template-columns: 1fr; }
  .co-pilot-queue-head { display: none; }
  .co-pilot-queue-row { gap: 10px; }
  .co-pilot-result-volume { min-width: 0; }
}
@media (max-width: 700px) {
  .co-pilot-head h2 { font-size: clamp(38px, 12vw, 52px); }
  .co-pilot-controls,
  .co-pilot-result,
  .co-pilot-testimonial { padding: 24px; border-radius: 24px; }
  .co-pilot-outcomes article { padding: 24px; }
  .co-pilot-file,
  .co-pilot-drop { border-radius: 20px; }
  .co-pilot-file-head { grid-template-columns: auto 1fr; }
  .co-pilot-file-head em { grid-column: 1 / -1; }
  .co-pilot-file-kpis { grid-template-columns: 1fr; }
  .co-pilot-range b { font-size: 20px; }
  .co-pilot-outcomes strong { font-size: 42px; }
  .co-pilot-result-intro h3 { font-size: 32px; }
  .co-pilot-result-summary strong { font-size: 54px; }
  .co-pilot-testimonial__quote { font-size: 26px; }
}



/* =========================================================
   V7 – First visual feedback pass (compact / cleaner / less heavy)
   ========================================================= */
.co-page {
  font-size: 14px;
}

.co-wrap {
  width: min(1180px, calc(100% - 40px));
}

.co-benefit-grid {
  gap: 14px;
  margin-top: 34px;
}

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

.co-benefit-card h3 {
  margin-top: 54px;
  max-width: none;
  font-size: clamp(21px, 1.75vw, 30px);
}

.co-benefit-card p {
  margin-top: 12px;
  max-width: none;
  font-size: 14px;
  line-height: 1.5;
}

.co-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
}

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

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

.co-pilot-head h2 {
  font-size: clamp(38px, 4.2vw, 58px);
}

.co-pilot-calculator {
  gap: 18px;
}

.co-pilot-controls {
  padding: 26px 28px;
}

.co-pilot-range + .co-pilot-range {
  margin-top: 24px;
}

.co-pilot-range > span {
  margin-bottom: 12px;
}

.co-pilot-range b {
  max-width: 64%;
  font-size: clamp(20px, 1.65vw, 30px);
  line-height: 1.1;
}

.co-pilot-range strong {
  font-size: clamp(18px, 1.55vw, 28px);
}

.co-pilot-outcomes article {
  padding: 26px 24px;
}

.co-pilot-outcomes strong {
  font-size: clamp(34px, 2.85vw, 54px);
}

.co-pilot-outcomes .co-pilot-outcome-money {
  font-size: clamp(28px, 2.2vw, 42px);
  line-height: .98;
}

.co-pilot-file-meta {
  justify-content: center;
  padding-inline: 10px;
}

.co-pilot-result {
  padding: 22px;
}

.co-pilot-result-top {
  padding: 14px 16px;
  background: #edf8ff;
  border: 1px solid #dbe9f2;
  border-radius: 18px;
}

.co-pilot-result-badge {
  background: #fff;
  color: var(--co-blue-deep);
}

.co-pilot-result-top button {
  background: #fff;
  color: #274159;
  border: 1px solid #d4e3ed;
}

.co-pilot-result-intro h3 {
  font-size: clamp(28px, 3vw, 46px);
}

.co-pilot-result-volume strong {
  font-size: 24px;
}

.co-pilot-result-summary {
  grid-template-columns: minmax(180px, 230px) 1fr;
  gap: 18px;
  padding: 22px 24px;
}

.co-pilot-result-summary strong,
.co-pilot-result-summary strong[data-co-result-hours-display] {
  display: block;
  white-space: nowrap;
  font-size: clamp(44px, 4.8vw, 68px);
  line-height: .9;
}

.co-pilot-result-summary b {
  font-size: clamp(19px, 1.65vw, 28px);
}

.co-pilot-queue-row {
  transition: background-color .18s ease;
}

.co-pilot-queue-row:hover {
  background: #f9fcfe;
}

.co-pilot-testimonial__quote {
  font-size: clamp(18px, 1.7vw, 28px);
  line-height: 1.34;
  font-weight: 500;
}

@media (max-width: 1180px) {
  .co-benefit-card {
    min-height: 225px;
  }
}

@media (max-width: 900px) {
  .co-page {
    font-size: 13px;
  }

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

  .co-benefit-card {
    min-height: auto;
  }

  .co-pilot-range b {
    max-width: none;
  }
}



/* =========================================================
   V8 – korrigiertes Testimonial + kompakter Desktop-Grundmaßstab
   ========================================================= */
@media (min-width: 981px) {
  .co-page {
    font-size: 12.5px;
  }

  .co-wrap {
    width: min(1220px, calc(100% - 42px));
  }

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

  .co-hero {
    min-height: 690px;
    padding-top: 105px;
    padding-bottom: 72px;
  }
}

/* Der ältere Selektor „.co-pilot-testimonial p“ war spezifischer. */
.co-pilot-testimonial p.co-pilot-testimonial__quote {
  font-style: normal;
  font-weight: 400;
  letter-spacing: -.018em;
  line-height: 1.42;
}


/* =========================================================
   V8 – Normal OPOS: same guided three-step challenge as Bold
   ========================================================= */
.co-page h1,
.co-page h2,
.co-page h3,
.co-page h4,
.co-page .co-story-line,
.co-page .co-kpi-value,
.co-page .co-pilot-range b,
.co-page .co-pilot-range strong,
.co-page .co-pilot-outcomes strong,
.co-page .co-pilot-result-metrics strong,
.co-page .co-pilot-result-summary strong,
.co-page .co-pilot-result-volume strong,
.co-page .co-pilot-queue-amount {
  letter-spacing: -0.02em !important;
  font-stretch: normal;
}

.co-page h1,
.co-page h2,
.co-page h3,
.co-page h4 {
  font-weight: 720;
}

.co-pilot-avatar--image {
  display: block;
  object-fit: cover;
  background: #eaf1f6;
  border: 1px solid #d6e1ea;
}

.co-pilot-testimonial__quote {
  font-weight: 450 !important;
  letter-spacing: -0.01em !important;
}

.co-pilot-challenge {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, .45fr);
  gap: 24px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid #d9e7ef;
  border-radius: 20px;
  background: #f4faff;
}

.co-pilot-challenge__eyebrow {
  display: block;
  color: var(--co-blue-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.co-pilot-challenge h4 {
  margin: 6px 0 0;
  color: #102137;
  font-size: 22px;
  line-height: 1.1;
}

.co-pilot-challenge__copy p {
  margin-top: 6px;
  color: #5b6b7f;
  font-size: 14px;
}

.co-pilot-challenge__progress strong {
  display: block;
  color: #17324d;
  font-size: 14px;
  text-align: right;
}

.co-pilot-challenge__track {
  height: 10px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #dce8f0;
}

.co-pilot-challenge__track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--co-blue);
  transition: width .35s ease;
}

.co-pilot-task-item + .co-pilot-task-item {
  border-top: 1px solid #edf2f6;
}

.co-pilot-task-item .co-pilot-queue-row {
  border-top: 0;
}

.co-pilot-task-item.is-open {
  background: #fbfdff;
}

.co-pilot-task-item.is-complete {
  background: #fbfefc;
}

.co-pilot-queue-action button[data-co-task-toggle] {
  width: 100%;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #cfe0ea;
  border-radius: 999px;
  background: #fff;
  color: #163a59;
  font: inherit;
  font-size: 12px;
  font-weight: 780;
  cursor: pointer;
  transition: color .18s ease, background .18s ease, border-color .18s ease;
}

.co-pilot-queue-action button[data-co-task-toggle]:hover,
.co-pilot-task-item.is-open .co-pilot-queue-action button[data-co-task-toggle] {
  border-color: var(--co-blue);
  color: var(--co-blue-deep);
  background: #f2faff;
}

.co-pilot-task-item.is-complete .co-pilot-queue-action button[data-co-task-toggle] {
  border-color: #b9e6d3;
  color: #18825c;
  background: #edf9f4;
  cursor: default;
}

.co-pilot-task-panel {
  margin: 0 18px 16px;
  padding: 18px;
  border: 1px solid #dce8ef;
  border-radius: 16px;
  background: #f7fbfe;
  animation: co-pilot-task-panel-in .22s ease both;
}

@keyframes co-pilot-task-panel-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.co-pilot-task-panel__intro > span {
  display: block;
  color: var(--co-blue-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.co-pilot-task-panel__intro b {
  display: block;
  margin-top: 4px;
  color: #102137;
  font-size: 17px;
}

.co-pilot-task-panel__intro p {
  margin-top: 6px;
  color: #627185;
  font-size: 13px;
}

.co-pilot-task-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.co-pilot-task-fields label > span {
  display: block;
  margin-bottom: 6px;
  color: #526278;
  font-size: 12px;
  font-weight: 760;
}

.co-pilot-task-fields select {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid #cedde7;
  border-radius: 11px;
  background: #fff;
  color: #13263c;
  font: inherit;
  font-size: 13px;
}

.co-pilot-reminder-preview {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 10px;
  margin-top: 14px;
}

.co-pilot-reminder-preview > div {
  padding: 12px 14px;
  border: 1px solid #dce7ee;
  border-radius: 12px;
  background: #fff;
}

.co-pilot-reminder-preview small,
.co-pilot-reminder-preview b {
  display: block;
}

.co-pilot-reminder-preview small {
  color: #778598;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.co-pilot-reminder-preview b {
  margin-top: 4px;
  color: #13263c;
  font-size: 13px;
}

.co-pilot-task-primary {
  min-height: 42px;
  margin-top: 14px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--co-blue), #0788ff);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 11px 22px rgba(0, 152, 242, .18);
}

.co-pilot-task-primary.is-done,
.co-pilot-task-primary:disabled {
  background: #1da572;
  box-shadow: none;
  cursor: default;
}

.co-pilot-challenge-complete {
  margin-top: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid #bfe6d4;
  border-radius: 20px;
  background: #effaf5;
  animation: co-pilot-task-panel-in .3s ease both;
}

.co-pilot-challenge-complete > div > span {
  display: block;
  color: #16845d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.co-pilot-challenge-complete h4 {
  margin: 5px 0 0;
  color: #102d24;
  font-size: 22px;
}

.co-pilot-challenge-complete p {
  margin-top: 6px;
  color: #527065;
  font-size: 14px;
}

.co-pilot-challenge-complete button {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: #16845d;
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 900px) {
  .co-pilot-challenge,
  .co-pilot-challenge-complete,
  .co-pilot-task-fields,
  .co-pilot-reminder-preview {
    grid-template-columns: 1fr;
  }

  .co-pilot-challenge__progress strong {
    text-align: left;
  }

  .co-pilot-task-panel {
    margin-inline: 12px;
  }
}

/* =========================================================
   V9 – Fix: Stunden-Summary ohne Überlagerung
   ========================================================= */
.co-page .co-pilot-result-summary {
  display: grid;
  grid-template-columns: minmax(210px, 270px) minmax(0, 1fr) !important;
  gap: 28px !important;
  align-items: center;
  overflow: hidden;
}

.co-page .co-pilot-result-summary > strong,
.co-page .co-pilot-result-summary > strong[data-co-result-hours-display] {
  display: block;
  width: 100%;
  min-width: 0;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  color: var(--co-blue-deep);
  font-size: clamp(44px, 3.35vw, 60px) !important;
  line-height: .94 !important;
  letter-spacing: -.015em !important;
  font-weight: 760 !important;
}

.co-page .co-pilot-result-summary > div {
  min-width: 0;
  padding-left: 0;
}

.co-page .co-pilot-result-summary > div > b {
  display: block;
  margin: 0;
  font-size: clamp(20px, 1.55vw, 28px) !important;
  line-height: 1.1;
  letter-spacing: -.015em !important;
}

.co-page .co-pilot-result-summary > div > p {
  margin-top: 7px;
  font-size: 15px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .co-page .co-pilot-result-summary {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .co-page .co-pilot-result-summary > strong,
  .co-page .co-pilot-result-summary > strong[data-co-result-hours-display] {
    overflow: visible;
    font-size: 48px !important;
  }
}


/* =========================================================
   V17 – normal OPOS feedback: compact demo, current pilot KPIs,
   no duplicate product mockup
   ========================================================= */

/* The interactive analysis replaces the older duplicate product section. */
.co-page .co-product {
  display: none !important;
}

.co-replaced-product-anchor {
  position: relative;
  top: -80px;
  display: block;
  width: 1px;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
}

/* Keep the long demo heading compact instead of wrapping across five lines. */
.co-page .co-pilot-head {
  max-width: 1040px;
}

.co-page .co-pilot-head h2 {
  max-width: 980px;
  font-size: clamp(34px, 3.45vw, 50px);
  font-weight: 720;
  line-height: 1.04;
  letter-spacing: -0.025em !important;
  text-wrap: balance;
}

/* The three preview cards must never push into one another. */
.co-page .co-pilot-outcomes article {
  min-width: 0;
  padding: 26px 18px;
}

.co-page .co-pilot-outcomes strong {
  max-width: 100%;
  font-size: clamp(28px, 2.15vw, 42px);
  line-height: 1;
  overflow-wrap: normal;
  word-break: normal;
}

.co-page .co-pilot-outcomes .co-pilot-outcome-money {
  white-space: nowrap;
  font-size: clamp(24px, 1.75vw, 34px);
  letter-spacing: -0.02em !important;
}

/* Qualitative close instead of a second calculated hours promise. */
.co-page .co-pilot-result-summary {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) !important;
  gap: 18px !important;
  align-items: center;
  padding: 22px 24px;
}

.co-page .co-pilot-result-summary-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--co-blue);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 169, 255, .2);
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.co-page .co-pilot-result-summary b {
  font-size: clamp(20px, 1.7vw, 28px);
  line-height: 1.12;
}

/* Pilot KPI units remain on one line. */
.co-page .co-kpi-value-v12 {
  white-space: nowrap;
}

.co-page .co-kpi-value-v12 > small:not(.co-kpi-prefix-v12) {
  white-space: nowrap;
}

@media (max-width: 1180px) and (min-width: 901px) {
  .co-page .co-pilot-calculator {
    grid-template-columns: minmax(0, 1fr) minmax(430px, .9fr);
  }

  .co-page .co-pilot-outcomes article {
    padding-inline: 14px;
  }

  .co-page .co-pilot-outcomes strong {
    font-size: clamp(26px, 2.2vw, 34px);
  }

  .co-page .co-pilot-outcomes .co-pilot-outcome-money {
    font-size: clamp(22px, 1.85vw, 29px);
  }
}

@media (max-width: 900px) {
  .co-page .co-pilot-head h2 {
    font-size: clamp(34px, 8.5vw, 48px);
  }

  .co-page .co-pilot-result-summary {
    grid-template-columns: 52px minmax(0, 1fr) !important;
  }

  .co-page .co-pilot-result-summary-icon {
    width: 52px;
    height: 52px;
    font-size: 27px;
  }
}

@media (max-width: 560px) {
  .co-page .co-pilot-result-summary {
    grid-template-columns: 1fr !important;
  }
}


/* =========================================================
   V18 – compact interactive-analysis heading
   ========================================================= */
.co-page .co-pilot-head {
  width: 100%;
  max-width: 1180px;
}

.co-page .co-pilot-head h2 {
  width: 100%;
  max-width: 1120px;
  font-size: clamp(30px, 2.85vw, 42px) !important;
  line-height: 1.08;
  letter-spacing: -0.02em !important;
  text-wrap: balance;
}

@media (max-width: 1180px) and (min-width: 901px) {
  .co-page .co-pilot-head h2 {
    font-size: clamp(29px, 3.1vw, 38px) !important;
  }
}

@media (max-width: 900px) {
  .co-page .co-pilot-head h2 {
    font-size: clamp(30px, 7.5vw, 42px) !important;
  }
}

/* =========================================================
   V19 – actual hero headline: 3–4 lines on desktop
   ========================================================= */
@media (min-width: 1200px) {
  .co-page .co-hero-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(500px, .96fr);
    gap: 36px;
  }

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

  .co-page .co-hero h1 {
    width: 100%;
    max-width: 720px;
    font-size: clamp(52px, 4vw, 64px) !important;
    line-height: .96;
    letter-spacing: -.025em !important;
  }

  .co-page .co-hero h1 span {
    white-space: nowrap;
  }
}

@media (min-width: 981px) and (max-width: 1199px) {
  .co-page .co-hero-copy {
    max-width: 650px;
  }

  .co-page .co-hero h1 {
    max-width: 650px;
    font-size: clamp(50px, 5vw, 58px) !important;
    line-height: .97;
    letter-spacing: -.025em !important;
  }
}


/* =========================================================
   V4 – testimonial quote mark aligned with bold variant
   ========================================================= */
.co-pilot-testimonial__mark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent !important;
  font-size: 0 !important;
  overflow: hidden;
}

.co-pilot-testimonial__mark::before {
  content: "“";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -48%);
  width: 100%;
  text-align: center;
  color: var(--co-blue);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 68px;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 900px) {
  .co-pilot-testimonial__mark::before {
    font-size: 64px;
  }
}


/* =========================================================
   V5 – KPI numbers followed immediately by social proof
   ========================================================= */
.co-pilot-testimonial--after-kpis {
  margin-top: 24px;
  margin-bottom: 0;
}

.co-pilot-testimonial--after-kpis + .co-kpi-sources-v12 {
  margin-top: 14px;
}

@media (max-width: 767px) {
  .co-pilot-testimonial--after-kpis {
    margin-top: 18px;
  }
}
