

/* Start:/local/tools/dc-light-b2b/style.css?178938130722591*/
.dc-b2b {
  --dc-accent: #f6b83f;
  --dc-accent-strong: #9a6100;
  --dc-ink: var(--white_text_black, #171717);
  --dc-muted: #65676c;
  --dc-surface: var(--white_bg_black, #fff);
  --dc-soft: var(--darkerblack_bg_black, #f5f4f0);
  --dc-line: rgba(0, 0, 0, 0.08);
  --dc-dark: #171717;
  --dc-radius: 24px;
  --dc-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.055),
    0 1px 2px -1px rgba(0, 0, 0, 0.06),
    0 12px 32px -18px rgba(0, 0, 0, 0.18);
  --dc-shadow-hover:
    0 0 0 1px rgba(0, 0, 0, 0.09),
    0 2px 5px -2px rgba(0, 0, 0, 0.1),
    0 20px 44px -20px rgba(0, 0, 0, 0.22);
  color: var(--dc-ink);
  margin: 0 0 72px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.dc-b2b,
.dc-b2b * {
  box-sizing: border-box;
}

html:has(.dc-b2b),
body:has(.dc-b2b) {
  overflow-x: clip;
}

.dc-b2b h1,
.dc-b2b h2,
.dc-b2b h3 {
  color: inherit;
  font-family: var(--theme-font-title-family, Arial, sans-serif);
  text-wrap: balance;
}

.dc-b2b p,
.dc-b2b li,
.dc-b2b small {
  text-wrap: pretty;
}

.dc-b2b a:focus-visible,
.dc-b2b button:focus-visible {
  outline: 3px solid #9a6100;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(246, 184, 63, 0.32);
}

.dc-b2b__breadcrumbs {
  min-height: 28px;
  margin: 0 0 18px;
}

.dc-b2b__breadcrumbs .breadcrumbs {
  margin: 0;
  padding: 0;
}

.dc-b2b__hero {
  isolation: isolate;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.65fr);
  gap: 42px;
  min-height: 520px;
  overflow: hidden;
  padding: clamp(36px, 6vw, 76px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 8%, rgba(246, 184, 63, 0.24), transparent 32%),
    radial-gradient(circle at 48% 118%, rgba(246, 184, 63, 0.12), transparent 44%),
    var(--dc-dark);
  color: #fff;
  box-shadow: 0 28px 70px -38px rgba(0, 0, 0, 0.55);
}

.dc-b2b__hero-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 0, #000 48%, #000 100%);
}

.dc-b2b__hero-copy {
  align-self: center;
  max-width: 820px;
}

.dc-b2b__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin: 0 0 16px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(246, 184, 63, 0.14);
  color: #a66300;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: uppercase;
}

.dc-b2b__eyebrow--dark {
  background: rgba(246, 184, 63, 0.13);
  box-shadow: inset 0 0 0 1px rgba(246, 184, 63, 0.22);
  color: #ffd989;
}

.dc-b2b__title {
  max-width: 880px;
  margin: 0;
  color: #fff !important;
  font-size: clamp(38px, 5.1vw, 68px);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 0.99;
}

.dc-b2b__hero-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.55;
}

.dc-b2b__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.dc-b2b__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 16px 12px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none !important;
  touch-action: manipulation;
  transition-property: transform, background-color, box-shadow, color;
  transition-duration: 160ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.dc-b2b__button:active {
  transform: scale(0.96);
}

.dc-b2b__button--primary {
  background: var(--dc-accent);
  box-shadow: 0 10px 24px -14px rgba(246, 184, 63, 0.8);
  color: #171717 !important;
}

.dc-b2b__button--primary:hover {
  background: #ffc95f;
  box-shadow: 0 14px 30px -15px rgba(246, 184, 63, 0.9);
}

.dc-b2b__button--secondary {
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  color: #fff !important;
}

.dc-b2b__button--secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.dc-b2b__hero-facts {
  align-self: end;
  margin: 0;
  padding: 0;
}

.dc-b2b__hero-facts > div {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.dc-b2b__hero-facts dt {
  margin: 0 0 6px;
  color: #fff;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.25;
}

.dc-b2b__hero-facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
  line-height: 1.45;
}

.dc-b2b__section {
  margin-top: clamp(56px, 7vw, 88px);
  scroll-margin-top: 96px;
}

.dc-b2b__section > h2,
.dc-b2b__split-main > h2,
.dc-b2b__case-copy > h2,
.dc-b2b__cta h2,
.dc-b2b__notice h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(29px, 3.4vw, 44px);
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.09;
}

.dc-b2b__section-lead {
  max-width: 820px;
  margin: 16px 0 0;
  color: var(--dc-muted);
  font-size: 17px;
  line-height: 1.62;
}

.dc-b2b__cards {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

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

.dc-b2b__cards--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dc-b2b__card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 28px;
  border-radius: var(--dc-radius);
  background: var(--dc-surface);
  box-shadow: var(--dc-shadow);
  color: inherit !important;
  text-decoration: none !important;
  touch-action: manipulation;
  transition-property: transform, box-shadow;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.dc-b2b__card--link:hover {
  transform: translateY(-3px);
  box-shadow: var(--dc-shadow-hover);
}

.dc-b2b__card--link:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--dc-shadow-hover), 0 0 0 6px rgba(246, 184, 63, 0.32);
}

.dc-b2b__card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dc-b2b__card-index,
.dc-b2b__step-number {
  color: var(--dc-accent-strong);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  letter-spacing: 0;
}

.dc-b2b__status {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--dc-soft);
  color: var(--dc-muted);
  font-size: 11px;
  font-weight: 700;
}

.dc-b2b__card h3 {
  margin: 34px 0 0;
  font-size: 23px;
  font-weight: 730;
  letter-spacing: 0;
  line-height: 1.18;
}

.dc-b2b__card p {
  margin: 13px 0 0;
  color: var(--dc-muted);
  font-size: 16px;
  line-height: 1.6;
}

.dc-b2b__card-link {
  margin-top: auto;
  padding-top: 24px;
  color: var(--dc-accent-strong);
  font-size: 14px;
  font-weight: 750;
}

.dc-b2b__section--soft {
  padding: clamp(30px, 4vw, 54px);
  border-radius: 28px;
  background: var(--dc-soft);
}

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

.dc-b2b__steps li {
  position: relative;
  min-width: 0;
  padding: 0 26px;
}

.dc-b2b__steps li:first-child {
  padding-left: 0;
}

.dc-b2b__steps li:last-child {
  padding-right: 0;
}

.dc-b2b__steps li + li::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 1px;
  background: rgba(0, 0, 0, 0.09);
}

.dc-b2b__steps h3 {
  margin: 17px 0 0;
  font-size: 18px;
  font-weight: 730;
  line-height: 1.25;
}

.dc-b2b__steps p {
  margin: 9px 0 0;
  color: var(--dc-muted);
  font-size: 16px;
  line-height: 1.55;
}

.dc-b2b__checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.dc-b2b__checklist li {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 58px;
  padding: 12px 16px;
  border-radius: 15px;
  background: var(--dc-surface);
  box-shadow: var(--dc-shadow);
  font-size: 15px;
  line-height: 1.45;
}

.dc-b2b__checklist li > span:first-child {
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(246, 184, 63, 0.18);
  color: #9a6100;
  font-size: 13px;
  font-weight: 800;
}

.dc-b2b__split,
.dc-b2b__case {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 22px;
}

.dc-b2b__split-main,
.dc-b2b__aside,
.dc-b2b__case-copy,
.dc-b2b__case-media {
  border-radius: var(--dc-radius);
}

.dc-b2b__split-main,
.dc-b2b__case-copy {
  padding: clamp(30px, 4vw, 50px);
  background: var(--dc-surface);
  box-shadow: var(--dc-shadow);
}

.dc-b2b__split-main > p,
.dc-b2b__case-copy > p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--dc-muted);
  font-size: 16px;
  line-height: 1.66;
}

.dc-b2b__aside {
  padding: 32px;
  background: var(--dc-dark);
  color: #fff;
}

.dc-b2b__aside h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 730;
}

.dc-b2b__aside ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.dc-b2b__aside li {
  position: relative;
  padding: 14px 0 14px 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.45;
}

.dc-b2b__aside li::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dc-accent);
}

.dc-b2b__inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 26px;
}

.dc-b2b__inline-links a,
.dc-b2b__text-link,
.dc-b2b__text-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #a86400 !important;
  font-size: 14px;
  font-weight: 760;
  text-decoration: none !important;
}

.dc-b2b__text-action {
  gap: 8px;
  min-height: 48px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(246, 184, 63, 0.14);
  box-shadow: inset 0 0 0 1px rgba(231, 154, 0, 0.18);
  transition-property: transform, background-color, box-shadow;
  transition-duration: 160ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
  touch-action: manipulation;
}

.dc-b2b__text-action:hover {
  background: rgba(246, 184, 63, 0.22);
  box-shadow: inset 0 0 0 1px rgba(231, 154, 0, 0.28);
  transform: translateY(-2px);
}

.dc-b2b__text-action:active {
  transform: scale(0.96);
}

.dc-b2b__case {
  align-items: start;
}

.dc-b2b__case-media {
  aspect-ratio: 4 / 3;
  min-height: 0;
  overflow: hidden;
  margin: 0;
  background: var(--dc-soft);
  box-shadow: var(--dc-shadow);
}

.dc-b2b__case-scope {
  padding-left: 14px;
  border-left: 3px solid var(--dc-accent);
  color: var(--dc-ink) !important;
  font-weight: 720;
}

.dc-b2b__case-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  visibility: visible;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}

.dc-b2b__case-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.dc-b2b__case-facts li {
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--dc-soft);
  color: var(--dc-muted);
  font-size: 12px;
  font-weight: 680;
}

.dc-b2b__case-placeholder {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: var(--dc-radius);
  background: var(--dc-dark);
}

.dc-b2b__case-placeholder span {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(255, 255, 255, 0.16);
  font-size: 104px;
  font-weight: 800;
  transform: translate(-50%, -50%);
}

.dc-b2b__case-placeholder i {
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(246, 184, 63, 0.35);
  border-radius: 50%;
}

.dc-b2b__case-placeholder i:nth-child(2) { top: -80px; right: -60px; }
.dc-b2b__case-placeholder i:nth-child(3) { right: 20%; bottom: -150px; }
.dc-b2b__case-placeholder i:nth-child(4) { top: 36%; left: -150px; }

.dc-b2b__link-grid {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

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

.dc-b2b__link-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dc-b2b__link-grid--3.dc-b2b__link-grid--balanced {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.dc-b2b__link-grid--3.dc-b2b__link-grid--balanced > a {
  grid-column: span 2;
}

.dc-b2b__link-grid--3.dc-b2b__link-grid--balanced > a:nth-last-child(2) {
  grid-column: 2 / span 2;
}

.dc-b2b__link-grid--3.dc-b2b__link-grid--balanced > a:last-child {
  grid-column: 4 / span 2;
}

.dc-b2b__link-grid > a {
  display: flex;
  min-height: 210px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border-radius: 17px;
  background: var(--dc-surface);
  box-shadow: var(--dc-shadow);
  color: inherit !important;
  text-decoration: none !important;
  touch-action: manipulation;
  transition-property: transform, box-shadow;
  transition-duration: 170ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.dc-b2b__link-grid > a:hover {
  transform: translateY(-2px);
  box-shadow: var(--dc-shadow-hover);
}

.dc-b2b__link-grid > a:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--dc-shadow-hover), 0 0 0 6px rgba(246, 184, 63, 0.32);
}

.dc-b2b__link-grid-copy {
  display: flex;
  min-width: 0;
  align-self: stretch;
  flex-direction: column;
}

.dc-b2b__link-grid h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 730;
  line-height: 1.28;
}

