[data-bp-section] {
  --bp4-section-gap: clamp(18px, 2vw, 30px);
  --bp4-card-gap: clamp(10px, 1.15vw, 16px);
  --bp4-section-padding: clamp(18px, 2.2vw, 32px);
  --bp4-card-padding: clamp(16px, 1.7vw, 24px);
  --bp4-card-radius: 16px;
  --bp4-glass-border: var(--bp-glass-light-border, rgba(255, 255, 255, 0.62));
  --bp4-glass-light: var(--bp-glass-light-bg, linear-gradient(135deg, rgba(247, 252, 250, .46), rgba(207, 223, 220, .26)));
  --bp4-glass-dark: var(--bp-glass-dark-bg, linear-gradient(150deg, rgba(4, 77, 65, .68), rgba(3, 50, 43, .48)));
  --bp4-glass-dark-border: var(--bp-glass-dark-border, rgba(225, 245, 240, .42));
  --bp4-shadow: 0 18px 44px rgba(18, 43, 41, .12), inset 0 1px 0 rgba(255, 255, 255, .58);
  --bp4-transition: 360ms cubic-bezier(.2, .7, .2, 1);
  --bp4-ink: #102d2a;
  --bp4-muted: #536c69;
  --bp4-green: #075744;
  --bp4-green-bright: #2f8d71;
  --bp4-light: #f5fbfa;
  --bp4-orange: #f35c0b;
  position: relative;
  isolation: isolate;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--bp-glass-shell-border, rgba(255, 255, 255, 0.58));
  border-radius: 22px;
  box-sizing: border-box;
  padding: var(--bp4-section-padding);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .055), rgba(210, 232, 226, .025)),
    var(--bp-glass-shell-bg, rgba(236, 243, 241, 0.22));
  box-shadow: var(--bp4-shadow);
  -webkit-backdrop-filter: blur(var(--bp-glass-shell-blur, 24px)) saturate(120%);
  backdrop-filter: blur(var(--bp-glass-shell-blur, 24px)) saturate(120%);
  color: var(--bp4-ink);
}

[data-bp-section],
[data-bp-section] *,
[data-bp-section] *::before,
[data-bp-section] *::after {
  box-sizing: border-box;
}

[data-bp-section]::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .42;
  background: url("./section-accent-lines.svg") center / cover no-repeat;
  pointer-events: none;
}

[data-bp-section] h2,
[data-bp-section] h3,
[data-bp-section] p,
[data-bp-section] ol,
[data-bp-section] ul,
[data-bp-section] figure {
  margin: 0;
}

[data-bp-section] ol,
[data-bp-section] ul {
  padding: 0;
  list-style: none;
}

[data-bp-section] a {
  color: inherit;
  text-decoration: none;
}

[data-bp-section] img {
  display: block;
  width: 100%;
  height: 100%;
}

[data-bp-section] .bp4-intro {
  position: relative;
  z-index: 2;
  min-width: 0;
}

[data-bp-section] .bp4-intro h2,
[data-bp-section] .bp4-process__heading h2 {
  max-width: 18ch;
  color: inherit;
  font-size: clamp(25px, 2.15vw, 38px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.035em;
  text-wrap: balance;
}

[data-bp-section] .bp4-intro p,
[data-bp-section] .bp4-process__heading p {
  max-width: 34ch;
  margin-top: 15px;
  color: inherit;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.55;
  opacity: .83;
}

[data-bp-section] .bp4-cta {
  display: inline-flex;
  min-width: 0;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 26px;
  border: 1px solid currentColor;
  border-radius: 9px;
  padding: 10px 14px;
  background: transparent;
  color: inherit;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.2;
  transition:
    color var(--bp4-transition),
    background-color var(--bp4-transition),
    border-color var(--bp4-transition);
}

[data-bp-section] .bp4-cta svg {
  flex: 0 0 auto;
  transition: transform var(--bp4-transition);
}

[data-bp-section] .bp4-cta:focus-visible,
[data-bp-section] .bp4-card__link:focus-visible {
  outline: 3px solid rgba(243, 92, 11, .72);
  outline-offset: 3px;
}

[data-bp-section] .bp4-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--bp4-glass-border);
  border-radius: var(--bp4-card-radius);
  background: var(--bp4-glass-light);
  box-shadow: 0 18px 44px rgba(18, 43, 41, .12), inset 0 1px 0 rgba(255, 255, 255, .58);
  -webkit-backdrop-filter: blur(var(--bp-glass-card-blur, 24px)) saturate(120%);
  backdrop-filter: blur(var(--bp-glass-card-blur, 24px)) saturate(120%);
  color: var(--bp4-ink);
  transition:
    transform var(--bp4-transition),
    background-color var(--bp4-transition),
    border-color var(--bp4-transition),
    filter var(--bp4-transition);
}

