/* Unified presentation layer for the approved light and dark site variants. */
body.rukit-system {
  --accent: #c93424;
  --accent-dark: #a82619;
  --action: #c93424;
  --action-hover: #a82619;
  --ink: #171717;
  --muted: #626262;
  --paper: #f7f7f4;
  --surface: #ffffff;
  --surface-alt: #eeeeea;
  --line: #d8d8d2;
  --header-height: 76px;
  --section-space: 88px;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-text), Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.rukit-system.rukit-theme-dark {
  --accent: #ff6a57;
  --ink: #f4f3ef;
  --muted: #bcbcb6;
  --paper: #181818;
  --surface: #222222;
  --surface-alt: #2b2b2b;
  --line: #3d3d3a;
}

body.rukit-system *,
body.rukit-system *::before,
body.rukit-system *::after {
  box-sizing: border-box;
}

body.rukit-system .page-shell,
body.rukit-system .wp-site-blocks,
body.rukit-system main {
  overflow: visible;
}

body.rukit-system main { overflow-x: clip; }

body.rukit-system .wrap {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

body.rukit-system h1,
body.rukit-system h2,
body.rukit-system h3,
body.rukit-system h4 {
  max-width: 100%;
  margin: 0;
  color: inherit;
  font-family: var(--font-main), Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
  text-transform: none;
}

body.rukit-system h1 { font-size: clamp(36px, 4.4vw, 60px); }
body.rukit-system h2 { font-size: clamp(28px, 3vw, 42px); }
body.rukit-system h3 { font-size: clamp(20px, 1.8vw, 26px); }

body.rukit-system p,
body.rukit-system ul,
body.rukit-system ol {
  margin: 0;
}

body.rukit-system img,
body.rukit-system video {
  display: block;
  max-width: 100%;
}

body.rukit-system a { color: inherit; }

body.rukit-system .eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.rukit-system .lead,
body.rukit-system .section-intro p,
body.rukit-system .page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

body.rukit-system .button,
body.rukit-system .nav-cta,
body.rukit-system .pdf-hero__button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid var(--action);
  border-radius: 4px;
  background: var(--action);
  color: #fff;
  font-family: var(--font-main), Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  clip-path: none;
  box-shadow: none;
}

body.rukit-system .button::before,
body.rukit-system .button::after,
body.rukit-system .nav-cta::before,
body.rukit-system .nav-cta::after,
body.rukit-system .pdf-hero__button::before,
body.rukit-system .pdf-hero__button::after { content: none !important; }

body.rukit-system .button:hover,
body.rukit-system .button:focus-visible,
body.rukit-system .nav-cta:hover,
body.rukit-system .nav-cta:focus-visible {
  border-color: var(--action-hover);
  background: var(--action-hover);
}

body.rukit-system .button.secondary,
body.rukit-system .button.light-ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

body.rukit-system .button.secondary:hover,
body.rukit-system .button.light-ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

/* Header */
body.rukit-system .site-header {
  position: sticky !important;
  top: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid #d9d9d4;
  background: rgba(250, 250, 247, .97) !important;
  color: #171717 !important;
  backdrop-filter: blur(12px);
}

body.admin-bar.rukit-system .site-header { top: 32px; }

body.rukit-system .site-header .nav {
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: 184px 1fr auto;
  align-items: center;
  gap: 28px;
}

body.rukit-system .site-header .logo {
  display: flex;
  width: 184px;
  height: 42px;
  align-items: center;
}

body.rukit-system .site-header .logo img {
  display: block;
  width: 160px;
  max-width: none;
  height: 30px;
  flex: 0 0 160px;
  object-fit: contain;
  object-position: left center;
  transform-origin: left center;
}

html[lang="en"] body.rukit-system .site-header .logo img {
  transform: translate(-7px, -4px) scaleX(1.067);
}

body.rukit-system .nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

