:root {
  --dpbc-navy: #102844;
  --dpbc-blue: #24528e;
  --dpbc-blue-soft: #eaf1fa;
  --dpbc-coral: #dc4937;
  --dpbc-ink: #152033;
  --dpbc-muted: #667085;
  --dpbc-line: #dce3ec;
  --dpbc-paper: #f7f9fc;
  --dpbc-white: #fff;
  --dpbc-shadow: 0 24px 70px rgba(20, 45, 78, 0.14);
}

html {
  scroll-behavior: smooth;
}

body.home {
  background: var(--dpbc-white);
  color: var(--dpbc-ink);
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
}

body.home #wrapper,
body.home #main {
  background: var(--dpbc-white);
}

body.home .header-wrapper {
  box-shadow: 0 1px 0 rgba(24, 45, 74, 0.08);
}

body.home .header-main {
  min-height: 84px;
}

body.home .header-main .nav > li > a,
body.home .header-bottom .nav > li > a {
  color: var(--dpbc-ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: color 220ms ease, transform 220ms ease;
}

body.home .header-main .nav > li > a:hover,
body.home .header-bottom .nav > li > a:hover,
body.home .header-bottom .nav > li.active > a {
  color: var(--dpbc-coral);
}

body.home .header-bottom {
  background: var(--dpbc-white) !important;
  border-top: 1px solid rgba(24, 45, 74, 0.07);
  box-shadow: none;
}

body.home .header-main .logo a {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 2px 0;
  transition: opacity 220ms ease, transform 220ms ease;
}

body.home .header-main .logo a:hover {
  box-shadow: none;
  opacity: 0.92;
  transform: translateY(-1px);
}

.dpbc-home,
.dpbc-home * {
  box-sizing: border-box;
}

.dpbc-home {
  overflow: clip;
}

.dpbc-home a {
  color: inherit;
  text-decoration: none;
}

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

.dpbc-home a:focus-visible,
.dpbc-home button:focus-visible,
.dpbc-home summary:focus-visible {
  outline: 3px solid rgba(36, 82, 142, 0.4);
  outline-offset: 4px;
}

.dpbc-shell {
  margin-inline: auto;
  max-width: 1240px;
  padding-inline: 32px;
  width: 100%;
}

.dpbc-section {
  padding-block: 112px 126px;
  position: relative;
}

.dpbc-kicker,
.dpbc-eyebrow {
  color: var(--dpbc-coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin: 0 0 17px;
  text-transform: uppercase;
}

.dpbc-section-heading {
  max-width: 780px;
}

.dpbc-section-heading--row {
  align-items: end;
  display: flex;
  justify-content: space-between;
  max-width: none;
}

.dpbc-section-heading h2,
.dpbc-identity h2,
.dpbc-cta h2 {
  color: var(--dpbc-navy);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 0;
  text-wrap: balance;
}

.dpbc-section-heading h2 span,
.dpbc-identity h2 span {
  color: var(--dpbc-blue);
  display: block;
}

.dpbc-heading-note {
  color: var(--dpbc-muted);
  line-height: 1.75;
  margin: 0 0 4px;
  max-width: 430px;
}

.dpbc-text-link {
  align-items: center;
  color: var(--dpbc-blue);
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 10px;
  padding-block: 8px;
  position: relative;
}

.dpbc-text-link::after {
  background: currentColor;
  bottom: 2px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
  width: 100%;
}

.dpbc-text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.dpbc-button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 4px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 24px;
  justify-content: center;
  min-height: 54px;
  padding: 0 25px;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

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

.dpbc-button:active {
  transform: translateY(0) scale(0.98);
}

.dpbc-button--primary {
  background: var(--dpbc-blue);
  box-shadow: 0 16px 35px rgba(36, 82, 142, 0.2);
  color: var(--dpbc-white) !important;
}

.dpbc-button--primary:hover {
  background: var(--dpbc-navy);
  box-shadow: 0 20px 46px rgba(16, 40, 68, 0.28);
}

.dpbc-button--light {
  background: var(--dpbc-white);
  color: var(--dpbc-navy) !important;
}

.dpbc-button--light:hover {
  background: #eef4fb;
}

/* Hero */
.dpbc-hero {
  background: var(--dpbc-blue-soft);
  min-height: clamp(590px, 73vh, 760px);
  overflow: hidden;
  position: relative;
}

.dpbc-hero::after {
  background: linear-gradient(90deg, rgba(237, 244, 251, 0.98) 0%, rgba(237, 244, 251, 0.9) 34%, rgba(237, 244, 251, 0.05) 66%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.dpbc-hero__slides,
.dpbc-hero__slide {
  inset: 0;
  margin: 0;
  position: absolute;
}

.dpbc-hero__slide {
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1), transform 7s linear;
}

.dpbc-hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

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

.dpbc-hero__slide--collection img {
  object-position: center 42%;
}

.dpbc-hero__inner {
  align-items: center;
  display: flex;
  min-height: clamp(590px, 73vh, 760px);
  position: relative;
  z-index: 2;
}

.dpbc-hero__copy {
  max-width: 590px;
  padding-block: 70px;
}

.dpbc-hero h1 {
  color: var(--dpbc-blue);
  font-size: clamp(50px, 6.2vw, 92px);
  font-weight: 800;
  letter-spacing: -0.067em;
  line-height: 0.92;
  margin: 0 0 30px;
  max-width: 800px;
  text-wrap: balance;
}

.dpbc-hero h1 span {
  display: block;
}

.dpbc-hero__lead {
  color: #4c5e76;
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 34px;
  max-width: 520px;
}

.dpbc-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.dpbc-hero__dots {
  bottom: 30px;
  display: flex;
  gap: 9px;
  left: 32px;
  position: absolute;
}

.dpbc-hero__dots button {
  background: rgba(36, 82, 142, 0.26);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  height: 8px;
  padding: 0;
  transition: background 220ms ease, width 220ms ease;
  width: 8px;
}

.dpbc-hero__dots button.is-active {
  background: var(--dpbc-blue);
  border-radius: 8px;
  width: 32px;
}

/* Intro + category rail */
.dpbc-intro {
  background: var(--dpbc-white);
}

.dpbc-intro__grid {
  align-items: start;
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.dpbc-intro__copy {
  border-left: 1px solid var(--dpbc-line);
  padding-left: 58px;
}

.dpbc-intro__copy p {
  color: var(--dpbc-muted);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 18px;
  max-width: 620px;
}

.dpbc-intro__copy .dpbc-intro__lead {
  color: var(--dpbc-ink);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.55;
}

.dpbc-category-rail {
  margin-top: 74px;
  position: relative;
}

.dpbc-category-rail__track {
  display: grid;
  gap: 16px;
  grid-auto-columns: minmax(260px, 31%);
  grid-auto-flow: column;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.dpbc-category-rail__track::-webkit-scrollbar {
  display: none;
}

.dpbc-category-card {
  aspect-ratio: 0.84;
  background: #dbe5ef;
  border-radius: 3px;
  color: var(--dpbc-white) !important;
  overflow: hidden;
  padding: 26px;
  position: relative;
  scroll-snap-align: start;
}

.dpbc-category-card img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: calc(var(--card-index) * 17%) center;
  position: absolute;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.dpbc-category-card__shade {
  background: linear-gradient(180deg, rgba(16, 40, 68, 0.02) 30%, rgba(16, 40, 68, 0.88) 100%);
  inset: 0;
  position: absolute;
}

.dpbc-category-card__index {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  position: relative;
}

.dpbc-category-card strong,
.dpbc-category-card small {
  bottom: 54px;
  left: 26px;
  position: absolute;
  right: 26px;
}

.dpbc-category-card strong {
  font-size: 23px;
  letter-spacing: -0.03em;
}

.dpbc-category-card small {
  bottom: 26px;
  opacity: 0.78;
}

.dpbc-category-card:hover img {
  transform: scale(1.055);
}

.dpbc-rail-controls {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 12px;
}

.dpbc-rail-controls button {
  background: var(--dpbc-white);
  border: 1px solid var(--dpbc-line);
  border-radius: 50%;
  color: var(--dpbc-navy);
  cursor: pointer;
  font-size: 18px;
  height: 44px;
  padding: 0;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
  width: 44px;
}

.dpbc-rail-controls button:hover {
  background: var(--dpbc-navy);
  color: var(--dpbc-white);
  transform: translateY(-2px);
}

/* Product cards */
.dpbc-products {
  background: var(--dpbc-paper);
}

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

.dpbc-product-card {
  min-width: 0;
}

.dpbc-product-card__image {
  aspect-ratio: 0.82;
  background: #e7ecf2;
  border-radius: 3px;
  display: block;
  overflow: hidden;
  position: relative;
}

.dpbc-product-card__image img {
  height: auto;
  left: calc(var(--product-index) * -100%);
  max-width: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
  width: 400%;
}

.dpbc-product-card__arrow {
  align-items: center;
  background: var(--dpbc-white);
  border-radius: 50%;
  color: var(--dpbc-navy);
  display: flex;
  font-size: 17px;
  height: 46px;
  justify-content: center;
  opacity: 0;
  position: absolute;
  right: 18px;
  top: 18px;
  transform: translateY(8px);
  transition: opacity 240ms ease, transform 240ms ease;
  width: 46px;
}

.dpbc-product-card:hover .dpbc-product-card__image img {
  transform: translateY(-50%) scale(1.025);
}

.dpbc-product-card:hover .dpbc-product-card__arrow {
  opacity: 1;
  transform: translateY(0);
}

.dpbc-product-card__body {
  padding: 22px 5px 10px;
}

.dpbc-product-card__body > p {
  color: var(--dpbc-coral);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.dpbc-product-card h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.35;
  margin: 0 0 14px;
}

.dpbc-product-card h3 a:hover {
  color: var(--dpbc-blue);
}

.dpbc-product-card__meta {
  align-items: center;
  border-top: 1px solid var(--dpbc-line);
  display: flex;
  font-size: 13px;
  font-weight: 700;
  justify-content: space-between;
  padding-top: 14px;
}

.dpbc-product-card__meta > a {
  color: var(--dpbc-blue);
}

.dpbc-benefits {
  border-bottom: 1px solid var(--dpbc-line);
  border-top: 1px solid var(--dpbc-line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 76px;
  padding-block: 22px;
}

.dpbc-benefits span {
  color: var(--dpbc-navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding-inline: 20px;
  text-align: center;
  text-transform: uppercase;
}

.dpbc-benefits span + span {
  border-left: 1px solid var(--dpbc-line);
}

/* Identity */
.dpbc-identity {
  background: var(--dpbc-navy);
  color: var(--dpbc-white);
  overflow: hidden;
}

.dpbc-identity::before {
  background: radial-gradient(circle, rgba(71, 124, 188, 0.28), transparent 64%);
  content: "";
  height: 720px;
  position: absolute;
  right: -280px;
  top: -300px;
  width: 720px;
}

.dpbc-identity__grid {
  align-items: center;
  display: grid;
  gap: 86px;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  position: relative;
}

.dpbc-identity__visual {
  background: #eef2f6;
  border-radius: 3px;
  box-shadow: 32px 32px 0 rgba(255, 255, 255, 0.055);
  overflow: hidden;
}

.dpbc-identity__visual img {
  display: block;
  height: auto;
  width: 100%;
}

.dpbc-identity h2 {
  color: var(--dpbc-white);
}

.dpbc-identity h2 span {
  color: #94b7e0;
}

.dpbc-identity__points {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  margin-block: 44px 38px;
}

.dpbc-identity__points div {
  display: grid;
  gap: 5px;
  padding-right: 16px;
}

.dpbc-identity__points div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.17);
  padding-left: 16px;
}

.dpbc-identity__points strong {
  color: #7ea9d8;
  font-size: 11px;
  letter-spacing: 0.16em;
}

.dpbc-identity__points span {
  font-size: 15px;
  font-weight: 800;
}

.dpbc-identity__points small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.5;
}

.dpbc-identity blockquote {
  border-left: 2px solid var(--dpbc-coral);
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-style: normal;
  line-height: 1.7;
  margin: 0 0 34px;
  padding: 2px 0 2px 22px;
}

/* Process */
.dpbc-process {
  background: var(--dpbc-white);
}

.dpbc-process__list {
  counter-reset: process;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  margin: 72px 0 0;
  padding: 0;
}

.dpbc-process__list li {
  border-left: 1px solid var(--dpbc-line);
  min-height: 245px;
  padding: 12px 36px 42px;
  position: relative;
}

.dpbc-process__list li:nth-child(n+4) {
  border-top: 1px solid var(--dpbc-line);
  padding-top: 42px;
}

.dpbc-process__list li:nth-child(3n) {
  border-right: 1px solid var(--dpbc-line);
}

.dpbc-process__list li > span {
  color: var(--dpbc-coral);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 38px;
}

.dpbc-process__list h3 {
  color: var(--dpbc-navy);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
}

.dpbc-process__list p {
  color: var(--dpbc-muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* Solutions */
.dpbc-solutions {
  background: var(--dpbc-blue-soft);
}

.dpbc-solution-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, minmax(270px, 1fr));
  margin-top: 62px;
}

.dpbc-solution-card {
  border-radius: 3px;
  color: var(--dpbc-white) !important;
  min-height: 270px;
  overflow: hidden;
  position: relative;
}

.dpbc-solution-card--wide {
  grid-row: 1 / 3;
}

.dpbc-solution-card::after {
  background: linear-gradient(180deg, transparent 35%, rgba(11, 29, 51, 0.88) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.dpbc-solution-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.dpbc-solution-card:not(.dpbc-solution-card--wide) img {
  transform: scale(1.2);
}

.dpbc-solution-card span {
  bottom: 30px;
  display: grid;
  left: 32px;
  position: absolute;
  z-index: 1;
}

.dpbc-solution-card small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.dpbc-solution-card strong {
  font-size: 26px;
  letter-spacing: -0.035em;
}

.dpbc-solution-card:hover img {
  transform: scale(1.05);
}

.dpbc-solution-card:not(.dpbc-solution-card--wide):hover img {
  transform: scale(1.26);
}

/* FAQ */
.dpbc-faq {
  background: var(--dpbc-white);
}

.dpbc-faq__grid {
  display: grid;
  gap: 100px;
  grid-template-columns: 0.7fr 1.3fr;
}

.dpbc-faq .dpbc-section-heading {
  position: sticky;
  top: 140px;
}

.dpbc-faq .dpbc-section-heading > p:last-child {
  color: var(--dpbc-muted);
  line-height: 1.7;
  margin-top: 28px;
  max-width: 340px;
}

.dpbc-faq .dpbc-section-heading > p:last-child a {
  color: var(--dpbc-blue);
  font-weight: 800;
}

.dpbc-faq__item {
  border-bottom: 1px solid var(--dpbc-line);
}

.dpbc-faq__item:first-child {
  border-top: 1px solid var(--dpbc-line);
}

.dpbc-faq__item summary {
  align-items: center;
  color: var(--dpbc-navy);
  cursor: pointer;
  display: flex;
  font-size: 17px;
  font-weight: 750;
  justify-content: space-between;
  list-style: none;
  padding: 27px 4px;
}

.dpbc-faq__item summary::-webkit-details-marker {
  display: none;
}

.dpbc-faq__item summary span {
  color: var(--dpbc-blue);
  font-size: 26px;
  font-weight: 400;
  transition: transform 250ms ease;
}

.dpbc-faq__item[open] summary span {
  transform: rotate(45deg);
}

.dpbc-faq__item > div {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms ease;
}

.dpbc-faq__item[open] > div {
  grid-template-rows: 1fr;
}

.dpbc-faq__item p {
  color: var(--dpbc-muted);
  line-height: 1.75;
  margin: 0;
  max-width: 680px;
  overflow: hidden;
  padding: 0 48px 26px 4px;
}

/* News */
.dpbc-news {
  background: var(--dpbc-paper);
}

.dpbc-news__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.25fr 0.875fr 0.875fr;
  margin-top: 58px;
}

.dpbc-news-card__visual {
  aspect-ratio: 1.25;
  background: #e8edf3;
  display: block;
  overflow: hidden;
}

.dpbc-news-card:not(:first-child) .dpbc-news-card__visual {
  aspect-ratio: 1;
}

.dpbc-news-card__visual img {
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.dpbc-news-card:not(:first-child) .dpbc-news-card__visual img {
  transform: scale(1.25);
}

.dpbc-news-card:hover .dpbc-news-card__visual img {
  transform: scale(1.04);
}

.dpbc-news-card:not(:first-child):hover .dpbc-news-card__visual img {
  transform: scale(1.31);
}

.dpbc-news-card > p {
  color: var(--dpbc-muted);
  display: flex;
  font-size: 10px;
  font-weight: 750;
  justify-content: space-between;
  letter-spacing: 0.08em;
  margin: 20px 0 12px;
  text-transform: uppercase;
}

.dpbc-news-card > p span {
  color: var(--dpbc-coral);
}

.dpbc-news-card h3 {
  color: var(--dpbc-navy);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.4;
  margin: 0;
}

.dpbc-news-card:first-child h3 {
  font-size: 28px;
}

.dpbc-news-card h3 a:hover {
  color: var(--dpbc-blue);
}

/* CTA + floating contacts */
.dpbc-cta {
  background: var(--dpbc-blue);
  color: var(--dpbc-white);
  padding-block: 60px;
}

.dpbc-cta__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.dpbc-cta .dpbc-kicker {
  color: #c8d9ee;
  margin-bottom: 10px;
}

.dpbc-cta h2 {
  color: var(--dpbc-white);
  font-size: clamp(34px, 4vw, 54px);
}

.dpbc-floating {
  bottom: 20px;
  display: flex;
  gap: 8px;
  left: 50%;
  position: fixed;
  transform: translateX(-50%);
  z-index: 35;
}

.dpbc-floating a {
  align-items: center;
  background: var(--dpbc-coral);
  border: 2px solid var(--dpbc-white);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(16, 40, 68, 0.22);
  color: var(--dpbc-white) !important;
  display: flex;
  font-size: 12px;
  font-weight: 800;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  transition: background 220ms ease, transform 220ms ease;
}

.dpbc-floating a:nth-child(2) {
  background: var(--dpbc-blue);
}

.dpbc-floating a:hover {
  background: var(--dpbc-navy);
  transform: translateY(-3px);
}

.dpbc-floating span {
  align-items: center;
  display: flex;
  font-size: 16px;
  height: 22px;
  justify-content: center;
  width: 22px;
}

/* Motion */
.dpbc-js .dpbc-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.dpbc-js .dpbc-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .dpbc-home *,
  .dpbc-home *::before,
  .dpbc-home *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .dpbc-js .dpbc-reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1024px) {
  .dpbc-shell {
    padding-inline: 24px;
  }

  .dpbc-section {
    padding-block: 88px 100px;
  }

  .dpbc-hero {
    min-height: 650px;
  }

  .dpbc-hero__inner {
    min-height: 650px;
  }

  .dpbc-hero::after {
    background: linear-gradient(90deg, rgba(237, 244, 251, 0.98) 0%, rgba(237, 244, 251, 0.76) 48%, rgba(237, 244, 251, 0.02) 78%);
  }

  .dpbc-intro__grid,
  .dpbc-identity__grid,
  .dpbc-faq__grid {
    gap: 54px;
  }

  .dpbc-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 48px;
  }

  .dpbc-product-card__image {
    aspect-ratio: 1;
  }

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

  .dpbc-process__list li,
  .dpbc-process__list li:nth-child(n+4) {
    border-top: 1px solid var(--dpbc-line);
    padding-top: 36px;
  }

  .dpbc-process__list li:nth-child(3n) {
    border-right: 0;
  }

  .dpbc-process__list li:nth-child(2n) {
    border-right: 1px solid var(--dpbc-line);
  }

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

  .dpbc-news-card:first-child {
    grid-column: 1 / 3;
  }

  .dpbc-news-card:first-child .dpbc-news-card__visual {
    aspect-ratio: 1.75;
  }

  body.home #footer > .container > .row > .col.medium-4,
  body.home #footer > .container > .row > .col.medium-8 {
    flex-basis: 100%;
    max-width: 100%;
  }

  body.home #footer > .container > .row > .col.medium-8 {
    margin-top: 34px;
  }

  body.home #footer .medium-8 > .row > .col {
    flex-basis: 50%;
    max-width: 50%;
  }

  body.home #footer p,
  body.home #footer a,
  body.home #footer span {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 767px) {
  body.home .header-main {
    min-height: 66px;
  }

  body.home .header-main .logo a {
    padding: 1px 0;
  }

  .dpbc-shell {
    padding-inline: 18px;
  }

  .dpbc-section {
    padding-block: 70px 78px;
  }

  .dpbc-kicker,
  .dpbc-eyebrow {
    font-size: 10px;
    margin-bottom: 13px;
  }

  .dpbc-section-heading h2,
  .dpbc-identity h2 {
    font-size: clamp(37px, 12vw, 54px);
    line-height: 1;
  }

  .dpbc-section-heading--row {
    align-items: start;
    display: grid;
    gap: 20px;
  }

  .dpbc-heading-note {
    font-size: 14px;
  }

  .dpbc-hero,
  .dpbc-hero__inner {
    min-height: 650px;
  }

  .dpbc-hero::after {
    background: linear-gradient(180deg, rgba(237, 244, 251, 0.94) 0%, rgba(237, 244, 251, 0.78) 37%, rgba(237, 244, 251, 0.08) 68%);
  }

  .dpbc-hero__slide img {
    object-position: 63% center;
  }

  .dpbc-hero__slide--collection img {
    object-position: center;
  }

  .dpbc-hero__inner {
    align-items: start;
  }

  .dpbc-hero__copy {
    max-width: 100%;
    min-width: 0;
    padding-top: 62px;
    width: 100%;
  }

  .dpbc-hero h1 {
    font-size: clamp(34px, 9.5vw, 46px);
    line-height: 1.02;
    margin-bottom: 22px;
    max-width: 100%;
    overflow-wrap: break-word;
    text-wrap: wrap;
  }

  .dpbc-hero__lead {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 24px;
    max-width: 330px;
  }

  .dpbc-actions {
    align-items: start;
    display: grid;
    gap: 12px;
  }

  .dpbc-button {
    min-height: 50px;
  }

  .dpbc-hero__dots {
    bottom: 18px;
    left: 18px;
  }

  .dpbc-intro__grid,
  .dpbc-identity__grid,
  .dpbc-faq__grid {
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr;
  }

  .dpbc-intro__copy {
    border-left: 0;
    border-top: 1px solid var(--dpbc-line);
    padding-left: 0;
    padding-top: 28px;
  }

  .dpbc-intro__copy .dpbc-intro__lead {
    font-size: 17px;
  }

  .dpbc-category-rail {
    margin-top: 46px;
  }

  .dpbc-category-rail__track {
    grid-auto-columns: 82%;
  }

  .dpbc-category-card {
    aspect-ratio: 0.92;
  }

  .dpbc-product-grid {
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 38px;
    row-gap: 36px;
  }

  .dpbc-product-card__image {
    aspect-ratio: 0.84;
  }

  .dpbc-product-card__body {
    padding: 16px 2px 6px;
  }

  .dpbc-product-card h3 {
    font-size: 15px;
  }

  .dpbc-product-card__meta {
    align-items: start;
    display: grid;
    gap: 7px;
  }

  .dpbc-product-card__arrow {
    height: 38px;
    opacity: 1;
    right: 10px;
    top: 10px;
    transform: none;
    width: 38px;
  }

  .dpbc-benefits {
    gap: 0;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 52px;
    padding-block: 0;
  }

  .dpbc-benefits span {
    line-height: 1.5;
    padding: 18px 8px;
  }

  .dpbc-benefits span + span {
    border-left: 0;
  }

  .dpbc-benefits span:nth-child(even) {
    border-left: 1px solid var(--dpbc-line);
  }

  .dpbc-benefits span:nth-child(n+3) {
    border-top: 1px solid var(--dpbc-line);
  }

  .dpbc-identity__grid {
    gap: 54px;
  }

  .dpbc-identity__visual {
    margin-right: 16px;
  }

  .dpbc-identity__points {
    grid-template-columns: 1fr;
    margin-block: 34px;
  }

  .dpbc-identity__points div,
  .dpbc-identity__points div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    grid-template-columns: 36px 1fr;
    padding: 17px 0;
  }

  .dpbc-identity__points small {
    grid-column: 2;
  }

  .dpbc-process__list {
    grid-template-columns: 1fr;
    margin-top: 46px;
  }

  .dpbc-process__list li,
  .dpbc-process__list li:nth-child(n+4) {
    border-left: 1px solid var(--dpbc-line);
    border-right: 1px solid var(--dpbc-line);
    border-top: 1px solid var(--dpbc-line);
    min-height: 0;
    padding: 28px 24px 30px;
  }

  .dpbc-process__list li:last-child {
    border-bottom: 1px solid var(--dpbc-line);
  }

  .dpbc-process__list li > span {
    margin-bottom: 18px;
  }

  .dpbc-solution-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    margin-top: 42px;
  }

  .dpbc-solution-card,
  .dpbc-solution-card--wide {
    aspect-ratio: 1.12;
    grid-row: auto;
    min-height: 0;
  }

  .dpbc-solution-card span {
    bottom: 22px;
    left: 22px;
  }

  .dpbc-solution-card strong {
    font-size: 22px;
  }

  .dpbc-faq .dpbc-section-heading {
    position: static;
  }

  .dpbc-faq__item summary {
    font-size: 15px;
    gap: 20px;
    padding-block: 22px;
  }

  .dpbc-faq__item p {
    font-size: 14px;
    padding-right: 24px;
  }

  .dpbc-news__grid {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .dpbc-news-card:first-child {
    grid-column: auto;
  }

  .dpbc-news-card:first-child .dpbc-news-card__visual,
  .dpbc-news-card:not(:first-child) .dpbc-news-card__visual {
    aspect-ratio: 1.35;
  }

  .dpbc-news-card:first-child h3,
  .dpbc-news-card h3 {
    font-size: 21px;
  }

  .dpbc-cta {
    padding-block: 50px;
  }

  .dpbc-cta__inner {
    align-items: start;
    display: grid;
    gap: 28px;
  }

  .dpbc-cta h2 {
    font-size: 38px;
  }

  .dpbc-floating {
    bottom: 10px;
    gap: 6px;
  }

  .dpbc-floating a {
    min-height: 44px;
    padding-inline: 13px;
  }

  .dpbc-floating strong {
    display: none;
  }

  body.home #footer .medium-8 > .row > .col {
    flex-basis: 100%;
    max-width: 100%;
  }

  body.home #footer .medium-8 > .row > .col + .col {
    margin-top: 20px;
  }
}