[data-bp-section] .bp4-card.is-accent {
  border-color: var(--bp4-glass-dark-border);
  background: var(--bp4-glass-dark);
  -webkit-backdrop-filter: blur(var(--bp-glass-dark-blur, 22px)) saturate(116%);
  backdrop-filter: blur(var(--bp-glass-dark-blur, 22px)) saturate(116%);
  color: var(--bp4-light);
}

[data-bp-section] .bp4-card__link {
  display: block;
  height: 100%;
  color: inherit;
}

[data-bp-section] .bp4-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 11px;
  color: currentColor;
  opacity: .96;
}

[data-bp-section] .bp4-icon svg {
  width: 26px;
  height: 26px;
}

[data-bp-section] .bp4-number {
  display: block;
  color: var(--bp4-green);
  font-size: clamp(18px, 1.7vw, 25px);
  font-weight: 650;
  line-height: 1;
  opacity: .55;
}

[data-bp-section] .is-accent .bp4-number {
  color: #b6f1df;
  opacity: .92;
}

[data-bp-section] .bp4-card h3 {
  color: inherit;
  font-size: clamp(16px, 1.15vw, 20px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.02em;
  text-wrap: balance;
}

[data-bp-section] .bp4-card p {
  color: inherit;
  font-size: clamp(12px, .82vw, 14px);
  line-height: 1.5;
  opacity: .76;
}

[data-bp-section] .bp4-intro p,
[data-bp-section] .bp4-process__heading p,
[data-bp-section] .bp4-card p,
[data-bp-section] .bp4-icon,
[data-bp-section] .bp4-number,
[data-bp-section] .is-accent .bp4-number,
[data-bp-section] :where(h1, h2, h3, h4, a, button, img, svg, form, label, input, textarea, select) {
  filter: none;
  opacity: 1;
}

[data-bp-section] .bp4-rail {
  min-width: 0;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

[data-bp-section] .bp4-rail::-webkit-scrollbar {
  display: none;
}

[data-bp-section] .bp4-rail:focus-visible {
  outline: 3px solid rgba(47, 141, 113, .6);
  outline-offset: 5px;
}

[data-bp-section] .bp4-rail-meta {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 13px;
  color: inherit;
  font-size: 13px;
  line-height: 1;
}

[data-bp-section] .bp4-progress {
  display: flex;
  align-items: center;
  gap: 7px;
}

[data-bp-section] .bp4-progress i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  opacity: .26;
  transition: width var(--bp4-transition), opacity var(--bp4-transition);
}

[data-bp-section] .bp4-progress i.is-current {
  width: 22px;
  opacity: .92;
}

[data-bp-section] .bp4-swipe-hint {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.bp4-why {
  color: var(--bp4-ink);
}

.bp4-why .bp4-why__layout {
  display: grid;
  grid-template-columns: minmax(0, 4.6fr) minmax(190px, 1.05fr);
  gap: var(--bp4-section-gap);
  align-items: stretch;
}

.bp4-why .bp4-intro {
  align-self: center;
  padding: 18px 2px 18px 6px;
}

.bp4-why .bp4-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--bp4-card-gap);
}

.bp4-why .bp4-why-card {
  min-height: 322px;
  padding: var(--bp4-card-padding);
}

.bp4-why .bp4-why-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: 42px;
  width: 105px;
  height: 1px;
  rotate: -45deg;
  background: currentColor;
  opacity: .12;
  pointer-events: none;
}

.bp4-why .bp4-icon {
  width: 60px;
  height: 60px;
  margin-top: 34px;
  border: 0;
  border-radius: 0;
}

.bp4-why .bp4-icon svg {
  width: 56px;
  height: 56px;
  stroke-width: 1.45;
}