body.rukit-system .language-switch {
  position: relative;
  display: grid;
  width: 88px;
  min-width: 88px;
  height: 42px;
  padding: 3px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  place-items: center;
  border: 1px solid #bfc0bb;
  border-radius: 3px;
  background: #fff;
  color: #60615d;
  font-family: var(--font-main), Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

body.rukit-system .language-switch::before {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: calc(50% - 3px);
  border-radius: 1px;
  background: var(--action);
  content: "";
  transition: transform .2s ease;
}
body.rukit-system .language-switch--en::before { transform: translateX(100%); }
body.rukit-system .language-switch__option { position: relative; z-index: 1; width: 100%; text-align: center; }
body.rukit-system .language-switch--ru .language-switch__option:first-child,
body.rukit-system .language-switch--en .language-switch__option:nth-child(2) { color: #fff; }

body.rukit-system .language-switch:hover,
body.rukit-system .language-switch:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(211, 52, 36, .12);
  outline: 2px solid transparent;
}

body.rukit-system .nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

body.rukit-system .nav-links > a,
body.rukit-system .nav-parent-row > a {
  padding: 25px 0;
  color: #171717;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none;
  white-space: nowrap;
}

body.rukit-system .nav-item { position: relative; }
body.rukit-system .nav-parent-row { display: flex; align-items: center; }

/* Header navigation uses a stable text-and-rule state instead of the legacy card animation. */
body.rukit-system .site-header .nav-links > a,
body.rukit-system .site-header .nav-parent-row > a {
  isolation: auto;
  text-shadow: none;
  transition: color .18s ease;
}

body.rukit-system .site-header .nav-links > a::before,
body.rukit-system .site-header .nav-links > a::after,
body.rukit-system .site-header .nav-parent-row > a::before,
body.rukit-system .site-header .nav-parent-row > a::after { content: none !important; }

body.rukit-system .site-header .nav-links > a:hover,
body.rukit-system .site-header .nav-links > a:focus-visible,
body.rukit-system .site-header .nav-item:hover .nav-parent-row > a,
body.rukit-system .site-header .nav-item:focus-within .nav-parent-row > a {
  color: var(--accent);
  text-shadow: none;
}

body.rukit-system .nav-submenu-toggle {
  display: inline-grid;
  width: 24px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  color: #171717;
  cursor: pointer;
}

body.rukit-system .dropdown-cue {
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .2s ease;
}

body.rukit-system .site-header .dropdown-cue { color: #b52b1e; }

body.rukit-system .nav-dropdown {
  position: absolute;
  top: calc(100% - 5px);
  left: -18px;
  display: grid;
  visibility: hidden;
  width: min(360px, 88vw);
  padding: 10px;
  border: 1px solid #dadad5;
  border-radius: 4px;
  opacity: 0;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .14);
  transform: translateY(7px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

body.rukit-system .nav-dropdown a {
  display: grid;
  gap: 2px;
  padding: 11px 12px;
  border-radius: 3px;
  color: #171717 !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

body.rukit-system .nav-dropdown a span {
  color: #676767;
  font-size: 12px;
  font-weight: 400;
}

body.rukit-system .nav-dropdown a:hover,
body.rukit-system .nav-dropdown a:focus-visible {
  background: #ededE8;
  color: #171717 !important;
}

body.rukit-system .nav-item:hover .nav-dropdown,
body.rukit-system .nav-item:focus-within .nav-dropdown,
body.rukit-system .nav-item.is-open .nav-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

body.rukit-system .nav-item.is-open .dropdown-cue { transform: translateY(2px) rotate(225deg); }

body.rukit-system .nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid #cecec9;
  border-radius: 4px;
  background: transparent;
}

body.rukit-system .nav-mobile-cta { display: none; }

body.rukit-system .nav-toggle > span[aria-hidden] {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: #171717;
}

/* Hero sliders */
body.rukit-system .pdf-slider,
body.rukit-system .light-hero-slider {
  position: relative;
  min-height: 0;
  padding: 0;
  background: var(--surface);
}

body.rukit-system .pdf-slider { height: auto; overflow: visible; background: #202121; }

body.rukit-system .pdf-slider__track,
body.rukit-system .light-hero-slider__track { position: relative; height: auto; min-height: 0; overflow: visible; }

body.rukit-system .pdf-slider__track {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

body.rukit-system.template-one-home .pdf-hero,
body.rukit-system.template-one-home .pdf-hero__frame,
body.rukit-system.template-two .hero-light--editorial {
  min-height: 0;
  height: auto;
}

body.rukit-system .hero-light,
body.rukit-system .hero-light--editorial {
  min-height: 0;
  padding: 0;
  overflow: visible;
  background: var(--paper);
}

body.rukit-system .hero-light--editorial::before,
body.rukit-system .hero-light--editorial::after,
body.rukit-system .page-hero::before,
body.rukit-system .page-hero::after { content: none !important; }

body.rukit-system .pdf-slide,
body.rukit-system .light-hero-slider__slide {
  display: none;
  min-height: min(680px, calc(100vh - var(--header-height)));
}

body.rukit-system .light-hero-slider__slide { min-height: 0; }

body.rukit-system .pdf-slide.is-active,
body.rukit-system .light-hero-slider__slide.is-active { display: grid; }

body.rukit-system .pdf-slide {
  position: relative;
  inset: auto;
  grid-template-columns: minmax(0, 48%) minmax(0, 52%);
  grid-template-rows: none;
  min-height: 600px;
  overflow: visible;
  color: #fff;
  /* Matches the copy panel, including the area revealed by the image contour. */
  background: #202121;
  transform: none;
  transition: opacity .3s ease;
}

body.rukit-system .pdf-hero__copy {
  z-index: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 22px;
  padding: 68px 48px 68px 44px;
  background: #202121;
}

body.rukit-system .pdf-hero__copy h1,
body.rukit-system .editorial-hero-copy h1 {
  font-size: clamp(38px, 3.35vw, 48px);
  line-height: 1.06;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

body.rukit-system .pdf-hero__copy h1 span {
  display: block;
  white-space: nowrap;
}

body.rukit-system .editorial-hero-copy h1 span { display: block; }

body.rukit-system .pdf-hero__copy p { max-width: 630px; color: #d2d2cc; font-size: 18px; }

body.rukit-system .pdf-hero__visual {
  min-height: 600px;
  height: 100%;
  border-left: 0;
  clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%);
  background-color: #2b2b2b;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* A single clean diagonal keeps the branded separation without crossing the copy. */
body.rukit-system .pdf-slide::before,
body.rukit-system .pdf-slide::after,
body.rukit-system .pdf-hero__copy::after,
body.rukit-system .pdf-hero__visual::after { content: none !important; }

body.rukit-system .pdf-hero__visual {
  position: relative;
  transform: none !important;
}

body.rukit-system .pdf-hero__visual::before { content: none !important; }

body.rukit-system .pdf-slide__footer { display: none; }

body.rukit-system .editorial-hero-grid {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  grid-template-columns: minmax(0, .82fr) minmax(460px, 1.18fr);
  align-items: center;
  gap: 72px;
  padding: 72px 0 28px;
}

body.rukit-system .editorial-hero-copy { min-width: 0; }
body.rukit-system .editorial-hero-copy h1 { margin-bottom: 22px; }
body.rukit-system .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

body.rukit-system .light-hero-media {
  position: relative;
  display: grid;
  overflow: hidden;
  margin: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  border-left: 4px solid var(--accent);
  border-radius: 0;
  background: var(--ink);
  color: var(--ink);
  box-shadow: none;
}

body.rukit-system .light-hero-media__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  background-color: #e7e7e2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

body.rukit-system .light-hero-media__caption {
  border-top: 1px solid rgba(255,255,255,.22);
  background: var(--ink);
}

body.rukit-system .light-hero-media__copy {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  align-content: center;
  column-gap: 20px;
  row-gap: 4px;
  min-height: 92px;
  padding: 18px 22px;
}

body.rukit-system .light-hero-media__copy span {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

body.rukit-system .light-hero-media__copy strong {
  color: #fff;
  font-family: var(--font-main), Arial, sans-serif;
  font-size: 14px;
  line-height: 1.35;
}

body.rukit-system .light-hero-media__copy small {
  min-width: 0;
  color: #cfcfca;
  font-size: 12px;
  line-height: 1.35;
  overflow-wrap: normal;
}

/* Dark hero: stable tabs live below the visual, never above the copy or image. */
body.rukit-system .pdf-slider > .pdf-slider__controls {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  z-index: 1;
  width: min(1120px, calc(100% - 48px));
  margin: 30px auto 0;
  display: block;
  min-height: 80px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  box-shadow: none;
}

body.rukit-system .pdf-slider__dots {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-width: 0;
  height: 100%;
  gap: 10px;
  padding: 0;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
body.rukit-system .pdf-slider__dots button {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 78px;
  min-width: 0;
  padding: 16px 20px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 4px;
  background: rgba(255,255,255,.018);
  color: inherit;
  font: 700 15px/1.15 var(--font-main), Arial, sans-serif;
  cursor: pointer;
  box-shadow: none;
  transition: border-color .18s ease, background-color .18s ease, color .18s ease;
}

.effects-ready body.rukit-system .reveal {
  opacity: 1 !important;
  transform: none !important;
}
body.rukit-system .pdf-slider__dots button {
  color: #b9b9b4;
  text-align: center;
}
body.rukit-system .pdf-slider__dots button:last-child { border-right-color: rgba(255,255,255,.22); }
body.rukit-system .pdf-slider__dots button::before {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 50%;
  content: "";
  transition: border-color .18s ease, background-color .18s ease;
}
body.rukit-system .slider-tab__label {
  min-width: 0;
  overflow: visible;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
  text-overflow: clip;
  white-space: normal;
}

body.rukit-system .pdf-slider > .pdf-slider__controls .slider-tab__progress {
  position: absolute;
  inset: -1px;
  z-index: 1;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  overflow: visible;
  pointer-events: none;
}
body.rukit-system .pdf-slider > .pdf-slider__controls .slider-tab__progress rect {
  fill: none;
  stroke: var(--action);
  stroke-width: 2;
  stroke-dasharray: 0 var(--tab-perimeter-length, 1);
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  vector-effect: non-scaling-stroke;
}
body.rukit-system .pdf-slider__dots button:hover,
body.rukit-system .pdf-slider__dots button:focus-visible { border-color: rgba(255,255,255,.52); background: rgba(255,255,255,.045); color: #fff; }
body.rukit-system .pdf-slider__dots button.is-active { border-color: rgba(255,255,255,.22); background: rgba(255,74,61,.08); color: #fff; }
body.rukit-system .pdf-slider__dots button.is-active::before { border-color: var(--action); background: var(--action); }
body.rukit-system .pdf-slider > .pdf-slider__controls .pdf-slider__dots button.is-active .slider-tab__progress rect {
  opacity: 1;
  animation: rukit-tab-perimeter var(--slider-duration, 6200ms) linear forwards;
}
body.rukit-system .pdf-slider.is-slider-paused > .pdf-slider__controls .pdf-slider__dots button.is-active .slider-tab__progress rect {
  animation-play-state: paused;
}

@keyframes rukit-tab-perimeter {
  from { stroke-dasharray: 0 var(--tab-perimeter-length, 1); }
  to { stroke-dasharray: var(--tab-perimeter-length, 1) 0; }
}

body.rukit-system .light-hero-slider__controls {
  position: static;
  right: auto;
  bottom: auto;
  display: block;
  min-height: 66px;
  gap: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: none;
}
body.rukit-system .light-hero-slider__controls .pdf-slider__dots {
  height: 64px;
}
body.rukit-system .light-hero-slider__controls .pdf-slider__dots button {
  height: 64px;
  min-width: 0;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--muted);
}
body.rukit-system .light-hero-slider__controls .pdf-slider__dots button:last-child { border-right: 0; }
body.rukit-system .light-hero-slider__controls .pdf-slider__dots button::after {
  position: absolute;
  right: 10px;
  bottom: 0;
  left: 10px;
  height: 3px;
  content: "";
  background: transparent;
}
body.rukit-system .light-hero-slider__controls .pdf-slider__dots button:hover,
body.rukit-system .light-hero-slider__controls .pdf-slider__dots button:focus-visible { color: var(--ink); }
body.rukit-system .light-hero-slider__controls .pdf-slider__dots button.is-active {
  background: var(--ink);
  color: #fff;
}
body.rukit-system .light-hero-slider__controls .pdf-slider__dots button.is-active::after { background: var(--accent); }
body.rukit-system .light-hero-slider__controls .pdf-slider__dots button.is-active {
  border-bottom: 0;
}

body.rukit-system .light-hero-slider__navigation {
  display: grid;
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  grid-template-columns: minmax(80px, 1fr) minmax(460px, .9fr);
  align-items: center;
  gap: 44px;
  padding: 0 0 42px;
}

body.rukit-system .light-hero-slider__progress {
  position: relative;
  height: 3px;
  overflow: hidden;
  background: var(--line);
}

body.rukit-system .light-hero-slider__progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--slider-progress, 25%);
  background: var(--accent);
  transition: width .35s ease;
}

/* Shared sections */
body.rukit-system .site-section,
body.rukit-system .section,
body.rukit-system .product-detail,
body.rukit-system .page-hero { padding: var(--section-space) 0; background: var(--paper); color: var(--ink); }
body.rukit-system .site-section--surface,
body.rukit-system .paper-band { background: var(--surface); color: var(--ink); }
body.rukit-system .site-section--muted { background: var(--surface-alt); color: var(--ink); }
body.rukit-system .dark-band { background: var(--surface); color: var(--ink); }
body.rukit-system .rukit-section--hidden { display: none !important; }

body.rukit-system .rukit-draft-preview-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10000;
  display: grid;
  gap: 4px;
  max-width: 360px;
  padding: 14px 16px;
  border: 1px solid #ff6a57;
  border-radius: 4px;
  background: #fff;
  color: #171717;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
  font-size: 13px;
}
body.rukit-system .rukit-draft-preview-banner a { color: #a82619; font-weight: 700; }

/* Controlled page-builder presets. */
body.rukit-system .rukit-section-space--compact { padding-top: 52px; padding-bottom: 52px; }
body.rukit-system .rukit-section-space--spacious { padding-top: 112px; padding-bottom: 112px; }
body.rukit-system .rukit-section-width--narrow > .wrap { width: min(900px, calc(100% - 48px)); }
body.rukit-system .rukit-section-width--wide > .wrap { width: min(1380px, calc(100% - 48px)); }
body.rukit-system .rukit-section-align--center > .wrap { text-align: center; }
body.rukit-system .rukit-section-align--center :is(.section-intro, .section-head) { margin-right: auto; margin-left: auto; }
body.rukit-system .rukit-section-align--center :is(.section-intro, .section-head) > p { margin-right: auto; margin-left: auto; }
body.rukit-system .rukit-section-align--right > .wrap { text-align: right; }
body.rukit-system .rukit-section-align--right :is(.section-intro, .section-head) { margin-left: auto; }
body.rukit-system .rukit-section-heading--compact h1,
body.rukit-system .rukit-section-heading--compact h2 { font-size: 34px; }
body.rukit-system .rukit-section-heading--compact h3 { font-size: 21px; }
body.rukit-system .rukit-section-heading--large h1 { font-size: 60px; }
body.rukit-system .rukit-section-heading--large h2 { font-size: 46px; }
body.rukit-system .rukit-section-heading--large h3 { font-size: 28px; }
body.rukit-system .rukit-section-buttons--center :is(.hero-actions, .contact-data__actions, .product-cta) { justify-content: center; text-align: center; }
body.rukit-system .rukit-section-buttons--center a.button { margin-right: auto; margin-left: auto; }
body.rukit-system .rukit-section-buttons--right :is(.hero-actions, .contact-data__actions, .product-cta) { justify-content: flex-end; text-align: right; }
body.rukit-system .rukit-section-buttons--right a.button { margin-left: auto; }
body.rukit-system .rukit-section-style--framed > .wrap {
  padding: 36px;
  border: 1px solid var(--line);
  background: var(--surface);
}
body.rukit-system .rukit-section-style--accent > .wrap {
  padding-left: 34px;
  border-left: 4px solid var(--accent);
}
body.rukit-system .rukit-section-effect--reveal.reveal {
  transition: opacity .48s ease, transform .48s ease;
}
.effects-ready body.rukit-system .rukit-section-effect--reveal.reveal:not(.is-visible) {
  opacity: 0 !important;
  transform: translateY(18px) !important;
}
.effects-ready body.rukit-system .rukit-section-effect--reveal.reveal.is-visible {
  opacity: 1 !important;
  transform: none !important;
}

body.rukit-system :is(
  .rukit-element-effect--fade,
  .rukit-element-effect--slide-up,
  .rukit-element-effect--slide-left,
  .rukit-element-effect--scale
).reveal {
  transition-duration: .52s;
  transition-property: opacity, transform;
  transition-timing-function: ease;
  will-change: opacity, transform;
}
.effects-ready body.rukit-system .rukit-element-effect--fade.reveal:not(.is-visible) {
  opacity: 0 !important;
  transform: none !important;
}
.effects-ready body.rukit-system .rukit-element-effect--slide-up.reveal:not(.is-visible) {
  opacity: 0 !important;
  transform: translateY(24px) !important;
}
.effects-ready body.rukit-system .rukit-element-effect--slide-left.reveal:not(.is-visible) {
  opacity: 0 !important;
  transform: translateX(-28px) !important;
}
.effects-ready body.rukit-system .rukit-element-effect--scale.reveal:not(.is-visible) {
  opacity: 0 !important;
  transform: scale(.96) !important;
}
.effects-ready body.rukit-system :is(
  .rukit-element-effect--fade,
  .rukit-element-effect--slide-up,
  .rukit-element-effect--slide-left,
  .rukit-element-effect--scale
).reveal.is-visible {
  opacity: 1 !important;
  transform: none !important;
}

body.rukit-system .rukit-custom-content {
  display: grid;
  min-width: 0;
  gap: 18px;
  margin-top: 30px;
}
body.rukit-system .rukit-custom-content--two-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
body.rukit-system .rukit-custom-content--three-columns { grid-template-columns: repeat(3, minmax(0, 1fr)); }
body.rukit-system .rukit-custom-content > * { min-width: 0; }
body.rukit-system .rukit-custom-content > :is(h2, h3, h4, p, figure, a) { margin-top: 0; margin-bottom: 0; }
body.rukit-system .rukit-text--lead { color: var(--ink); font-size: 20px; line-height: 1.55; }
body.rukit-system .rukit-text--small { font-size: 13px; line-height: 1.5; }
body.rukit-system .rukit-text--accent { color: var(--accent); }
body.rukit-system .rukit-text--muted { color: var(--muted); }
body.rukit-system .rukit-text-align--center { text-align: center; }
body.rukit-system .rukit-text-align--right { text-align: right; }
body.rukit-system .rukit-element-position--center { margin-right: auto !important; margin-left: auto !important; }
body.rukit-system .rukit-element-position--right { margin-right: 0 !important; margin-left: auto !important; }
body.rukit-system .rukit-inline-link { color: var(--accent); font-weight: 700; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
body.rukit-system .rukit-inline-link:hover,
body.rukit-system .rukit-inline-link:focus-visible { color: var(--ink); }
body.rukit-system .rukit-builder-media {
  display: grid;
  overflow: hidden;
  gap: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface-alt);
}
body.rukit-system .rukit-builder-media img,
body.rukit-system .rukit-builder-media video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
  object-fit: cover;
}
body.rukit-system .rukit-builder-media figcaption { padding: 12px 16px; color: var(--muted); font-size: 13px; }
body.rukit-system .rukit-media--left { width: min(58%, 680px); margin-right: auto; }
body.rukit-system .rukit-media--right { width: min(58%, 680px); margin-left: auto; }
body.rukit-system .rukit-media--wide { width: 100%; }

body.rukit-system .section-intro,
body.rukit-system .section-head { display: grid; grid-template-columns: minmax(0, 1fr); align-items: start; max-width: 850px; gap: 18px; margin-bottom: 44px; }
body.rukit-system .section-head h1,
body.rukit-system .section-head h2,
body.rukit-system .section-head h3 { overflow-wrap: normal; word-break: normal; hyphens: auto; }

body.rukit-system .about-grid {
  display: grid;
  /* The editorial heading needs room for two intentional, readable lines. */
  grid-template-columns: minmax(700px, 1fr) minmax(420px, 1.05fr);
  gap: 42px;
  align-items: center;
}
body.rukit-system .about-grid .media-showcase { grid-template-columns: repeat(2, minmax(0, 1fr)); }
body.rukit-system .about-grid .media-showcase--home .media-showcase__item:first-child { grid-column: auto; }
body.rukit-system .about-copy { display: grid; gap: 22px; }
body.rukit-system .about-copy > div h2 { max-width: 500px; }
body.rukit-system .about-copy p { color: var(--muted); font-size: 18px; font-weight: 400; }
body.rukit-system .about-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
body.rukit-system .about-facts article { min-height: 138px; padding: 24px; background: var(--surface); }
body.rukit-system .about-facts strong { display: block; margin-bottom: 8px; color: var(--accent); font-size: 20px; }
body.rukit-system .about-facts span { color: var(--muted); }
body.rukit-system .industry-list { display: flex; flex-wrap: wrap; gap: 8px; }
body.rukit-system .industry-list span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 3px; color: var(--muted); font-size: 13px; }
body.rukit-system .about-geography { display: grid; gap: 10px; padding-top: 2px; }
body.rukit-system .about-geography > strong { color: var(--ink); font-family: var(--font-main), Arial, sans-serif; font-size: 14px; }

body.rukit-system .home-products { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
body.rukit-system .product-link-card {
  display: grid;
  overflow: hidden;
  min-width: 0;
  grid-template-rows: 220px minmax(0, 1fr);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
}
body.rukit-system .product-link-card__image { overflow: hidden; }
body.rukit-system .product-link-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
body.rukit-system .product-link-card:hover img { transform: scale(1.035); }
body.rukit-system .product-link-card__number { display: none; }
body.rukit-system .product-link-card__body { display: grid; align-content: start; gap: 14px; padding: 24px 22px; }
body.rukit-system .product-link-card__body p { color: var(--muted); }
body.rukit-system .product-link-card__body > strong { align-self: end; color: var(--accent); font-size: 14px; }
body.rukit-system .product-link-card h3::after { content: none; }

body.rukit-system .process-grid-v2,
body.rukit-system .request-steps { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
body.rukit-system .process-step {
  min-width: 0;
  min-height: 210px;
  padding: 24px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
body.rukit-system .process-step span { display: block; margin-bottom: 42px; color: var(--accent); font-weight: 700; }
body.rukit-system .process-step h3 { margin-bottom: 12px; font-size: 20px; }
body.rukit-system .process-step p { color: var(--muted); font-size: 14px; }
body.rukit-system .section-cta { margin-top: 30px; }

body.rukit-system .contact-section-v2 { background: #222; color: #fff; }
body.rukit-system.rukit-theme-dark .contact-section-v2 { background: #101010; }
body.rukit-system .contact-layout-v2 { display: grid; grid-template-columns: minmax(0, .75fr) minmax(500px, 1.25fr); gap: 64px; align-items: start; }
body.rukit-system .contact-layout-v2 h2 { color: #fff; }
body.rukit-system .contact-layout-v2 .section-intro p { color: #c8c8c3; }
body.rukit-system .contact-data { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; border: 1px solid #454541; background: #454541; }
body.rukit-system .contact-data > div { min-width: 0; padding: 18px; background: #292929; color: #fff; overflow-wrap: anywhere; }
body.rukit-system .contact-data > div > span { display: block; margin-bottom: 6px; color: #a9a9a4; font-size: 12px; text-transform: uppercase; }
body.rukit-system .contact-data a:not(.button) { color: #fff; }
body.rukit-system .contact-data__wide,
body.rukit-system .contact-data__actions { grid-column: 1 / -1; }
body.rukit-system .contact-data__actions { display: flex; flex-wrap: wrap; gap: 10px; }
body.rukit-system .contact-data .button.secondary { border-color: #777; color: #fff; }

/* Product and information pages */
body.rukit-system .page-hero { border-bottom: 1px solid var(--line); }
body.rukit-system .page-hero__grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); gap: 64px; align-items: end; }
body.rukit-system .page-hero h1 { max-width: 920px; margin-bottom: 24px; }
body.rukit-system .page-hero__aside {
  display: grid;
  gap: 1px;
  align-self: stretch;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: none;
}
body.rukit-system .page-hero__aside span {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  min-width: 0;
  min-height: 84px;
  padding: 20px 24px;
  border: 0;
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
  color: var(--ink);
  font-family: var(--font-main), Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: normal;
  backdrop-filter: none;
}
body.rukit-system .page-hero__aside span::before {
  width: 18px;
  height: 3px;
  content: "";
  background: var(--accent);
}
/* These are explanatory labels, not links. Keep their state visually neutral. */
body.rukit-system .page-hero__aside span:hover { color: var(--ink); }

body.rukit-system .product-summary-grid,
body.rukit-system .product-detail__grid,
body.rukit-system .request-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr); gap: 64px; align-items: start; }
body.rukit-system .product-summary-grid { container-type: inline-size; }
body.rukit-system .product-copy { display: grid; gap: 20px; }
body.rukit-system .product-copy p { color: var(--muted); font-size: 18px; }
body.rukit-system .product-figure { overflow: hidden; border-radius: 4px; background: var(--surface-alt); }
body.rukit-system .product-figure img { width: 100%; min-height: 420px; object-fit: cover; }
body.rukit-system .product-figure figcaption { padding: 12px 16px; color: var(--muted); font-size: 12px; }

body.rukit-system .capabilities-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
body.rukit-system .value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  border: 0;
  background: transparent;
}
body.rukit-system .capability-card { min-width: 0; min-height: 180px; padding: 20px; border: 1px solid var(--line); background: var(--surface); }
body.rukit-system .metric-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  row-gap: 18px;
  min-width: 0;
  min-height: 220px;
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  overflow: visible;
  background: var(--surface-alt);
}
body.rukit-system .metric-card:first-child { border-left: 3px solid var(--accent); }
body.rukit-system .metric-card::before { content: none; }
body.rukit-system .capability-card > span { display: block; margin-bottom: 30px; color: var(--accent); font-size: 13px; font-weight: 700; }
body.rukit-system .capability-card h3 { margin-bottom: 12px; font-size: 20px; }
body.rukit-system .capability-card p,
body.rukit-system .metric-card p { align-self: start; color: var(--muted); font-size: 14px; line-height: 1.5; }
body.rukit-system .metric-card strong {
  display: block;
  align-self: start;
  margin: 0;
  color: var(--accent);
  max-width: 100%;
  font-size: clamp(17px, 1.1vw, 21px);
  line-height: 1.2;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

body.rukit-system .product-summary-grid .value-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}
body.rukit-system .product-summary-grid .metric-card {
  grid-template-columns: minmax(190px, .9fr) minmax(0, 1.1fr);
  grid-template-rows: 1fr;
  column-gap: 24px;
  min-height: 128px;
  align-items: center;
  padding: 24px 26px;
}
body.rukit-system .product-summary-grid .metric-card strong,
body.rukit-system .product-summary-grid .metric-card p { align-self: center; margin: 0; }
body.rukit-system .product-summary-grid .metric-card strong { font-size: clamp(17px, 1vw, 19px); }

@container (max-width: 640px) {
  body.rukit-system .value-grid { grid-template-columns: 1fr; }
  body.rukit-system .metric-card {
    grid-template-columns: minmax(150px, .85fr) minmax(0, 1.15fr);
    grid-template-rows: 1fr;
    column-gap: 24px;
    min-height: 0;
    padding: 22px 24px;
  }
  body.rukit-system .metric-card strong,
  body.rukit-system .metric-card p { align-self: center; margin: 0; }
}
body.rukit-system .audience-panel { display: grid; grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr); gap: 40px; padding: 36px; border-left: 4px solid var(--accent); background: var(--surface); }
body.rukit-system .audience-panel h2 { font-size: clamp(28px, 2.7vw, 38px); overflow-wrap: normal; word-break: normal; hyphens: auto; }
body.rukit-system .audience-panel p { color: var(--muted); font-size: 18px; }
body.rukit-system .product-cta { display: flex; align-items: center; justify-content: space-between; gap: 36px; padding: 42px; background: #222; color: #fff; }
body.rukit-system .product-cta h2 { max-width: 760px; color: #fff; }
body.rukit-system .product-cta .button { flex: 0 0 auto; max-width: 100%; }
body.rukit-system .disclaimer { margin-top: 18px; color: var(--muted); font-size: 13px; }

body.rukit-system .media-showcase { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
body.rukit-system .media-showcase__item { overflow: hidden; margin: 0; border: 1px solid var(--line); border-radius: 4px; background: var(--surface); }
body.rukit-system .media-showcase__item img,
body.rukit-system .media-showcase__item video { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: #111; }
body.rukit-system .media-showcase__item figcaption { display: grid; gap: 3px; padding: 14px 16px; background: #202020; color: #fff; backdrop-filter: none; }
body.rukit-system .media-showcase__item figcaption span { color: #d3d3ce; font-size: 13px; }
body.rukit-system .media-showcase--home .media-showcase__item:first-child { grid-column: span 2; }
body.rukit-system .about-video { margin-top: 56px; }
body.rukit-system .video-showcase { color: var(--ink); }
body.rukit-system .video-showcase h2 { color: var(--ink); font-size: clamp(28px, 3vw, 42px); line-height: 1.12; }
body.rukit-system .video-showcase p:not(.eyebrow) { color: var(--muted); font-family: var(--font-text), Arial, sans-serif; }

body.rukit-system .request-steps { margin-bottom: 50px; }
body.rukit-system .request-form { display: grid; gap: 16px; padding: 30px; border: 1px solid var(--line); background: var(--surface); }
body.rukit-system .request-form label { display: grid; gap: 7px; }
body.rukit-system .request-form label > span { color: var(--muted); font-size: 13px; font-weight: 700; }
body.rukit-system .request-form input:not([type="checkbox"]),
body.rukit-system .request-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}
body.rukit-system .request-form textarea { min-height: 130px; resize: vertical; }
body.rukit-system .request-form__consent { grid-template-columns: 20px 1fr; align-items: start; }
body.rukit-system .request-form__note,
body.rukit-system .form-status { color: var(--muted); font-size: 13px; }
body.rukit-system .form-status[data-state="success"] { color: #237a3b; }
body.rukit-system .form-status[data-state="error"] { color: #c33224; }
body.rukit-system .request-personal { display: grid; gap: 18px; padding: 30px; border-left: 4px solid var(--accent); background: var(--surface-alt); }
body.rukit-system .request-personal__actions { display: flex; flex-wrap: wrap; gap: 10px; }

body.rukit-system .requisite-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; border: 1px solid var(--line); background: var(--line); }
body.rukit-system .requisite-grid article { min-width: 0; padding: 20px; background: var(--surface); overflow-wrap: anywhere; }
body.rukit-system .requisite-grid article span { display: block; margin-bottom: 8px; color: var(--muted); font-size: 12px; }
body.rukit-system .it-profile-page { display: block; }
body.rukit-system .it-profile-page__section { display: grid; gap: 28px; margin-top: 64px; }
body.rukit-system .it-profile-page__section > div:first-child { display: grid; gap: 16px; max-width: 800px; }
body.rukit-system .it-profile-page__download { margin-top: 24px; }

/* Footer */
body.rukit-system .rukit-footer { padding: 54px 0; border-top: 1px solid var(--line); background: #151515; color: #fff; }
body.rukit-system .rukit-footer__inner { display: grid; grid-template-columns: minmax(220px, .8fr) minmax(500px, 1.2fr); gap: 50px; }
body.rukit-system .rukit-footer__main { display: flex; flex-direction: column; gap: 10px; color: #b7b7b2; font-size: 13px; }
body.rukit-system .rukit-footer__main strong { color: #fff; font-size: 16px; }
body.rukit-system .rukit-footer__nav { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
body.rukit-system .rukit-footer__column { display: flex; min-width: 0; flex-direction: column; gap: 9px; }
body.rukit-system .rukit-footer__column strong { margin-bottom: 5px; color: #fff; font-size: 13px; text-transform: uppercase; }
body.rukit-system .rukit-footer__column a { color: #bebeb9; font-size: 13px; text-decoration: none; overflow-wrap: anywhere; }
body.rukit-system .rukit-footer__column a:hover { color: #fff; }
body.rukit-system .rukit-footer__social { grid-column: 1 / -1; display: flex; gap: 16px; }

@media (min-width: 1081px) and (max-width: 1180px) {
  body.rukit-system .about-grid { grid-template-columns: 1fr; }
  body.rukit-system .product-summary-grid,
  body.rukit-system .product-detail__grid { grid-template-columns: 1fr; }
}

@media (max-width: 1080px) {
  body.rukit-system { --section-space: 70px; }
  body.rukit-system .site-header .nav { grid-template-columns: 160px 1fr auto; gap: 12px; }
  body.rukit-system .nav-toggle { display: block; justify-self: end; }
  body.rukit-system .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - var(--header-height));
    padding: 14px 24px 24px;
    overflow-y: auto;
    border-bottom: 1px solid #d9d9d4;
    background: #fafaf7;
    justify-content: stretch;
    align-items: stretch;
  }
  body.rukit-system .site-header.is-menu-open .nav-links { display: grid; gap: 0; }
  body.rukit-system .nav-links > a,
  body.rukit-system .nav-parent-row > a { display: block; padding: 13px 0; white-space: normal; }
  body.rukit-system .nav-parent-row { justify-content: space-between; border-bottom: 1px solid #deded9; }
  body.rukit-system .nav-item { display: block; width: 100%; }
  body.rukit-system .nav-parent-row { width: 100%; }
  body.rukit-system .nav-links > a { border-bottom: 1px solid #deded9; }
  body.rukit-system .nav-dropdown {
    position: static;
    display: none;
    visibility: visible;
    width: 100%;
    padding: 6px 0 10px 12px;
    border: 0;
    opacity: 1;
    background: transparent;
    box-shadow: none;
    transform: none;
  }
  body.rukit-system .nav-item:hover .nav-dropdown,
  body.rukit-system .nav-item:focus-within .nav-dropdown { display: none; }
  body.rukit-system .nav-item.is-open .nav-dropdown { display: grid; }
  body.rukit-system .nav-mobile-cta {
    display: flex !important;
    width: 100%;
    min-height: 44px;
    align-items: center;
    justify-content: center !important;
    margin-top: 14px;
    padding: 10px 16px;
    border-radius: 4px;
    background: var(--action);
    color: #fff !important;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
  }
  body.rukit-system .nav-cta { min-height: 42px; padding: 9px 14px; }
  body.rukit-system .editorial-hero-grid,
  body.rukit-system .about-grid,
  body.rukit-system .contact-layout-v2,
  body.rukit-system .product-summary-grid,
  body.rukit-system .product-detail__grid,
  body.rukit-system .request-layout { grid-template-columns: 1fr; }
  body.rukit-system .editorial-hero-grid { gap: 38px; padding-bottom: 26px; }
  body.rukit-system .light-hero-media__image { aspect-ratio: 16 / 9; }
  body.rukit-system .pdf-slide { grid-template-columns: 1fr; }
  body.rukit-system .pdf-hero__copy { padding: 64px 32px 42px; }
  body.rukit-system .pdf-hero__visual { min-height: 390px; }
  body.rukit-system .home-products,
  body.rukit-system .capabilities-grid,
  body.rukit-system .value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body.rukit-system .metric-card:last-child { grid-column: 1 / -1; border-top: 1px solid var(--line); border-left: 0; }
  body.rukit-system .process-grid-v2,
  body.rukit-system .request-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body.rukit-system .process-step:last-child { grid-column: 1 / -1; }
  body.rukit-system .page-hero__grid { grid-template-columns: 1fr; }
  body.rukit-system .rukit-footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body.rukit-system .product-summary-grid .metric-card {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    row-gap: 12px;
    padding: 22px;
    border-top: 1px solid var(--line);
    border-left: 3px solid var(--accent);
  }

  body.rukit-system { --header-height: 66px; --section-space: 56px; }
  body.rukit-system .wrap { width: min(100% - 32px, 1180px); }
  body.rukit-system .rukit-section-space--compact { padding-top: 38px; padding-bottom: 38px; }
  body.rukit-system .rukit-section-space--spacious { padding-top: 72px; padding-bottom: 72px; }
  body.rukit-system .rukit-section-width--narrow > .wrap,
  body.rukit-system .rukit-section-width--wide > .wrap { width: min(100% - 32px, 1180px); }
  body.rukit-system .rukit-section-heading--compact h1,
  body.rukit-system .rukit-section-heading--compact h2 { font-size: 30px; }
  body.rukit-system .rukit-section-heading--large h1,
  body.rukit-system .rukit-section-heading--large h2 { font-size: 38px; }
  body.rukit-system .rukit-section-style--framed > .wrap { padding: 24px; }
  body.rukit-system .rukit-section-style--accent > .wrap { padding-left: 22px; }
  body.rukit-system .rukit-custom-content--two-columns { grid-template-columns: 1fr; }
  body.rukit-system .rukit-custom-content--three-columns { grid-template-columns: 1fr; }
  body.rukit-system .rukit-custom-content > :is(h1, h2, h3, h4) { max-width: 100% !important; font-size: clamp(24px, 8.6vw, 38px) !important; }
  body.rukit-system .rukit-custom-content > :is(p, li, figcaption) { max-width: 100% !important; font-size: clamp(13px, 4.8vw, 22px) !important; }
  body.rukit-system .rukit-builder-media { width: 100% !important; max-width: 100% !important; margin-right: 0 !important; margin-left: 0 !important; }
  body.rukit-system .rukit-media--left,
  body.rukit-system .rukit-media--right { width: 100%; margin-inline: 0; }
  body.rukit-system .site-header .nav { min-height: var(--header-height); grid-template-columns: 140px 1fr auto; }
  body.rukit-system .site-header .logo { width: 140px; height: 35px; }
  body.rukit-system .site-header .logo img { width: 136px; height: 26px; flex-basis: 136px; }
  body.rukit-system .nav-cta { display: none; }
  body.rukit-system .language-switch { width: 74px; min-width: 74px; height: 36px; font-size: 11px; }
  body.rukit-system .pdf-hero__copy,
  body.rukit-system .editorial-hero-copy { overflow: visible; }
  body.rukit-system .pdf-hero__copy h1,
  body.rukit-system .pdf-hero__copy h1 span,
  body.rukit-system .editorial-hero-copy h1,
  body.rukit-system .editorial-hero-copy h1 span,
  body.rukit-system .page-hero h1 {
    width: auto;
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
    white-space: normal;
  }
  body.rukit-system .pdf-hero__copy h1 span { white-space: normal; }
  body.rukit-system .pdf-slide,
  body.rukit-system .light-hero-slider__slide { min-height: auto; }
  body.rukit-system .pdf-hero__copy { padding: 54px 16px 36px; }
  body.rukit-system .pdf-slide { min-height: auto; overflow: visible; }
  body.rukit-system .pdf-hero__visual { min-height: 300px; clip-path: none; }
  body.rukit-system .editorial-hero-grid { width: calc(100% - 32px); min-height: auto; padding: 42px 0 26px; }
  body.rukit-system .light-hero-media__image { aspect-ratio: 4 / 3; }
  body.rukit-system .light-hero-media__copy { grid-template-columns: 48px minmax(0, 1fr); column-gap: 14px; min-height: 80px; padding: 15px 16px; }
  body.rukit-system .light-hero-slider__navigation { width: calc(100% - 32px); grid-template-columns: minmax(80px, 1fr) minmax(250px, .75fr); gap: 22px; padding-bottom: 28px; }
  body.rukit-system .light-hero-slider__navigation { grid-template-columns: 1fr; gap: 18px; }
  body.rukit-system .pdf-slider > .pdf-slider__controls { width: calc(100% - 64px); min-height: 82px; }
  body.rukit-system .home-products,
  body.rukit-system .capabilities-grid,
  body.rukit-system .value-grid,
  body.rukit-system .media-showcase { grid-template-columns: 1fr; }
  body.rukit-system .metric-card { min-height: 0; padding: 26px 22px; border-top: 1px solid var(--line); border-left: 0; }
  body.rukit-system .metric-card { grid-template-columns: 1fr; grid-template-rows: auto 1fr; row-gap: 14px; }
  body.rukit-system .metric-card:first-child { border-top: 0; }
  body.rukit-system .metric-card:last-child { grid-column: auto; }
  body.rukit-system .about-grid .media-showcase { grid-template-columns: 1fr; }
  body.rukit-system .media-showcase--home .media-showcase__item:first-child { grid-column: auto; }
  body.rukit-system .about-grid { gap: 38px; }
  body.rukit-system .about-facts { grid-template-columns: 1fr; }
  body.rukit-system .process-grid-v2,
  body.rukit-system .request-steps { grid-template-columns: 1fr; }
  body.rukit-system .process-step:last-child { grid-column: auto; }
  body.rukit-system .process-step { min-height: 0; }
  body.rukit-system .process-step span { margin-bottom: 24px; }
  body.rukit-system .contact-data,
  body.rukit-system .requisite-grid { grid-template-columns: 1fr; }
  body.rukit-system .contact-data__wide,
  body.rukit-system .contact-data__actions { grid-column: auto; }
  body.rukit-system .audience-panel { grid-template-columns: 1fr; gap: 18px; padding: 26px; }
  body.rukit-system .product-cta { align-items: flex-start; flex-direction: column; padding: 28px; }
  body.rukit-system .request-form { padding: 22px; }
  body.rukit-system .rukit-footer__nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 440px) {
  body.rukit-system .site-header .nav { grid-template-columns: 124px 1fr auto; }
  body.rukit-system .site-header .logo { width: 124px; }
  body.rukit-system .site-header .logo img { width: 120px; height: 23px; flex-basis: 120px; }
  body.rukit-system .pdf-slider > .pdf-slider__controls { width: calc(100% - 32px); min-height: 54px; padding: 10px 0 14px; }
  body.rukit-system .pdf-slider > .pdf-slider__controls .pdf-slider__dots button { min-height: 52px; padding: 8px; grid-template-columns: 1fr; place-items: center; }
  body.rukit-system .slider-tab__label { display: block; font-size: 10px; line-height: 1.1; text-align: center; }
  body.rukit-system .light-hero-slider__navigation { display: block; padding-bottom: 24px; }
  body.rukit-system .light-hero-slider__progress { margin-bottom: 14px; }
  body.rukit-system .light-hero-slider__controls { min-height: 54px; }
  body.rukit-system .light-hero-slider__controls .pdf-slider__dots,
  body.rukit-system .light-hero-slider__controls .pdf-slider__dots button { height: 52px; }
  body.rukit-system .rukit-footer__nav { grid-template-columns: 1fr; }
}

/* Mobile hero: keep the active slide inside the viewport at every small width. */
@media (max-width: 720px) {
  body.rukit-system .pdf-slider,
  body.rukit-system .pdf-slider__track,
  body.rukit-system .pdf-slide {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  body.rukit-system .pdf-slide {
    display: none;
    grid-template-columns: minmax(0, 1fr);
    overflow: hidden;
  }

  body.rukit-system .pdf-slide.is-active {
    display: grid;
  }

  body.rukit-system .pdf-hero__copy {
    width: 100%;
    max-width: 100%;
    padding: 46px 16px 34px;
    gap: 18px;
  }

  body.rukit-system .pdf-hero__copy h1,
  body.rukit-system .pdf-hero__copy h1 span {
    width: 100%;
    max-width: 100%;
    font-size: clamp(28px, 8.6vw, 36px);
    line-height: 1.04;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
  }

  body.rukit-system .pdf-hero__copy p {
    width: 100%;
    max-width: 100%;
    font-size: 17px;
    line-height: 1.42;
  }

  body.rukit-system .pdf-hero__visual {
    width: 100%;
    max-width: 100%;
    min-height: 300px;
  }

  body.rukit-system .pdf-slider > .pdf-slider__controls {
    width: calc(100% - 32px);
    max-width: none;
    min-height: 62px;
    margin: 18px auto 0;
    padding: 0;
  }

  body.rukit-system .pdf-slider > .pdf-slider__controls .pdf-slider__dots {
    width: 100%;
    grid-template-columns: repeat(4, 12px);
    justify-content: center;
    align-items: center;
    gap: 12px;
  }

  body.rukit-system .pdf-slider > .pdf-slider__controls .pdf-slider__dots button {
    width: 12px;
    min-width: 12px;
    height: 12px;
    min-height: 12px;
    padding: 0;
    grid-template-columns: 1fr;
    place-items: center;
    text-align: center;
    border: 1px solid rgba(255,255,255,.42);
    border-radius: 50%;
    background: transparent;
  }

  body.rukit-system .pdf-slider > .pdf-slider__controls .pdf-slider__dots button::before,
  body.rukit-system .pdf-slider > .pdf-slider__controls .pdf-slider__dots button::after { display: none; }
  body.rukit-system .pdf-slider > .pdf-slider__controls .pdf-slider__dots button.is-active { border-color: var(--action); background: var(--action); }

  body.rukit-system .pdf-slider > .pdf-slider__controls .slider-tab__label {
    display: none;
  }

  body.rukit-system .pdf-slider > .pdf-slider__controls .slider-tab__progress {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.rukit-system *,
  body.rukit-system *::before,
  body.rukit-system *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