.dc-b2b__link-grid p {
  margin: 7px 0 0;
  color: var(--dc-muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

.dc-b2b__link-grid-action {
  margin-top: auto;
  padding-top: 20px;
  color: #9a6100;
  font-size: 14px;
  font-weight: 760;
}

.dc-b2b__link-grid b {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(246, 184, 63, 0.17);
  color: #9a6100;
  font-size: 18px;
  font-weight: 500;
}

.dc-b2b__products .catalog-viewed-list,
.dc-b2b__products .catalog-block {
  margin-top: 30px;
}

.dc-b2b__product-fallback {
  margin-top: 26px;
  padding: 20px;
  border-radius: 15px;
  background: var(--dc-soft);
  color: var(--dc-muted);
  font-size: 14px;
  line-height: 1.55;
}

.dc-b2b__faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 22px;
  align-items: start;
}

.dc-b2b__faq-layout--solo {
  grid-template-columns: minmax(0, 1fr);
}

.dc-b2b__faq-main > h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(29px, 3.4vw, 44px);
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.09;
}

.dc-b2b__faq {
  margin-top: 28px;
}

.dc-b2b__faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dc-b2b__faq-item h3 {
  margin: 0;
}

.dc-b2b__faq-item button {
  display: flex;
  width: 100%;
  min-height: 72px;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding: 14px 4px;
  border: 0;
  background: transparent;
  color: var(--dc-ink);
  font: inherit;
  font-size: 17px;
  font-weight: 720;
  line-height: 1.4;
  text-align: left;
  touch-action: manipulation;
}

.dc-b2b__faq-item button b {
  position: relative;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  background: var(--dc-soft);
}

.dc-b2b__faq-item button:hover b {
  background: rgba(246, 184, 63, 0.2);
  color: #7d4b00;
}

.dc-b2b__faq-item button b::before,
.dc-b2b__faq-item button b::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition-property: transform, opacity;
  transition-duration: 160ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.dc-b2b__faq-item button b::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.dc-b2b__faq-item button[aria-expanded="true"] b::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.dc-b2b__faq-answer {
  max-width: 820px;
  padding: 0 58px 22px 4px;
}

.dc-b2b__faq-answer[hidden] {
  display: none;
}

.dc-b2b__faq-answer p {
  margin: 0;
  color: var(--dc-muted);
  font-size: 16px;
  line-height: 1.65;
}

.dc-b2b__faq-aside {
  padding: 32px;
  border-radius: var(--dc-radius);
  background: var(--dc-dark);
  color: #fff;
  box-shadow: 0 24px 54px -34px rgba(0, 0, 0, 0.62);
}

.dc-b2b__faq-aside h3 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 730;
  line-height: 1.25;
}

.dc-b2b__faq-aside ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.dc-b2b__faq-aside li {
  position: relative;
  padding: 12px 0 12px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.5;
}

.dc-b2b__faq-aside li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dc-accent);
}

.dc-b2b__faq-aside p {
  margin: 22px 0 0;
  padding: 15px 16px;
  border-radius: 14px;
  background: rgba(246, 184, 63, 0.14);
  color: #ffe3a8;
  font-size: 16px;
  line-height: 1.55;
}

.dc-b2b__notice {
  display: flex;
  gap: 18px;
  padding: 26px;
  border-radius: 20px;
  background: #fff7e3;
  box-shadow: inset 0 0 0 1px rgba(231, 154, 0, 0.16);
}

.dc-b2b__notice-mark {
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--dc-accent);
  color: #2c220f;
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 700;
}

.dc-b2b__notice h2 {
  font-size: clamp(21px, 2.5vw, 28px);
  letter-spacing: 0;
}

.dc-b2b__notice p {
  max-width: 940px;
  margin: 10px 0 0;
  color: #655b49;
  font-size: 15px;
  line-height: 1.6;
}

.dc-b2b__cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: end;
  padding: clamp(34px, 5vw, 62px);
  border-radius: 28px;
  background: var(--dc-dark);
  color: #fff;
  box-shadow: 0 28px 70px -38px rgba(0, 0, 0, 0.55);
}

.dc-b2b__cta h2 {
  max-width: 780px;
  color: #fff;
}

.dc-b2b__cta p {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  line-height: 1.6;
}

.dc-b2b__cta .dc-b2b__actions {
  justify-content: flex-end;
  margin: 0;
}

@media (max-width: 1279px) {
  .dc-b2b__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 0;
  }

  .dc-b2b__steps li:nth-child(3) {
    padding-left: 0;
  }

  .dc-b2b__steps li:nth-child(3)::before {
    display: none;
  }
}