.bp4-why .bp4-card h3 {
  margin-top: 28px;
}

.bp4-why .bp4-card p {
  margin-top: 14px;
}

.bp4-objects,
.bp4-fleet,
.bp4-process {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .055), rgba(210, 232, 226, .025)),
    var(--bp-glass-shell-bg, rgba(236, 243, 241, 0.22));
}

.bp4-objects .bp4-objects__layout {
  display: grid;
  grid-template-columns: minmax(230px, .96fr) minmax(0, 4.25fr);
  gap: var(--bp4-card-gap);
}

.bp4-objects .bp4-intro,
.bp4-fleet .bp4-intro {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  border: 1px solid var(--bp4-glass-dark-border);
  border-radius: var(--bp4-card-radius);
  padding: var(--bp4-card-padding);
  background: var(--bp4-glass-dark);
  box-shadow: 0 18px 46px rgba(1, 30, 26, .20), inset 0 1px 0 rgba(255, 255, 255, .18);
  -webkit-backdrop-filter: blur(var(--bp-glass-dark-blur, 22px)) saturate(116%);
  backdrop-filter: blur(var(--bp-glass-dark-blur, 22px)) saturate(116%);
  color: var(--bp4-light);
}

.bp4-objects .bp4-intro h2,
.bp4-fleet .bp4-intro h2 {
  max-width: 20ch;
  font-size: clamp(24px, 1.75vw, 30px);
}

.bp4-objects .bp4-object-grid {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--bp4-card-gap);
}

.bp4-objects .bp4-object-card {
  min-height: clamp(330px, 28vw, 410px);
  background: #0c4d41;
  color: #fff;
}

.bp4-objects .bp4-object-card__media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.bp4-objects .bp4-object-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--bp4-object-position, center);
  filter: none;
  transform-origin: 50% 60%;
  transition: transform var(--bp4-transition);
}

.bp4-objects .bp4-responsive-picture {
  position: absolute;
  inset: 0;
}

.bp4-objects .bp4-object-card__shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(1, 48, 40, 0) 28%,
    rgba(1, 66, 55, .38) 50%,
    rgba(1, 55, 46, .90) 82%,
    rgba(1, 47, 40, .98) 100%
  );
  pointer-events: none;
}

.bp4-objects .bp4-object-card__body {
  position: absolute;
  z-index: 2;
  right: var(--bp4-card-padding);
  bottom: var(--bp4-card-padding);
  left: var(--bp4-card-padding);
}

.bp4-objects .bp4-object-card .bp4-icon {
  margin-bottom: 16px;
}

.bp4-objects .bp4-object-card p {
  display: none;
}

.bp4-fleet .bp4-fleet__layout {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(245px, 1.12fr);
  gap: var(--bp4-section-gap);
}

.bp4-fleet .bp4-intro {
  grid-column: 2;
  grid-row: 1;
  min-height: 390px;
}

.bp4-fleet .bp4-fleet-carousel {
  min-width: 0;
  grid-column: 1;
  grid-row: 1;
}

.bp4-fleet .bp4-fleet-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 10px;
}

.bp4-fleet .bp4-fleet-arrow {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--bp4-glass-border);
  border-radius: 50%;
  background: var(--bp4-glass-light);
  color: var(--bp4-green);
  cursor: pointer;
  transition: transform var(--bp4-transition), opacity var(--bp4-transition), background var(--bp4-transition);
}

.bp4-fleet .bp4-fleet-arrow--prev svg {
  transform: rotate(180deg);
}

.bp4-fleet .bp4-fleet-arrow:disabled {
  cursor: default;
  opacity: 1;
}

.bp4-fleet .bp4-fleet-arrow:focus-visible {
  outline: 3px solid rgba(243, 92, 11, .72);
  outline-offset: 3px;
}

.bp4-fleet .bp4-fleet-grid {
  --bp4-fleet-visible: 4;
  display: grid;
  min-width: 0;
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--bp4-fleet-visible) - 1) * var(--bp4-card-gap)) / var(--bp4-fleet-visible));
  gap: var(--bp4-card-gap);
  overflow-x: auto;
  padding: 3px 3px 8px;
  scroll-padding-inline: 3px;
  scroll-snap-type: x mandatory;
  touch-action: pan-x pan-y;
  cursor: grab;
}

@media (min-width: 1101px) {
  .bp4-fleet .bp4-fleet-grid[data-bp-item-count="1"] {
    --bp4-fleet-visible: 1;
  }

  .bp4-fleet .bp4-fleet-grid[data-bp-item-count="2"] {
    --bp4-fleet-visible: 2;
  }

  .bp4-fleet .bp4-fleet-grid[data-bp-item-count="3"] {
    --bp4-fleet-visible: 3;
  }
}

.bp4-fleet .bp4-fleet-grid.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.bp4-fleet .bp4-fleet-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: var(--bp4-card-padding);
  scroll-snap-align: start;
}

.bp4-fleet .bp4-fleet-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: .18;
  background: url("./biopartner-card-lines-800x1200.svg") center / cover no-repeat;
  pointer-events: none;
}

.bp4-fleet .bp4-fleet-card > .bp4-card__link,
.bp4-process .bp4-process-card > .bp4-card__link {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.bp4-fleet .bp4-fleet-card__media {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  flex: 0 0 auto;
  margin: 0;
  place-items: end center;
}

.bp4-fleet .bp4-fleet-card__media .bp4-responsive-picture {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(96%, 320px);
  height: 100%;
  place-items: end center;
}

.bp4-fleet .bp4-fleet-card__media img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: none;
  transform-origin: 50% 60%;
  transition: transform var(--bp4-transition);
}

.bp4-fleet .bp-vehicle__shadow {
  position: absolute;
  z-index: 1;
  right: 8%;
  bottom: 7%;
  left: 8%;
  height: 17%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(3, 30, 26, .34) 0%, rgba(3, 30, 26, .17) 42%, rgba(3, 30, 26, 0) 74%);
  filter: blur(10px);
  transform: scaleX(.88);
  pointer-events: none;
}

.bp4-fleet .bp4-fleet-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 8px;
  opacity: 1;
  filter: none;
}

.bp4-fleet .bp4-fleet-card__content .bp4-number {
  position: absolute;
  top: 8px;
  right: 0;
}

.bp4-fleet .bp4-fleet-card__content .bp4-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 50%;
}

.bp4-fleet .bp4-fleet-card h3 {
  margin-top: 0;
}

.bp4-fleet .bp4-fleet-card p {
  margin-top: 9px;
}

.bp4-process .bp4-process__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--bp4-section-gap);
  margin-bottom: 24px;
}

.bp4-process .bp4-process__heading p {
  margin-top: 7px;
}

.bp4-process .bp4-process__header .bp4-cta {
  min-width: 205px;
  margin-top: 0;
  border-color: #ffb38b;
  background: var(--bp4-orange);
  color: #fff;
}

.bp4-process .bp4-process-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(18px, 1.5vw, 24px);
}

.bp4-process .bp4-process-card {
  min-height: 270px;
  padding: var(--bp4-card-padding);
  overflow: visible;
}

.bp4-process .bp4-process-card::after {
  content: "";
  position: absolute;
  z-index: 5;
  top: 50%;
  left: calc(100% + 3px);
  width: clamp(18px, 1.55vw, 26px);
  height: 18px;
  translate: 0 -50%;
  background: var(--bp4-green);
  -webkit-mask: url("./process-connector.svg") center / contain no-repeat;
  mask: url("./process-connector.svg") center / contain no-repeat;
  pointer-events: none;
}

.bp4-process .bp4-process-card:last-child::after {
  content: none;
}

.bp4-process .bp4-process-card .bp4-icon {
  width: 62px;
  height: 62px;
  margin-top: 25px;
  border-radius: 50%;
}

.bp4-process .bp4-process-card h3 {
  margin-top: 27px;
}

.bp4-process .bp4-process-card p {
  margin-top: 11px;
}