@media (max-width: 1199px) {
  .dc-b2b__link-grid--3,
  .dc-b2b__link-grid--3.dc-b2b__link-grid--balanced {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dc-b2b__link-grid--3.dc-b2b__link-grid--balanced > a,
  .dc-b2b__link-grid--3.dc-b2b__link-grid--balanced > a:nth-last-child(2) {
    grid-column: auto;
  }

  .dc-b2b__link-grid--3.dc-b2b__link-grid--balanced > a:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 6px);
    justify-self: center;
  }

  .dc-b2b__faq-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .dc-b2b__hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .dc-b2b__hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dc-b2b__hero-facts > div {
    padding: 18px 18px 0 0;
  }

  .dc-b2b__cards--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dc-b2b__cards--3.dc-b2b__cards--balanced > :last-child {
    grid-column: 1 / -1;
    width: calc(50% - 9px);
    justify-self: center;
  }

  .dc-b2b__split,
  .dc-b2b__case,
  .dc-b2b__cta {
    grid-template-columns: 1fr;
  }

  .dc-b2b__cta .dc-b2b__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .dc-b2b {
    margin-bottom: 48px;
  }

  .dc-b2b__hero {
    gap: 28px;
    padding: 30px 22px;
    border-radius: 22px;
  }

  .dc-b2b__title {
    font-size: clamp(34px, 11vw, 48px);
    line-height: 1.02;
  }

  .dc-b2b__hero-lead {
    margin-top: 18px;
    font-size: 16px;
  }

  .dc-b2b__actions,
  .dc-b2b__cta .dc-b2b__actions {
    width: 100%;
  }

  .dc-b2b__button {
    width: 100%;
  }

  .dc-b2b__hero-facts {
    grid-template-columns: 1fr;
  }

  .dc-b2b__hero-facts > div {
    padding: 15px 0;
  }

  .dc-b2b__cards--2,
  .dc-b2b__cards--3,
  .dc-b2b__steps,
  .dc-b2b__checklist,
  .dc-b2b__link-grid,
  .dc-b2b__link-grid--2,
  .dc-b2b__link-grid--3,
  .dc-b2b__link-grid--3.dc-b2b__link-grid--balanced {
    grid-template-columns: 1fr;
  }

  .dc-b2b__cards--3.dc-b2b__cards--balanced > :last-child {
    grid-column: auto;
    width: auto;
    justify-self: stretch;
  }

  .dc-b2b__link-grid--3.dc-b2b__link-grid--balanced > a,
  .dc-b2b__link-grid--3.dc-b2b__link-grid--balanced > a:nth-last-child(2),
  .dc-b2b__link-grid--3.dc-b2b__link-grid--balanced > a:last-child {
    grid-column: auto;
    width: auto;
    justify-self: stretch;
  }

  .dc-b2b__card {
    min-height: 220px;
    padding: 23px;
    border-radius: 20px;
  }

  .dc-b2b__section--soft {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .dc-b2b__steps {
    gap: 0;
  }

  .dc-b2b__steps li,
  .dc-b2b__steps li:first-child,
  .dc-b2b__steps li:last-child,
  .dc-b2b__steps li:nth-child(3) {
    padding: 20px 0;
  }

  .dc-b2b__steps li + li::before,
  .dc-b2b__steps li:nth-child(3)::before {
    display: block;
    top: 0;
    right: 0;
    bottom: auto;
    width: auto;
    height: 1px;
  }

  .dc-b2b__split-main,
  .dc-b2b__aside,
  .dc-b2b__case-copy {
    padding: 26px 22px;
    border-radius: 20px;
  }

  .dc-b2b__case-media,
  .dc-b2b__case-placeholder {
    border-radius: 20px;
  }

  .dc-b2b__case-media {
    min-height: 0;
  }

  .dc-b2b__case-placeholder {
    min-height: 270px;
  }

  .dc-b2b__link-grid > a {
    min-height: 100px;
    padding: 18px;
  }

  .dc-b2b__notice {
    padding: 22px 18px;
  }

  .dc-b2b__cta {
    gap: 28px;
    padding: 30px 22px;
    border-radius: 22px;
  }

  .dc-b2b__faq-aside {
    padding: 26px 22px;
    border-radius: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dc-b2b__button,
  .dc-b2b__card,
  .dc-b2b__link-grid > a,
  .dc-b2b__text-action,
  .dc-b2b__faq-item button b::before,
  .dc-b2b__faq-item button b::after {
    transition-duration: 0.01ms;
  }
}

/* End */


/* Start:/local/tools/dc-light-b2b/industrial-production/style.css?178947496023030*/
/* Industrial production service. Every rule is scoped to the exact page root. */
.dci-page{--dci-accent:var(--theme-base-color,#f6b83f);--dci-ink:var(--white_text_black,#242424);--dci-muted:var(--lite_basic_text_black,#686868);--dci-line:var(--stroke_black,#e5e5e5);--dci-soft:#f5f6f2;--dci-tint:#fff8e5;--dci-dark:#262826;--dci-anchor:112px;width:100%;min-width:0;margin:0;padding:0;background:transparent;color:var(--dci-ink);font:inherit;font-size:16px;line-height:1.65;-webkit-font-smoothing:antialiased}
.dci-page *,.dci-page *::before,.dci-page *::after{box-sizing:border-box}
.dci-page :where(h1,h2,h3,p,figure,ol,ul,dl,dd){margin:0;padding:0}
.dci-page :where(h1,h2,h3){color:inherit;font-family:inherit;font-weight:600;letter-spacing:-.025em;text-transform:none}
.dci-page :where(ol,ul){list-style:none}
.dci-page :where(a){color:inherit;text-decoration:none}
.dci-page :where(button,input,textarea,select){font:inherit;letter-spacing:normal}
.dci-page :where(button){cursor:pointer}
.dci-page :where(section,article,figure,nav,aside,div){min-width:0}
.dci-page :where(section[id],aside[id]){scroll-margin-top:var(--dci-anchor)}
.dci-page :where(a,button,input,textarea,select,summary):focus-visible{outline:3px solid #9b6d00;outline-offset:4px}
.dci-page [hidden]{display:none!important}
.dci-page img{display:block;width:100%;max-width:100%;height:auto}
.dci-page .dci-icon{width:21px;height:21px;flex:0 0 21px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.dci-page .dci-kicker{display:flex;align-items:center;gap:9px;margin-bottom:15px;color:var(--dci-muted);font-size:11px;font-weight:700;line-height:1.5;letter-spacing:.09em;text-transform:uppercase}
.dci-page .dci-kicker::before{content:"";width:6px;height:6px;flex:0 0 6px;border-radius:50%;background:var(--dci-accent)}
.dci-page h1{max-width:710px;margin-bottom:23px;font-size:clamp(38px,3.5vw,56px);line-height:1.09;letter-spacing:-.04em}
.dci-page h2{font-size:clamp(30px,2.7vw,43px);line-height:1.16;letter-spacing:-.035em}
.dci-page h3{font-size:22px;line-height:1.3}
.dci-page .dci-note,.dci-page .dci-intro{color:var(--dci-muted)}
.dci-page .dci-intro{max-width:760px;margin-top:16px;font-size:15px;line-height:1.8}
.dci-page .dci-button{display:inline-flex;align-items:center;justify-content:center;gap:11px;min-height:50px;padding:13px 20px;border:1px solid var(--dci-ink);border-radius:4px;background:transparent;color:var(--dci-ink);font-size:14px;font-weight:650;line-height:1.3;text-align:center;transition:transform .18s ease,background-color .18s ease,border-color .18s ease,color .18s ease}
.dci-page .dci-button--primary{border-color:var(--dci-accent);background:var(--dci-accent);color:#242424}
.dci-page .dci-button:hover{border-color:var(--dci-accent);background:#fff7df;color:#242424}
.dci-page .dci-button--primary:hover{background:#ffca57}
.dci-page .dci-button:active{transform:scale(.96)}
.dci-page .dci-link{display:inline-flex;align-items:center;gap:8px;border:0;background:none;color:inherit;font-size:13px;font-weight:650;line-height:1.5;text-align:left;text-decoration:underline;text-decoration-color:transparent;text-underline-offset:4px;transition:color .18s ease,text-decoration-color .18s ease}
.dci-page .dci-link:hover{color:#8b6200;text-decoration-color:currentColor}
.dci-page .dci-hero{padding-bottom:40px}
.dci-page .dci-hero-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:clamp(40px,4cqw,56px);align-items:start}
.dci-page .dci-hero-copy{padding-top:8px}
.dci-page .dci-hero-lead{max-width:650px;margin-bottom:18px;font-size:22px;line-height:1.5}
.dci-page .dci-hero-text{max-width:660px;color:var(--dci-muted);font-size:15px;line-height:1.8}
.dci-page .dci-actions{display:flex;flex-wrap:wrap;align-items:center;gap:20px;margin:28px 0 14px}
.dci-page .dci-hero-copy>.dci-note{font-size:12px}
.dci-page .dci-hero-product{overflow:hidden;border-radius:8px;outline:1px solid rgba(0,0,0,.1);outline-offset:-1px;background:#fff}
.dci-page .dci-hero-image{position:relative;aspect-ratio:1.45;overflow:hidden;background:#202221}
.dci-page .dci-hero-image img{height:100%;object-fit:cover}
.dci-page .dci-visual-label,.dci-page .dci-image-tag{position:absolute;z-index:1;top:18px;left:18px;padding:7px 10px;border-radius:3px;background:rgba(25,27,26,.82);color:#fff;font-size:10px;font-weight:700;letter-spacing:.07em;text-transform:uppercase}
.dci-page .dci-hero-product figcaption{display:flex;align-items:center;justify-content:space-between;gap:22px;padding:20px 22px;background:var(--card_bg_black,#fff)}
.dci-page .dci-hero-product figcaption>div{display:flex;flex-direction:column;gap:3px}
.dci-page .dci-hero-product figcaption small{color:var(--dci-muted);font-size:9px;font-weight:700;letter-spacing:.08em}
.dci-page .dci-hero-product figcaption strong{font-size:22px}
.dci-page .dci-hero-product figcaption span{color:var(--dci-muted);font-size:12px}
.dci-page .dci-image-fallback{position:absolute;inset:0;display:grid;place-items:center;padding:30px;background:#f4f4f4;color:#555;font-size:13px;text-align:center}
.dci-page .dci-facts{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));margin-top:32px;padding:24px 0;border-block:1px solid var(--dci-line)}
.dci-page .dci-facts>div{display:flex;gap:16px;padding-right:28px}
.dci-page .dci-facts>div+div{padding-left:28px;border-left:1px solid var(--dci-line)}
.dci-page .dci-facts>div>span{color:#a77a10;font-size:12px;font-weight:700}
.dci-page .dci-facts p{display:flex;flex-direction:column;gap:3px}
.dci-page .dci-facts strong{font-size:14px}
.dci-page .dci-facts small{color:var(--dci-muted);font-size:11px;line-height:1.6}
.dci-page .dci-section-nav{display:flex;align-items:center;gap:clamp(20px,2.4vw,38px);overflow-x:auto;padding:14px 0;border-bottom:1px solid var(--dci-line);scrollbar-width:thin}
.dci-page .dci-section-nav a{flex:none;padding:6px 0;color:var(--dci-muted);font-size:12px;font-weight:600;white-space:nowrap}
.dci-page .dci-section-nav a:last-child{display:flex;align-items:center;gap:6px;margin-left:auto;color:var(--dci-ink)}
.dci-page .dci-section{padding:68px 0}
.dci-page .dci-section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:36px;margin-bottom:34px}
.dci-page .dci-section-head>.dci-link{flex:none;margin-bottom:6px}
.dci-page .dci-model-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
.dci-page .dci-model{display:flex;flex-direction:column;overflow:hidden;border:1px solid var(--dci-line);border-radius:8px;background:var(--card_bg_black,#fff)}
.dci-page .dci-model-image{position:relative;display:block;aspect-ratio:1.45;overflow:hidden;border-bottom:1px solid var(--dci-line);background:#fff}
.dci-page .dci-model-image img{height:100%;object-fit:cover;transition:transform .35s ease}
.dci-page .dci-model-image:hover img{transform:scale(1.025)}
.dci-page .dci-model-body{display:flex;flex:1;flex-direction:column;padding:24px}
.dci-page .dci-small-label{margin-bottom:10px;color:var(--dci-muted);font-size:10px;font-weight:700;letter-spacing:.07em;text-transform:uppercase}
.dci-page .dci-model h3{margin-bottom:12px;font-size:24px}
.dci-page .dci-model h3 span{display:block;margin-top:3px;color:var(--dci-muted);font-size:18px;font-weight:500;letter-spacing:-.01em}
.dci-page .dci-model-desc{min-height:52px;margin-bottom:17px;color:var(--dci-muted);font-size:13px;line-height:1.7}
.dci-page .dci-specs{border-top:1px solid var(--dci-line);font-size:12px}
.dci-page .dci-specs>div{display:flex;justify-content:space-between;gap:15px;padding:9px 0;border-bottom:1px solid var(--dci-line)}
.dci-page .dci-specs dt{color:var(--dci-muted)}
.dci-page .dci-specs dd{text-align:right;font-weight:600}
.dci-page .dci-model-options{display:grid;gap:9px;padding:18px 0 21px;color:var(--dci-muted);font-size:12px;line-height:1.7}
.dci-page .dci-model-options strong{color:var(--dci-ink)}
.dci-page .dci-model-actions{display:grid;gap:14px;margin-top:auto}
.dci-page .dci-model-actions .dci-button{width:100%}
.dci-page .dci-model-actions .dci-link{justify-content:space-between}
.dci-page .dci-after-note{margin-top:18px;font-size:12px}
.dci-page .dci-other-series{display:grid;grid-template-columns:1.35fr 1fr;gap:40px;margin-top:28px;padding:26px 28px;border:1px solid #ead69f;border-radius:8px;background:var(--dci-tint)}
.dci-page .dci-other-series h3{margin-bottom:8px}
.dci-page .dci-other-series p{color:var(--dci-muted);font-size:13px}
.dci-page .dci-other-series>div:last-child{display:flex;flex-direction:column;align-items:flex-start;justify-content:center;gap:13px}
.dci-page .dci-production-layout{display:grid;grid-template-columns:.95fr 1.05fr;gap:44px;align-items:start}
.dci-page .dci-construction{overflow:hidden;border:1px solid var(--dci-line);border-radius:8px;background:var(--card_bg_black,#fff)}
.dci-page .dci-construction-image{position:relative;aspect-ratio:1.5;overflow:hidden;background:#fff}
.dci-page .dci-construction-image img{height:100%;object-fit:cover}
.dci-page .dci-construction figcaption{padding:24px}
.dci-page .dci-construction h3{margin-bottom:12px}
.dci-page .dci-construction figcaption>p:not(.dci-kicker){color:var(--dci-muted);font-size:13px}
.dci-page .dci-construction figcaption>small{display:block;margin-top:15px;color:var(--dci-muted);font-size:10px}
.dci-page .dci-production-steps{display:grid;gap:0}
.dci-page .dci-production-steps li{display:grid;grid-template-columns:42px 1fr;gap:18px;padding:20px 0;border-top:1px solid var(--dci-line)}
.dci-page .dci-production-steps li:first-child{padding-top:0;border-top:0}
.dci-page .dci-production-steps>li>span{color:#a77a10;font-size:13px;font-weight:700}
.dci-page .dci-production-steps h3{margin-bottom:8px}
.dci-page .dci-production-steps p{color:var(--dci-muted);font-size:13px;line-height:1.75}
.dci-page .dci-production-foot{display:flex;align-items:center;justify-content:space-between;gap:30px;margin-top:30px;padding-top:24px;border-top:1px solid var(--dci-line)}
.dci-page .dci-production-foot p{max-width:880px;color:var(--dci-muted);font-size:13px}
.dci-page .dci-production-foot strong{color:var(--dci-ink)}
.dci-page .dci-formats{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
.dci-page .dci-format{display:flex;flex-direction:column;padding:26px;border:1px solid var(--dci-line);border-radius:8px;background:var(--card_bg_black,#fff)}
.dci-page .dci-format>span{margin-bottom:22px;color:#a77a10;font-size:10px;font-weight:700;letter-spacing:.07em}
.dci-page .dci-format>p{margin:13px 0 24px;color:var(--dci-muted);font-size:13px}
.dci-page .dci-format>div{display:flex;flex-direction:column;gap:5px;margin-top:auto;padding-top:18px;border-top:1px solid var(--dci-line)}
.dci-page .dci-format>div small{color:var(--dci-muted);font-size:10px;text-transform:uppercase}
.dci-page .dci-format>div strong{font-size:13px;line-height:1.65}
.dci-page .dci-brief-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px;margin-bottom:34px}
.dci-page .dci-brief-card{padding:26px;border:1px solid var(--dci-line);border-radius:8px;background:var(--card_bg_black,#fff)}
.dci-page .dci-brief-card--result{background:var(--dci-soft)}
.dci-page .dci-brief-card h3{margin-bottom:18px;font-size:22px}
.dci-page .dci-brief-card ul{display:grid;gap:11px;margin:0;padding:0;list-style:none}
.dci-page .dci-brief-card li{position:relative;margin:0;padding:0 0 0 20px;color:var(--dci-muted);font-size:13px;line-height:1.65}
.dci-page .dci-brief-card li::before{content:"";position:absolute;top:.7em;left:0;width:6px;height:6px;margin:0;border:0;border-radius:50%;background:var(--dci-accent)}
.dci-page .dci-matrix{border-top:1px solid var(--dci-line)}
.dci-page .dci-matrix-head,.dci-page .dci-matrix-row{display:grid;grid-template-columns:.65fr 1fr 1fr;gap:34px;padding:18px 20px;border-bottom:1px solid var(--dci-line)}
.dci-page .dci-matrix-head{color:var(--dci-muted);font-size:10px;font-weight:700;letter-spacing:.06em;text-transform:uppercase}
.dci-page .dci-matrix-row h3{font-size:18px}
.dci-page .dci-matrix-row p{color:var(--dci-muted);font-size:13px}
.dci-page .dci-matrix-row p small{display:none;margin-bottom:4px;color:var(--dci-ink);font-size:10px;font-weight:700;text-transform:uppercase}
.dci-page .dci-caution{display:grid;grid-template-columns:.65fr 2fr;gap:34px;margin-top:28px;padding:22px 24px;border-left:4px solid var(--dci-accent);background:var(--dci-tint)}
.dci-page .dci-caution p{color:var(--dci-muted);font-size:12px}
.dci-page .dci-document-request{display:grid;grid-template-columns:minmax(0,1.18fr) minmax(320px,.82fr);gap:20px}
.dci-page .dci-document-copy,.dci-page .dci-document-action{padding:28px;border:1px solid var(--dci-line);border-radius:8px}
.dci-page .dci-document-copy{background:var(--card_bg_black,#fff)}
.dci-page .dci-document-copy>h3,.dci-page .dci-document-action>h3{margin-bottom:12px;font-size:24px}
.dci-page .dci-document-copy>p:not(.dci-small-label),.dci-page .dci-document-action>p:not(.dci-small-label){color:var(--dci-muted);font-size:13px;line-height:1.7}
.dci-page .dci-document-types{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0 24px;margin:22px 0 0;padding:0;list-style:none}
.dci-page .dci-document-types li{display:flex;flex-direction:column;gap:5px;margin:0;padding:15px 0;border-top:1px solid var(--dci-line)}
.dci-page .dci-document-types li::before{display:none}
.dci-page .dci-document-types strong{font-size:13px}
.dci-page .dci-document-types span{color:var(--dci-muted);font-size:11px;line-height:1.6}
.dci-page .dci-document-action{background:#252725;color:#fff}
.dci-page .dci-document-action>p:not(.dci-small-label){color:#d0d3d0}
.dci-page .dci-document-action .dci-small-label{color:#e4b742}
.dci-page .dci-document-models{display:grid;gap:8px;margin:20px 0}
.dci-page .dci-document-models a{display:flex;align-items:center;justify-content:space-between;gap:16px;min-height:52px;padding:10px 13px;border:1px solid rgba(255,255,255,.2);border-radius:5px;background:rgba(255,255,255,.04);color:#fff;transition:border-color .18s ease,background-color .18s ease}
.dci-page .dci-document-models a:hover,.dci-page .dci-document-models a:focus-visible{border-color:var(--dci-accent);background:rgba(255,180,0,.1)}
.dci-page .dci-document-models strong{font-size:13px}
.dci-page .dci-document-models span{color:#c8cbc8;font-size:10px}
.dci-page .dci-document-action>.dci-button{width:100%}
.dci-page .dci-document-company-link{margin-top:17px;color:#fff}
.dci-page .dci-document-company-link:hover{color:#ffd36c}
.dci-page .dci-document-note{display:grid;grid-template-columns:1.2fr 1fr;gap:36px;margin-top:28px;padding:24px;border:1px solid var(--dci-line);border-radius:8px;background:var(--card_bg_black,#fff)}
.dci-page .dci-document-note strong{display:block;margin-bottom:7px}
.dci-page .dci-document-note p{color:var(--dci-muted);font-size:12px}
.dci-page .dci-terms-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px}
.dci-page .dci-terms-grid>article{padding:28px;border:1px solid var(--dci-line);border-radius:8px;background:var(--card_bg_black,#fff)}
.dci-page .dci-terms-grid>article>p:not(.dci-small-label){margin:13px 0 20px;color:var(--dci-muted);font-size:13px}
.dci-page .dci-terms-grid dl>div{display:grid;grid-template-columns:100px 1fr;gap:18px;padding:12px 0;border-top:1px solid var(--dci-line);font-size:12px}
.dci-page .dci-terms-grid dt{font-weight:700}
.dci-page .dci-terms-grid dd{color:var(--dci-muted)}
.dci-page .dci-commercial-strip{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:30px;margin-top:30px}
.dci-page .dci-commercial-strip article{padding-top:20px;border-top:1px solid var(--dci-line)}
.dci-page .dci-commercial-strip h3{margin-bottom:9px;font-size:18px}
.dci-page .dci-commercial-strip p{color:var(--dci-muted);font-size:12px}
.dci-page .dci-commercial-strip .dci-link{margin-top:12px}
.dci-page .dci-order-steps{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:26px}
.dci-page .dci-order-steps li{padding-top:18px;border-top:1px solid var(--dci-line)}
.dci-page .dci-order-steps li>span{display:block;margin-bottom:15px;color:#9a9a9a;font-size:28px}
.dci-page .dci-order-steps h3{margin-bottom:9px;font-size:19px}
.dci-page .dci-order-steps p{color:var(--dci-muted);font-size:13px}
.dci-page .dci-faq-layout{display:grid;grid-template-columns:.6fr 1.4fr;gap:60px}
.dci-page .dci-faq-item{border-top:1px solid var(--dci-line)}
.dci-page .dci-faq-item:last-child{border-bottom:1px solid var(--dci-line)}
.dci-page .dci-faq-item summary{display:flex;align-items:flex-start;justify-content:space-between;gap:24px;padding:21px 0;cursor:pointer;list-style:none;font-size:16px;font-weight:600}
.dci-page .dci-faq-item summary::-webkit-details-marker{display:none}
.dci-page .dci-faq-item summary .dci-icon{margin-top:3px;transition:transform .18s ease}
.dci-page .dci-faq-item[open] summary .dci-icon{transform:rotate(45deg)}
.dci-page .dci-faq-item>div{padding:0 42px 23px 0;color:var(--dci-muted);font-size:14px}
.dci-page .dci-request{display:grid;grid-template-columns:.9fr 1.1fr;gap:clamp(36px,5vw,78px);align-items:start}
.dci-page .dci-request-copy>p:not(.dci-kicker){max-width:580px;color:#d4d4d4}
.dci-page .dci-request-copy ul{display:grid;gap:10px;margin-top:24px}
.dci-page .dci-request-copy li{position:relative;padding-left:23px;color:#eee;font-size:13px}
.dci-page .dci-request-copy li::before{content:"";position:absolute;left:0;top:.65em;width:6px;height:6px;border-radius:50%;background:var(--dci-accent)}
.dci-page .dci-request-panel{padding:30px;border-radius:8px;background:#fff;color:#242424;box-shadow:0 0 0 1px rgba(0,0,0,.06),0 1px 2px -1px rgba(0,0,0,.06),0 2px 4px rgba(0,0,0,.04)}
.dci-page .dci-request-panel>.dci-kicker{margin-bottom:10px;font-size:10px}
.dci-page .dci-request-panel>h3{margin-bottom:10px;font-size:24px}
.dci-page .dci-request-panel>p:not(.dci-kicker,.dci-selected,.dci-request-note){color:#666;font-size:13px;line-height:1.7}
.dci-page .dci-selected{margin:18px 0 0;padding:10px 13px;border-left:2px solid var(--dci-accent);background:var(--dci-tint);color:#5a4500;font-size:12px;line-height:1.6}
.dci-page .dci-request-actions{display:grid;gap:10px;margin-top:22px}
.dci-page .dci-request-actions .dci-button{width:100%;justify-content:space-between;padding-inline:18px 16px}
.dci-page .dci-request-actions .dci-button--max{justify-content:flex-start;border-color:#dcdcdc;background:#fff;color:#242424}
.dci-page .dci-request-actions .dci-button--max:hover{border-color:var(--dci-accent);background:#fffaf0;color:#111}
.dci-page .dci-request-note{margin:15px 0 22px;color:#666;font-size:11px;line-height:1.6}
.dci-page .dci-direct{display:flex;flex-direction:column;gap:4px;padding-top:19px;border-top:1px solid var(--dci-line)}
.dci-page .dci-direct a{font-size:20px;font-weight:500;line-height:1.5;overflow-wrap:anywhere}
.dci-page .dci-direct a+a{font-size:16px}
.dci-page .dci-direct span{margin-top:5px;color:#777;font-size:11px}
.dci-page .dci-whole-object{display:grid;grid-template-columns:1.35fr 1fr;gap:42px;padding:30px;border:1px solid var(--dci-line);border-radius:8px;background:var(--dci-soft)}
.dci-page .dci-whole-object h2{margin-bottom:12px;font-size:28px}
.dci-page .dci-whole-object p:not(.dci-kicker){color:var(--dci-muted);font-size:14px}
.dci-page .dci-whole-object>div:last-child{display:flex;flex-direction:column;align-items:flex-start;justify-content:center;gap:16px;padding-left:32px;border-left:1px solid var(--dci-line)}
.dci-page .dci-related{display:flex;align-items:center;justify-content:space-between;gap:26px;margin-top:30px;padding:25px 0 38px;border-top:1px solid var(--dci-line)}

@media(max-width:1100px){.dci-page .dci-model-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.dci-page .dci-model:last-child{grid-column:1/-1}.dci-page .dci-document-request{grid-template-columns:1fr}.dci-page .dci-request{gap:32px}.dci-page .dci-order-steps{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:980px){.dci-page .dci-hero-grid{grid-template-columns:1fr;gap:28px}.dci-page .dci-hero-image{aspect-ratio:1.75}.dci-page .dci-production-layout,.dci-page .dci-request{grid-template-columns:1fr}.dci-page .dci-faq-layout{grid-template-columns:1fr;gap:24px}.dci-page .dci-request-copy{max-width:720px}}
@media(max-width:767px){.dci-page{font-size:15px}.dci-page h1{font-size:clamp(32px,8.4vw,44px)}.dci-page h2{font-size:29px}.dci-page .dci-hero-lead{font-size:19px}.dci-page .dci-hero-image{aspect-ratio:1.35}.dci-page .dci-facts{grid-template-columns:1fr;gap:16px}.dci-page .dci-facts>div,.dci-page .dci-facts>div+div{padding:0;border:0}.dci-page .dci-section-nav{gap:24px}.dci-page .dci-section-nav a:last-child{margin-left:0}.dci-page .dci-section{padding:46px 0}.dci-page .dci-section-head{flex-direction:column;align-items:flex-start;gap:16px;margin-bottom:27px}.dci-page .dci-model-grid,.dci-page .dci-formats,.dci-page .dci-brief-grid,.dci-page .dci-terms-grid,.dci-page .dci-commercial-strip{grid-template-columns:1fr}.dci-page .dci-model:last-child{grid-column:auto}.dci-page .dci-model-image{aspect-ratio:1.55}.dci-page .dci-other-series,.dci-page .dci-document-note,.dci-page .dci-caution{grid-template-columns:1fr;gap:18px}.dci-page .dci-brief-card,.dci-page .dci-document-copy,.dci-page .dci-document-action{padding:23px 20px}.dci-page .dci-matrix-head{display:none}.dci-page .dci-matrix-row{grid-template-columns:1fr;gap:12px;padding-inline:0}.dci-page .dci-matrix-row p small{display:block}.dci-page .dci-document-types{grid-template-columns:1fr}.dci-page .dci-order-steps{grid-template-columns:1fr;gap:0}.dci-page .dci-order-steps li{display:grid;grid-template-columns:42px 1fr;padding:20px 0}.dci-page .dci-order-steps li>span{grid-row:1/3;margin:0}.dci-page .dci-order-steps h3,.dci-page .dci-order-steps p{grid-column:2}.dci-page .dci-whole-object{grid-template-columns:1fr;gap:20px;padding:24px}.dci-page .dci-whole-object>div:last-child{padding:20px 0 0;border:0;border-top:1px solid var(--dci-line)}.dci-page .dci-related{flex-direction:column;align-items:stretch;gap:0}.dci-page .dci-related .dci-link{justify-content:space-between;padding:14px 0;border-bottom:1px solid var(--dci-line)}}
@media(max-width:520px){.dci-page .dci-actions{align-items:stretch;flex-direction:column;gap:11px}.dci-page .dci-actions .dci-button{width:100%}.dci-page .dci-hero-product figcaption{align-items:flex-start;flex-direction:column}.dci-page .dci-request-panel{padding:24px 19px}.dci-page .dci-request-actions .dci-button{font-size:12px}}
@media(prefers-reduced-motion:reduce){.dci-page *{scroll-behavior:auto!important;transition:none!important}}
@media print{.dci-page .dci-section-nav,.dci-page .dci-request-panel{display:none!important}.dci-page .dci-section{padding:24px 0}.dci-page .dci-hero-grid,.dci-page .dci-production-layout,.dci-page .dci-request{grid-template-columns:1fr}.dci-page .dci-model-grid,.dci-page .dci-formats{grid-template-columns:repeat(2,minmax(0,1fr))}}

/* End */


/* Start:/local/tools/dc-light-b2b/industrial-production/native-layout.css?17894749602834*/
/* Exact-route bridge to the measured Aspro B2B content grid. */
.dci-page.dci-native{--dci-site-inner-max:calc(1500px - 64px);width:100%;max-width:none;min-width:0;margin:0;padding:0;border:0;border-radius:0;background:transparent;box-shadow:none}
.dci-page.dci-native .dci-layout{width:100%;max-width:none;min-width:0;container-type:inline-size;container-name:dci}
.dci-page.dci-native .dci-layout>:is(.dci-hero,.dci-section-nav,.dci-section,.dci-whole-object,.dci-related){width:100%;max-width:var(--dci-site-inner-max);margin-inline:auto}
.dci-page.dci-native .dci-breadcrumbs{width:100%;max-width:none;margin-inline:0}
.dci-page.dci-native :where(h1,h2,h3){text-wrap:balance}
.dci-page.dci-native :where(p,li){text-wrap:pretty}

.dci-page.dci-native :is(#dci-production,#dci-parameters,#dci-documents,#dci-terms,#dci-request){position:relative;isolation:isolate}
.dci-page.dci-native :is(#dci-production,#dci-documents){background:var(--dci-soft)}
.dci-page.dci-native #dci-terms{background:var(--dci-tint)}
.dci-page.dci-native #dci-request{background:var(--dci-dark);color:#fff}
.dci-page.dci-native :is(#dci-production,#dci-documents,#dci-terms,#dci-request)::before{content:"";position:absolute;inset:0;z-index:-1;clip-path:inset(0 -100vmax)}
.dci-page.dci-native :is(#dci-production,#dci-documents)::before{background:var(--dci-soft);box-shadow:0 0 0 100vmax var(--dci-soft)}
.dci-page.dci-native #dci-terms::before{background:var(--dci-tint);box-shadow:0 0 0 100vmax var(--dci-tint)}
.dci-page.dci-native #dci-request::before{background:var(--dci-dark);box-shadow:0 0 0 100vmax var(--dci-dark)}
.dci-page.dci-native #dci-request{padding-block:58px}
.dci-page.dci-native #dci-request .dci-kicker{color:#d0d0d0}
.dci-page.dci-native #dci-request .dci-request-panel .dci-kicker{color:#686868}
.dci-page.dci-native .dci-whole-object{margin-top:clamp(28px,3vw,44px)}

.theme-dark .dci-page.dci-native{--dci-ink:#f2f3f2;--dci-muted:#c8cbc8;--dci-soft:#292b29;--dci-tint:#37342b;--dci-line:#444743}
.theme-dark .dci-page.dci-native :is(.dci-model,.dci-construction,.dci-format,.dci-brief-card,.dci-document-copy,.dci-document-note,.dci-terms-grid>article){background:#303230}
.theme-dark .dci-page.dci-native :is(.dci-hero-product,.dci-hero-product figcaption){background:#303230}
.theme-dark .dci-page.dci-native :is(.dci-model-image,.dci-construction-image){background:#f4f4f4}
.theme-dark .dci-page.dci-native .dci-button--outline{border-color:#d2d2d2;color:#eee}
.theme-dark .dci-page.dci-native #dci-request .dci-button--outline{border-color:#d2d2d2;background:#fff;color:#242424}
.theme-dark .dci-page.dci-native #dci-request .dci-request-panel{box-shadow:0 0 0 1px rgba(255,255,255,.08)}

@media(max-width:767px){.dci-page.dci-native #dci-request{padding-block:46px}.dci-page.dci-native .dci-whole-object{margin-top:28px}}

/* End */


/* Start:/local/tools/dc-light-b2b/native-family.css?178956209327236*/
/* DC-Light native B2B family — shared first-screen contract, 15.09.2026.
 * Loaded only on reviewed native routes, after each route stylesheet.
 * The route namespaces and form/content implementations remain independent. */

:is(
  .dch-page.dch-native,
  .dsv-page.dsv-native,
  .dco-page.dco-native,
  .dck-page.dck-native,
  .dcl-calc.dcl-native,
  .ddp-page.ddp-native,
  .dhr-page.dhr-native,
  .dtr-page.dtr-native,
  .dcbs-page.dcbs-native,
  .dht-page.dht-native,
  .dmi-page.dmi-native,
  .ded-page.ded-native,
  .dci-page.dci-native,
  .dsf-page.dsf-native,
  .dwh-page.dwh-native,
  .ddt-page.ddt-native,
  .dac-page.dac-native,
  .dmc-page.dmc-native,
  .dzh-page.dzh-native
) {
  --dc-native-hero-gap: clamp(40px, 4cqw, 56px);
  --dc-native-line: var(--stroke_black, #e8e8e8);
}

:is(
  .dch-page.dch-native .dch-hero h1,
  .dsv-page.dsv-native .dsv-hero h1,
  .dco-page.dco-native .dco-hero h1,
  .dck-page.dck-native .dck-hero h1,
  .dcl-calc.dcl-native .dcl-hero h1,
  .ddp-page.ddp-native .ddp-hero h1,
  .dhr-page.dhr-native .dhr-hero h1,
  .dtr-page.dtr-native .dtr-hero h1,
  .dcbs-page.dcbs-native .dcbs-hero h1,
  .dht-page.dht-native .dht-hero h1,
  .dmi-page.dmi-native .dmi-hero h1,
  .ded-page.ded-native .ded-hero h1,
  .dci-page.dci-native .dci-hero h1,
  .dsf-page.dsf-native .dsf-hero h1,
  .dwh-page.dwh-native .dwh-hero h1,
  .ddt-page.ddt-native .ddt-hero h1,
  .dac-page.dac-native .dac-hero h1,
  .dmc-page.dmc-native .dmc-hero h1,
  .dzh-page.dzh-native .dzh-hero h1
) {
  max-width: 680px;
  margin-bottom: 23px;
  font-size: clamp(38px, 3.5vw, 56px);
  font-weight: 600;
  line-height: 1.09;
  letter-spacing: -.04em;
  text-wrap: balance;
}

:is(
  .dch-page.dch-native .dch-breadcrumbs,
  .dsv-page.dsv-native .dsv-breadcrumbs,
  .dco-page.dco-native .dco-breadcrumb,
  .dck-page.dck-native .dck-breadcrumbs,
  .dcl-calc.dcl-native .dcl-breadcrumbs,
  .ddp-page.ddp-native .ddp-breadcrumbs,
  .dhr-page.dhr-native .dhr-breadcrumbs,
  .dtr-page.dtr-native .dtr-breadcrumbs,
  .dcbs-page.dcbs-native .dcbs-breadcrumbs,
  .dht-page.dht-native .dht-breadcrumbs,
  .dmi-page.dmi-native .dmi-breadcrumbs,
  .ded-page.ded-native .ded-breadcrumbs,
  .dci-page.dci-native .dci-breadcrumbs,
  .dsf-page.dsf-native .dsf-breadcrumbs,
  .dwh-page.dwh-native .dwh-breadcrumbs,
  .ddt-page.ddt-native .ddt-breadcrumbs,
  .dac-page.dac-native .dac-breadcrumbs,
  .dmc-page.dmc-native .dmc-breadcrumbs,
  .dzh-page.dzh-native .dzh-breadcrumbs
) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 0;
  margin: 0;
  padding: 25px 0 34px;
  gap: 0;
  color: #888;
  font-size: 12px;
  line-height: 1.7;
}

.dch-page.dch-native .dch-breadcrumbs ol,
.dsv-page.dsv-native .dsv-breadcrumbs ol,
.dck-page.dck-native .dck-breadcrumbs ol,
.ddp-page.ddp-native .ddp-breadcrumbs ol,
.dhr-page.dhr-native .dhr-breadcrumbs ol,
.dtr-page.dtr-native .dtr-breadcrumbs ol,
.dcbs-page.dcbs-native .dcbs-breadcrumbs ol,
.dht-page.dht-native .dht-breadcrumbs ol,
.dmi-page.dmi-native .dmi-breadcrumbs ol,
.ded-page.ded-native .ded-breadcrumbs ol,
.dci-page.dci-native .dci-breadcrumbs ol,
.dsf-page.dsf-native .dsf-breadcrumbs ol,
.dwh-page.dwh-native .dwh-breadcrumbs ol,
.ddt-page.ddt-native .ddt-breadcrumbs ol,
.dac-page.dac-native .dac-breadcrumbs ol,
.dmc-page.dmc-native .dmc-breadcrumbs ol,
.dzh-page.dzh-native .dzh-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  min-height: 20.4px;
  margin: 0;
  padding: 0;
  gap: 0;
  list-style: none;
}

.dch-page.dch-native .dch-breadcrumbs li,
.dsv-page.dsv-native .dsv-breadcrumbs li,
.dck-page.dck-native .dck-breadcrumbs li,
.ddp-page.ddp-native .ddp-breadcrumbs li,
.dhr-page.dhr-native .dhr-breadcrumbs li,
.dtr-page.dtr-native .dtr-breadcrumbs li,
.dcbs-page.dcbs-native .dcbs-breadcrumbs li,
.dht-page.dht-native .dht-breadcrumbs li,
.dmi-page.dmi-native .dmi-breadcrumbs li,
.ded-page.ded-native .ded-breadcrumbs li,
.dci-page.dci-native .dci-breadcrumbs li,
.dsf-page.dsf-native .dsf-breadcrumbs li,
.dwh-page.dwh-native .dwh-breadcrumbs li,
.ddt-page.ddt-native .ddt-breadcrumbs li,
.dac-page.dac-native .dac-breadcrumbs li,
.dmc-page.dmc-native .dmc-breadcrumbs li,
.dzh-page.dzh-native .dzh-breadcrumbs li,
.dco-page.dco-native .dco-breadcrumb > :is(a, span),
.dcl-calc.dcl-native .dcl-breadcrumbs .breadcrumbs__item {
  display: flex;
  align-items: center;
  min-height: 20.4px;
  margin: 0;
  padding: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  list-style: none;
}

.dch-page.dch-native .dch-breadcrumbs :is(a, [aria-current]),
.dsv-page.dsv-native .dsv-breadcrumbs :is(a, [aria-current]),
.dck-page.dck-native .dck-breadcrumbs :is(a, [aria-current]),
.ddp-page.ddp-native .ddp-breadcrumbs :is(a, [aria-current]),
.dhr-page.dhr-native .dhr-breadcrumbs :is(a, [aria-current]),
.dtr-page.dtr-native .dtr-breadcrumbs :is(a, [aria-current]),
.dcbs-page.dcbs-native .dcbs-breadcrumbs :is(a, [aria-current]),
.dht-page.dht-native .dht-breadcrumbs :is(a, [aria-current]),
.dmi-page.dmi-native .dmi-breadcrumbs :is(a, [aria-current]),
.ded-page.ded-native .ded-breadcrumbs :is(a, [aria-current]),
.dci-page.dci-native .dci-breadcrumbs :is(a, [aria-current]),
.dsf-page.dsf-native .dsf-breadcrumbs :is(a, [aria-current]),
.dwh-page.dwh-native .dwh-breadcrumbs :is(a, [aria-current]),
.ddt-page.ddt-native .ddt-breadcrumbs :is(a, [aria-current]),
.dac-page.dac-native .dac-breadcrumbs :is(a, [aria-current]),
.dmc-page.dmc-native .dmc-breadcrumbs :is(a, [aria-current]),
.dzh-page.dzh-native .dzh-breadcrumbs :is(a, [aria-current]),
.dco-page.dco-native .dco-breadcrumb > :is(a, span),
.dcl-calc.dcl-native .dcl-breadcrumbs :is(.breadcrumbs__link, .breadcrumbs__item-name) {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.dch-page.dch-native .dch-breadcrumbs li + li::before,
.dsv-page.dsv-native .dsv-breadcrumbs li + li::before,
.dck-page.dck-native .dck-breadcrumbs li + li::before,
.ddp-page.ddp-native .ddp-breadcrumbs li + li::before,
.dhr-page.dhr-native .dhr-breadcrumbs li + li::before,
.dtr-page.dtr-native .dtr-breadcrumbs li + li::before,
.dcbs-page.dcbs-native .dcbs-breadcrumbs li + li::before,
.dht-page.dht-native .dht-breadcrumbs li + li::before,
.dmi-page.dmi-native .dmi-breadcrumbs li + li::before,
.ded-page.ded-native .ded-breadcrumbs li + li::before,
.dci-page.dci-native .dci-breadcrumbs li + li::before,
.dsf-page.dsf-native .dsf-breadcrumbs li + li::before,
.dwh-page.dwh-native .dwh-breadcrumbs li + li::before,
.ddt-page.ddt-native .ddt-breadcrumbs li + li::before,
.dac-page.dac-native .dac-breadcrumbs li + li::before,
.dmc-page.dmc-native .dmc-breadcrumbs li + li::before,
.dzh-page.dzh-native .dzh-breadcrumbs li + li::before {
  content: "/";
  margin: 0 12px;
  color: #aaa;
  font-weight: 400;
}

.dck-page.dck-native .dck-breadcrumbs li:not(:last-child)::after {
  content: none;
}

.dco-page.dco-native .dco-breadcrumb > .dco-icon {
  display: none;
}

.dco-page.dco-native .dco-breadcrumb > a:not(:first-child)::before,
.dco-page.dco-native .dco-breadcrumb > span::before {
  content: "/";
  margin: 0 12px;
  color: #aaa;
  font-weight: 400;
}

.dcl-calc.dcl-native .dcl-breadcrumbs .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  min-height: 20.4px;
  margin: 0;
  padding: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.dcl-calc.dcl-native .dcl-breadcrumbs .breadcrumbs__separator {
  display: none;
}

.dcl-calc.dcl-native .dcl-breadcrumbs .breadcrumbs__item:not(:first-child)::before {
  content: "/";
  margin: 0 12px;
  color: #aaa;
  font-size: inherit;
  font-weight: 400;
}

:is(
  .dch-page.dch-native .dch-hero,
  .dsv-page.dsv-native .dsv-hero,
  .dco-page.dco-native .dco-hero,
  .dck-page.dck-native .dck-hero,
  .dcl-calc.dcl-native .dcl-hero,
  .ddp-page.ddp-native .ddp-hero,
  .dhr-page.dhr-native .dhr-hero,
  .dtr-page.dtr-native .dtr-hero,
  .dcbs-page.dcbs-native .dcbs-hero,
  .dht-page.dht-native .dht-hero,
  .dmi-page.dmi-native .dmi-hero,
  .ded-page.ded-native .ded-hero,
  .dci-page.dci-native .dci-hero,
  .dsf-page.dsf-native .dsf-hero,
  .dwh-page.dwh-native .dwh-hero,
  .ddt-page.ddt-native .ddt-hero,
  .dac-page.dac-native .dac-hero,
  .dmc-page.dmc-native .dmc-hero,
  .dzh-page.dzh-native .dzh-hero
) {
  padding-top: 0;
  padding-bottom: 40px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

:is(
  .dch-page.dch-native .dch-hero-grid,
  .dsv-page.dsv-native .dsv-hero-grid,
  .dco-page.dco-native .dco-hero-grid,
  .dck-page.dck-native .dck-hero-grid,
  .dcl-calc.dcl-native .dcl-hero-grid,
  .ddp-page.ddp-native .ddp-hero-grid,
  .dhr-page.dhr-native .dhr-hero-grid,
  .dtr-page.dtr-native .dtr-hero-grid,
  .dcbs-page.dcbs-native .dcbs-hero-grid,
  .dht-page.dht-native .dht-hero-grid,
  .dmi-page.dmi-native .dmi-hero-grid,
  .ded-page.ded-native .ded-hero-grid,
  .dci-page.dci-native .dci-hero-grid,
  .dsf-page.dsf-native .dsf-hero-grid,
  .dwh-page.dwh-native .dwh-hero-grid,
  .ddt-page.ddt-native .ddt-hero-grid,
  .dac-page.dac-native .dac-hero-grid,
  .dmc-page.dmc-native .dmc-hero-grid,
  .dzh-page.dzh-native .dzh-hero-grid
) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--dc-native-hero-gap);
  align-items: start;
}

:is(
  .dch-page.dch-native .dch-hero-copy,
  .dsv-page.dsv-native .dsv-hero-copy,
  .dco-page.dco-native .dco-hero-copy,
  .dck-page.dck-native .dck-hero-copy,
  .dcl-calc.dcl-native .dcl-hero-copy,
  .ddp-page.ddp-native .ddp-hero-copy,
  .dhr-page.dhr-native .dhr-hero-copy,
  .dtr-page.dtr-native .dtr-hero-copy,
  .dcbs-page.dcbs-native .dcbs-hero-grid > div:first-child,
  .dht-page.dht-native .dht-hero-copy,
  .dmi-page.dmi-native .dmi-hero-copy,
  .ded-page.ded-native .ded-hero-grid > div:first-child,
  .dci-page.dci-native .dci-hero-copy,
  .dsf-page.dsf-native .dsf-hero-copy,
  .dwh-page.dwh-native .dwh-hero-copy,
  .ddt-page.ddt-native .ddt-hero-copy,
  .dac-page.dac-native .dac-hero-copy,
  .dmc-page.dmc-native .dmc-hero-copy,
  .dzh-page.dzh-native .dzh-hero-copy
) {
  min-width: 0;
  padding: 8px 0;
}

:is(
  .dch-page.dch-native .dch-hero .dch-kicker,
  .dsv-page.dsv-native .dsv-hero .dsv-kicker,
  .dco-page.dco-native .dco-hero .dco-overline,
  .dck-page.dck-native .dck-hero .dck-kicker,
  .dcl-calc.dcl-native .dcl-hero .dcl-eyebrow,
  .ddp-page.ddp-native .ddp-hero .ddp-kicker,
  .dhr-page.dhr-native .dhr-hero .dhr-kicker,
  .dtr-page.dtr-native .dtr-hero .dtr-kicker,
  .dcbs-page.dcbs-native .dcbs-hero .dcbs-kicker,
  .dht-page.dht-native .dht-hero .dht-kicker,
  .dmi-page.dmi-native .dmi-hero .dmi-kicker,
  .ded-page.ded-native .ded-hero .ded-kicker,
  .dci-page.dci-native .dci-hero .dci-kicker,
  .dsf-page.dsf-native .dsf-hero .dsf-kicker,
  .dwh-page.dwh-native .dwh-hero .dwh-kicker,
  .ddt-page.ddt-native .ddt-hero .ddt-kicker,
  .dac-page.dac-native .dac-hero .dac-kicker,
  .dmc-page.dmc-native .dmc-hero .dmc-kicker,
  .dzh-page.dzh-native .dzh-hero .dzh-kicker
) {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 17px;
  color: #666;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .09em;
  text-transform: uppercase;
}

:is(
  .dch-page.dch-native .dch-hero .dch-lead,
  .dsv-page.dsv-native .dsv-hero .dsv-lead,
  .dco-page.dco-native .dco-hero .dco-lead,
  .dck-page.dck-native .dck-hero .dck-lead,
  .dcl-calc.dcl-native .dcl-hero .dcl-hero-lead,
  .ddp-page.ddp-native .ddp-hero .ddp-lead,
  .dhr-page.dhr-native .dhr-hero .dhr-lead,
  .dtr-page.dtr-native .dtr-hero .dtr-lead,
  .dcbs-page.dcbs-native .dcbs-hero .dcbs-lead,
  .dht-page.dht-native .dht-hero .dht-lead,
  .dmi-page.dmi-native .dmi-hero .dmi-lead,
  .ded-page.ded-native .ded-hero .ded-lead,
  .dci-page.dci-native .dci-hero .dci-hero-lead,
  .dsf-page.dsf-native .dsf-hero .dsf-lead,
  .dwh-page.dwh-native .dwh-hero .dwh-lead,
  .ddt-page.ddt-native .ddt-hero .ddt-lead,
  .dac-page.dac-native .dac-hero .dac-lead,
  .dmc-page.dmc-native .dmc-hero .dmc-lead,
  .dzh-page.dzh-native .dzh-hero .dzh-lead
) {
  font-size: 18px;
  line-height: 1.6;
}

:is(
  .dch-page.dch-native .dch-hero .dch-actions,
  .dsv-page.dsv-native .dsv-hero .dsv-actions,
  .dco-page.dco-native .dco-hero .dco-actions,
  .dck-page.dck-native .dck-hero .dck-hero-actions,
  .dcl-calc.dcl-native .dcl-hero .dcl-actions,
  .ddp-page.ddp-native .ddp-hero .ddp-actions,
  .dhr-page.dhr-native .dhr-hero .dhr-actions,
  .dtr-page.dtr-native .dtr-hero .dtr-actions,
  .dcbs-page.dcbs-native .dcbs-hero .dcbs-actions,
  .dht-page.dht-native .dht-hero .dht-actions,
  .dmi-page.dmi-native .dmi-hero .dmi-actions,
  .ded-page.ded-native .ded-hero .ded-actions,
  .dci-page.dci-native .dci-hero .dci-actions,
  .dsf-page.dsf-native .dsf-hero .dsf-actions,
  .dwh-page.dwh-native .dwh-hero .dwh-actions,
  .ddt-page.ddt-native .ddt-hero .ddt-actions,
  .dac-page.dac-native .dac-hero .dac-actions,
  .dmc-page.dmc-native .dmc-hero .dmc-actions,
  .dzh-page.dzh-native .dzh-hero .dzh-actions
) {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 12px;
}

:is(
  .dch-page.dch-native .dch-hero .dch-btn,
  .dsv-page.dsv-native .dsv-hero .dsv-btn,
  .dco-page.dco-native .dco-hero .dco-btn,
  .dck-page.dck-native .dck-hero .dck-btn,
  .dck-page.dck-native .dck-hero .dck-textlink,
  .dcl-calc.dcl-native .dcl-hero .dcl-button,
  .ddp-page.ddp-native .ddp-hero .ddp-btn,
  .dhr-page.dhr-native .dhr-hero .dhr-btn,
  .dtr-page.dtr-native .dtr-hero .dtr-btn,
  .dcbs-page.dcbs-native .dcbs-hero .dcbs-btn,
  .dht-page.dht-native .dht-hero .dht-btn,
  .dmi-page.dmi-native .dmi-hero .dmi-btn,
  .ded-page.ded-native .ded-hero .ded-btn,
  .dci-page.dci-native .dci-hero .dci-button,
  .dsf-page.dsf-native .dsf-hero .dsf-btn,
  .dwh-page.dwh-native .dwh-hero .dwh-btn,
  .ddt-page.ddt-native .ddt-hero .ddt-btn,
  .dac-page.dac-native .dac-hero .dac-btn,
  .dmc-page.dmc-native .dmc-hero .dmc-btn,
  .dzh-page.dzh-native .dzh-hero .dzh-btn
) {
  min-height: 52px;
  padding: 14px 21px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.4;
}

.dck-page.dck-native .dck-hero .dck-textlink,
.dcl-calc.dcl-native .dcl-hero .dcl-button--text {
  border: 1px solid #d9d9d9;
  background: transparent;
  color: inherit;
  text-decoration: none !important;
}

.dck-page.dck-native .dck-hero .dck-textlink:hover,
.dcl-calc.dcl-native .dcl-hero .dcl-button--text:hover {
  border-color: var(--theme-base-color, #ffb400);
  background: #fff8e5;
}

.dck-page.dck-native .dck-hero-actions .dck-small {
  order: 3;
  flex-basis: 100%;
  margin: 2px 0 0;
}

:is(
  .dch-page.dch-native .dch-hero-media,
  .dsv-page.dsv-native .dsv-hero-media,
  .dco-page.dco-native .dco-hero-visual,
  .dck-page.dck-native .dck-hero-photo,
  .dhr-page.dhr-native .dhr-hero-media,
  .dtr-page.dtr-native .dtr-hero-media,
  .dcbs-page.dcbs-native .dcbs-hero-media,
  .dht-page.dht-native .dht-hero-media,
  .dmi-page.dmi-native .dmi-hero-photo,
  .ded-page.ded-native .ded-hero-media,
  .dci-page.dci-native .dci-hero-product,
  .dsf-page.dsf-native .dsf-hero-media,
  .dwh-page.dwh-native .dwh-hero-media,
  .ddt-page.ddt-native .ddt-hero-media,
  .dac-page.dac-native .dac-hero-photo,
  .dmc-page.dmc-native .dmc-hero-photo,
  .dzh-page.dzh-native .dzh-hero-photo
) {
  width: 100%;
  min-height: 0;
  max-height: none;
  align-self: auto;
  aspect-ratio: 1.42;
  border: 0;
  border-radius: 8px;
  outline: 1px solid rgba(0, 0, 0, .10);
  outline-offset: -1px;
  box-shadow: none;
}

.dcl-calc.dcl-native .dcl-hero-picture img {
  outline: 1px solid rgba(0, 0, 0, .10);
  outline-offset: -1px;
}

:is(
  .dch-page.dch-native .dch-proof-row,
  .dco-page.dco-native .dco-proof-row,
  .dck-page.dck-native .dck-hero-mini,
  .dcl-calc.dcl-native .dcl-hero-facts,
  .ddp-page.ddp-native .ddp-proof-row,
  .dhr-page.dhr-native .dhr-proof,
  .dtr-page.dtr-native .dtr-proof,
  .dcbs-page.dcbs-native .dcbs-proof,
  .dht-page.dht-native .dht-proof,
  .dmi-page.dmi-native .dmi-proof,
  .ded-page.ded-native .ded-proof,
  .dci-page.dci-native .dci-facts,
  .dsf-page.dsf-native .dsf-proof,
  .dwh-page.dwh-native .dwh-proof,
  .ddt-page.ddt-native .ddt-proof,
  .dac-page.dac-native .dac-proof,
  .dmc-page.dmc-native .dmc-proof,
  .dzh-page.dzh-native .dzh-proof
) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 32px;
  padding-top: 27px;
  border-top: 1px solid var(--dc-native-line);
}

.dcl-calc.dcl-native .dcl-hero-facts > div {
  padding-right: 14px;
}

.dcl-calc.dcl-native .dcl-hero-facts {
  width: 100%;
  max-width: var(--dcl-site-inner-max, 1436px);
  margin-inline: auto;
}

.dcl-calc.dcl-native .dcl-hero-facts > div + div {
  padding-left: 0;
  border-left: 0;
}

@media (max-width: 980px) {
  :is(
    .dch-page.dch-native .dch-hero-grid,
    .dsv-page.dsv-native .dsv-hero-grid,
    .dco-page.dco-native .dco-hero-grid,
    .dck-page.dck-native .dck-hero-grid,
    .dcl-calc.dcl-native .dcl-hero-grid,
    .ddp-page.ddp-native .ddp-hero-grid,
    .dhr-page.dhr-native .dhr-hero-grid,
    .dtr-page.dtr-native .dtr-hero-grid,
    .dcbs-page.dcbs-native .dcbs-hero-grid,
    .dht-page.dht-native .dht-hero-grid,
    .dmi-page.dmi-native .dmi-hero-grid,
    .ded-page.ded-native .ded-hero-grid,
    .dci-page.dci-native .dci-hero-grid,
    .dsf-page.dsf-native .dsf-hero-grid,
    .dwh-page.dwh-native .dwh-hero-grid,
    .ddt-page.ddt-native .ddt-hero-grid,
    .dac-page.dac-native .dac-hero-grid,
    .dmc-page.dmc-native .dmc-hero-grid,
    .dzh-page.dzh-native .dzh-hero-grid
  ) {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  :is(
    .dch-page.dch-native .dch-hero-media,
    .dsv-page.dsv-native .dsv-hero-media,
    .dco-page.dco-native .dco-hero-visual,
    .dck-page.dck-native .dck-hero-photo,
    .dhr-page.dhr-native .dhr-hero-media,
    .dtr-page.dtr-native .dtr-hero-media,
    .dcbs-page.dcbs-native .dcbs-hero-media,
    .dht-page.dht-native .dht-hero-media,
    .dmi-page.dmi-native .dmi-hero-photo,
    .ded-page.ded-native .ded-hero-media,
    .dci-page.dci-native .dci-hero-product,
    .dsf-page.dsf-native .dsf-hero-media,
    .dwh-page.dwh-native .dwh-hero-media,
    .ddt-page.ddt-native .ddt-hero-media,
    .dac-page.dac-native .dac-hero-photo,
    .dmc-page.dmc-native .dmc-hero-photo,
    .dzh-page.dzh-native .dzh-hero-photo
  ) {
    aspect-ratio: 1.75;
  }
}

@media (max-width: 767px) {
  :is(
    .dch-page.dch-native .dch-breadcrumbs,
    .dsv-page.dsv-native .dsv-breadcrumbs,
    .dco-page.dco-native .dco-breadcrumb,
    .dck-page.dck-native .dck-breadcrumbs,
    .dcl-calc.dcl-native .dcl-breadcrumbs,
    .ddp-page.ddp-native .ddp-breadcrumbs,
    .dhr-page.dhr-native .dhr-breadcrumbs,
    .dtr-page.dtr-native .dtr-breadcrumbs,
    .dcbs-page.dcbs-native .dcbs-breadcrumbs,
    .dht-page.dht-native .dht-breadcrumbs,
    .dmi-page.dmi-native .dmi-breadcrumbs,
    .ded-page.ded-native .ded-breadcrumbs,
    .dci-page.dci-native .dci-breadcrumbs,
    .dsf-page.dsf-native .dsf-breadcrumbs,
    .dwh-page.dwh-native .dwh-breadcrumbs,
    .ddt-page.ddt-native .ddt-breadcrumbs,
    .dac-page.dac-native .dac-breadcrumbs,
    .dmc-page.dmc-native .dmc-breadcrumbs,
    .dzh-page.dzh-native .dzh-breadcrumbs
  ) {
    padding: 20px 0 27px;
    font-size: 11px;
  }

  .dch-page.dch-native .dch-breadcrumbs ol,
  .dsv-page.dsv-native .dsv-breadcrumbs ol,
  .dck-page.dck-native .dck-breadcrumbs ol,
  .ddp-page.ddp-native .ddp-breadcrumbs ol,
  .dhr-page.dhr-native .dhr-breadcrumbs ol,
  .dtr-page.dtr-native .dtr-breadcrumbs ol,
  .dcbs-page.dcbs-native .dcbs-breadcrumbs ol,
  .dht-page.dht-native .dht-breadcrumbs ol,
  .dmi-page.dmi-native .dmi-breadcrumbs ol,
  .ded-page.ded-native .ded-breadcrumbs ol,
  .dci-page.dci-native .dci-breadcrumbs ol,
  .dsf-page.dsf-native .dsf-breadcrumbs ol,
  .dwh-page.dwh-native .dwh-breadcrumbs ol,
  .ddt-page.ddt-native .ddt-breadcrumbs ol,
  .dac-page.dac-native .dac-breadcrumbs ol,
  .dmc-page.dmc-native .dmc-breadcrumbs ol,
  .dzh-page.dzh-native .dzh-breadcrumbs ol,
  .dch-page.dch-native .dch-breadcrumbs li,
  .dsv-page.dsv-native .dsv-breadcrumbs li,
  .dck-page.dck-native .dck-breadcrumbs li,
  .ddp-page.ddp-native .ddp-breadcrumbs li,
  .dhr-page.dhr-native .dhr-breadcrumbs li,
  .dtr-page.dtr-native .dtr-breadcrumbs li,
  .dcbs-page.dcbs-native .dcbs-breadcrumbs li,
  .dht-page.dht-native .dht-breadcrumbs li,
  .dmi-page.dmi-native .dmi-breadcrumbs li,
  .ded-page.ded-native .ded-breadcrumbs li,
  .dci-page.dci-native .dci-breadcrumbs li,
  .dsf-page.dsf-native .dsf-breadcrumbs li,
  .dwh-page.dwh-native .dwh-breadcrumbs li,
  .ddt-page.ddt-native .ddt-breadcrumbs li,
  .dac-page.dac-native .dac-breadcrumbs li,
  .dmc-page.dmc-native .dmc-breadcrumbs li,
  .dzh-page.dzh-native .dzh-breadcrumbs li,
  .dco-page.dco-native .dco-breadcrumb > :is(a, span),
  .dcl-calc.dcl-native .dcl-breadcrumbs .breadcrumbs,
  .dcl-calc.dcl-native .dcl-breadcrumbs .breadcrumbs__item {
    min-height: 18.7px;
  }

  :is(
    .dch-page.dch-native .dch-hero .dch-kicker,
    .dsv-page.dsv-native .dsv-hero .dsv-kicker,
    .dco-page.dco-native .dco-hero .dco-overline,
    .dck-page.dck-native .dck-hero .dck-kicker,
    .dcl-calc.dcl-native .dcl-hero .dcl-eyebrow,
    .ddp-page.ddp-native .ddp-hero .ddp-kicker,
    .dhr-page.dhr-native .dhr-hero .dhr-kicker,
    .dtr-page.dtr-native .dtr-hero .dtr-kicker,
    .dcbs-page.dcbs-native .dcbs-hero .dcbs-kicker,
    .dht-page.dht-native .dht-hero .dht-kicker,
    .dmi-page.dmi-native .dmi-hero .dmi-kicker,
    .ded-page.ded-native .ded-hero .ded-kicker,
    .dci-page.dci-native .dci-hero .dci-kicker,
    .dsf-page.dsf-native .dsf-hero .dsf-kicker,
    .dwh-page.dwh-native .dwh-hero .dwh-kicker,
    .ddt-page.ddt-native .ddt-hero .ddt-kicker,
    .dac-page.dac-native .dac-hero .dac-kicker,
    .dmc-page.dmc-native .dmc-hero .dmc-kicker,
    .dzh-page.dzh-native .dzh-hero .dzh-kicker
  ) {
    margin-bottom: 16px;
    font-size: 10px;
  }

  :is(
    .dch-page.dch-native .dch-hero h1,
    .dsv-page.dsv-native .dsv-hero h1,
    .dco-page.dco-native .dco-hero h1,
    .dck-page.dck-native .dck-hero h1,
    .dcl-calc.dcl-native .dcl-hero h1,
    .ddp-page.ddp-native .ddp-hero h1,
    .dhr-page.dhr-native .dhr-hero h1,
    .dtr-page.dtr-native .dtr-hero h1,
    .dcbs-page.dcbs-native .dcbs-hero h1,
    .dht-page.dht-native .dht-hero h1,
    .dmi-page.dmi-native .dmi-hero h1,
    .ded-page.ded-native .ded-hero h1,
    .dci-page.dci-native .dci-hero h1,
    .dsf-page.dsf-native .dsf-hero h1,
    .dwh-page.dwh-native .dwh-hero h1,
    .ddt-page.ddt-native .ddt-hero h1,
    .dac-page.dac-native .dac-hero h1,
    .dmc-page.dmc-native .dmc-hero h1,
    .dzh-page.dzh-native .dzh-hero h1
  ) {
    max-width: 620px;
    font-size: clamp(34px, 9.2vw, 40px);
    line-height: 1.11;
    letter-spacing: -.035em;
  }
}

@media (max-width: 600px) {
  :is(
    .dch-page.dch-native .dch-hero .dch-actions,
    .dsv-page.dsv-native .dsv-hero .dsv-actions,
    .dco-page.dco-native .dco-hero .dco-actions,
    .dck-page.dck-native .dck-hero .dck-hero-actions,
    .dcl-calc.dcl-native .dcl-hero .dcl-actions,
    .ddp-page.ddp-native .ddp-hero .ddp-actions,
    .dhr-page.dhr-native .dhr-hero .dhr-actions,
    .dtr-page.dtr-native .dtr-hero .dtr-actions,
    .dcbs-page.dcbs-native .dcbs-hero .dcbs-actions,
    .dht-page.dht-native .dht-hero .dht-actions,
    .dmi-page.dmi-native .dmi-hero .dmi-actions,
    .ded-page.ded-native .ded-hero .ded-actions,
    .dci-page.dci-native .dci-hero .dci-actions,
    .dsf-page.dsf-native .dsf-hero .dsf-actions,
    .dwh-page.dwh-native .dwh-hero .dwh-actions,
    .ddt-page.ddt-native .ddt-hero .ddt-actions,
    .dac-page.dac-native .dac-hero .dac-actions,
    .dmc-page.dmc-native .dmc-hero .dmc-actions,
    .dzh-page.dzh-native .dzh-hero .dzh-actions
  ) {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  :is(
    .dch-page.dch-native .dch-hero .dch-btn,
    .dsv-page.dsv-native .dsv-hero .dsv-btn,
    .dco-page.dco-native .dco-hero .dco-btn,
    .dck-page.dck-native .dck-hero .dck-btn,
    .dck-page.dck-native .dck-hero .dck-textlink,
    .dcl-calc.dcl-native .dcl-hero .dcl-button,
    .ddp-page.ddp-native .ddp-hero .ddp-btn,
    .dhr-page.dhr-native .dhr-hero .dhr-btn,
    .dtr-page.dtr-native .dtr-hero .dtr-btn,
    .dcbs-page.dcbs-native .dcbs-hero .dcbs-btn,
    .dht-page.dht-native .dht-hero .dht-btn,
    .dmi-page.dmi-native .dmi-hero .dmi-btn,
    .ded-page.ded-native .ded-hero .ded-btn,
    .dci-page.dci-native .dci-hero .dci-button,
    .dsf-page.dsf-native .dsf-hero .dsf-btn,
    .dwh-page.dwh-native .dwh-hero .dwh-btn,
    .ddt-page.ddt-native .ddt-hero .ddt-btn,
    .dac-page.dac-native .dac-hero .dac-btn,
    .dmc-page.dmc-native .dmc-hero .dmc-btn,
    .dzh-page.dzh-native .dzh-hero .dzh-btn
  ) {
    width: 100%;
    justify-content: space-between;
  }

  .dck-page.dck-native .dck-hero-actions .dck-small {
    grid-row: 3;
  }

  :is(
    .dch-page.dch-native .dch-hero-media,
    .dsv-page.dsv-native .dsv-hero-media,
    .dco-page.dco-native .dco-hero-visual,
    .dck-page.dck-native .dck-hero-photo,
    .dhr-page.dhr-native .dhr-hero-media,
    .dtr-page.dtr-native .dtr-hero-media,
    .dcbs-page.dcbs-native .dcbs-hero-media,
    .dht-page.dht-native .dht-hero-media,
    .dmi-page.dmi-native .dmi-hero-photo,
    .ded-page.ded-native .ded-hero-media,
    .dci-page.dci-native .dci-hero-product,
    .dsf-page.dsf-native .dsf-hero-media,
    .dwh-page.dwh-native .dwh-hero-media,
    .ddt-page.ddt-native .ddt-hero-media,
    .dac-page.dac-native .dac-hero-photo,
    .dmc-page.dmc-native .dmc-hero-photo,
    .dzh-page.dzh-native .dzh-hero-photo
  ) {
    aspect-ratio: 1.25;
  }

  :is(
    .dch-page.dch-native .dch-proof-row,
    .dco-page.dco-native .dco-proof-row,
    .dck-page.dck-native .dck-hero-mini,
    .dcl-calc.dcl-native .dcl-hero-facts,
    .ddp-page.ddp-native .ddp-proof-row,
    .dhr-page.dhr-native .dhr-proof,
    .dtr-page.dtr-native .dtr-proof,
    .dcbs-page.dcbs-native .dcbs-proof,
    .dht-page.dht-native .dht-proof,
    .dmi-page.dmi-native .dmi-proof,
    .ded-page.ded-native .ded-proof,
    .dci-page.dci-native .dci-facts,
    .dwh-page.dwh-native .dwh-proof,
    .ddt-page.ddt-native .ddt-proof,
    .dac-page.dac-native .dac-proof,
    .dmc-page.dmc-native .dmc-proof,
    .dzh-page.dzh-native .dzh-proof
  ) {
    grid-template-columns: minmax(0, 1fr);
    gap: 17px;
    margin-top: 26px;
    padding-top: 21px;
  }
}

.theme-dark :is(
  .dch-page.dch-native .dch-hero-media,
  .dsv-page.dsv-native .dsv-hero-media,
  .dco-page.dco-native .dco-hero-visual,
  .dck-page.dck-native .dck-hero-photo,
  .dcl-calc.dcl-native .dcl-hero-picture img,
  .dhr-page.dhr-native .dhr-hero-media,
  .dtr-page.dtr-native .dtr-hero-media,
  .dcbs-page.dcbs-native .dcbs-hero-media,
  .dht-page.dht-native .dht-hero-media,
  .dmi-page.dmi-native .dmi-hero-photo,
  .ded-page.ded-native .ded-hero-media,
  .dwh-page.dwh-native .dwh-hero-media,
  .ddt-page.ddt-native .ddt-hero-media,
  .dac-page.dac-native .dac-hero-photo,
  .dmc-page.dmc-native .dmc-hero-photo,
  .dzh-page.dzh-native .dzh-hero-photo
) {
  outline-color: rgba(255, 255, 255, .10);
}

/* End */


/* Start:/local/tools/dc-light-b2b/contact-card.css?17895728572763*/
/* Scoped to the exact native family rendered by index.php; no theme/form overrides. */
[data-dc-b2b-page] .dc-b2b-contact {
  box-sizing: border-box;
  min-width: 0;
  width: 100%;
  align-self: start;
  margin: 0;
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid #dedede;
  border-radius: 8px;
  background: #fff;
  color: #242424;
  text-align: left;
  box-shadow: none;
}
[data-dc-b2b-page] .dc-b2b-contact h3 {
  margin: 0 0 22px;
  color: #242424;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  text-wrap: balance;
}
[data-dc-b2b-page] .dc-b2b-contact .dc-b2b-contact__eyebrow {
  margin: 0 0 12px;
  color: #626262;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .08em;
  text-transform: uppercase;
}
[data-dc-b2b-page] .dc-b2b-contact__direct {display: grid; gap: 4px; margin: 0 0 22px;}
[data-dc-b2b-page] .dc-b2b-contact__direct a {
  display: flex; align-items: center; min-height: 40px; width: fit-content;
  max-width: 100%; color: #242424; font-size: 19px; font-weight: 600;
  line-height: 1.35; overflow-wrap: anywhere; text-decoration: none;
}
[data-dc-b2b-page] .dc-b2b-contact__direct span {color: #626262; font-size: 12px; line-height: 1.6;}
[data-dc-b2b-page] .dc-b2b-contact__actions {display: grid; gap: 10px;}
[data-dc-b2b-page] .dc-b2b-contact .dc-b2b-contact__button {
  box-sizing: border-box; display: flex; justify-content: space-between; align-items: center;
  gap: 14px; width: 100%; min-height: 50px; padding: 14px 18px;
  border: 1px solid transparent; border-radius: 6px; font-size: 14px;
  font-weight: 600; line-height: 1.5; text-decoration: none; cursor: pointer;
}
[data-dc-b2b-page] .dc-b2b-contact .dc-b2b-contact__button--primary {background: #ffb400; color: #222;}
[data-dc-b2b-page] .dc-b2b-contact .dc-b2b-contact__button--primary:hover {background: #f2a900; color: #222;}
[data-dc-b2b-page] .dc-b2b-contact .dc-b2b-contact__button--max {background: #2f3133; color: #fff;}
[data-dc-b2b-page] .dc-b2b-contact .dc-b2b-contact__button--max:hover {background: #17191a; color: #fff;}
[data-dc-b2b-page] .dc-b2b-contact .dc-b2b-contact__note {
  margin: 16px 0 0; max-width: 60ch; color: #626262; font-size: 12px; line-height: 1.7;
}
[data-dc-b2b-page] .dc-b2b-contact .dc-b2b-contact__selection {margin: 0 0 16px; color: #454545; font-size: 13px; line-height: 1.6;}
[data-dc-b2b-page] .dc-b2b-contact [hidden] {display: none;}
[data-dc-b2b-page] .dc-b2b-contact a:focus-visible {outline: 2px solid #896100; outline-offset: 3px;}
.theme-dark [data-dc-b2b-page] .dc-b2b-contact {background: #f7f7f7; border-color: #686868; color: #242424;}
/* The image box, not the whole figure, owns the industrial hero ratio. */
.dci-page.dci-native .dci-hero-product {aspect-ratio: auto;}

/* End */


/* Start:/bitrix/templates/aspro-lite/css/order-info.min.css?17707243061015*/
.order-info-block{padding:32px 31px 33px 30px;}.order-info-block--margined{margin:33px 0;}.order-info-block .price .line-block__item{margin-top:0;}.order-info-block .icon-svg-block{padding-right:3px;}.order-info-block .text{min-width:205px;}.order-info-block .question-title{margin-bottom:31px;color:var(--white_text_black);}.order-info-block .price + .order-info-btn{margin-top:20px;}.order-info-block ~ .sale-linked{border-top:1px solid #DDD;}@media (max-width:991px){.order-info-block{padding:25px;padding-bottom:5px}.order-info-block .icon-svg-block{display:none}.order-info-block .line-block__item:not(.order-info-btns){margin-top:0;margin-bottom:20px}.order-info-block{padding-bottom:5px}}@media (max-width:767px){.order-info-block>.line-block{flex-direction:column}.order-info-block .price + .order-info-btn{margin-top:0}}@media (max-width:600px){.order-info-block .flex-grow-to-600{flex-grow:1}.order-info-btns .btn{width:100%}}@media (min-width:600px){.order-info-btns .btn.min_width--300{min-width:300px}}
/* End */
/* /local/tools/dc-light-b2b/style.css?178938130722591 */
/* /local/tools/dc-light-b2b/industrial-production/style.css?178947496023030 */
/* /local/tools/dc-light-b2b/industrial-production/native-layout.css?17894749602834 */
/* /local/tools/dc-light-b2b/native-family.css?178956209327236 */
/* /local/tools/dc-light-b2b/contact-card.css?17895728572763 */
/* /bitrix/templates/aspro-lite/css/order-info.min.css?17707243061015 */