@media (hover: hover) and (pointer: fine) {
  [data-bp-section]:not(.bp4-objects):not(.bp4-fleet) .bp4-card:hover {
    transform: translateY(-4px);
    border-color: rgba(47, 141, 113, .78);
    background-color: rgba(222, 238, 236, .94);
  }

  [data-bp-section]:not(.bp4-objects):not(.bp4-fleet) .bp4-card.is-accent:hover {
    border-color: rgba(193, 244, 229, .92);
    background-color: #08624d;
  }

  [data-bp-section] .bp4-cta:hover {
    border-color: var(--bp4-green-bright);
    background-color: rgba(47, 141, 113, .12);
  }

  .bp4-process .bp4-process__header .bp4-cta:hover {
    border-color: #fff;
    background-color: #d94a00;
  }

  [data-bp-section] .bp4-cta:hover svg {
    transform: translateX(5px);
  }

  .bp4-objects .bp4-object-card:hover img,
  .bp4-objects .bp4-object-card:focus-within img,
  .bp4-fleet .bp4-fleet-card:hover img,
  .bp4-fleet .bp4-fleet-card:focus-within img {
    transform: translateY(-4px) scale(1.035);
  }

  .bp4-fleet .bp4-fleet-arrow:not(:disabled):hover {
    transform: translateY(-2px);
    background: rgba(222, 238, 236, .94);
  }
}

[data-bp-section] .bp4-card:active,
[data-bp-section] .bp4-cta:active {
  filter: brightness(.94);
}

@media (max-width: 1100px) {
  .bp4-why .bp4-why__layout {
    grid-template-columns: 1fr;
  }

  .bp4-why .bp4-intro {
    grid-row: 1;
  }

  .bp4-why .bp4-rail {
    grid-row: 2;
  }

  .bp4-objects .bp4-objects__layout {
    grid-template-columns: minmax(210px, .95fr) minmax(0, 3fr);
  }

  .bp4-objects .bp4-object-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bp4-objects .bp4-object-card:nth-child(4),
  .bp4-objects .bp4-object-card:nth-child(5) {
    min-height: 240px;
  }

  .bp4-fleet .bp4-fleet__layout {
    grid-template-columns: minmax(0, 3fr) minmax(230px, 1fr);
  }

  .bp4-fleet .bp4-fleet-grid {
    --bp4-fleet-visible: 3;
  }

  .bp4-process .bp4-process-rail {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(152px, 1fr);
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
  }

  .bp4-process .bp4-process-card {
    scroll-snap-align: start;
  }
}

@media (max-width: 1023px) and (min-width: 768px) {
  .bp4-fleet .bp4-fleet-grid {
    --bp4-fleet-visible: 2;
  }
}

@media (max-width: 767px) {
  [data-bp-section] {
    --bp4-section-padding: 16px;
    --bp4-card-padding: 16px;
    --bp4-card-radius: 14px;
    width: 100%;
    border-radius: 18px;
  }

  [data-bp-section] .bp4-intro h2,
  [data-bp-section] .bp4-process__heading h2 {
    max-width: none;
    font-size: clamp(25px, 7vw, 31px);
  }

  [data-bp-section] .bp4-intro p,
  [data-bp-section] .bp4-process__heading p {
    margin-top: 10px;
    font-size: 14px;
  }

  [data-bp-section] .bp4-rail-meta {
    display: flex;
  }

  .bp4-why {
    overflow: visible;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    padding-inline: 0;
  }

  .bp4-why::before {
    background-position: 70% top;
  }

  .bp4-why .bp4-intro {
    padding: 6px 20px 4px 28%;
    text-align: right;
  }

  .bp4-why .bp4-intro p {
    margin-left: auto;
  }

  .bp4-why .bp4-rail {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 20px 8px;
    scroll-padding-inline: 20px;
    scroll-snap-type: x mandatory;
    touch-action: pan-x pan-y;
  }

  .bp4-why .bp4-why-card {
    width: clamp(248px, 74vw, 292px);
    min-width: clamp(248px, 74vw, 292px);
    min-height: 236px;
    scroll-snap-align: start;
  }

  .bp4-why .bp4-icon {
    width: 54px;
    height: 54px;
    margin-top: 24px;
  }

  .bp4-why .bp4-icon svg {
    width: 50px;
    height: 50px;
  }

  .bp4-why .bp4-card h3 {
    margin-top: 22px;
    font-size: 20px;
  }

  .bp4-why .bp4-rail-meta {
    padding-inline: 20px;
  }

  .bp4-objects .bp4-objects__layout,
  .bp4-fleet .bp4-fleet__layout {
    display: flex;
    flex-direction: column;
  }

  .bp4-objects .bp4-intro,
  .bp4-fleet .bp4-intro {
    min-height: 0;
    grid-column: auto;
    grid-row: auto;
    padding: 22px 16px;
  }

  .bp4-objects .bp4-intro .bp4-cta,
  .bp4-fleet .bp4-intro .bp4-cta {
    align-self: flex-end;
    margin-top: 16px;
  }

  .bp4-objects .bp4-object-grid,
  .bp4-fleet .bp4-fleet-grid {
    display: grid;
    grid-column: auto;
    grid-row: auto;
    gap: 6px;
  }

  .bp4-objects .bp4-object-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bp4-fleet .bp4-fleet-carousel {
    grid-column: auto;
    grid-row: auto;
  }

  .bp4-fleet .bp4-fleet-grid {
    --bp4-fleet-visible: 1.16;
    grid-template-columns: none;
    grid-auto-flow: column;
    gap: 10px;
  }

  .bp4-fleet .bp4-rail-meta {
    display: flex;
  }

  .bp4-objects .bp4-object-card,
  .bp4-objects .bp4-object-card:nth-child(4) {
    min-height: 168px;
  }

  .bp4-objects .bp4-object-card:nth-child(5) {
    min-height: 180px;
    grid-column: 1 / -1;
  }

  .bp4-objects .bp4-object-card__body {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .bp4-objects .bp4-object-card .bp4-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 8px;
  }

  .bp4-objects .bp4-object-card h3 {
    font-size: 15px;
  }

  .bp4-fleet .bp4-fleet-card {
    min-height: 270px;
    padding: 14px;
  }

  .bp4-fleet .bp4-fleet-card__media {
    height: auto;
    flex-basis: auto;
  }

  .bp4-fleet .bp4-fleet-card h3 {
    font-size: 16px;
  }

  .bp4-fleet .bp4-fleet-card p {
    font-size: 12px;
    line-height: 1.35;
  }

  .bp4-process .bp4-process__header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    margin-bottom: 16px;
  }

  .bp4-process .bp4-process__header .bp4-cta {
    min-width: 0;
    align-self: start;
    margin: 0;
    padding-inline: 13px;
  }

  .bp4-process .bp4-process-rail {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 3px 8px;
    scroll-padding-inline: 3px;
    scroll-snap-type: x mandatory;
    touch-action: pan-x pan-y;
  }

  .bp4-process .bp4-process-card {
    width: clamp(248px, 76vw, 296px);
    min-width: clamp(248px, 76vw, 296px);
    min-height: 154px;
    scroll-snap-align: start;
  }

  .bp4-process .bp4-process-card::after,
  .bp4-process .bp4-process-card:nth-child(3)::after {
    content: "";
    left: calc(100% + 2px);
    width: 18px;
  }

  .bp4-process .bp4-process-card:last-child::after,
  .bp4-process .bp4-process-card:nth-child(6)::after {
    content: none;
  }

  .bp4-process .bp4-process-card .bp4-icon {
    width: 56px;
    height: 56px;
    margin-top: 14px;
  }

  .bp4-process .bp4-process-card h3 {
    margin-top: 18px;
  }
}

@media (max-width: 370px) {
  .bp4-objects .bp4-object-grid {
    grid-template-columns: 1fr;
  }

  .bp4-objects .bp4-object-card:nth-child(5) {
    grid-column: auto;
  }

  .bp4-process .bp4-process__header {
    grid-template-columns: 1fr;
  }

  .bp4-process .bp4-process__header .bp4-cta {
    width: 100%;
  }
}

@media (max-width: 520px) {
  [data-bp-section] {
    --bp-glass-shell-bg: linear-gradient(135deg, rgba(247, 252, 250, .56), rgba(207, 223, 220, .36));
    --bp-glass-light-bg: linear-gradient(135deg, rgba(247, 252, 250, .56), rgba(207, 223, 220, .36));
    --bp-glass-dark-bg: linear-gradient(150deg, rgba(4, 77, 65, .76), rgba(3, 50, 43, .56));
  }

  .bp4-objects .bp4-object-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .bp4-objects .bp4-object-card,
  .bp4-objects .bp4-object-card:nth-child(4),
  .bp4-objects .bp4-object-card:nth-child(5) {
    min-height: 260px;
    grid-column: auto;
  }

  .bp4-fleet .bp4-fleet-card {
    min-height: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-bp-section],
  [data-bp-section] *,
  [data-bp-section] *::before,
  [data-bp-section] *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: .01ms !important;
  }

  .bp4-objects .bp4-object-card img,
  .bp4-fleet .bp4-fleet-card img {
    transform: none !important;
  }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  [data-bp-section] {
    background: rgba(235, 243, 241, .94);
  }

  [data-bp-section] .bp4-card {
    background: rgba(241, 247, 245, .96);
  }

  .bp4-objects .bp4-intro,
  .bp4-fleet .bp4-intro {
    background: #075548;
  }
}

/* The two closing modules form one equal-width row in the shared 12-column grid. */
.bp-elementor-home .bp-home-modules-grid > .elementor-widget-biopartner-home-documents,
.bp-elementor-home .bp-home-modules-grid > .elementor-widget-biopartner-home-prices {
  grid-column: span 6;
  min-width: 0;
}

[data-bp-section].bp4-dual-panel {
  display: flex;
  min-height: 330px;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  border-color: var(--bp4-glass-dark-border);
  border-radius: 22px;
  padding: clamp(22px, 2.2vw, 34px);
  background: var(--bp4-glass-dark);
  box-shadow: 0 18px 44px rgba(7, 39, 35, .16);
  -webkit-backdrop-filter: blur(var(--bp-glass-dark-blur, 22px)) saturate(116%);
  backdrop-filter: blur(var(--bp-glass-dark-blur, 22px)) saturate(116%);
  color: var(--bp4-light);
}

[data-bp-section].bp4-dual-panel::before {
  opacity: .22;
}

[data-bp-section].bp4-dual-panel > .eyebrow,
[data-bp-section].bp4-dual-panel .panel-heading .eyebrow {
  color: rgba(245, 251, 250, .76);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

[data-bp-section].bp4-dual-panel > h2,
[data-bp-section].bp4-dual-panel .panel-heading h2 {
  margin: 0;
  max-width: 18ch;
  color: inherit;
  font-size: clamp(25px, 2vw, 36px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.035em;
  text-wrap: balance;
}

[data-bp-section].bp4-dual-panel .license-card,
[data-bp-section].bp4-dual-panel .price-list > div {
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 14px;
  background: rgba(238, 248, 247, .1);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

[data-bp-section].bp4-dual-panel .license-card {
  display: grid;
  min-height: 116px;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px;
}

[data-bp-section].bp4-dual-panel .license-card small,
[data-bp-section].bp4-dual-panel .license-card span,
[data-bp-section].bp4-dual-panel .price-list span {
  color: rgba(245, 251, 250, .76);
}

[data-bp-section].bp4-dual-panel .license-card strong {
  display: block;
  margin-block: 4px;
  color: inherit;
  overflow-wrap: anywhere;
}

[data-bp-section].bp4-dual-panel .price-list {
  display: grid;
  gap: 8px;
}

[data-bp-section].bp4-dual-panel .price-list > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 48px;
  padding: 10px 14px;
}

[data-bp-section].bp4-dual-panel .price-list strong {
  color: inherit;
  white-space: nowrap;
}

[data-bp-section].bp4-dual-panel .outline-link {
  width: fit-content;
  min-height: 44px;
  margin-top: auto;
  border-color: rgba(255, 255, 255, .52);
  color: inherit;
  transition: transform var(--bp4-transition), background var(--bp4-transition), border-color var(--bp4-transition);
}

@media (hover: hover) {
  [data-bp-section].bp4-dual-panel .outline-link:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, .86);
    background: rgba(255, 255, 255, .12);
  }
}

[data-bp-section].bp4-dual-panel .outline-link:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .9);
  outline-offset: 3px;
}

@media (max-width: 920px) {
  .bp-elementor-home .bp-home-modules-grid > .elementor-widget-biopartner-home-documents,
  .bp-elementor-home .bp-home-modules-grid > .elementor-widget-biopartner-home-prices {
    grid-column: 1 / -1;
  }

  [data-bp-section].bp4-dual-panel {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  [data-bp-section].bp4-dual-panel {
    gap: 14px;
    padding: 19px;
  }

  [data-bp-section].bp4-dual-panel .price-list > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  [data-bp-section].bp4-dual-panel .price-list strong {
    white-space: normal;
  }
}
