@charset "UTF-8";

@font-face {
  font-family: "Cheque";
  src: url("./assets/font/Cheque-Black.woff") format("woff");
  font-weight: 400;
  font-display: swap;
}

html {
  overflow-x: clip;
}
body.sgr26-page {
  overflow-x: clip;
  --sgr26-paper: #f4f2ee;
  --sgr26-paper-bright: #fbfaf7;
  --sgr26-white: #ffffff;
  --sgr26-ink: #111827;
  --sgr26-muted: #667085;
  --sgr26-navy: #05234c;
  --sgr26-blue: #428bf4;
  --sgr26-blue-2: #3175d6;
  --sgr26-blue-dark: #3175d6;
  --sgr26-blue-deep: #1a54a8;
  --sgr26-blue-edge: #1a54a8;
  --sgr26-line: #dbe7f8;
  --sgr26-line-strong: #b9cae5;
  --sgr26-route: #cbd9ea;
  --sgr26-green: #278b76;
  --sgr26-amber: #d98a30;
  --sgr26-turq: #8bd0df;
  --sgr26-soft: #f6f9fe;
  --sgr26-shadow: 0 22px 70px rgba(5, 35, 76, 0.12);
  --sgr26-shadow-sm: 0 14px 42px rgba(26, 84, 168, 0.11);
  --sgr26-grad-blue: linear-gradient(180deg, #428bf4 0%, #3175d6 100%);
  --sgr26-font-main: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --sgr26-font-display: "Manrope", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --sgr26-font-logo: "Cheque", Georgia, serif;
  --sgr26-header-h: 82px;
  margin: 0;
  min-width: 320px;
  color: var(--sgr26-ink);
  background: var(--sgr26-paper);
  font-family: var(--sgr26-font-main);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.sgr26-page.is-drawer-open {
  overflow: hidden;
}

.sgr26,
.sgr26 *,
.sgr26 *::before,
.sgr26 *::after {
  box-sizing: border-box;
}

.sgr26 {
  width: 100%;
  overflow: clip;
  background: var(--sgr26-paper);
}

.sgr26 img {
  display: block;
  max-width: 100%;
}

.sgr26 a {
  color: inherit;
}

.sgr26 button,
.sgr26 input,
.sgr26 textarea {
  font: inherit;
}

.sgr26 button,
.sgr26 a,
.sgr26 summary,
.sgr26 input,
.sgr26 textarea {
  -webkit-tap-highlight-color: transparent;
}

.sgr26 :focus-visible {
  outline: 3px solid #0b68d7;
  outline-offset: 4px;
}

.sgr26-skip {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 12px 18px;
  border-radius: 10px;
  color: #fff;
  background: #0a315f;
  font-weight: 700;
  text-decoration: none;
}

.sgr26-skip:focus {
  transform: translateY(0);
}

.sgr26-shell {
  width: min(1210px, calc(100% - 40px));
  margin-inline: auto;
}

.sgr26 h1,
.sgr26 h2,
.sgr26 h3 {
  margin-top: 0;
  color: var(--sgr26-navy);
  letter-spacing: 0;
  font-family: var(--sgr26-font-display);
}

.sgr26 h1 {
  font-weight: 800;
  font-size: clamp(34px, 4.25vw, 58px);
  line-height: 1.08;
}

.sgr26 h2 {
  font-weight: 800;
  font-size: clamp(29px, 3.2vw, 48px);
  line-height: 1.08;
}

.sgr26 h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.22;
}

.sgr26 p {
  color: var(--sgr26-muted);
  font-size: 17px;
  line-height: 1.65;
}

.sgr26-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--sgr26-header-h);
  border-bottom: 1px solid rgba(219, 231, 248, 0.85);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.sgr26-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1210px, calc(100% - 40px));
  min-height: var(--sgr26-header-h);
  height: var(--sgr26-header-h);
  margin-inline: auto;
  gap: 26px;
}

.sgr26-logo {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 330px;
  color: #34435c;
  text-decoration: none;
}

.sgr26-logo__mark {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  object-fit: contain;
}

.sgr26-logo__text {
  display: block;
  min-width: 0;
}

.sgr26-logo__title {
  display: block;
  color: #000;
  font-family: var(--sgr26-font-logo);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.sgr26-logo__sub {
  display: block;
  margin-top: 7px;
  color: var(--sgr26-muted);
  font-family: var(--sgr26-font-main);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
}

.sgr26-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px;
  border: 1px solid var(--sgr26-line);
  border-radius: 999px;
  background: rgba(246, 249, 254, 0.8);
}

.sgr26-nav a {
  color: #34435c;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1;
  padding: 12px 15px 10px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.sgr26-nav a:hover,
.sgr26-nav a:focus-visible {
  background: #fff;
  color: var(--sgr26-blue-dark);
  box-shadow: var(--sgr26-shadow-sm);
}

.sgr26-header__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex: 0 0 auto;
  text-align: right;
}

.sgr26-header__contact a {
  display: block;
  color: var(--sgr26-navy);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
}

.sgr26-header__contact span {
  display: block;
  margin-top: 5px;
  color: var(--sgr26-muted);
  font-size: 12px;
  line-height: 1.3;
}

.sgr26-menu {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(26, 84, 168, 0.22);
  border-radius: 50%;
  color: #1a54a8;
  background: #fff;
  box-shadow: 0 10px 24px rgba(26, 84, 168, 0.08);
  cursor: pointer;
}

.sgr26-menu__icon {
  display: grid;
  gap: 4px;
  width: 18px;
}

.sgr26-menu__icon i {
  display: block;
  height: 2px;
  background: #1a54a8;
  transition: transform 180ms ease, opacity 180ms ease;
}

.sgr26-menu[aria-expanded="true"] .sgr26-menu__icon i:first-child,
.sgr26-menu--close .sgr26-menu__icon i:first-child {
  transform: translateY(3px) rotate(45deg);
}

.sgr26-menu[aria-expanded="true"] .sgr26-menu__icon i:last-child,
.sgr26-menu--close .sgr26-menu__icon i:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.sgr26-mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: block;
  padding: 24px;
  background: rgba(5, 35, 76, 0.28);
  opacity: 1;
  pointer-events: auto;
}

.sgr26-mobile-drawer[hidden] {
  display: none;
}

.sgr26-mobile-drawer__panel {
  display: flex;
  flex-direction: column;
  width: min(100%, 420px);
  height: 100%;
  margin-left: auto;
  padding: 18px 18px 28px;
  border: 1px solid rgba(185, 202, 229, 0.9);
  border-radius: 18px;
  background: #f4f8f8;
  box-shadow: var(--sgr26-shadow);
  overflow: auto;
}

.sgr26-mobile-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 76px;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--sgr26-line);
}

.sgr26-logo--drawer {
  min-width: 0;
  gap: 10px;
}

.sgr26-logo--drawer .sgr26-logo__mark {
  width: 50px;
  height: 50px;
  flex-basis: 50px;
}

.sgr26-logo--drawer .sgr26-logo__title {
  font-size: 16px;
  line-height: 1.08;
}

.sgr26-logo--drawer .sgr26-logo__sub {
  margin-top: 5px;
  font-size: 11px;
  line-height: 1.18;
}

.sgr26-mobile-nav {
  display: grid;
  gap: 4px;
  margin-top: 18px;
}

.sgr26-mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--sgr26-navy);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.sgr26-mobile-nav a:hover,
.sgr26-mobile-nav a:focus-visible {
  background: #fff;
  color: var(--sgr26-blue-dark);
}

.sgr26-mobile-drawer__contact {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--sgr26-line);
}

.sgr26-mobile-drawer__contact a {
  display: block;
  color: var(--sgr26-navy);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.sgr26-mobile-drawer__contact span,
.sgr26-mobile-drawer__contact a[href^="mailto:"] {
  display: block;
  margin-top: 8px;
  color: #44556f;
  font-size: 14px;
  font-weight: 500;
}

.sgr26-hero {
  position: relative;
  min-height: calc(100vh - var(--sgr26-header-h));
  display: grid;
  align-items: center;
  padding: 52px 0 42px;
  isolation: isolate;
  overflow: hidden;
  background: #f7f8fa;
}

.sgr26-hero__media {
  position: absolute;
  z-index: -3;
  inset: 0;
  background-color: #f7f8fa;
  background-image: url("assets/sgr-evidence-route-background.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.sgr26-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(65, 138, 242, 0.09), rgba(255, 255, 255, 0)),
    linear-gradient(90deg, rgba(250, 250, 250, 0.99) 0%, rgba(250, 250, 250, 0.95) 37%, rgba(250, 250, 250, 0.32) 63%, rgba(250, 250, 250, 0.02) 100%);
}

.sgr26-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 150px;
  background: linear-gradient(180deg, rgba(247, 248, 250, 0), rgba(247, 248, 250, 0.82));
}

.sgr26-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--sgr26-header-h) - 94px);
  padding: 24px 0;
}

.sgr26-hero__content {
  /*
    Free band left of route labels ends ~ before node 01.
    Copy (h1/lead/actions) stays in that band.
    Fact plates sit UNDER actions as a 3-col strip — a right-side rail
    collides with route labels 03–04 on the painted diagonal.
  */
  width: min(780px, 58%);
  padding: 16px 0;
  display: block;
}

.sgr26-hero__content > .sgr26-kicker,
.sgr26-hero__content > h1,
.sgr26-hero__content > .sgr26-hero__lead,
.sgr26-hero__content > .sgr26-hero__audience,
.sgr26-hero__content > .sgr26-actions {
  /* Keep readable width clear of node 01 (~821px at 1710vw) */
  max-width: min(560px, 100%);
}

.sgr26 .sgr26-kicker {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--sgr26-blue-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.1px;
  line-height: 1.1;
  text-transform: uppercase;
}

.sgr26 .sgr26-kicker::before {
  content: "";
  width: 26px;
  height: 3px;
  flex: 0 0 auto;
  border-radius: 3px;
  background: var(--sgr26-turq);
}

.sgr26 .sgr26-kicker span {
  display: inline-block;
  color: var(--sgr26-blue-deep);
}

.sgr26-hero h1 {
  /* Cap before route node 01 so title does not sit under "01 Данные" */
  max-width: min(560px, 100%);
  margin: 0 0 14px;
  color: var(--sgr26-navy);
  font-family: var(--sgr26-font-display);
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.06;
}

.sgr26 .sgr26-hero__lead {
  max-width: min(560px, 100%);
  margin: 0 0 0;
  color: #42526d;
  font-size: 18px;
  line-height: 1.55;
}

.sgr26 .sgr26-hero__audience {
  margin: 16px 0 0;
  color: #283749;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.sgr26-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
  margin-bottom: 18px;
}

.sgr26 .btn,
.sgr26-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 18px 28px 15px;
  border: 0;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  font-family: var(--sgr26-font-main);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.sgr26 .btn-blue,
.sgr26-button--primary {
  color: #fff;
  background: var(--sgr26-grad-blue);
  border-bottom: 3px solid var(--sgr26-blue-edge);
  box-shadow: 0 30px 15px -20px rgba(26, 84, 168, 0.7);
}

.sgr26 .btn-blue::after,
.sgr26-button--primary::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 260px;
  left: -48px;
  top: -105px;
  transform: rotate(45deg);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.04));
  animation: sgr26-shine 3.2s ease-in-out infinite;
}

@keyframes sgr26-shine {
  0% { left: -48px; }
  34%, 100% { left: 115%; }
}

.sgr26 .btn span,
.sgr26-button span {
  position: relative;
  z-index: 1;
}

.sgr26 .btn-blue:hover:not(:disabled):not([aria-disabled="true"]),
.sgr26-button--primary:hover:not(:disabled):not([aria-disabled="true"]) {
  opacity: 0.96;
  box-shadow: 0 30px 15px -15px rgba(26, 84, 168, 0.6);
}

.sgr26 .btn-blue:disabled,
.sgr26 .btn-blue[aria-disabled="true"],
.sgr26-button--primary:disabled,
.sgr26-button--primary[aria-disabled="true"] {
  opacity: 0.82;
  cursor: not-allowed;
  filter: saturate(0.82);
  box-shadow: none;
}

.sgr26 .btn:disabled,
.sgr26-button:disabled {
  cursor: default;
  opacity: 0.52;
  filter: saturate(0.45);
  box-shadow: none;
}

.sgr26 .btn:disabled::after,
.sgr26-button:disabled::after,
.sgr26 .btn-blue[aria-disabled="true"]::after,
.sgr26-button--primary[aria-disabled="true"]::after {
  display: none;
}

.sgr26 .text-link,
.sgr26-button--secondary,
.sgr26-dossier__link {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 0 0 6px;
  border: 0;
  border-bottom: 1px solid rgba(49, 117, 214, 0.34);
  border-radius: 0;
  color: var(--sgr26-blue-dark);
  background: transparent;
  box-shadow: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  overflow: visible;
}

.sgr26 .text-link:hover,
.sgr26-button--secondary:hover,
.sgr26-dossier__link:hover {
  color: var(--sgr26-navy);
  background: transparent;
  opacity: 1;
}

.sgr26 .text-link::after,
.sgr26-button--secondary::after,
.sgr26-dossier__link::after {
  display: none;
}

.sgr26-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.sgr26-hero__facts div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--sgr26-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 34px rgba(5, 35, 76, 0.06);
}

.sgr26-hero__facts dt {
  order: 2;
  color: var(--sgr26-muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.sgr26-hero__facts dd {
  order: 1;
  margin: 0;
  color: var(--sgr26-navy);
  font-family: var(--sgr26-font-display);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.sgr26 .sgr26-note {
  max-width: none;
  margin: 12px 0 0;
  color: #5a6b85;
  font-size: 12px;
  line-height: 1.45;
}

/* Labels SNAP to painted nodes on sgr-evidence-route-background.png.
   Coordinates are image-space fractions; sgr-landing.js maps them through
   background-size:cover math onto the hero. No CSS rail/dot duplicate. */
.sgr26-hero__route {
  position: absolute;
  z-index: 2;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  pointer-events: none;
}

.sgr26-hero__route::before {
  content: none;
}

.sgr26-hero__route li {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 4.5em;
  margin: 0;
  padding: 0;
  color: #2a3a52;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translate(-50%, -120%);
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.98),
    0 1px 0 rgba(255, 255, 255, 0.95),
    0 0 2px rgba(255, 255, 255, 1);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.sgr26-hero__route.is-snapped li {
  opacity: 1;
}

.sgr26-hero__route li::before {
  content: none;
}

/* Fallback percents only until JS snaps; approximate image-space nodes */
.sgr26-hero__route li:nth-child(1) { left: 49.6%; top: 45.4%; }
.sgr26-hero__route li:nth-child(2) { left: 58.6%; top: 48.1%; }
.sgr26-hero__route li:nth-child(3) { left: 67.5%; top: 51.0%; }
.sgr26-hero__route li:nth-child(4) { left: 77.1%; top: 54.1%; }
.sgr26-hero__route li:nth-child(5) { left: 86.5%; top: 57.0%; }

.sgr26-hero__route span {
  margin: 0;
  color: var(--sgr26-blue-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.sgr26-heading {
  max-width: 900px;
  margin-bottom: 36px;
}

.sgr26-heading h2,
.sgr26-dossier h2,
.sgr26-contact h2 {
  margin: 0;
  color: var(--sgr26-navy);
  font-family: var(--sgr26-font-display);
  font-size: clamp(29px, 3.2vw, 48px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
  max-width: 820px;
}

.sgr26-heading > p:last-child {
  max-width: 720px;
  margin: 18px 0 0;
  color: #5a6b85;
  font-size: 16px;
  line-height: 1.65;
}

.sgr26-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.42fr);
  max-width: none;
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
}

.sgr26-heading--split > p {
  margin: 0;
  color: #5a6b85;
  font-size: 16px;
  line-height: 1.65;
}

/* —— 01 Preliminary check: HACCP section rhythm + template type —— */
/* Type system (same as template):
   kicker/eyebrow 12/700 · h2 clamp(29–48)/800 · note 16/400 · body 17/400
   section padding 88px · section-title gap 40px · margin-bottom 36px */
.sgr26-applicability {
  position: relative;
  box-sizing: border-box;
  padding: 88px 0;
  isolation: isolate;
  overflow: visible;
  display: block;
  background:
    radial-gradient(920px 420px at 12% 12%, rgba(66, 139, 244, 0.07), transparent 62%),
    radial-gradient(700px 360px at 90% 80%, rgba(139, 208, 223, 0.08), transparent 58%),
    linear-gradient(180deg, #f7f9fc 0%, #f2f5f9 100%);
}

.sgr26-applicability::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 72px;
  background: linear-gradient(180deg, transparent, rgba(244, 242, 238, 0.92));
  pointer-events: none;
}

.sgr26-applicability__frame {
  box-sizing: border-box;
  width: min(1210px, calc(100% - 40px));
  max-width: min(1210px, calc(100% - 40px));
  margin-inline: auto;
  display: block;
}

/* Same grid as .sgr26-heading--split / HACCP .section-title */
.sgr26-applicability__head {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.42fr);
  gap: 40px;
  align-items: end;
  margin: 0 0 36px;
  max-width: none;
}

/* Do not override global kicker — template 12px / 700 / mb 18 */
.sgr26-applicability__head .sgr26-kicker {
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
}

/* Same h2 scale as template; wider so title wraps to ~2 lines, not a tower */
.sgr26-applicability__head-copy h2,
.sgr26-applicability__head h2 {
  max-width: min(16em, 100%);
  margin: 0;
  color: var(--sgr26-navy);
  font-family: var(--sgr26-font-display);
  font-size: clamp(29px, 3.2vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

/* Same as .section-note / .sgr26-heading--split > p — beat .sgr26 p */
.sgr26-applicability__lead,
.sgr26 p.sgr26-applicability__lead {
  margin: 0;
  max-width: none;
  color: #5a6b85;
  font-family: var(--sgr26-font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  justify-self: stretch;
}

/* Matrix cards — concept layout; type: 4 steps only (label / ui / body / card) */
.sgr26-diagnostic--matrix {
  /* label 12/700 · ui 15/600 · body 16/400 · card-title 22/700 */
  --sgr-t-label: 12px;
  --sgr-t-ui: 15px;
  --sgr-t-body: 16px;
  --sgr-t-card: 22px;
  --sgr-w-ui: 600;
  --sgr-w-strong: 700;
  --sgr-w-heavy: 700; /* avoid 800 soup inside cards */

  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.92fr);
  gap: 20px;
  align-items: stretch;
  width: 100%;
  max-height: none;
  min-height: 0;
}

.sgr26-diagnostic__board {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  height: auto;
  max-height: none;
  padding: 16px 14px 14px;
  border: 1px solid rgba(5, 35, 76, 0.06);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 18px 50px rgba(5, 35, 76, 0.06);
  overflow: visible;
}

/* Full list, no inner scroll — page scrolls if needed */
.sgr26-diagnostic__choices {
  position: relative;
  display: grid;
  grid-auto-rows: minmax(52px, auto);
  gap: 8px;
  flex: 0 0 auto;
  min-height: 0;
  height: auto;
  max-height: none;
  padding: 0;
  overflow: visible;
}

/* sliding selection plate — moves between product rows (click + autoplay) */
.sgr26-diagnostic__cursor {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 0;
  height: 52px;
  border-radius: 16px;
  border: 1.5px solid rgba(66, 139, 244, 0.55);
  background: #fff;
  box-shadow:
    0 0 0 3px rgba(66, 139, 244, 0.12),
    0 12px 28px rgba(26, 84, 168, 0.12);
  transform: translate3d(0, 0, 0);
  opacity: 0;
  transition:
    transform 480ms cubic-bezier(0.22, 0.95, 0.28, 1),
    height 320ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    opacity 200ms ease;
  pointer-events: none;
  will-change: transform, height;
}

.sgr26-diagnostic__cursor.is-visible {
  opacity: 1;
}

.sgr26-diagnostic.is-autoplaying .sgr26-diagnostic__choices button.is-autoplay-active .sgr26-diagnostic__name {
  color: var(--sgr26-navy);
}

.sgr26-diagnostic__cursor[data-tone="required"] {
  border-color: rgba(64, 168, 140, 0.5);
  box-shadow:
    0 0 0 3px rgba(64, 168, 140, 0.12),
    0 12px 28px rgba(42, 143, 118, 0.1);
}

.sgr26-diagnostic__cursor[data-tone="partial"] {
  border-color: rgba(232, 176, 96, 0.55);
  box-shadow:
    0 0 0 3px rgba(232, 176, 96, 0.14),
    0 12px 28px rgba(184, 122, 40, 0.1);
}

.sgr26-diagnostic__choices button {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 12px;
  width: 100%;
  min-height: 52px;
  height: auto;
  margin: 0;
  padding: 10px 14px 10px 10px;
  border: 1px solid transparent;
  border-radius: 16px;
  color: #243244;
  background: rgba(246, 249, 253, 0.95);
  font-family: var(--sgr26-font-main);
  font-size: var(--sgr-t-ui);
  font-weight: var(--sgr-w-ui);
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 220ms ease;
}

.sgr26-diagnostic__choices button:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(66, 139, 244, 0.16);
}

.sgr26-diagnostic__choices button:focus-visible {
  outline: 2px solid var(--sgr26-blue);
  outline-offset: 2px;
}

/* selection chrome comes from sliding cursor */
.sgr26-diagnostic__choices button[aria-pressed="true"] {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  color: var(--sgr26-navy);
}

.sgr26-diagnostic__choices button.is-flash .sgr26-diagnostic__chip {
  animation: sgr26-chip-pop 420ms cubic-bezier(0.22, 0.9, 0.28, 1);
}

@keyframes sgr26-chip-pop {
  0% { transform: scale(1); }
  35% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.sgr26-diagnostic__idx {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: #8c9caf;
  font-size: var(--sgr-t-label);
  font-weight: var(--sgr-w-strong);
  letter-spacing: 0;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  box-shadow: inset 0 0 0 1px rgba(5, 35, 76, 0.05);
}

.sgr26-diagnostic__choices button[aria-pressed="true"] .sgr26-diagnostic__idx {
  color: var(--sgr26-blue-deep);
  background: rgba(66, 139, 244, 0.1);
  box-shadow: inset 0 0 0 1px rgba(66, 139, 244, 0.16);
}

.sgr26-diagnostic__name {
  min-width: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sgr26-diagnostic__choices button[aria-pressed="true"] .sgr26-diagnostic__name {
  color: var(--sgr26-navy);
  font-weight: var(--sgr-w-strong);
}

.sgr26-diagnostic__chip {
  justify-self: end;
  flex: 0 0 auto;
  max-width: none;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(5, 35, 76, 0.05);
  color: #5b6c84;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: none;
  white-space: nowrap; /* one line in pill */
  text-align: center;
}

/* softer mint green for СГР */
.sgr26-diagnostic__choices button[data-sgr26-tone="required"] .sgr26-diagnostic__chip {
  background: rgba(64, 168, 140, 0.14);
  color: #2a8f76;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
}

/* softer warm amber for «зависит от назначения» */
.sgr26-diagnostic__choices button[data-sgr26-tone="partial"] .sgr26-diagnostic__chip {
  background: rgba(232, 176, 96, 0.18);
  color: #b87a28;
}

.sgr26-diagnostic__choices button[data-sgr26-tone="check"] .sgr26-diagnostic__chip {
  background: rgba(66, 139, 244, 0.12);
  color: #1f5fbf;
}

/* Right card: full content, NO scroll; content vertically centered */
.sgr26-diagnostic__result {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 100%;
  height: auto;
  padding: 0;
  border: 1px solid rgba(5, 35, 76, 0.07);
  border-radius: 28px;
  color: var(--sgr26-navy);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 18px 50px rgba(5, 35, 76, 0.07);
  overflow: hidden; /* radius only */
}

.sgr26-diagnostic__result::before {
  content: "";
  display: block;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #8eb8f5, #428bf4 42%, #2f6fd0);
  flex: 0 0 auto;
}

.sgr26-diagnostic__result[data-tone="required"]::before {
  background: linear-gradient(90deg, #8fd4c4, #2f9a84 50%, #217a68);
}

.sgr26-diagnostic__result[data-tone="partial"]::before {
  background: linear-gradient(90deg, #f0c48a, #d98a30 50%, #b86f18);
}

.sgr26-diagnostic__result[data-tone="check"]::before {
  background: linear-gradient(90deg, #9fc3f7, #4d94f0 50%, #2f6fd0);
}

.sgr26-diagnostic__result-sheet {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding: 28px 28px 12px;
  overflow: visible; /* never scroll the right card */
}

.sgr26-diagnostic__result-top {
  display: flex;
  align-items: center; /* title + badge on one baseline row */
  justify-content: space-between;
  gap: 12px 16px;
  margin-bottom: 12px;
}

.sgr26-diagnostic__result-top h3,
.sgr26-diagnostic__result-top [data-sgr26-result-title] {
  margin: 0;
  min-width: 0;
  flex: 1 1 auto;
}

.sgr26-diagnostic__badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  max-width: none;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(5, 35, 76, 0.06);
  color: #5b6c84;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: none;
  text-align: center;
  white-space: nowrap;
}

.sgr26-diagnostic__result[data-tone="required"] .sgr26-diagnostic__badge {
  background: rgba(64, 168, 140, 0.14);
  color: #2a8f76;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.sgr26-diagnostic__result[data-tone="partial"] .sgr26-diagnostic__badge {
  background: rgba(232, 176, 96, 0.18);
  color: #b87a28;
}

.sgr26-diagnostic__result[data-tone="check"] .sgr26-diagnostic__badge {
  background: rgba(66, 139, 244, 0.12);
  color: #1f5fbf;
}

/* card title = template h3 scale, not second page-h2 */
.sgr26-diagnostic__result h3,
.sgr26-diagnostic__result [data-sgr26-result-title] {
  margin: 0;
  font-family: var(--sgr26-font-display);
  font-size: var(--sgr-t-card);
  font-weight: var(--sgr-w-strong);
  line-height: 1.22;
  color: var(--sgr26-navy);
  letter-spacing: 0;
}

.sgr26-diagnostic__result-top .sgr26-diagnostic__badge {
  flex: 0 0 auto;
  align-self: center;
}

/* beat global .sgr26 p { 17px }; not bold per request */
.sgr26-diagnostic__verdict,
.sgr26 .sgr26-diagnostic__verdict,
.sgr26 p.sgr26-diagnostic__verdict {
  margin: 12px 0 0;
  color: var(--sgr26-navy);
  font-family: var(--sgr26-font-main);
  font-size: var(--sgr-t-body);
  font-weight: 400;
  line-height: 1.5;
}

.sgr26-diagnostic__result-body,
.sgr26-diagnostic__result [data-sgr26-result-body],
.sgr26 .sgr26-diagnostic__result-body,
.sgr26 p.sgr26-diagnostic__result-body {
  margin: 8px 0 0;
  color: #5a6b85;
  font-family: var(--sgr26-font-main);
  font-size: var(--sgr-t-body);
  font-weight: 400;
  line-height: 1.65;
}

.sgr26-diagnostic__need-block {
  margin-top: 18px;
}

.sgr26-diagnostic__need-title,
.sgr26 p.sgr26-diagnostic__need-title {
  margin: 0 0 10px;
  color: var(--sgr26-navy);
  font-size: var(--sgr-t-ui);
  font-weight: var(--sgr-w-strong);
  line-height: 1.4;
}

.sgr26-diagnostic__need {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sgr26-diagnostic__need li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #334155;
  font-size: var(--sgr-t-ui);
  font-weight: 400;
  line-height: 1.4;
}

.sgr26-diagnostic__need li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Ccircle cx='9' cy='9' r='9' fill='%23428BF4'/%3E%3Cpath d='M5.2 9.1l2.3 2.3 5.3-5.2' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 18px 18px no-repeat;
}

.sgr26-diagnostic__probability {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(66, 139, 244, 0.14);
  border-radius: 16px;
  background: rgba(66, 139, 244, 0.05);
}

.sgr26-diagnostic__probability-icon {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #1f5fbf;
  background: rgba(66, 139, 244, 0.12);
  flex: 0 0 auto;
}

.sgr26-diagnostic__probability p,
.sgr26 .sgr26-diagnostic__probability p {
  margin: 0;
  color: #44566f;
  font-size: var(--sgr-t-ui);
  font-weight: 400;
  line-height: 1.4;
}

.sgr26-diagnostic__probability strong {
  color: var(--sgr26-navy);
  font-weight: var(--sgr-w-strong);
}

.sgr26-diagnostic__disclaimer,
.sgr26 p.sgr26-diagnostic__disclaimer {
  margin: 10px 0 0;
  color: #8a9bb0;
  font-size: var(--sgr-t-label);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
}

.sgr26-diagnostic__result-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin-top: 8px;
  padding: 8px 28px 26px;
  flex: 0 0 auto;
}

/* sentence case (override global .btn uppercase) for long CTA label */
.sgr26 .sgr26-diagnostic__cta.btn,
.sgr26 a.sgr26-diagnostic__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  max-width: 100%;
  padding: 14px 18px 12px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  white-space: normal;
  line-height: 1.25;
  text-transform: none;
}

.sgr26 .sgr26-diagnostic__cta.btn span,
.sgr26 a.sgr26-diagnostic__cta span {
  white-space: normal;
  text-transform: none;
  letter-spacing: 0.01em;
}

.sgr26-diagnostic__secondary {
  display: none; /* concept secondary removed earlier; keep slot inert */
}

/* Right panel: text swaps with leave → enter on product change */
.sgr26-diagnostic__result-sheet > * {
  transition: opacity 200ms ease, transform 240ms cubic-bezier(0.22, 0.9, 0.28, 1);
}

.sgr26-diagnostic__result.is-leaving .sgr26-diagnostic__result-sheet > * {
  opacity: 0;
  transform: translateY(10px);
}

.sgr26-diagnostic__result.is-entering .sgr26-diagnostic__badge {
  animation: sgr26-badge-in 400ms cubic-bezier(0.22, 0.95, 0.28, 1) both;
}

.sgr26-diagnostic__result.is-entering [data-sgr26-result-title] {
  animation: sgr26-matrix-step-in 360ms cubic-bezier(0.22, 0.95, 0.28, 1) both;
}

.sgr26-diagnostic__result.is-entering .sgr26-diagnostic__verdict {
  animation: sgr26-matrix-step-in 360ms cubic-bezier(0.22, 0.95, 0.28, 1) 50ms both;
}

.sgr26-diagnostic__result.is-entering .sgr26-diagnostic__result-body {
  animation: sgr26-matrix-step-in 360ms cubic-bezier(0.22, 0.95, 0.28, 1) 100ms both;
}

.sgr26-diagnostic__result.is-entering .sgr26-diagnostic__need-block {
  animation: sgr26-matrix-step-in 380ms cubic-bezier(0.22, 0.95, 0.28, 1) 140ms both;
}

@keyframes sgr26-matrix-step-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sgr26-badge-in {
  from {
    opacity: 0;
    transform: translateX(14px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sgr26-diagnostic__choices button,
  .sgr26-diagnostic__cursor,
  .sgr26-diagnostic__result-sheet > * {
    transition: none !important;
  }

  .sgr26-diagnostic__choices button.is-flash .sgr26-diagnostic__chip,
  .sgr26-diagnostic__result.is-entering .sgr26-diagnostic__badge,
  .sgr26-diagnostic__result.is-entering [data-sgr26-result-title],
  .sgr26-diagnostic__result.is-entering .sgr26-diagnostic__verdict,
  .sgr26-diagnostic__result.is-entering .sgr26-diagnostic__result-body,
  .sgr26-diagnostic__result.is-entering .sgr26-diagnostic__need-block {
    animation: none !important;
  }
}

.sgr26-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  margin-top: 30px;
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

/* —— Block 03: integrity proof (TR TS route-step design + SGR handoff copy) —— */
.sgr26-route--proof {
  position: relative;
  padding: 88px 0;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 10%, rgba(66, 139, 244, 0.08), transparent 32%),
    linear-gradient(180deg, #f4f8fd 0%, #eef4fb 100%);
}

/* Template: .route / .route-step from deklaraciya-tr-ts */
.sgr26-proof-route {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  border: 1px solid var(--sgr26-line);
  border-radius: 8px;
  background: var(--sgr26-line);
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(5, 35, 76, 0.05);
}

.sgr26-proof-route__step {
  position: relative;
  min-height: 285px;
  margin: 0;
  padding: 28px 24px 52px;
  background: #fff;
}

.sgr26-proof-route__step em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 34px;
  margin: 0 0 24px;
  border-radius: 5px;
  background: rgba(139, 208, 223, 0.32);
  color: var(--sgr26-blue-deep);
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  transform: skewX(-10deg);
}

.sgr26-proof-route__step h3 {
  margin: 0 0 12px;
  color: var(--sgr26-navy);
  font-family: var(--sgr26-font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.22;
}

.sgr26-proof-route__step p {
  margin: 0;
  color: #5a6b85;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.sgr26-proof-route__step::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 42px;
  height: 2px;
  background: var(--sgr26-turq);
}

.sgr26-proof-route__tag {
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: #2a8f76;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sgr26-proof-route__accent {
  margin: 22px 0 0;
  max-width: 820px;
  padding: 16px 18px;
  border-left: 3px solid var(--sgr26-blue);
  border-radius: 0 12px 12px 0;
  background: rgba(255, 255, 255, 0.72);
  color: #5a6b85;
  font-size: 15px;
  line-height: 1.55;
}

.sgr26-proof-route__accent strong {
  color: var(--sgr26-navy);
  font-weight: 700;
}

@media (max-width: 1100px) {
  .sgr26-proof-route {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .sgr26-proof-route {
    grid-template-columns: 1fr;
  }

  .sgr26-proof-route__step {
    min-height: 0;
  }
}

/* —— Legacy: «Цепь совпадений» (kept for unused/old markup) —— */
.sgr26-route--chain {
  position: relative;
  padding: 88px 0 96px;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 80% -10%, rgba(65, 138, 242, 0.12), transparent 58%),
    linear-gradient(180deg, #e8eef7 0%, #f3f6fb 40%, #eef2f8 100%);
}

.sgr26-route__head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px 44px;
  align-items: end;
  margin-bottom: 28px;
}

.sgr26-route__head-copy h2 {
  max-width: 16ch;
  margin: 0;
}

.sgr26-route__lead,
.sgr26 p.sgr26-route__lead {
  margin: 0;
  color: #5a6b85;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

/* Stage = dark registry bay: product spine + clamp locks */
.sgr26-route__stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  grid-template-rows: auto auto 1fr;
  gap: 0 28px;
  padding: 22px 22px 24px;
  border: 1px solid rgba(5, 35, 76, 0.14);
  border-radius: 32px;
  background:
    radial-gradient(520px 280px at 18% 40%, rgba(65, 138, 242, 0.18), transparent 62%),
    radial-gradient(420px 260px at 88% 90%, rgba(39, 139, 118, 0.16), transparent 58%),
    linear-gradient(165deg, #04182f 0%, #05234c 42%, #0a3a72 100%);
  box-shadow:
    0 30px 80px rgba(5, 35, 76, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.sgr26-route__stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 88%);
  pointer-events: none;
}

.sgr26-route__stage-meta {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: rgba(215, 232, 255, 0.72);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sgr26-route__spine-wrap {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 2;
  height: 0;
  pointer-events: none;
}

.sgr26-route__spine {
  position: absolute;
  top: 54px;
  left: 4%;
  right: 4%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 1px rgba(139, 208, 223, 0.18),
    0 10px 30px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.sgr26-route__spine-fill {
  display: block;
  height: 100%;
  width: 20%;
  border-radius: inherit;
  background: linear-gradient(90deg, #418af2 0%, #8bd0df 48%, #35b39a 100%);
  box-shadow: 0 0 22px rgba(65, 138, 242, 0.55);
  transition: width 320ms ease;
}

.sgr26-route__spine-tag {
  position: absolute;
  top: 78px;
  left: 4%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sgr26-route__spine-tag b {
  color: #d7f4fb;
  font-weight: 800;
}

.sgr26-route__locks {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 8px 0 28px;
  list-style: none;
}

.sgr26-route__locks > li {
  margin: 0;
  min-width: 0;
}

.sgr26-route__lock {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin: 0;
  padding: 8px 4px 4px;
  border: 0;
  background: transparent;
  color: #d7e8ff;
  cursor: pointer;
  font: inherit;
  text-align: center;
}

.sgr26-route__lock-ring {
  position: relative;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(157, 184, 214, 0.45);
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.16), transparent 45%),
    linear-gradient(160deg, rgba(12, 48, 92, 0.95), rgba(5, 28, 58, 0.98));
  box-shadow:
    0 0 0 6px rgba(5, 35, 76, 0.35),
    0 14px 28px rgba(0, 0, 0, 0.28);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.sgr26-route__lock-ring::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px dashed rgba(139, 208, 223, 0.28);
}

.sgr26-route__lock-num {
  position: relative;
  z-index: 1;
  font-family: var(--sgr26-font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #e8f2ff;
}

.sgr26-route__lock-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 3.2em;
}

.sgr26-route__lock-seal {
  color: #8bd0df;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sgr26-route__lock-phase {
  color: rgba(215, 232, 255, 0.72);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.3;
}

.sgr26-route__locks > li:hover .sgr26-route__lock-ring {
  border-color: rgba(65, 138, 242, 0.75);
  transform: translateY(-2px);
}

.sgr26-route__locks > li.is-active .sgr26-route__lock-ring {
  border-color: transparent;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.28), transparent 42%),
    linear-gradient(160deg, #418af2, #1a54a8);
  box-shadow:
    0 0 0 7px rgba(65, 138, 242, 0.18),
    0 16px 36px rgba(26, 84, 168, 0.45);
  transform: translateY(-3px) scale(1.04);
}

.sgr26-route__locks > li.is-active .sgr26-route__lock-seal {
  color: #fff;
}

.sgr26-route__locks > li.is-active .sgr26-route__lock-phase {
  color: #fff;
}

.sgr26-route__locks > li.is-locked .sgr26-route__lock-ring {
  border-color: rgba(53, 179, 154, 0.7);
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.14), transparent 45%),
    linear-gradient(160deg, #2ea88f, #1f6f60);
}

.sgr26-route__locks > li.is-locked .sgr26-route__lock-seal {
  color: #b8f0e4;
}

.sgr26-route__locks > li:last-child.is-active .sgr26-route__lock-ring {
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.22), transparent 42%),
    linear-gradient(160deg, #35b39a, #1f7a66);
  box-shadow:
    0 0 0 7px rgba(39, 139, 118, 0.2),
    0 16px 36px rgba(20, 90, 75, 0.45);
}

.sgr26-route__locks > li:focus-visible {
  outline: none;
}

.sgr26-route__locks > li:focus-visible .sgr26-route__lock-ring {
  outline: 2px solid #8bd0df;
  outline-offset: 4px;
}

/* Detail dock — what must coincide at this lock */
.sgr26-route__detail {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 2 / 4;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  min-height: 100%;
  padding: 26px 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  color: #fff;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.sgr26-route__detail-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.sgr26-route__detail-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #d7e8ff;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sgr26-route__detail-seal {
  color: #8bd0df;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sgr26-route__detail .sgr26-kicker {
  color: #a9d0ff;
  margin-bottom: 10px;
}

.sgr26-route__detail .sgr26-kicker::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a9d0ff;
}

.sgr26-route__detail h3,
.sgr26-route__detail [data-sgr26-route-title] {
  margin: 0;
  font-family: var(--sgr26-font-display);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.sgr26-route__detail [data-sgr26-route-body] {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.6;
}

.sgr26-route__match {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 20px 0 0;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(139, 208, 223, 0.28);
  background: rgba(8, 40, 78, 0.45);
}

.sgr26-route__match span {
  color: #8bd0df;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sgr26-route__match b {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.sgr26-route__io {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 0;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.sgr26-route__io span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(139, 208, 223, 0.2);
  color: #d7f4fb;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sgr26-route__detail-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin-top: auto;
  padding-top: 24px;
}

.sgr26-route__detail .sgr26-text-link {
  margin-top: 0;
  color: #fff;
}

.sgr26-route__detail .sgr26-text-link:hover {
  color: #d7ecff;
}

.sgr26-route__next {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 150ms ease, border-color 150ms ease;
}

.sgr26-route__next:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.45);
}

.sgr26-route__next:focus-visible {
  outline: 2px solid #8bd0df;
  outline-offset: 2px;
}

.sgr26-route__detail.is-pulse {
  animation: sgr26-result-pulse 520ms ease;
}

.sgr26-route__stage.is-complete .sgr26-route__spine-fill {
  width: 100%;
  background: linear-gradient(90deg, #35b39a, #8bd0df 40%, #418af2 100%);
}

@media (max-width: 1100px) {
  .sgr26-route__head {
    grid-template-columns: 1fr;
  }

  .sgr26-route__head-copy h2 {
    max-width: none;
  }

  .sgr26-route__stage {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .sgr26-route__spine-wrap,
  .sgr26-route__locks {
    grid-column: 1;
  }

  .sgr26-route__detail {
    grid-column: 1;
    grid-row: auto;
    margin-top: 8px;
  }
}

@media (max-width: 900px) {
  .sgr26-route__locks {
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .sgr26-route__locks > li {
    min-width: 88px;
    scroll-snap-align: center;
  }

  .sgr26-route__lock-ring {
    width: 60px;
    height: 60px;
  }

  .sgr26-route__spine {
    top: 46px;
  }

  .sgr26-route__spine-tag {
    top: 68px;
  }
}

@media (max-width: 680px) {
  .sgr26-route--chain {
    padding: 64px 0 72px;
  }

  .sgr26-route__stage {
    padding: 16px 14px 18px;
    border-radius: 24px;
  }

  .sgr26-route__spine-wrap {
    display: none;
  }

  .sgr26-route__locks {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: visible;
    padding: 0 0 12px;
  }

  .sgr26-route__locks > li {
    min-width: 0;
  }

  .sgr26-route__lock {
    flex-direction: row;
    justify-content: flex-start;
    gap: 14px;
    padding: 12px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    text-align: left;
  }

  .sgr26-route__locks > li.is-active .sgr26-route__lock {
    border-color: rgba(65, 138, 242, 0.45);
    background: rgba(65, 138, 242, 0.14);
  }

  .sgr26-route__lock-ring {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
  }

  .sgr26-route__locks > li.is-active .sgr26-route__lock-ring {
    transform: none;
  }

  .sgr26-route__lock-copy {
    min-height: 0;
  }

  .sgr26-route__detail {
    padding: 20px 18px;
    border-radius: 18px;
  }

  .sgr26-route__detail-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .sgr26-route__next {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sgr26-route__spine-fill,
  .sgr26-route__lock-ring {
    transition: none;
  }

  .sgr26-route__detail.is-pulse {
    animation: none;
  }

  .sgr26-route__locks > li:hover .sgr26-route__lock-ring,
  .sgr26-route__locks > li.is-active .sgr26-route__lock-ring {
    transform: none;
  }
}

.sgr26-dossier {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  background: #ded9cf;
}

.sgr26-dossier__image {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  transform: translateX(-5%) scale(1.25);
  transform-origin: center;
}

.sgr26-dossier__shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg, rgba(248, 244, 235, 0.08) 0%, rgba(248, 244, 235, 0.01) 58%, rgba(11, 26, 40, 0.06) 100%);
  pointer-events: none;
}

.sgr26-dossier__copy {
  position: absolute;
  z-index: 2;
  top: 16%;
  left: clamp(300px, 23vw, 380px);
  width: clamp(440px, 35vw, 560px);
  padding: 0;
  color: #102d55;
}

.sgr26-dossier__copy h2 {
  color: #102d55;
  font-size: clamp(29px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.sgr26-dossier__copy .sgr26-kicker {
  margin-bottom: 18px;
  color: #2e67b5;
  font-size: 12px;
  letter-spacing: 1.1px;
}

.sgr26-dossier__copy > p:not(.sgr26-kicker) {
  max-width: 450px;
  margin: 18px 0 0;
  color: #586270;
  font-size: 17px;
  line-height: 1.58;
}

.sgr26-dossier__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.sgr26-dossier__copy .sgr26-button.btn-blue,
.sgr26-dossier__copy .sgr26-button--primary {
  width: auto;
  min-width: 200px;
  margin: 0;
  border-radius: 15px;
}

.sgr26-dossier__copy .sgr26-dossier__meta {
  margin-top: 42px;
  color: #64707d;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.015em;
}

.sgr26-estimate {
  padding: 88px 0;
  background: #fff;
}

/* Estimate as pricing console — hero-level peer to route machine */
.sgr26-estimate--console {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 96px 0 100px;
  background:
    radial-gradient(720px 340px at 12% 0%, rgba(65, 138, 242, 0.08), transparent 58%),
    radial-gradient(560px 280px at 92% 88%, rgba(217, 138, 48, 0.07), transparent 55%),
    linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 48%, #eef3f9 100%);
}

.sgr26-estimate__head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px 48px;
  align-items: end;
  margin-bottom: 36px;
}

.sgr26-estimate__head-copy h2 {
  max-width: 18ch;
  margin: 0;
}

.sgr26-estimate__lead {
  margin: 0;
  color: #44566f;
  font-size: 17px;
  line-height: 1.65;
}

.sgr26-estimate__console {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.sgr26-estimate__readout,
.sgr26-estimate__drivers {
  border: 1px solid rgba(5, 35, 76, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84));
  box-shadow: 0 18px 50px rgba(5, 35, 76, 0.07);
}

.sgr26-estimate__readout {
  display: flex;
  flex-direction: column;
  padding: 18px 22px 22px;
  overflow: hidden;
}

.sgr26-estimate__readout-bar,
.sgr26-estimate__drivers-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  padding: 0 4px 14px;
  border-bottom: 1px solid rgba(5, 35, 76, 0.08);
}

.sgr26-estimate__readout-label,
.sgr26-estimate__drivers-bar span:first-child {
  color: var(--sgr26-navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sgr26-estimate__readout-hint,
.sgr26-estimate__drivers-bar span:last-child {
  color: #7a8aa0;
  font-size: 12px;
  font-weight: 600;
}

.sgr26-estimate__anchors {
  display: grid;
  gap: 0;
  margin-top: 4px;
}

.sgr26-estimate__anchors > div {
  position: relative;
  padding: 28px 8px 30px;
  border-bottom: 1px solid rgba(5, 35, 76, 0.08);
}

.sgr26-estimate__anchors > div:last-child {
  border-bottom: 0;
  padding-bottom: 12px;
}

.sgr26-estimate__anchors span {
  color: #6b7c92;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.sgr26-estimate__anchors strong {
  display: block;
  margin-top: 12px;
  font-family: var(--sgr26-font-display);
  font-size: clamp(42px, 5.2vw, 68px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
  background: linear-gradient(100deg, #05234c 0%, #1a54a8 55%, #278b76 120%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sgr26-estimate__anchors p {
  max-width: 36ch;
  margin: 14px 0 0;
  color: #526071;
  font-size: 14px;
  line-height: 1.6;
}

.sgr26-estimate__drivers {
  display: flex;
  flex-direction: column;
  padding: 18px 18px 14px;
}

.sgr26-estimate__factors {
  margin: 0;
  padding: 8px 0 0;
  list-style: none;
}

.sgr26-estimate__factors li {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 16px;
  min-height: 0;
  margin: 0 0 8px;
  padding: 16px 14px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: rgba(246, 249, 254, 0.65);
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.sgr26-estimate__factors li:hover {
  background: #fff;
  border-color: rgba(65, 138, 242, 0.22);
  box-shadow: 0 10px 24px rgba(26, 84, 168, 0.08);
}

.sgr26-estimate__factor-num,
.sgr26-estimate__factors li > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #9db8d6;
  border-radius: 50%;
  color: var(--sgr26-blue-dark);
  background: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 14px rgba(5, 35, 76, 0.06);
}

.sgr26-estimate__factors li:nth-child(1) .sgr26-estimate__factor-num {
  border-color: rgba(65, 138, 242, 0.45);
  color: #fff;
  background: var(--sgr26-grad-blue);
}

.sgr26-estimate__factors strong {
  display: block;
  color: var(--sgr26-navy);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.3;
}

.sgr26-estimate__factors p {
  margin: 6px 0 0;
  color: #5a6b80;
  font-size: 13px;
  line-height: 1.5;
}

.sgr26-estimate__note {
  margin: 28px 0 0;
  padding: 18px 22px;
  border: 1px solid rgba(217, 138, 48, 0.28);
  border-left: 3px solid var(--sgr26-amber);
  border-radius: 16px;
  color: #526071;
  background: linear-gradient(90deg, #fbf7ef, #f8f6f1);
  font-size: 13px;
  line-height: 1.65;
  box-shadow: 0 8px 22px rgba(90, 60, 10, 0.04);
}

@media (max-width: 1100px) {
  .sgr26-estimate__head,
  .sgr26-estimate__console {
    grid-template-columns: 1fr;
  }

  .sgr26-estimate__head-copy h2 {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .sgr26-estimate--console {
    padding: 64px 0 72px;
  }

  .sgr26-estimate__readout,
  .sgr26-estimate__drivers {
    border-radius: 22px;
    padding: 14px 14px 16px;
  }

  .sgr26-estimate__anchors strong {
    font-size: clamp(36px, 10vw, 48px);
  }

  .sgr26-estimate__factors li {
    grid-template-columns: 40px 1fr;
    padding: 14px 12px;
  }
}

/* Legacy ledger (if present) */
.sgr26-estimate__ledger {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 44px;
  margin-top: 0;
}

.sgr26-documents {
  padding: 88px 0;
  color: #fff;
  background: #092d57;
}

.sgr26-documents .sgr26-kicker {
  color: #83bdfd;
}

.sgr26-documents .sgr26-kicker::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sgr26-turq);
}

.sgr26-documents .sgr26-heading h2 {
  color: #fff;
}

.sgr26-documents .sgr26-heading > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.sgr26-documents__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 44px;
  margin-top: 0;
  align-items: start;
}

.sgr26-documents__index {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.sgr26-documents__index details,
.sgr26-faq__list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.sgr26-documents__index summary,
.sgr26-faq__list summary {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  min-height: 82px;
  padding: 18px 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 19px;
  font-weight: 650;
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
}

.sgr26-documents__index summary::-webkit-details-marker,
.sgr26-faq__list summary::-webkit-details-marker {
  display: none;
}

.sgr26-documents__index summary span,
.sgr26-faq__list summary span {
  color: #7cb9ff;
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.sgr26-documents__index details > div {
  padding: 0 30px 26px 46px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.68;
}

.sgr26-documents__index details > div p {
  margin: 0;
}

.sgr26-alignment {
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.07);
}

.sgr26-alignment h3 {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 30px;
  line-height: 1.14;
}

.sgr26-alignment ol {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.sgr26-alignment li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 44px;
  gap: 10px;
  font-size: 13px;
}

.sgr26-alignment li i {
  height: 1px;
  background: rgba(255, 255, 255, 0.23);
}

.sgr26-alignment li b {
  color: #8de0cc;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sgr26-alignment > p:last-child {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.6;
}

.sgr26-validity {
  padding: 88px 0;
  background: #f5f2ec;
}

.sgr26-validity__line {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 0;
  border-top: 1px solid #aebac7;
}

.sgr26-validity__line > div {
  padding: 38px 40px 42px 0;
  border-right: 1px solid #c8d0d9;
}

.sgr26-validity__line > div:nth-child(2) {
  padding-left: 48px;
  border-right: 0;
}

.sgr26-validity__line span {
  color: var(--sgr26-blue-dark);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.sgr26-validity__line strong {
  display: block;
  margin-top: 16px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(42px, 5vw, 70px);
  letter-spacing: -0.055em;
}

.sgr26-validity__line div p {
  max-width: 430px;
  margin: 16px 0 0;
  color: var(--sgr26-muted);
  line-height: 1.6;
}

.sgr26-validity__change {
  grid-column: 1 / -1;
  margin: 0;
  padding: 22px 0;
  border-top: 1px solid #c8d0d9;
  color: #5e6875;
  font-size: 13px;
}

.sgr26-faq {
  padding: 88px 0;
  background: #fff;
}

.sgr26-faq__list {
  margin-top: 0;
  border-top: 1px solid var(--sgr26-line);
}

.sgr26-faq__list details {
  border-color: var(--sgr26-line);
}

.sgr26-faq__list summary {
  position: relative;
  grid-template-columns: 54px 1fr 32px;
  min-height: 94px;
  color: #243345;
  font-size: clamp(18px, 2vw, 24px);
}

.sgr26-faq__list summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid #b8c5d3;
  border-radius: 50%;
  color: var(--sgr26-blue-dark);
  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
}

.sgr26-faq__list details[open] summary::after {
  content: "−";
}

.sgr26-faq__list details > div {
  padding: 0 70px 30px 54px;
  color: var(--sgr26-muted);
  font-size: 15px;
  line-height: 1.7;
}

.sgr26-faq__list details > div p {
  margin: 0;
}

.sgr26-contact {
  padding: 96px 0;
  color: #fff;
  background: linear-gradient(135deg, #082b56 0%, #0b407b 64%, #1358a2 100%);
}

.sgr26-contact__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.72fr);
  justify-content: space-between;
  gap: 44px;
}

.sgr26-contact .sgr26-kicker {
  color: #8fc5ff;
}

.sgr26-contact .sgr26-kicker::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sgr26-turq);
}

.sgr26-contact h2 {
  color: #fff;
  font-size: clamp(40px, 4.8vw, 66px);
}

.sgr26-contact__copy > p:not(.sgr26-kicker) {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.6;
}

.sgr26-contact__direct {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.sgr26-contact__direct a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.sgr26-form {
  padding: 38px;
  border-radius: 26px;
  color: var(--sgr26-ink);
  background: #fff;
  box-shadow: 0 30px 100px rgba(1, 18, 38, 0.25);
}

.sgr26-field {
  margin-bottom: 18px;
}

.sgr26-field label {
  display: block;
  margin-bottom: 8px;
  color: #334255;
  font-size: 12px;
  font-weight: 700;
}

.sgr26-field input,
.sgr26-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid #cbd5e0;
  border-radius: 12px;
  color: #1f2c3b;
  background: #fbfcfd;
  resize: vertical;
}

.sgr26-field textarea {
  min-height: 104px;
}

.sgr26-field input[aria-invalid="true"],
.sgr26-field textarea[aria-invalid="true"] {
  border-color: #bd3d3d;
  background: #fff8f8;
}

.sgr26-field__error {
  display: block;
  min-height: 17px;
  margin-top: 5px;
  color: #9f2f2f;
  font-size: 11px;
}

.sgr26-field > small {
  display: block;
  margin-top: 6px;
  color: #78828d;
  font-size: 10px;
  line-height: 1.45;
}

.sgr26--no-hero-image .sgr26-hero__media {
  background-image: none;
}

.sgr26--no-dossier-image .sgr26-dossier {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(219, 212, 199, 0.9)),
    #e8e1d5;
}

.sgr26-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  margin: 10px 0 22px;
  gap: 10px;
  color: #5b6673;
  font-size: 11px;
  line-height: 1.5;
}

.sgr26-consent input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.sgr26-form .sgr26-button,
.sgr26-form .btn {
  width: 100%;
}

.sgr26-form__status {
  margin: 14px 0 0;
  color: #6c7681;
  font-size: 11px;
  line-height: 1.45;
}

.sgr26-form__status.is-success {
  color: #17715f;
  font-weight: 650;
}

.sgr26-footer.footer-gks {
  padding: 30px 0;
  color: var(--sgr26-ink);
  border-top: 1px solid var(--sgr26-line);
  background: #fff;
}

.sgr26-footer .footer-gks-row {
  display: grid;
  grid-template-columns: minmax(250px, 1.2fr) minmax(220px, 1fr) minmax(220px, 0.8fr);
  gap: 28px;
  align-items: center;
}

.sgr26-footer .footer-gks-logo {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  text-decoration: none;
}

.sgr26-footer .footer-gks-logo img {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  object-fit: contain;
}

.sgr26-footer .footer-gks-brand-title {
  display: block;
  color: var(--sgr26-navy);
  font-family: var(--sgr26-font-display);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.06;
  text-transform: uppercase;
}

.sgr26-footer .footer-gks-brand-subtitle {
  display: block;
  margin-top: 4px;
  color: #6c788a;
  font-size: 12px;
  line-height: 1.35;
}

.sgr26-footer .footer-gks-links p {
  margin: 0 0 10px;
}

.sgr26-footer .footer-gks-links a {
  color: #44556f;
  font-size: 13px;
  line-height: 1.4;
  text-decoration: none;
}

.sgr26-footer .zchbWidgetSmall {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(49, 117, 214, 0.28);
  border-radius: 999px;
  padding: 0 12px;
  background: #f5f9ff;
}

.sgr26-footer .zchbHead.zchbSmall span {
  color: var(--sgr26-blue-dark);
  font-size: 11px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
}

.sgr26-footer .footer-gks-contact {
  text-align: right;
}

.sgr26-footer .footer-gks-phone {
  display: inline-block;
  color: var(--sgr26-navy);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.06;
  text-decoration: none;
}

.sgr26-footer .footer-gks-mail {
  display: inline-block;
  margin-top: 8px;
  color: #44556f;
  font-size: 14px;
  text-decoration: none;
}

@media (max-width: 1100px) {
  body.sgr26-page {
    --sgr26-header-h: 76px;
  }

  .sgr26-header__inner {
    grid-template-columns: 1fr auto auto;
    gap: 14px;
  }

  .sgr26-logo {
    min-width: 0;
    max-width: calc(100% - 56px);
    gap: 10px;
  }

  .sgr26-logo__mark {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .sgr26-logo__title {
    font-size: 16px;
    line-height: 1.08;
  }

  .sgr26-logo__sub {
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.18;
  }

  .sgr26-nav {
    display: none;
  }

  .sgr26-menu {
    display: inline-flex;
  }

  .sgr26-header__contact {
    display: none;
  }

  .sgr26-footer .footer-gks-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sgr26-footer .footer-gks-contact {
    text-align: left;
  }

  .sgr26-hero__content {
    width: min(780px, 68%);
  }

  .sgr26-heading--split {
    gap: 32px;
  }

  .sgr26-dossier__copy {
    left: max(250px, 23vw);
    width: min(440px, 42vw);
  }
}

@media (max-width: 900px) {
  .sgr26-shell {
    width: min(100% - 40px, 720px);
  }

  .sgr26-hero {
    min-height: auto;
    padding: 40px 0 42px;
  }

  .sgr26-hero__inner {
    min-height: 0;
    padding: 12px 0;
  }

  .sgr26-hero__route {
    inset: 0;
    transform: none;
  }

  .sgr26-hero::before {
    background:
      linear-gradient(180deg, rgba(65, 138, 242, 0.08), rgba(255, 255, 255, 0)),
      linear-gradient(90deg, rgba(250, 250, 250, 0.98) 0%, rgba(250, 250, 250, 0.88) 55%, rgba(250, 250, 250, 0.22) 100%);
  }

  .sgr26-hero__content {
    width: min(100%, 88%);
    padding: 12px 0;
    display: block;
  }

  .sgr26-heading--split,
  .sgr26-estimate__ledger,
  .sgr26-documents__layout,
  .sgr26-contact__layout {
    grid-template-columns: 1fr;
  }

  .sgr26-heading--split {
    gap: 18px;
  }

  .sgr26-applicability {
    max-height: none;
    min-height: 0;
    height: auto;
    overflow: visible;
    padding: 64px 0; /* same as other .section on ≤900 */
  }

  .sgr26-applicability__frame {
    max-height: none;
  }

  .sgr26-applicability__head {
    margin-bottom: 28px;
  }

  .sgr26-diagnostic--matrix {
    grid-template-columns: 1fr;
    gap: 16px;
    max-height: none;
  }

  .sgr26-diagnostic__board {
    min-height: 0;
    max-height: none;
    height: auto;
    overflow: visible;
  }

  .sgr26-diagnostic__choices {
    grid-auto-rows: minmax(48px, auto);
    max-height: none;
    overflow: visible;
    gap: 6px;
  }

  .sgr26-diagnostic__result {
    min-height: 0;
    height: auto;
  }

  .sgr26-diagnostic__result-sheet {
    overflow: visible;
  }

  .sgr26-diagnostic__choices button {
    min-height: 44px;
    height: auto;
    padding: 8px 10px;
  }

  .sgr26-diagnostic__result {
    position: static;
    height: auto;
  }

  .sgr26-estimate__ledger,
  .sgr26-documents__layout,
  .sgr26-contact__layout {
    gap: 36px;
  }

  .sgr26-dossier__copy {
    top: 14%;
    left: 25vw;
    width: 48vw;
  }

  .sgr26-dossier__actions {
    gap: 20px;
  }
}

@media (max-width: 820px) {
  .sgr26-shell {
    width: min(100% - 28px, 1210px);
  }

  .sgr26-header__inner {
    width: min(100% - 28px, 1210px);
  }

  .sgr26-hero {
    padding: 34px 0 42px;
  }

  .sgr26-hero__route {
    inset: 0;
    transform: none;
  }

  .sgr26-applicability,
  .sgr26-route,
  .sgr26-estimate,
  .sgr26-documents,
  .sgr26-validity,
  .sgr26-faq,
  .sgr26-value,
  .sgr26-process,
  .sgr26-scope,
  .sgr26-errors,
  .sgr26-norms {
    padding: 64px 0;
  }

  .sgr26-contact {
    padding: 72px 0;
  }

  .sgr26-hero__facts {
    grid-template-columns: 1fr;
    max-width: none;
  }
}

@media (max-width: 767px) {
  .sgr26-hero__route {
    display: none;
  }
}

@media (max-width: 680px) {
  .sgr26 {
    overflow-x: clip;
  }

  .sgr26-header__inner {
    width: calc(100% - 28px);
    gap: 12px;
  }

  .sgr26-shell {
    width: calc(100% - 28px);
  }

  .sgr26-hero {
    min-height: calc(100svh - var(--sgr26-header-h));
    padding: 34px 0 32px;
  }

  .sgr26-hero__media {
    top: auto;
    height: 46%;
    background-position: 67% 62%;
    background-size: auto 146%;
  }

  .sgr26-hero::before {
    background: linear-gradient(180deg, #fafafa 0%, rgba(250, 250, 250, 0.99) 58%, rgba(250, 250, 250, 0.6) 76%, rgba(250, 250, 250, 0.02) 100%);
  }

  .sgr26-hero::after {
    height: 72px;
  }

  .sgr26-hero__inner {
    min-height: 0;
    padding: 8px 0 24px;
  }

  .sgr26-hero__content {
    width: 100%;
    padding: 0;
  }

  .sgr26 .sgr26-kicker {
    margin-bottom: 18px;
    font-size: 12px;
    letter-spacing: 1.1px;
  }

  .sgr26 .sgr26-kicker::before {
    width: 22px;
  }

  .sgr26 h1,
  .sgr26-hero h1 {
    font-size: 34px;
    letter-spacing: 0;
    line-height: 1.08;
  }

  .sgr26 h2,
  .sgr26-heading h2,
  .sgr26-contact h2,
  .sgr26-dossier__copy h2 {
    font-size: 29px;
  }

  .sgr26 h3 {
    font-size: 18px;
    line-height: 1.22;
  }

  .sgr26 p {
    font-size: 15px;
    line-height: 1.6;
  }

  .sgr26 .sgr26-hero__lead {
    margin-top: 0;
    font-size: 18px;
    line-height: 1.65;
  }

  .sgr26 .sgr26-hero__audience {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.45;
  }

  .sgr26-actions {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 16px;
    margin-top: 24px;
    margin-bottom: 20px;
  }

  .sgr26 .btn,
  .sgr26-button--primary {
    width: 100%;
  }

  .sgr26 .text-link,
  .sgr26-button--secondary {
    width: auto;
    align-self: flex-start;
    text-align: left;
  }

  .sgr26-hero__facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 0;
  }

  .sgr26-hero__facts div {
    min-width: 0;
    padding: 14px 16px;
  }

  .sgr26-hero__facts dd {
    font-size: 22px;
    line-height: 1;
  }

  .sgr26-hero__facts dt {
    font-size: 13px;
    line-height: 1.35;
  }

  .sgr26 .sgr26-note {
    margin-top: 12px;
    font-size: 12px;
  }

  .sgr26-heading {
    margin-bottom: 28px;
  }

  .sgr26-heading > p:last-child,
  .sgr26-heading--split > p {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.6;
  }

  .sgr26-heading--split {
    margin-bottom: 28px;
  }

  .sgr26-applicability,
  .sgr26-route,
  .sgr26-estimate,
  .sgr26-documents,
  .sgr26-validity,
  .sgr26-faq,
  .sgr26-value,
  .sgr26-process,
  .sgr26-scope,
  .sgr26-errors,
  .sgr26-norms {
    padding-block: 64px;
  }

  .sgr26-contact {
    padding-block: 72px;
  }

  .sgr26-applicability__head {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 28px;
  }

  .sgr26-applicability__head-copy h2 {
    max-width: none;
    font-size: 29px; /* template mobile h2 floor */
  }

  .sgr26-applicability__lead {
    justify-self: start;
    max-width: none;
    font-size: 16px;
  }

  .sgr26-diagnostic--matrix {
    gap: 12px;
  }

  .sgr26-diagnostic__board,
  .sgr26-diagnostic__result {
    border-radius: 16px;
  }

  .sgr26-diagnostic__choices button {
    grid-template-columns: 32px minmax(0, 1fr);
    grid-template-rows: auto auto;
    row-gap: 4px;
    column-gap: 8px;
    min-height: 48px;
    padding: 8px 10px;
  }

  .sgr26-diagnostic__name {
    grid-column: 2;
    white-space: normal;
  }

  .sgr26-diagnostic__chip {
    grid-column: 2;
    justify-self: start;
  }

  .sgr26-diagnostic__result-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .sgr26-diagnostic__cta {
    width: 100%;
  }

  .sgr26-route__timeline {
    margin-top: 0;
  }

  .sgr26-route__timeline::before {
    left: 23px;
  }

  .sgr26-route__timeline li {
    grid-template-columns: 48px 1fr;
    min-height: 170px;
    padding-bottom: 30px;
    gap: 18px;
  }

  .sgr26-route__number {
    width: 48px;
    height: 48px;
    font-size: 12px;
  }

  .sgr26-route__timeline li > div {
    padding-top: 0;
  }

  .sgr26-route__timeline h3 {
    font-size: 27px;
  }

  .sgr26-route__timeline small {
    grid-column: 2;
    margin-top: -20px;
    padding-bottom: 12px;
  }

  .sgr26-dossier {
    min-height: max(820px, 100svh);
  }

  .sgr26-dossier__image {
    inset: 0;
    width: 100%;
    object-fit: cover;
    object-position: 44% center;
    transform: none;
  }

  .sgr26-dossier__shade {
    background: linear-gradient(180deg, rgba(248, 244, 235, 0.08), rgba(248, 244, 235, 0.01));
  }

  .sgr26-dossier__copy {
    top: 94px;
    right: 28px;
    left: 28px;
    width: auto;
    padding: 0;
  }

  .sgr26-dossier__copy > p:not(.sgr26-kicker) {
    max-width: 320px;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.55;
  }

  .sgr26-dossier__copy .sgr26-kicker {
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: 1.1px;
  }

  .sgr26-dossier__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: min(100%, 320px);
    margin-top: 24px;
  }

  .sgr26-dossier__copy .sgr26-button--primary {
    width: 100%;
    min-width: 0;
  }

  .sgr26-dossier__link {
    justify-self: start;
  }

  .sgr26-dossier__copy .sgr26-dossier__meta {
    max-width: 320px;
    margin-top: 28px;
    font-size: 11px;
  }

  .sgr26-estimate__ledger {
    margin-top: 0;
  }

  .sgr26-estimate__anchors strong {
    font-size: 48px;
  }

  .sgr26-documents__layout {
    margin-top: 0;
  }

  .sgr26-documents__index summary,
  .sgr26-faq__list summary {
    min-height: 72px;
    font-size: 16px;
  }

  .sgr26-documents__index details > div {
    padding-left: 0;
  }

  .sgr26-alignment {
    padding: 28px 22px;
  }

  .sgr26-alignment h3 {
    font-size: 27px;
  }

  .sgr26-validity__line {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .sgr26-validity__line > div,
  .sgr26-validity__line > div:nth-child(2) {
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid #c8d0d9;
  }

  .sgr26-validity__line strong {
    font-size: 46px;
  }

  .sgr26-faq__list {
    margin-top: 0;
  }

  .sgr26-faq__list summary {
    grid-template-columns: 36px 1fr 30px;
    padding-block: 16px;
  }

  .sgr26-faq__list details > div {
    padding: 0 0 24px 36px;
  }

  .sgr26-contact__layout {
    gap: 36px;
  }

  .sgr26-contact__copy > p:not(.sgr26-kicker) {
    font-size: 16px;
  }

  .sgr26-form {
    padding: 28px 22px;
    border-radius: 20px;
  }

  .sgr26-footer .footer-gks-phone {
    font-size: 20px;
  }

  .sgr26-footer .zchbHead.zchbSmall span {
    white-space: normal;
  }
}

@media (max-width: 520px) {
  .sgr26-hero h1 {
    font-size: 34px;
  }

  .sgr26-heading h2,
  .sgr26-dossier__copy h2 {
    font-size: 29px;
  }

  .sgr26 .sgr26-hero__lead {
    font-size: 18px;
  }

  .sgr26-actions {
    align-items: stretch;
  }

  .sgr26 .text-link,
  .sgr26-button--secondary {
    text-align: left;
  }
}

@media (max-width: 360px) {
  .sgr26-logo__title {
    font-size: 14px;
  }

  .sgr26-logo__sub {
    font-size: 10px;
  }

  .sgr26-hero__facts dd {
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sgr26 *,
  .sgr26 *::before,
  .sgr26 *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .sgr26 .btn-blue::after,
  .sgr26-button--primary::after {
    animation: none !important;
    display: none;
  }
}

@media print {
  .sgr26-header,
  .sgr26-menu,
  .sgr26-mobile-drawer,
  .sgr26-actions,
  .sgr26-contact,
  .sgr26-footer {
    display: none !important;
  }

  .sgr26,
  .sgr26 section {
    color: #000 !important;
    background: #fff !important;
  }
}


/* —— Designer C-A shell polish (post-hero sections) —— */
.sgr26-route,
.sgr26-estimate,
.sgr26-documents,
.sgr26-faq {
  position: relative;
}

/* Legacy list route only — chain/machine/proof own their surfaces */
.sgr26-route:not(.sgr26-route--machine):not(.sgr26-route--chain):not(.sgr26-route--proof) {
  background: linear-gradient(180deg, #f4f8fd 0%, #eef4fb 100%);
}

.sgr26-route__timeline li {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(5, 35, 76, 0.06);
  border-radius: 18px;
  padding: 18px 16px 16px;
  box-shadow: 0 10px 30px rgba(5, 35, 76, 0.05);
}

.sgr26-estimate:not(.sgr26-estimate--console) {
  background: #fff;
}

.sgr26-estimate__ledger > div,
.sgr26-estimate__ledger > * {
  border-radius: 18px;
}

.sgr26-faq details {
  border-radius: 14px;
  border: 1px solid rgba(5, 35, 76, 0.08);
  background: #fff;
  margin-bottom: 10px;
  padding: 4px 14px;
}

.sgr26-contact {
  background:
    linear-gradient(135deg, #05234c 0%, #0a3a7a 55%, #1358a8 100%);
}

.sgr26-button--primary,
.sgr26 .btn-blue {
  box-shadow: 0 10px 24px rgba(65, 138, 242, 0.28);
}

.sgr26-hero__content {
  width: min(860px, 58%);
}

@media (max-width: 1100px) {
  .sgr26-hero__content {
    width: min(780px, 68%);
  }
}

@media (max-width: 900px) {
  .sgr26-hero__content {
    width: min(100%, 88%);
    display: block;
  }
}


/* —— HACCP template: final CTA + lead form (design as-is, SGR copy) —— */
.sgr26 .section.final-cta,
.sgr26-final-cta {
  background: linear-gradient(135deg, var(--sgr26-navy), #173f7a);
  color: #fff;
  overflow: hidden;
  padding: 96px 0;
  position: relative;
}

.sgr26-final-cta .two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: stretch;
}

.sgr26-final-cta .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sgr26-turq);
  font-size: 12px;
  line-height: 1.1;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 18px;
}

.sgr26-final-cta .eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sgr26-turq);
  flex: 0 0 auto;
}

.sgr26-final-cta h2 {
  color: #fff;
  font-family: var(--sgr26-font-display);
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.14;
  margin: 0 0 18px;
  max-width: 820px;
  font-weight: 800;
}

.sgr26-final-cta .strike-word {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  color: inherit;
}

.sgr26-final-cta .strike-word::after {
  content: "";
  position: absolute;
  left: -3%;
  right: -3%;
  top: 55%;
  height: 0.15em;
  border-radius: 999px;
  background: var(--sgr26-turq);
  transform: rotate(-2deg);
  opacity: 0.9;
}

.sgr26-final-cta .accent-word {
  color: var(--sgr26-turq);
}

.sgr26-final-cta .section-lead {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

.sgr26-final-cta .final-notes {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.sgr26-final-cta .final-note {
  border: 1px dashed rgba(139, 208, 223, 0.55);
  border-radius: 8px;
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
  font-size: 15px;
}

.sgr26-final-cta .lead-form {
  width: 100%;
  max-width: 560px;
  justify-self: end;
  background: #fff;
  color: var(--sgr26-navy);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
}

.sgr26-final-cta .lead-form-header {
  text-align: center;
  margin-bottom: 18px;
}

.sgr26-final-cta .lead-form-subtitle {
  font-size: 14px;
  color: #6f7176;
  margin: 0 0 4px;
}

.sgr26-final-cta .lead-form-title {
  margin: 0;
  color: var(--sgr26-navy);
  font-family: var(--sgr26-font-display);
  font-size: 26px;
  line-height: 1.18;
  font-weight: 700;
}

.sgr26-final-cta .lead-contact-label {
  font-size: 13px;
  color: #6f7176;
  margin: 8px 0 0;
}

.sgr26-final-cta .lead-messenger-row {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  justify-content: center;
}

.sgr26-final-cta .lead-messenger-icon,
.sgr26-final-cta .contact-method-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #dde4f0;
  background: #f0f5ff;
  color: var(--sgr26-blue-dark);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.sgr26-final-cta .contact-method-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(65, 138, 242, 0.2);
}

.sgr26-final-cta .contact-method-btn.is-active {
  border-color: rgba(65, 138, 242, 0.55);
  background: rgba(65, 138, 242, 0.14);
  box-shadow: 0 0 0 3px rgba(65, 138, 242, 0.16), 0 8px 20px rgba(49, 117, 214, 0.24);
}

.sgr26-final-cta .contact-method-btn img {
  width: 22px;
  height: 22px;
}

.sgr26-final-cta .lead-form label:not(.form-consent) {
  display: block;
  color: var(--sgr26-navy);
  font-weight: 700;
  margin: 0 0 8px;
  font-size: 13px;
}

.sgr26-final-cta .lead-form .contact-value-input,
.sgr26-final-cta .lead-form input:not([type="checkbox"]):not([type="hidden"]) {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--sgr26-line);
  background: #fafafa;
  border-radius: 15px;
  padding: 16px 18px;
  margin: 0 0 16px;
  color: var(--sgr26-ink);
  outline: none;
  font: inherit;
}

.sgr26-final-cta .lead-form .contact-value-input.is-hidden {
  display: none;
}

.sgr26-final-cta .lead-form input:focus {
  border-color: var(--sgr26-blue);
  background: #fff;
}

.sgr26-final-cta .contact-error {
  margin: 0 0 12px;
  min-height: 0;
  color: #9f2f2f;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

.sgr26-final-cta .contact-error:not(.is-visible):empty {
  display: none;
}

.sgr26-final-cta .contact-error.is-visible {
  display: block;
}

.sgr26-final-cta .btn-blue[aria-disabled="true"],
.sgr26-final-cta .btn-blue:disabled {
  opacity: 0.82;
  cursor: not-allowed;
  filter: saturate(0.82);
  box-shadow: none;
}

.sgr26-final-cta .btn-blue.is-consent-ready:not(:disabled) {
  box-shadow: 0 0 0 4px rgba(65, 138, 242, 0.2), 0 30px 15px -20px rgba(26, 84, 168, 0.7);
}

.sgr26-final-cta .lead-form input.is-invalid,
.sgr26-final-cta .lead-form textarea.is-invalid,
.sgr26-final-cta .lead-form input[aria-invalid="true"],
.sgr26-final-cta .lead-form textarea[aria-invalid="true"] {
  border-color: #bd3d3d;
  background: #fff8f8;
}

.sgr26-final-cta .form-consent.is-checked .form-consent__text {
  color: var(--sgr26-blue-dark);
}

.sgr26-final-cta .form-consent {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  margin: 6px 0 14px;
  color: #5d6a81;
  font-size: 13px;
  line-height: 1.45;
}

.sgr26-final-cta .form-consent__checkbox {
  margin: 2px 0 0;
  width: 16px;
  height: 16px;
  accent-color: var(--sgr26-blue);
}

.sgr26-final-cta .form-consent a {
  color: var(--sgr26-blue-dark);
  text-decoration: underline;
}

.sgr26-final-cta .lead-form .btn-blue {
  width: 100%;
}

.sgr26-final-cta .form-notice {
  margin-top: 12px;
  color: #667085;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}

.sgr26-final-cta .form-notice a {
  color: var(--sgr26-blue-dark);
  text-decoration: underline;
}

.sgr26-final-cta .sgr26-form__status {
  margin: 12px 0 0;
  color: #6c7681;
  font-size: 12px;
  text-align: center;
}

/* —— New template-aligned blocks: value / process / scope / errors / norms —— */

.sgr26-value,
.sgr26-how,
.sgr26-steps,
.sgr26-docs,
.sgr26-errors,
.sgr26-norms {
  padding: 88px 0;
}

.sgr26-value {
  background: #fff;
}

.sgr26-value__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.sgr26-value__card {
  position: relative;
  min-height: 220px;
  padding: 28px 22px 24px;
  border: 1px solid rgba(5, 35, 76, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafd 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 16px 40px rgba(5, 35, 76, 0.05);
}

.sgr26-value__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 28px;
  margin-bottom: 18px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(66, 139, 244, 0.12);
  color: var(--sgr26-blue-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.sgr26-value__card h3 {
  margin: 0 0 10px;
  font-family: var(--sgr26-font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--sgr26-navy);
}

.sgr26-value__card p {
  margin: 0;
  color: #5a6b85;
  font-size: 15px;
  line-height: 1.55;
}

.sgr26-process {
  background:
    radial-gradient(900px 380px at 8% 0%, rgba(66, 139, 244, 0.08), transparent 60%),
    linear-gradient(180deg, #f4f8fd 0%, #eef4fb 100%);
}

.sgr26-process__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sgr26-process__card {
  position: relative;
  min-height: 190px;
  padding: 72px 22px 22px;
  border: 1px solid rgba(5, 35, 76, 0.07);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(5, 35, 76, 0.05);
  overflow: hidden;
}

.sgr26-process__card--wide {
  grid-column: 1 / -1;
  min-height: 0;
  padding: 28px 28px 26px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 18px;
  align-items: start;
}

.sgr26-process__card--wide .sgr26-process__num {
  grid-row: 1 / span 2;
  margin: 0;
  width: 48px;
  height: 48px;
  font-size: 14px;
}

.sgr26-process__card--wide h3 {
  margin: 2px 0 8px;
}

.sgr26-process__num {
  position: absolute;
  top: 18px;
  left: 20px;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(66, 139, 244, 0.1);
  color: var(--sgr26-blue-deep);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

.sgr26-process__card h3 {
  margin: 0 0 10px;
  font-family: var(--sgr26-font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--sgr26-navy);
}

.sgr26-process__card p {
  margin: 0;
  color: #5a6b85;
  font-size: 15px;
  line-height: 1.55;
}

.sgr26-process__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-top: 28px;
}

.sgr26-process__cta p {
  margin: 0;
  color: #5a6b85;
  font-size: 14px;
  line-height: 1.45;
}

.sgr26-scope {
  background: #fff;
}

.sgr26-scope__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sgr26-scope__col {
  padding: 28px 26px 26px;
  border-radius: 24px;
  border: 1px solid rgba(5, 35, 76, 0.08);
  min-height: 100%;
}

.sgr26-scope__col--you {
  background: #f6f9fe;
}

.sgr26-scope__col--we {
  background: linear-gradient(180deg, #0a315f 0%, #092d57 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 22px 50px rgba(5, 35, 76, 0.18);
}

.sgr26-scope__label {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sgr26-blue-deep);
}

.sgr26-scope__col--we .sgr26-scope__label {
  color: #83bdfd;
}

.sgr26-scope__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.sgr26-scope__col li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.45;
  color: #334155;
}

.sgr26-scope__col--we li {
  color: rgba(255, 255, 255, 0.9);
}

.sgr26-scope__col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Ccircle cx='9' cy='9' r='9' fill='%23428BF4'/%3E%3Cpath d='M5.2 9.1l2.3 2.3 5.3-5.2' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 18px 18px no-repeat;
}

.sgr26-scope__col--we li::before {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Ccircle cx='9' cy='9' r='9' fill='%238bd0df'/%3E%3Cpath d='M5.2 9.1l2.3 2.3 5.3-5.2' stroke='%23092d57' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 18px 18px no-repeat;
}

.sgr26-scope__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  margin-top: 28px;
}

.sgr26-scope__link {
  margin-top: 0;
  color: var(--sgr26-blue-deep);
}

.sgr26-errors {
  background:
    linear-gradient(180deg, #fff9f4 0%, #f7f1ea 100%);
}

.sgr26-errors__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.sgr26-errors__card {
  padding: 24px 22px 22px;
  border-radius: 20px;
  border: 1px solid rgba(184, 111, 24, 0.14);
  background: #fff;
  box-shadow: 0 12px 32px rgba(92, 58, 18, 0.05);
  min-height: 180px;
}

.sgr26-errors__num {
  display: inline-block;
  margin-bottom: 14px;
  color: #b86f18;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.sgr26-errors__card h3 {
  margin: 0 0 10px;
  font-family: var(--sgr26-font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--sgr26-navy);
}

.sgr26-errors__card p {
  margin: 0;
  color: #5a6b85;
  font-size: 15px;
  line-height: 1.55;
}

.sgr26-norms {
  background: #092d57;
  color: #fff;
}

.sgr26-norms .sgr26-kicker {
  color: #83bdfd;
}

.sgr26-norms .sgr26-kicker::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sgr26-turq);
}

.sgr26-norms .sgr26-heading h2,
.sgr26-norms .sgr26-heading--split h2 {
  color: #fff;
}

.sgr26-norms .sgr26-heading--split > p,
.sgr26-norms .sgr26-heading > p {
  color: rgba(255, 255, 255, 0.68);
}

.sgr26-norms__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.sgr26-norms__card {
  min-height: 168px;
  padding: 22px 20px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.sgr26-norms__tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 14px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(139, 208, 223, 0.16);
  color: #8bd0df;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sgr26-norms__card h3 {
  margin: 0 0 10px;
  font-family: var(--sgr26-font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.sgr26-norms__card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.sgr26-norms__note {
  margin: 22px 0 0;
  max-width: 820px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.55;
}



/* Template section chrome (eyebrow + section-title from landings) */
.sgr26-section {
  padding: 88px 0;
}
.sgr26-section--soft {
  background: linear-gradient(180deg, #f6f9fe 0%, #ffffff 100%);
}
.sgr26-section-title {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.42fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
}
.sgr26-section-title h2 {
  margin: 0;
  max-width: 18em;
  color: var(--sgr26-navy);
  font-family: var(--sgr26-font-display);
  font-size: clamp(29px, 3.2vw, 48px);
  font-weight: 800;
  line-height: 1.08;
}
.sgr26-section-title h2 span {
  color: var(--sgr26-blue-deep);
}
.sgr26-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--sgr26-blue-deep);
  font-size: 12px;
  line-height: 1.1;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  font-weight: 700;
}
.sgr26-eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: var(--sgr26-turq);
}
.sgr26-section-note {
  margin: 0;
  color: #5a6b85;
  font-size: 16px;
  line-height: 1.65;
}

/* timeline — 1:1 with landings .timeline / .time-row / .bar */
.sgr26-timeline {
  display: grid;
  gap: 14px;
  position: relative;
}
.sgr26-timeline::before {
  content: "";
  position: absolute;
  left: 206px;
  right: 238px;
  top: -10px;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(26,84,168,.18) 0 1px, transparent 1px calc(100% / 14));
  pointer-events: none;
}
.sgr26-timeline__row {
  display: grid;
  grid-template-columns: 170px 1fr 280px;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--sgr26-line);
  border-radius: 8px;
  background: #fff;
}
.sgr26-timeline__row b {
  color: var(--sgr26-navy);
  font-size: 16px;
  font-weight: 700;
}
.sgr26-timeline__bar {
  height: 16px;
  border-radius: 999px;
  background: #eef4fc;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(65,138,242,.08);
}
.sgr26-timeline__bar i {
  position: absolute;
  left: var(--start);
  width: var(--size);
  top: 0;
  bottom: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #428bf4, #8bd0df);
}
.sgr26-timeline__row > span {
  color: #5a6b85;
  font-size: 15px;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .sgr26-section-title {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .sgr26-timeline::before {
    display: none;
  }
  .sgr26-timeline__row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .sgr26-section {
    padding: 64px 0;
  }
}

/* ============================================================
   Template-parity blocks from TR TS / certificate landings
   (route-step, commerce, doc-board, steps-grid)
   ============================================================ */

.sgr26-how,
.sgr26-steps {
  padding: 88px 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(66, 139, 244, 0.07), transparent 32%),
    linear-gradient(180deg, #f4f8fd 0%, #eef4fb 100%);
}

.sgr26-how .sgr26-heading h2 span,
.sgr26-steps__sub span {
  color: var(--sgr26-blue-deep);
}

/* route-step strip — as on sertifikat/deklaraciya */
.sgr26-tpl-route {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--sgr26-line);
  border-radius: 8px;
  background: var(--sgr26-line);
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(5, 35, 76, 0.05);
}

.sgr26-tpl-route__step {
  position: relative;
  min-height: 285px;
  margin: 0;
  padding: 28px 24px 40px;
  background: #fff;
}

.sgr26-tpl-route__step em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 34px;
  margin: 0 0 24px;
  border-radius: 5px;
  background: rgba(139, 208, 223, 0.32);
  color: var(--sgr26-blue-deep);
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  transform: skewX(-10deg);
}

.sgr26-tpl-route__step h3 {
  margin: 0 0 12px;
  color: var(--sgr26-navy);
  font-family: var(--sgr26-font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.22;
}

.sgr26-tpl-route__step p {
  margin: 0;
  color: #5a6b85;
  font-size: 16px;
  line-height: 1.5;
}

.sgr26-tpl-route__step::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 42px;
  height: 2px;
  background: var(--sgr26-turq);
}

/* commerce module — price + factors + validity together */
.sgr26-commerce {
  width: 100vw;
  margin: 72px 0 0 calc(50% - 50vw);
  padding: 88px max(20px, calc((100vw - 1210px) / 2));
  background:
    radial-gradient(circle at 92% 8%, rgba(139, 211, 230, 0.18), transparent 30%),
    radial-gradient(circle at 12% 58%, rgba(184, 135, 70, 0.14), transparent 34%),
    linear-gradient(180deg, #f6fbff 0%, #ffffff 36%, #fbf6ed 100%);
}

.sgr26-commerce__inner {
  width: min(1210px, 100%);
  margin-inline: auto;
}

.sgr26-commerce__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: stretch;
}

.sgr26-commerce__price,
.sgr26-commerce__factor,
.sgr26-commerce__pill {
  border: 1px solid rgba(217, 232, 255, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 38px rgba(11, 45, 95, 0.045);
}

.sgr26-commerce__price {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px;
}

.sgr26-commerce__eyebrow {
  margin: 0 0 22px;
  color: var(--sgr26-blue-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sgr26-commerce__title {
  margin: 0;
  max-width: 520px;
  color: var(--sgr26-blue-deep);
  font-family: var(--sgr26-font-display);
  font-size: clamp(28px, 3.1vw, 46px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

.sgr26-commerce__title span {
  display: block;
  margin-top: 8px;
  color: var(--sgr26-blue);
}

.sgr26-commerce__copy {
  max-width: 560px;
  margin: 24px 0 0;
  color: #5a6b85;
  font-size: 16px;
  line-height: 1.48;
}

.sgr26-commerce__anchors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.sgr26-commerce__anchors div {
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(66, 139, 244, 0.06);
  border: 1px solid rgba(66, 139, 244, 0.1);
}

.sgr26-commerce__anchors strong {
  display: block;
  color: var(--sgr26-navy);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.sgr26-commerce__anchors span {
  display: block;
  margin-top: 4px;
  color: #5a6b85;
  font-size: 13px;
  line-height: 1.35;
}

.sgr26-commerce__note {
  margin-top: auto;
  padding-top: 30px;
  color: var(--sgr26-blue-deep);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sgr26-commerce__factors {
  display: grid;
  align-content: start;
  gap: 18px;
}

.sgr26-commerce__factors-title {
  margin: 0;
  color: var(--sgr26-blue-deep);
  font-family: var(--sgr26-font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.22;
}

.sgr26-commerce__factors-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sgr26-commerce__factor {
  min-height: 118px;
  padding: 18px;
  color: #5a6b85;
  font-size: 16px;
  line-height: 1.35;
}

.sgr26-commerce__factor::before {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  margin-bottom: 18px;
  border-radius: 99px;
  background: var(--sgr26-turq);
}

.sgr26-commerce__validity {
  margin-top: 22px;
  padding-top: 24px;
  border-top: 1px solid rgba(217, 232, 255, 0.9);
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 24px;
  align-items: start;
}

.sgr26-commerce__validity-title {
  margin: 0;
  max-width: 520px;
  color: var(--sgr26-blue-deep);
  font-family: var(--sgr26-font-display);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 800;
  line-height: 1.12;
}

.sgr26-commerce__validity-title span {
  color: var(--sgr26-blue);
}

.sgr26-commerce__validity-text {
  margin: 0 0 18px;
  color: #5a6b85;
  font-size: 16px;
  line-height: 1.5;
}

.sgr26-commerce__pills {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.sgr26-commerce__pill {
  padding: 16px 18px;
}

.sgr26-commerce__pill strong {
  display: block;
  margin-bottom: 6px;
  color: var(--sgr26-navy);
  font-size: 18px;
  font-weight: 800;
}

.sgr26-commerce__pill span {
  color: #5a6b85;
  font-size: 14px;
  line-height: 1.35;
}

/* doc-board — documents index */
.sgr26-docs {
  padding: 88px 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(184, 135, 70, 0.13), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f7f1ea 100%);
}

.sgr26-docs__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 36px;
  align-items: start;
}

.sgr26-docs__main .sgr26-kicker {
  margin-bottom: 14px;
}

.sgr26-docs__main h2 {
  margin: 0 0 14px;
  max-width: 18em;
  color: var(--sgr26-navy);
  font-family: var(--sgr26-font-display);
  font-size: clamp(29px, 3.2vw, 48px);
  font-weight: 800;
  line-height: 1.08;
}

.sgr26-docs__main h2 span {
  color: var(--sgr26-blue-deep);
}

.sgr26-docs__main .sgr26-eyebrow {
  margin-bottom: 18px;
}

.sgr26-docs__lead {
  margin: 0 0 28px;
  max-width: 52ch;
  color: #6c6570;
  font-size: 16px;
  line-height: 1.6;
}

.sgr26-docs__board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.sgr26-docs__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
  min-height: 228px;
  padding: 18px;
  border: 1px solid rgba(184, 135, 70, 0.22);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #fffaf4 100%);
  box-shadow: 0 16px 42px rgba(55, 38, 18, 0.055);
}

.sgr26-docs__row i {
  display: grid;
  place-items: center;
  width: 54px;
  height: 44px;
  border-radius: 6px;
  background: rgba(184, 135, 70, 0.12);
  color: var(--sgr26-blue-deep);
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.sgr26-docs__row b {
  display: block;
  margin-bottom: 4px;
  color: var(--sgr26-navy);
  font-family: var(--sgr26-font-main);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.22;
}

.sgr26-docs__row span {
  color: #5a6b85;
  font-size: 16px;
  line-height: 1.35;
}

.sgr26-docs__row small {
  align-self: end;
  color: #b88746;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sgr26-docs__panel {
  margin: 0;
  position: sticky;
  top: calc(var(--sgr26-header-h) + 16px);
}

.sgr26-docs__panel img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 22px 50px rgba(5, 35, 76, 0.12);
}

.sgr26-docs__panel figcaption {
  margin-top: 14px;
  color: #5a6b85;
  font-size: 14px;
  line-height: 1.5;
}

.sgr26-docs__panel figcaption b {
  display: block;
  margin-bottom: 6px;
  color: var(--sgr26-navy);
  font-size: 16px;
  font-weight: 700;
}

/* steps-grid — «Берём на себя» */
.sgr26-steps {
  background: #fff;
}

.sgr26-steps__intro {
  max-width: 820px;
  margin-bottom: 36px;
}

.sgr26-steps__intro h2 {
  margin: 0 0 10px;
  color: var(--sgr26-navy);
  font-family: var(--sgr26-font-display);
  font-size: clamp(29px, 3.2vw, 48px);
  font-weight: 800;
  line-height: 1.08;
}

.sgr26-steps__sub {
  margin: 0 0 14px;
  color: var(--sgr26-navy);
  font-family: var(--sgr26-font-display);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 700;
  line-height: 1.2;
}

.sgr26-steps__intro > p {
  margin: 0;
  max-width: 52ch;
  color: #5a6b85;
  font-size: 16px;
  line-height: 1.6;
}

.sgr26-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sgr26-steps__card {
  position: relative;
  min-height: 214px;
  padding: 92px 26px 24px;
  border: 1px solid var(--sgr26-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(5, 35, 76, 0.04);
  overflow: hidden;
}

.sgr26-steps__card::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 34px;
  width: 46px;
  height: 4px;
  border-radius: 999px;
  background: var(--sgr26-turq);
}

.sgr26-steps__card b {
  display: block;
  margin: 0 0 10px;
  color: var(--sgr26-navy);
  font-family: var(--sgr26-font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.sgr26-steps__card p {
  margin: 0;
  color: #5a6b85;
  font-size: 15px;
  line-height: 1.5;
}

.sgr26-steps__card i {
  position: absolute;
  right: 18px;
  bottom: 10px;
  color: rgba(5, 35, 76, 0.06);
  font-style: normal;
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  pointer-events: none;
}

@media (max-width: 1100px) {
  .sgr26-tpl-route {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sgr26-commerce__grid,
  .sgr26-commerce__validity,
  .sgr26-docs__layout {
    grid-template-columns: 1fr;
  }

  .sgr26-docs__panel {
    position: static;
  }

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

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

  .sgr26-commerce__pills {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .sgr26-tpl-route,
  .sgr26-docs__board,
  .sgr26-steps__grid,
  .sgr26-commerce__factors-grid,
  .sgr26-commerce__anchors {
    grid-template-columns: 1fr;
  }

  .sgr26-tpl-route__step,
  .sgr26-docs__row {
    min-height: 0;
  }

  .sgr26-how,
  .sgr26-steps,
  .sgr26-docs {
    padding: 64px 0;
  }

  .sgr26-commerce {
    margin-top: 48px;
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

/* HACCP section rhythm */
.sgr26-route,
.sgr26-estimate,
.sgr26-documents,
.sgr26-validity,
.sgr26-faq,
.sgr26-value,
.sgr26-how,
.sgr26-steps,
.sgr26-docs,
.sgr26-errors,
.sgr26-norms {
  padding: 88px 0 !important;
}

.sgr26-dossier {
  /* keep full-bleed visual band, but align vertical air */
  min-height: auto;
}

.sgr26-diagnostic__result-actions {
  justify-content: flex-start;
}

.sgr26-diagnostic__cta {
  width: auto;
  min-width: 220px;
}

@media (max-width: 900px) {
  .sgr26-final-cta .two-col {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sgr26-final-cta .lead-form {
    max-width: none;
    justify-self: stretch;
  }

  .sgr26-final-cta h2 {
    font-size: 32px;
  }

  .sgr26-final-cta .lead-form-title {
    font-size: 23px;
  }

  .sgr26-route,
  .sgr26-estimate,
  .sgr26-documents,
  .sgr26-validity,
  .sgr26-faq,
  .sgr26-value,
  .sgr26-process,
  .sgr26-scope,
  .sgr26-errors,
  .sgr26-norms {
    padding: 64px 0 !important;
  }

  .sgr26-value__grid {
    grid-template-columns: 1fr 1fr;
  }

  .sgr26-process__grid {
    grid-template-columns: 1fr 1fr;
  }

  .sgr26-process__card--wide {
    grid-column: 1 / -1;
  }

  .sgr26-scope__split {
    grid-template-columns: 1fr;
  }

  .sgr26-errors__grid {
    grid-template-columns: 1fr 1fr;
  }

  .sgr26-norms__grid {
    grid-template-columns: 1fr 1fr;
  }

  .sgr26-final-cta {
    padding: 72px 0;
  }
}

@media (max-width: 640px) {
  .sgr26-value__grid,
  .sgr26-process__grid,
  .sgr26-errors__grid,
  .sgr26-norms__grid {
    grid-template-columns: 1fr;
  }

  .sgr26-process__card--wide {
    grid-template-columns: 1fr;
    padding: 72px 20px 20px;
  }

  .sgr26-process__card--wide .sgr26-process__num {
    position: absolute;
    grid-row: auto;
  }
}


/* —— HACCP-parity quiz (SGR questions) —— */
.sgr26 .quiz-shell { display: block; max-width: min(1210px, 100%); margin: 0 auto; width: 100%; }

.sgr26 .quiz-note { margin-bottom: 0; max-width: 520px; }

.sgr26 .quiz-diagnostic {
    position: relative;
    min-height: 560px;
    border: 1px solid rgba(185,202,229,.95);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(246,249,254,.9));
    box-shadow: 0 22px 70px rgba(5, 35, 76, 0.12);
    overflow: hidden;
  }

.sgr26 .quiz-diagnostic::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(65,138,242,.055) 1px, transparent 1px),
      linear-gradient(180deg, rgba(65,138,242,.045) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.82), transparent 78%);
    pointer-events: none;
  }

.sgr26 .quiz-diagnostic::after {
    content: "";
    position: absolute;
    left: -40%;
    right: -40%;
    top: 42%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139,208,223,.8), transparent);
    transform: rotate(-9deg);
    animation: quizScan 5.6s ease-in-out infinite;
    pointer-events: none;
  }

.sgr26 .quiz-diagnostic-inner { position: relative; z-index: 1; display: grid; gap: 18px; padding: 28px; height: 100%; align-content: stretch; }

.sgr26 .quiz-diagnostic-head { display: flex; justify-content: space-between; gap: 18px; align-items: start; }

.sgr26 .quiz-diagnostic-head small { display: block; color: var(--sgr26-blue-deep); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; font-weight: 800; margin-bottom: 12px; }

.sgr26 .quiz-diagnostic-head b { display: block; color: var(--sgr26-navy); font-family: var(--sgr26-font-display); font-size: 44px; line-height: .98; max-width: 420px; }

.sgr26 .quiz-live {
    min-width: 128px;
    border: 1px solid var(--sgr26-line);
    border-radius: 8px;
    background: rgba(255,255,255,.82);
    padding: 14px;
  }

.sgr26 .quiz-live span { display: block; color: #5a6b85; font-size: 11px; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 8px; }

.sgr26 .quiz-live strong { display: block; color: var(--sgr26-navy); font-family: var(--sgr26-font-display); font-size: 30px; line-height: 1; }

.sgr26 .quiz-route-map { display: grid; gap: 12px; margin-top: 10px; }

.sgr26 .quiz-route-row {
    display: grid;
    grid-template-columns: 54px 1fr auto;
    gap: 14px;
    align-items: center;
    min-height: 82px;
    border: 1px solid var(--sgr26-line);
    border-radius: 8px;
    background: rgba(255,255,255,.86);
    padding: 14px 16px;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
  }

.sgr26 .quiz-route-row.is-active { border-color: rgba(49,117,214,.5); box-shadow: 0 16px 34px rgba(49,117,214,.12); transform: translateX(4px); background: #fff; }

.sgr26 .quiz-route-row em {
    display: grid;
    place-items: center;
    width: 54px;
    height: 44px;
    border-radius: 6px;
    background: rgba(139,208,223,.26);
    color: var(--sgr26-blue-deep);
    font-style: normal;
    font-weight: 800;
  }

.sgr26 .quiz-route-row b { display: block; color: var(--sgr26-navy); font-size: 16px; line-height: 1.25; margin-bottom: 4px; }

.sgr26 .quiz-route-row span { display: block; color: #5a6b85; font-size: 13px; line-height: 1.35; }

.sgr26 .quiz-route-row i { width: 48px; height: 4px; border-radius: 99px; background: #e7eef9; overflow: hidden; }

.sgr26 .quiz-route-row i::before { content: ""; display: block; width: var(--fill, 35%); height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--sgr26-blue), var(--sgr26-turq)); transition: width .28s ease; }

.sgr26 .quiz-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: auto;
  }

.sgr26 .quiz-summary div { border: 1px solid var(--sgr26-line); border-radius: 8px; background: rgba(255,255,255,.78); padding: 14px; min-height: 96px; }

.sgr26 .quiz-summary small { display: block; color: #5a6b85; font-size: 10px; text-transform: uppercase; letter-spacing: .7px; margin-bottom: 8px; }

.sgr26 .quiz-summary b { display: block; color: var(--sgr26-navy); font-family: var(--sgr26-font-display); font-size: 20px; line-height: 1.05; }

.sgr26 .quiz-card {
    position: relative;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid rgba(185,202,229,.95);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 22px 70px rgba(5, 35, 76, 0.12);
    overflow: hidden;
  }

.sgr26 .quiz-card::before {
    content: none;
  }

.sgr26 .quiz-card > * { position: relative; z-index: 1; }

.sgr26 .quiz-progress { display: grid; gap: 10px; margin-bottom: 24px; }

.sgr26 .quiz-progress small { color: var(--sgr26-blue-deep); font-size: 12px; letter-spacing: .8px; text-transform: uppercase; font-weight: 800; }

.sgr26 .quiz-track { height: 9px; border-radius: 999px; background: #ecf2fd; overflow: hidden; box-shadow: inset 0 0 0 1px rgba(65,138,242,.05); }

.sgr26 .quiz-track i { display: block; height: 100%; width: 0%; border-radius: inherit; background: linear-gradient(90deg, var(--sgr26-blue), var(--sgr26-turq)); transition: width .28s ease; }

.sgr26 .quiz-question {
  margin: 0 0 22px;
  max-width: 820px;
  color: var(--sgr26-navy);
  font-family: var(--sgr26-font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.sgr26 .quiz-options { display: grid; gap: 12px; margin-bottom: 18px; width: 100%; }

.sgr26 .quiz-option {
    width: 100%;
    text-align: left;
    border: 1px solid var(--sgr26-line);
    border-radius: 8px;
    background: #fff;
    color: #2d3e58;
    padding: 17px 18px 16px 58px;
    font-size: 16px;
    line-height: 1.32;
    cursor: pointer;
    position: relative;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background .2s ease, color .2s ease;
  }

.sgr26 .quiz-option::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 50%;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid rgba(65,138,242,.22);
    transform: translateY(-50%);
    background: #fff;
    box-shadow: inset 0 0 0 7px #fff;
  }

.sgr26 .quiz-option:hover { border-color: rgba(49,117,214,.45); box-shadow: 0 10px 26px rgba(49,117,214,.12); transform: translateY(-1px); }

.sgr26 .quiz-option.active { color: #fff; background: var(--sgr26-grad-blue); border-color: transparent; border-bottom: 3px solid var(--sgr26-blue-deep); box-shadow: 0 24px 13px -16px rgba(26,84,168,.65); }

.sgr26 .quiz-option.active::before { border-color: rgba(255,255,255,.82); background: var(--sgr26-turq); box-shadow: inset 0 0 0 6px rgba(255,255,255,.95); }

.sgr26 .quiz-nav { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 12px; }

.sgr26 .quiz-ghost {
    min-height: 52px;
    border-radius: 12px;
    border: 1px solid var(--sgr26-line);
    background: #f6f9fe;
    color: var(--sgr26-blue-deep);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 0 18px;
    cursor: pointer;
  }

.sgr26 .quiz-ghost:hover:not(:disabled) { border-color: rgba(49,117,214,.38); background: #fff; }

.sgr26 .quiz-ghost:disabled { opacity: .42; cursor: default; }

/* —— Quiz result 1:1 deklaraciya-tr-ts —— */
.sgr26 .quiz-result {
  display: none;
  margin-top: 18px;
  border: 1px solid var(--sgr26-line);
  border-radius: 8px;
  background: linear-gradient(180deg, #f8fbff, #fff);
  padding: 28px;
  opacity: 0;
  transform: translateY(14px);
}

.sgr26 .quiz-card.is-result .quiz-result {
  display: block;
  animation: resultReveal .55s ease-out forwards;
}

@keyframes resultReveal {
  to { opacity: 1; transform: translateY(0); }
}

.sgr26 .quiz-options.is-two-cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
}
.sgr26 .quiz-options.is-two-cols .quiz-option {
  min-height: 54px;
  padding: 14px 14px 14px 50px;
  font-size: 15px;
  line-height: 1.3;
}
@media (max-width: 700px) {
  .sgr26 .quiz-options.is-two-cols { grid-template-columns: 1fr; }
}

.sgr26 .quiz-result-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--sgr26-blue-deep);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 18px;
}

.sgr26 .quiz-result-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sgr26-turq);
  box-shadow: 0 0 0 8px rgba(139, 208, 223, .18);
}

.sgr26 .quiz-result-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, .28fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 20px;
}

.sgr26 .quiz-result strong {
  display: block;
  color: var(--sgr26-navy);
  font-family: var(--sgr26-font-display);
  font-size: clamp(24px, 2.25vw, 34px);
  line-height: 1.14;
  margin-bottom: 12px;
  max-width: 760px;
}

.sgr26 .quiz-result-intro { max-width: 780px; margin-bottom: 0; }

.sgr26 .quiz-result p {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.52;
  color: #4f5e75;
}

.sgr26 .quiz-result p:last-child { margin-bottom: 0; }

.sgr26 .quiz-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 14px;
}

.sgr26 .quiz-result-box {
  border: 1px solid var(--sgr26-line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.sgr26 .quiz-result-box.is-accent {
  background: linear-gradient(180deg, #f5f9ff, #fff);
  border-color: rgba(65, 138, 242, .34);
}

.sgr26 .quiz-readiness {
  display: grid;
  align-content: center;
  gap: 10px;
  border: 1px solid rgba(65, 138, 242, .34);
  border-radius: 8px;
  background: linear-gradient(180deg, #f5f9ff, #fff);
  padding: 18px;
}

.sgr26 .quiz-readiness-label {
  color: #667085;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
}

.sgr26 .quiz-readiness-score {
  color: var(--sgr26-blue-deep);
  font-family: var(--sgr26-font-display);
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1;
}

.sgr26 .quiz-readiness-track {
  height: 8px;
  border-radius: 999px;
  background: #e7eef9;
  overflow: hidden;
}

.sgr26 .quiz-readiness-track i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sgr26-blue), var(--sgr26-turq));
  transition: width .35s ease;
}

.sgr26 .quiz-readiness-state {
  margin: 0 !important;
  color: var(--sgr26-navy) !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
  font-weight: 700;
}

.sgr26 .quiz-result-box small,
.sgr26 .quiz-result-summary small {
  display: block;
  color: #667085;
  font-size: 11px;
  letter-spacing: .9px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 9px;
}

.sgr26 .quiz-result-box b {
  display: block;
  color: var(--sgr26-navy);
  font-family: var(--sgr26-font-display);
  font-size: 22px;
  line-height: 1.18;
}

.sgr26 .quiz-result-box h3 {
  margin: 0 0 14px;
  color: var(--sgr26-navy);
  font-family: var(--sgr26-font-display);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.18;
}

.sgr26 .quiz-result .quiz-result-duration {
  margin: 0;
  color: var(--sgr26-blue);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 500;
}

.sgr26 .quiz-result-note {
  margin: 0 0 18px !important;
  border-left: 3px solid var(--sgr26-blue);
  background: #f6f9fe;
  padding: 13px 16px;
  color: #34435c !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

.sgr26 .quiz-result-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sgr26 .quiz-result-list li {
  position: relative;
  padding-left: 22px;
  color: #4f5e75;
  font-size: 16px;
  line-height: 1.42;
}

.sgr26 .quiz-result-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sgr26-turq);
}

.sgr26 .quiz-result-next {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 1fr);
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(65, 138, 242, .24);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  margin-top: 14px;
  overflow: hidden;
}

.sgr26 .quiz-result-next > :last-child {
  justify-self: center;
  margin-inline: auto;
}

.sgr26 .quiz-result-next > div { min-width: 0; }

.sgr26 .quiz-result-next b {
  display: block;
  color: var(--sgr26-navy);
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.sgr26 .quiz-result-next p { font-size: 15px; }

.sgr26 .quiz-result-contact {
  display: grid;
  gap: 10px;
  min-width: 0;
  justify-items: center;
  width: min(100%, 520px);
}

.sgr26 .quiz-result-contact .contact-value-input {
  width: 100%;
  max-width: none;
  min-height: 48px;
  border: 1px solid var(--sgr26-line);
  background: #fbfdff;
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--sgr26-ink);
  outline: none;
  font: inherit;
  box-sizing: border-box;
}

.sgr26 .quiz-result-contact .contact-value-input:focus {
  border-color: var(--sgr26-blue);
  background: #fff;
}

.sgr26 .quiz-result-contact .contact-value-input.is-hidden { display: none !important; }

.sgr26 .quiz-result-contact .btn {
  width: 100%;
  min-width: 0;
  max-width: none;
}

.sgr26 .quiz-result-contact .contact-error {
  display: none;
  justify-self: stretch;
  width: 100%;
  color: #b42318;
  font-size: 12px;
  line-height: 1.35;
  margin: 0;
}

.sgr26 .quiz-result-contact .contact-error.is-visible { display: block; }
.sgr26 .quiz-result-contact .contact-error.is-success { color: #027a48; }

.sgr26 .quiz-result-contact .contact-method-row {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.sgr26 .quiz-result-contact .contact-method-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #dde4f0;
  background: #f0f5ff;
  color: var(--sgr26-blue-deep);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
  padding: 0;
}

.sgr26 .quiz-result-contact .contact-method-btn::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(65,138,242,.45), rgba(65,138,242,0));
  opacity: 0;
  transition: opacity .18s ease;
  pointer-events: none;
}

.sgr26 .quiz-result-contact .contact-method-btn img {
  width: 22px;
  height: 22px;
  position: relative;
  z-index: 1;
}

.sgr26 .quiz-result-contact .contact-method-btn svg {
  position: relative;
  z-index: 1;
}

.sgr26 .quiz-result-contact .contact-method-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(65,138,242,.2);
}

.sgr26 .quiz-result-contact .contact-method-btn.is-active {
  border-color: rgba(65,138,242,.55);
  background: rgba(65,138,242,.14);
  box-shadow: 0 0 0 3px rgba(65,138,242,.16), 0 8px 20px rgba(49,117,214,.24);
}

.sgr26 .quiz-result-contact .contact-method-btn.is-active::after { opacity: 1; }

.sgr26 .quiz-result-contact .form-consent {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  margin: 6px 0 14px;
  color: #5d6a81;
  font-size: 13px;
  line-height: 1.4;
  width: 100%;
  justify-items: start;
  text-align: left;
}

.sgr26 .quiz-result-contact .form-consent__checkbox {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
}

.sgr26 .quiz-result-contact .form-consent a {
  color: var(--sgr26-blue-deep);
  text-decoration: underline;
}

.sgr26 .quiz-result-contact .form-notice {
  margin-top: 12px;
  color: #667085;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
  width: 100%;
}

.sgr26 .quiz-result-contact .form-notice a {
  color: var(--sgr26-blue-deep);
  text-decoration: underline;
}

.sgr26 .quiz-result-contact .sgr26-form__status {
  margin: 0;
  width: 100%;
  text-align: center;
  color: #5a6b85;
  font-size: 13px;
}

.sgr26 .quiz-result-summary {
  border: 1px dashed rgba(65,138,242,.34);
  border-radius: 8px;
  background: #fbfdff;
  padding: 18px;
  margin-bottom: 18px;
}

.sgr26 .quiz-result-summary.is-hidden { display: none; }

.sgr26 .quiz-card.is-result .quiz-progress,
.sgr26 .quiz-card.is-result .quiz-question,
.sgr26 .quiz-card.is-result .quiz-hint,
.sgr26 .quiz-card.is-result .quiz-options {
  display: none !important;
}

.sgr26 .quiz-card.is-result .quiz-nav {
  margin: 0 0 12px;
}

@media (max-width: 900px) {
  .sgr26 .quiz-result-head,
  .sgr26 .quiz-result-next { grid-template-columns: 1fr; }
  .sgr26 .quiz-result-next { gap: 14px; }
  .sgr26 .quiz-result-contact {
    width: 100%;
    justify-items: stretch;
  }
  .sgr26 .quiz-result-contact .btn { width: 100%; }
}

@media (max-width: 640px) {
  .sgr26 .quiz-result-grid { grid-template-columns: 1fr; }
  .sgr26 .quiz-result { padding: 20px; }
  .sgr26 .quiz-result-next { padding: 14px; }
}

/* SGR quiz section shell */
.sgr26-quiz {
  padding: 88px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}
.sgr26-quiz .sgr26-section-title {
  margin-bottom: 36px;
  grid-template-columns: 1fr;
  max-width: none;
}
.sgr26-quiz .sgr26-section-title h2 {
  max-width: 22em;
}
@media (max-width: 900px) {
  .sgr26-quiz { padding: 64px 0; }
}



/* —— Docs list (HACCP dossier index) + Proof dark lab —— */

.sgr26-docs__board--list {
  grid-template-columns: 1fr;
  gap: 10px;
}

.sgr26-docs__board--list .sgr26-docs__row {
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  min-height: 76px;
  gap: 16px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--sgr26-line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(5, 35, 76, 0.05);
}

.sgr26-docs__board--list .sgr26-docs__row i {
  width: 54px;
  height: 44px;
  background: rgba(66, 139, 244, 0.1);
  color: var(--sgr26-blue-deep);
  font-size: 13px;
}

.sgr26-docs__board--list .sgr26-docs__row b {
  font-size: 16px;
  margin-bottom: 2px;
}

.sgr26-docs__board--list .sgr26-docs__row span {
  font-size: 14px;
  line-height: 1.4;
}

.sgr26-docs__board--list .sgr26-docs__row small {
  white-space: nowrap;
  color: #8a9bb0;
  font-size: 11px;
}

.sgr26-docs__extra {
  margin-top: 28px;
  max-width: 62ch;
}

.sgr26-docs__extra p {
  margin: 0 0 14px;
  color: #5a6b85;
  font-size: 15px;
  line-height: 1.6;
}

.sgr26-docs__extra h3 {
  margin: 22px 0 12px;
  color: var(--sgr26-navy);
  font-family: var(--sgr26-font-display);
  font-size: 22px;
  font-weight: 700;
}

.sgr26-docs__note {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid rgba(217, 152, 48, 0.28);
  background: rgba(255, 248, 230, 0.9);
}

.sgr26-docs__note strong {
  display: block;
  margin-bottom: 10px;
  color: var(--sgr26-navy);
  font-size: 15px;
}

.sgr26-docs__note ul {
  margin: 0 0 12px;
  padding-left: 1.15em;
  color: #5a6b85;
  font-size: 14px;
  line-height: 1.5;
}

.sgr26-docs__note p {
  margin: 0;
  font-size: 14px;
}

/* HACCP .section.dark + .proof-lab */
section.sgr26-proof {
  padding: 88px 0;
  color: #fff;
  background: linear-gradient(135deg, #05234c 0%, #0b326b 55%, #123f7e 100%);
}

.sgr26-section-title--on-dark h2 {
  color: #fff;
}

.sgr26-section-title--on-dark h2 span {
  color: var(--sgr26-turq);
}

.sgr26-eyebrow--on-dark {
  color: var(--sgr26-turq);
}

.sgr26-eyebrow--on-dark::before {
  background: var(--sgr26-turq);
}

.sgr26-section-title--on-dark .sgr26-section-note {
  color: rgba(255, 255, 255, 0.72);
}

.sgr26-proof__lead {
  margin: -8px 0 28px;
  max-width: 70ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.6;
}

.sgr26-proof-lab {
  /* 3 + 2 + 3 карточки */
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.sgr26-proof-lab > .sgr26-proof:nth-child(1),
.sgr26-proof-lab > .sgr26-proof:nth-child(2),
.sgr26-proof-lab > .sgr26-proof:nth-child(3),
.sgr26-proof-lab > .sgr26-proof:nth-child(6),
.sgr26-proof-lab > .sgr26-proof:nth-child(7),
.sgr26-proof-lab > .sgr26-proof:nth-child(8) {
  grid-column: span 2; /* ряд из 3 */
}

.sgr26-proof-lab > .sgr26-proof:nth-child(4),
.sgr26-proof-lab > .sgr26-proof:nth-child(5) {
  grid-column: span 3; /* ряд из 2 */
}

.sgr26-proof {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 26px;
  min-height: 270px;
  color: #fff;
}

.sgr26-proof-lab .sgr26-proof {
  /* cards inside lab — reset section padding */
  padding: 26px;
  min-height: 270px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.sgr26-proof small {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--sgr26-turq);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sgr26-proof h3 {
  margin: 0 0 12px;
  color: #fff;
  font-family: var(--sgr26-font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.sgr26-proof p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.5;
}

.sgr26-proof ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.35;
}

.sgr26-proof li {
  position: relative;
  padding-left: 18px;
}

.sgr26-proof li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sgr26-turq);
}

.sgr26-proof__footer {
  margin: 28px 0 0;
  max-width: 70ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.6;
}

/* photo-panel caption absolute like HACCP when sticky figure */
.sgr26-docs__panel.photo-panel {
  position: sticky;
  top: calc(var(--sgr26-header-h) + 16px);
  border-radius: 8px;
  overflow: hidden;
  background: var(--sgr26-navy);
  min-height: 420px;
  box-shadow: 0 22px 70px rgba(5, 35, 76, 0.18);
}

.sgr26-docs__panel.photo-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  opacity: 0.84;
  filter: saturate(0.9);
}

.sgr26-docs__panel.photo-panel figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  margin: 0;
  padding: 18px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--sgr26-navy);
  font-size: 14px;
  line-height: 1.45;
}

.sgr26-docs__panel.photo-panel figcaption b {
  display: block;
  margin-bottom: 8px;
  font-family: var(--sgr26-font-display);
  font-size: 19px;
  color: var(--sgr26-navy);
}

@media (max-width: 1100px) {
  .sgr26-proof-lab {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sgr26-proof-lab > .sgr26-proof:nth-child(n) {
    grid-column: auto;
  }
  .sgr26-docs__board--list .sgr26-docs__row {
    grid-template-columns: 54px 1fr;
  }
  .sgr26-docs__board--list .sgr26-docs__row small {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .sgr26-proof-lab {
    grid-template-columns: 1fr;
  }
  .sgr26-proof-lab > .sgr26-proof:nth-child(n) {
    grid-column: auto;
  }
  section.sgr26-proof {
    padding: 64px 0;
  }
  .sgr26-proof-lab > .sgr26-proof {
    padding: 22px;
    min-height: 0;
  }
  .sgr26-docs__panel.photo-panel {
    position: static;
    min-height: 0;
  }
  .sgr26-docs__panel.photo-panel img {
    min-height: 240px;
  }
}



/* —— Commerce: term of SGR (бессрочно / 5 лет) —— */
.sgr26-commerce__term {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(217, 232, 255, 0.9);
}
.sgr26-commerce__term-head {
  max-width: 820px;
  margin-bottom: 22px;
}
.sgr26-commerce__term-title {
  margin: 0 0 14px;
  color: var(--sgr26-blue-deep);
  font-family: var(--sgr26-font-display);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 800;
  line-height: 1.12;
}
.sgr26-commerce__term-title span {
  color: var(--sgr26-blue);
}
.sgr26-commerce__term-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.sgr26-commerce__term-card {
  padding: 22px 22px 20px;
  border: 1px solid rgba(217, 232, 255, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 38px rgba(11, 45, 95, 0.045);
}
.sgr26-commerce__term-card--wide {
  grid-column: 1 / -1;
}
.sgr26-commerce__term-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 12px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(64, 168, 140, 0.16);
  color: #2a8f76;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.sgr26-commerce__term-badge--years {
  background: rgba(66, 139, 244, 0.14);
  color: var(--sgr26-blue-deep);
}
.sgr26-commerce__term-badge--alert {
  background: rgba(232, 176, 96, 0.22);
  color: #b87a28;
}
.sgr26-commerce__term-card h4 {
  margin: 0 0 10px;
  color: var(--sgr26-navy);
  font-family: var(--sgr26-font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}
.sgr26-commerce__term-card p {
  margin: 0 0 10px;
  color: #5a6b85;
  font-size: 15px;
  line-height: 1.55;
}
.sgr26-commerce__term-card ul {
  margin: 0 0 12px;
  padding-left: 1.15em;
  color: #5a6b85;
  font-size: 15px;
  line-height: 1.5;
}

/* —— FAQ compact (GOST R / TR TS warm card grid) —— */
.sgr26-faq--compact {
  padding: 88px 0;
  background:
    radial-gradient(circle at 92% 8%, rgba(184, 135, 70, 0.12), transparent 28%),
    linear-gradient(180deg, #fffaf4 0%, #f7f1e8 100%);
}
.sgr26-faq--compact .sgr26-faq__head {
  display: block;
  max-width: 820px;
  margin-bottom: 34px;
}
.sgr26-faq--compact .sgr26-faq__head h2 {
  margin: 0 0 12px;
  color: var(--sgr26-navy);
  font-family: var(--sgr26-font-display);
  font-size: clamp(29px, 3.2vw, 48px);
  font-weight: 800;
  line-height: 1.08;
}
.sgr26-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}
.sgr26-faq-item {
  min-height: 0;
  padding: 22px;
  border: 1px solid var(--sgr26-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 42px rgba(55, 38, 18, 0.05);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.sgr26-faq-item[open] {
  border-color: rgba(184, 135, 70, 0.35);
  background: #fff;
  box-shadow: 0 18px 48px rgba(55, 38, 18, 0.08);
}
.sgr26-faq-item--wide {
  grid-column: 1 / -1;
}
.sgr26-faq-item summary {
  cursor: pointer;
  list-style: none;
  color: var(--sgr26-navy);
  font-size: 17px;
  line-height: 1.35;
}
.sgr26-faq-item summary::-webkit-details-marker { display: none; }
.sgr26-faq-item summary b {
  font-weight: 700;
  font-family: var(--sgr26-font-display);
}
.sgr26-faq-answer {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(5, 35, 76, 0.08);
}
.sgr26-faq-answer p,
.sgr26-faq-answer li {
  color: #5a6b85;
  font-size: 15px;
  line-height: 1.55;
}
.sgr26-faq-answer p { margin: 0 0 10px; }
.sgr26-faq-answer ul {
  margin: 0 0 12px;
  padding-left: 1.15em;
}

/* —— Norms frame (GOST R norm-grid) —— */
.sgr26-norms--frame {
  padding: 88px 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(66, 139, 244, 0.08), transparent 30%),
    linear-gradient(180deg, #f7fafd 0%, #eef4fb 100%);
  color: var(--sgr26-ink);
}
.sgr26-norms--frame .sgr26-section-title h2,
.sgr26-norms--frame .sgr26-section-note,
.sgr26-norms--frame .sgr26-eyebrow {
  color: inherit;
}
.sgr26-norms--frame .sgr26-section-title h2 {
  color: var(--sgr26-navy);
}
.sgr26-norms--frame .sgr26-section-note {
  color: #5a6b85;
}
.sgr26-norms__intro {
  margin: -12px 0 28px;
  max-width: 70ch;
  color: #5a6b85;
  font-size: 16px;
  line-height: 1.6;
}
.sgr26-norm-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.sgr26-norm-card {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 28px 26px 24px;
  border: 1px solid var(--sgr26-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(5, 35, 76, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.sgr26-norm-card:hover {
  transform: translateY(-2px);
  border-color: rgba(49, 117, 214, 0.34);
  box-shadow: 0 20px 38px rgba(5, 35, 76, 0.08);
}
.sgr26-norm-tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 12px;
  padding: 7px 12px 5px;
  border-radius: 7px;
  background: rgba(139, 208, 223, 0.28);
  color: var(--sgr26-blue-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.sgr26-norm-card h3 {
  margin: 0 0 12px;
  color: var(--sgr26-navy);
  font-family: var(--sgr26-font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.22;
}
.sgr26-norm-card p {
  margin: 0 0 10px;
  color: #5a6b85;
  font-size: 15px;
  line-height: 1.5;
}
.sgr26-norm-lines {
  margin-top: auto;
  display: grid;
  gap: 11px;
  padding-top: 18px;
}
.sgr26-norm-lines i {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: #e8eef9;
  position: relative;
  overflow: hidden;
}
.sgr26-norm-lines i:nth-child(2) {
  width: 70%;
  background: #d0e8ee;
}
.sgr26-norm-lines i::after {
  content: "";
  position: absolute;
  left: -64px;
  top: 0;
  bottom: 0;
  width: 64px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.75), transparent);
  animation: sgr26-norm-shimmer 2.8s ease-in-out infinite;
}
@keyframes sgr26-norm-shimmer {
  0% { transform: translateX(0); }
  100% { transform: translateX(280px); }
}
.sgr26-norms__table-wrap {
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: 12px;
  border: 1px solid var(--sgr26-line);
  background: #fff;
  box-shadow: 0 14px 36px rgba(5, 35, 76, 0.05);
}
.sgr26-norms__table-title {
  margin: 0 0 14px;
  color: var(--sgr26-navy);
  font-family: var(--sgr26-font-display);
  font-size: 20px;
  font-weight: 700;
}
.sgr26-norms__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.sgr26-norms__table th,
.sgr26-norms__table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(5, 35, 76, 0.08);
  text-align: left;
  vertical-align: top;
}
.sgr26-norms__table th {
  color: var(--sgr26-navy);
  font-weight: 700;
  background: rgba(66, 139, 244, 0.06);
}
.sgr26-norms__table td {
  color: #5a6b85;
}
.sgr26-norms__table td:first-child {
  color: var(--sgr26-blue-deep);
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .sgr26-norm-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sgr26-commerce__term-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .sgr26-faq-grid {
    grid-template-columns: 1fr;
  }
  .sgr26-faq-item--wide {
    grid-column: auto;
  }
  .sgr26-faq--compact,
  .sgr26-norms--frame {
    padding: 64px 0;
  }
}
@media (max-width: 640px) {
  .sgr26-norm-grid {
    grid-template-columns: 1fr;
  }
  .sgr26-norms__table td:first-child {
    white-space: normal;
  }
}



/* —— Docs dark navy list —— */
.sgr26-docs-dark {
  padding: 88px 0;
  color: #fff;
  background: #092d57;
}
.sgr26-docs-dark__head {
  max-width: 900px;
  margin-bottom: 36px;
}
.sgr26-docs-dark__head h2 {
  margin: 0 0 14px;
  color: #fff;
  font-family: var(--sgr26-font-display);
  font-size: clamp(29px, 3.2vw, 48px);
  font-weight: 800;
  line-height: 1.08;
}
.sgr26-docs-dark__head h2 span {
  color: #83bdfd;
}
.sgr26-docs-dark__head > p {
  margin: 0;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.65;
}
.sgr26-docs-dark .sgr26-eyebrow--on-dark {
  color: #83bdfd;
  margin-bottom: 18px;
}
.sgr26-docs-dark .sgr26-eyebrow--on-dark::before {
  background: var(--sgr26-turq);
}
.sgr26-docs-dark__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 40px;
  align-items: start;
}
.sgr26-docs-dark__index details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.sgr26-docs-dark__index summary {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  min-height: 72px;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  color: #fff;
  font-family: var(--sgr26-font-display);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.3;
}
.sgr26-docs-dark__index summary::-webkit-details-marker { display: none; }
.sgr26-docs-dark__index summary span {
  color: #83bdfd;
  font-size: 13px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.sgr26-docs-dark__index details > div {
  padding: 0 0 18px 46px;
}
.sgr26-docs-dark__index p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.55;
}
.sgr26-docs-dark__aside {
  padding: 24px 22px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}
.sgr26-docs-dark__aside-kicker {
  margin: 0 0 10px;
  color: var(--sgr26-turq);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sgr26-docs-dark__aside h3 {
  margin: 0 0 18px;
  color: #fff;
  font-family: var(--sgr26-font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}
.sgr26-docs-dark__aside ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.sgr26-docs-dark__aside li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}
.sgr26-docs-dark__aside li b {
  color: var(--sgr26-turq);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.sgr26-docs-dark__aside-note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.5;
}
.sgr26-docs-dark__extra {
  margin-top: 36px;
  max-width: 820px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.sgr26-docs-dark__extra p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.6;
}
.sgr26-docs-dark__extra h3 {
  margin: 20px 0 12px;
  color: #fff;
  font-family: var(--sgr26-font-display);
  font-size: 22px;
  font-weight: 700;
}
.sgr26-docs-dark__extra strong {
  color: #fff;
}

/* Book / open dossier break before trends */
.sgr26-book-break {
  padding: 0;
  background: #05234c;
}
.sgr26-book-break__frame {
  position: relative;
  min-height: min(72vh, 640px);
  overflow: hidden;
}
.sgr26-book-break__img {
  width: 100%;
  height: min(72vh, 640px);
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: saturate(0.92);
}
.sgr26-book-break__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 35, 76, 0.88) 0%, rgba(5, 35, 76, 0.55) 42%, rgba(5, 35, 76, 0.2) 100%),
    linear-gradient(180deg, transparent 40%, rgba(5, 35, 76, 0.55) 100%);
  pointer-events: none;
}
.sgr26-book-break__copy {
  position: absolute;
  left: max(20px, calc((100% - 1210px) / 2));
  right: 20px;
  bottom: 48px;
  max-width: 560px;
  color: #fff;
  z-index: 1;
}
.sgr26-book-break__kicker {
  margin: 0 0 14px;
  color: var(--sgr26-turq);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sgr26-book-break__copy h2 {
  margin: 0 0 14px;
  color: #fff;
  font-family: var(--sgr26-font-display);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  line-height: 1.1;
}
.sgr26-book-break__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .sgr26-docs-dark__layout {
    grid-template-columns: 1fr;
  }
  .sgr26-docs-dark {
    padding: 64px 0;
  }
  .sgr26-book-break__copy {
    left: 20px;
    bottom: 28px;
  }
  .sgr26-book-break__frame,
  .sgr26-book-break__img {
    min-height: 420px;
    height: 420px;
  }
}


/* GOST R cases + trends */
/* GOST R market-cases + trends adapted for SGR */

        .market-cases {
          --navy: #082b5c;
          --blue: #245db2;
          --text: #62718b;
          --text-dark: #0f2f63;
          --bg: #edf3f8;
          --border: #d8e5f4;
          --pill-text: #1e56aa;
          --accent: #8fd3e6;
          --note-bg: #fbf4e8;
          --note-border: #e7cfaa;
          --green: #39c48f;
          --orange: #ffb15c;
          --violet: #7b6cff;
          padding: 72px 0 80px;
          background: radial-gradient(circle at 7% 10%, rgba(143, 211, 230, .24), transparent 30%), radial-gradient(circle at 92% 16%, rgba(255, 177, 92, .13), transparent 34%), radial-gradient(circle at 82% 88%, rgba(57, 196, 143, .1), transparent 32%), linear-gradient(180deg, #f8fcff 0%, var(--bg) 100%);
          font-family: var(--sgr26-font-main);
          color: var(--text-dark);
        }
        .market-cases * { box-sizing: border-box; }
        .market-cases__wrap { width: min(1210px, calc(100% - 40px)); margin: 0 auto; }
        .market-cases__top {
          display: grid;
          grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
          gap: 40px;
          align-items: end;
          margin-bottom: 56px;
          padding-bottom: 34px;
          border-bottom: 1px solid rgba(18, 60, 105, .12);
        }
        .market-cases__label {
          display: inline-flex;
          align-items: center;
          gap: 12px;
          margin-bottom: 26px;
          padding: 10px 14px;
          border-radius: 999px;
          background: rgba(223, 240, 247, .9);
          color: var(--pill-text);
          font-size: 14px;
          line-height: 1;
          font-weight: 600;
          letter-spacing: .12em;
          text-transform: uppercase;
        }
        .market-cases__label::before {
          content: "";
          width: 8px;
          height: 8px;
          border-radius: 50%;
          background: var(--green);
          box-shadow: 0 0 0 7px rgba(57, 196, 143, .14);
        }
        .market-cases__title {
          margin: 0;
          max-width: 760px;
          font-size: 48px;
          line-height: 1.08;
          letter-spacing: 0;
          font-weight: 700;
          color: var(--navy);
        }
        .market-cases__title span { color: #3f7cff; }
        .market-cases__lead {
          margin: 0;
          max-width: 700px;
          font-size: 16px;
          line-height: 1.6;
          font-weight: 400;
          color: var(--text);
        }
        .market-cases__body {
          display: grid;
          grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
          gap: 42px;
          align-items: start;
        }
        .market-cases__side {
          position: sticky;
          top: 28px;
          min-height: 420px;
          padding: 34px 30px;
          border-radius: 8px;
          background: radial-gradient(circle at 80% 20%, rgba(143, 211, 230, .16), transparent 34%), linear-gradient(180deg, var(--navy) 0%, #062650 100%);
          box-shadow: 0 24px 70px rgba(8, 43, 92, .18);
          overflow: hidden;
        }
        .market-cases__side::after {
          content: "";
          position: absolute;
          right: -90px;
          bottom: -90px;
          width: 220px;
          height: 220px;
          border-radius: 50%;
          background: radial-gradient(circle, rgba(143, 211, 230, .2), transparent 68%);
        }
        .market-cases__big {
          margin: 0 0 28px;
          font-size: 88px;
          line-height: .86;
          letter-spacing: 0;
          font-weight: 700;
          color: var(--accent);
        }
        .market-cases__side-text {
          position: relative;
          z-index: 1;
          margin: 0;
          font-size: 16px;
          line-height: 1.6;
          font-weight: 400;
          color: rgba(255, 255, 255, .82);
        }
        .market-cases__side-note {
          position: relative;
          z-index: 1;
          margin-top: 34px;
          padding-top: 24px;
          border-top: 1px solid rgba(143, 211, 230, .24);
          font-size: 15px;
          line-height: 1.45;
          letter-spacing: .08em;
          text-transform: uppercase;
          color: rgba(255, 255, 255, .58);
        }
        .case-flow {
          position: relative;
          display: grid;
          gap: 0;
          padding-left: 44px;
        }
        .case-flow::before {
          content: "";
          position: absolute;
          left: 14px;
          top: 14px;
          bottom: 20px;
          width: 2px;
          background: linear-gradient(180deg, var(--green), var(--accent), var(--orange), var(--violet));
          border-radius: 999px;
        }
        .case-story {
          position: relative;
          padding: 0 0 58px;
        }
        .case-story:last-child { padding-bottom: 0; }
        .case-story__dot {
          position: absolute;
          left: -43px;
          top: 4px;
          width: 30px;
          height: 30px;
          border-radius: 50%;
          background: #ffffff;
          border: 2px solid var(--case-color);
          box-shadow: 0 0 0 8px rgba(255, 255, 255, .9), 0 0 0 12px var(--case-glow);
        }
        .case-story__dot::before {
          content: "";
          position: absolute;
          inset: 7px;
          border-radius: 50%;
          background: var(--case-color);
        }
        .case-story--tenders { --case-color: var(--green); --case-glow: rgba(57, 196, 143, .16); }
        .case-story--growth { --case-color: var(--orange); --case-glow: rgba(255, 177, 92, .18); }
        .case-story--export { --case-color: var(--violet); --case-glow: rgba(123, 108, 255, .16); }
        .case-story__head {
          display: grid;
          grid-template-columns: minmax(0, 1fr) auto;
          gap: 24px;
          align-items: start;
          margin-bottom: 18px;
        }
        .case-story__tag {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          justify-self: end;
          padding: 10px 14px;
          border-radius: 999px;
          background: rgba(223, 240, 247, .9);
          color: var(--pill-text);
          font-size: 13px;
          line-height: 1;
          font-weight: 600;
          letter-spacing: .08em;
          text-transform: uppercase;
          white-space: nowrap;
        }
        .case-story h3 {
          margin: 0;
          font-size: 30px;
          line-height: 1.12;
          letter-spacing: 0;
          font-weight: 700;
          color: var(--navy);
        }
        .case-story__content { max-width: 930px; padding: 0; }
        .case-story p {
          margin: 0;
          font-size: 16px;
          line-height: 1.6;
          font-weight: 400;
          color: var(--text);
        }
        .case-story p + p { margin-top: 18px; }
        .case-story__result {
          display: inline-flex;
          margin-top: 24px;
          padding: 14px 18px;
          border-radius: 8px;
          background: rgba(255, 255, 255, .74);
          border: 1px solid rgba(18, 60, 105, .1);
          box-shadow: 0 12px 34px rgba(8, 43, 92, .05);
          color: var(--navy);
          font-size: 16px;
          line-height: 1.45;
          font-weight: 400;
        }
        .market-cases__final {
          margin-top: 54px;
          display: grid;
          grid-template-columns: minmax(260px, .42fr) minmax(0, 1fr);
          gap: 30px;
          align-items: stretch;
          border-radius: 8px;
          overflow: hidden;
          border: 1px solid var(--note-border);
          background: var(--note-bg);
          box-shadow: 0 18px 52px rgba(158, 103, 32, .07);
        }
        .market-cases__final-accent {
          min-height: 180px;
          padding: 34px;
          background: radial-gradient(circle at 78% 22%, rgba(143, 211, 230, .18), transparent 34%), linear-gradient(135deg, var(--navy) 0%, #062650 100%);
          color: #ffffff;
        }
        .market-cases__final-accent span {
          display: block;
          max-width: 270px;
          font-size: 34px;
          line-height: 1;
          letter-spacing: 0;
          font-weight: 700;
          color: var(--accent);
        }
        .market-cases__final-text {
          display: flex;
          align-items: center;
          padding: 32px 36px;
        }
        .market-cases__final-text p {
          margin: 0;
          max-width: 900px;
          font-size: 16px;
          line-height: 1.6;
          font-weight: 400;
          color: var(--text-dark);
        }
        @media (max-width: 1100px) {
          .market-cases__top,
          .market-cases__body,
          .market-cases__final { grid-template-columns: 1fr; }
          .market-cases__side {
            position: relative;
            top: auto;
            min-height: auto;
          }
          .market-cases__side-text { max-width: 760px; }
          .market-cases__title { font-size: 40px; }
        }
        @media (max-width: 720px) {
          .market-cases { padding: 48px 0 54px; }
          .market-cases__wrap { width: min(1210px, calc(100% - 28px)); }
          .market-cases__top {
            gap: 26px;
            margin-bottom: 40px;
          }
          .market-cases__title { font-size: 30px; }
          .market-cases__lead { font-size: 16px; }
          .market-cases__side { padding: 30px 24px; }
          .market-cases__big { font-size: 66px; }
          .market-cases__side-text { font-size: 16px; }
          .case-flow { padding-left: 34px; }
          .case-flow::before { left: 10px; }
          .case-story { padding-bottom: 46px; }
          .case-story__dot {
            left: -37px;
            width: 24px;
            height: 24px;
          }
          .case-story__dot::before { inset: 6px; }
          .case-story__head {
            grid-template-columns: 1fr;
            gap: 14px;
          }
          .case-story__tag { justify-self: start; }
          .case-story h3 { font-size: 24px; }
          .case-story p,
          .case-story__result { font-size: 16px; }
          .market-cases__final-accent,
          .market-cases__final-text { padding: 26px 24px; }
          .market-cases__final-accent span { font-size: 30px; }
          .market-cases__final-text p { font-size: 16px; }
        }
      

        .ds-trends-light {
          --ds-navy: #082b5c;
          --ds-blue: #245db2;
          --ds-text: #62718b;
          --ds-dark: #0f2f63;
          --ds-bg: #f4f8fc;
          --ds-card: #ffffff;
          --ds-border: #d8e5f4;
          --ds-pill: #dff0f7;
          --ds-accent: #8fd3e6;
          --ds-green: #39c48f;
          --ds-orange: #ffb15c;
          --ds-violet: #7b6cff;
          --ds-photo: url("./assets/certification-trends-2026.webp");
          padding: 72px 20px;
          background:
            radial-gradient(circle at 6% 10%, rgba(143, 211, 230, 0.2), transparent 28%),
            radial-gradient(circle at 92% 18%, rgba(255, 177, 92, 0.12), transparent 30%),
            linear-gradient(180deg, #ffffff 0%, var(--ds-bg) 100%);
          color: var(--ds-dark);
        }

        .ds-trends-light * { box-sizing: border-box; }
        .ds-trends-wrap { width: min(1210px, calc(100% - 40px)); margin: 0 auto; }
        .ds-trends-head {
          display: grid;
          grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.74fr);
          gap: 26px;
          align-items: stretch;
          margin-bottom: 18px;
        }

        .ds-trends-intro,
        .ds-trends-photo,
        .ds-trends-tabs,
        .ds-trends-content,
        .ds-trends-final {
          border-radius: 8px;
          border: 1px solid var(--ds-border);
          box-shadow: 0 20px 56px rgba(8, 43, 92, 0.06);
        }

        .ds-trends-intro {
          min-height: 260px;
          padding: 34px 36px;
          background: rgba(255, 255, 255, 0.82);
        }

        .ds-trends-label {
          display: inline-flex;
          align-items: center;
          gap: 10px;
          margin-bottom: 22px;
          padding: 9px 13px;
          border-radius: 999px;
          background: var(--ds-pill);
          color: var(--ds-blue);
          font-size: 13px;
          line-height: 1;
          font-weight: 700;
          letter-spacing: 0.11em;
          text-transform: uppercase;
        }

        .ds-trends-label::before {
          content: "";
          width: 8px;
          height: 8px;
          border-radius: 50%;
          background: var(--ds-green);
          box-shadow: 0 0 0 7px rgba(57, 196, 143, 0.14);
        }

        .ds-trends-title {
          margin: 0 0 18px;
          max-width: 820px;
          font-size: 44px;
          line-height: 1.04;
          letter-spacing: 0;
          font-weight: 700;
          color: var(--ds-navy);
        }

        .ds-trends-title span { color: #3f7cff; }
        .ds-trends-lead {
          margin: 0;
          max-width: 860px;
          font-size: 19px;
          line-height: 1.5;
          color: var(--ds-text);
          font-weight: 400;
        }

        .ds-trends-photo {
          min-height: 260px;
          overflow: hidden;
          background:
            linear-gradient(90deg, rgba(8, 43, 92, 0.08), rgba(255, 255, 255, 0.1)),
            var(--ds-photo) center / cover no-repeat;
        }

        .ds-trends-panel {
          display: grid;
          grid-template-columns: 310px minmax(0, 1fr);
          gap: 18px;
          min-height: 410px;
        }

        .ds-trends-tabs {
          padding: 18px;
          background: rgba(255, 255, 255, 0.86);
          display: grid;
          gap: 10px;
          align-content: start;
        }

        .ds-tab {
          position: relative;
          width: 100%;
          display: block;
          padding: 17px 18px 17px 46px;
          border-radius: 8px;
          border: 1px solid rgba(216, 229, 244, 0.9);
          background: #ffffff;
          color: var(--ds-text);
          font: inherit;
          font-size: 16px;
          line-height: 1.2;
          font-weight: 600;
          text-align: left;
          cursor: pointer;
          transition: color .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
        }

        .ds-tab::before {
          content: "";
          position: absolute;
          left: 18px;
          top: 50%;
          width: 12px;
          height: 12px;
          transform: translateY(-50%);
          border-radius: 4px;
          background: var(--ds-tab-color);
          box-shadow: 0 0 0 7px var(--ds-tab-glow);
        }

        .ds-tab::after {
          content: "";
          position: absolute;
          left: 0;
          bottom: 0;
          height: 3px;
          width: 100%;
          border-radius: 0 0 8px 8px;
          background: linear-gradient(90deg, var(--ds-tab-color), transparent);
          transform: scaleX(0);
          transform-origin: left;
          opacity: 0;
          transition: transform .3s ease, opacity .3s ease;
        }

        .ds-tab.is-active {
          color: var(--ds-navy);
          border-color: rgba(36, 93, 178, 0.22);
          background: linear-gradient(135deg, #ffffff, #f5fbff);
          box-shadow: 0 12px 26px rgba(8, 43, 92, 0.07);
        }

        .ds-tab.is-active::after {
          transform: scaleX(1);
          opacity: 1;
          animation: dsTabFill 4.2s linear;
        }

        @keyframes dsTabFill {
          from { transform: scaleX(0); }
          to { transform: scaleX(1); }
        }
        .ds-tab--green { --ds-tab-color: var(--ds-green); --ds-tab-glow: rgba(57, 196, 143, 0.12); }
        .ds-tab--cyan { --ds-tab-color: var(--ds-accent); --ds-tab-glow: rgba(143, 211, 230, 0.18); }
        .ds-tab--violet { --ds-tab-color: var(--ds-violet); --ds-tab-glow: rgba(123, 108, 255, 0.12); }
        .ds-tab--orange { --ds-tab-color: var(--ds-orange); --ds-tab-glow: rgba(255, 177, 92, 0.14); }
        .ds-tab--blue { --ds-tab-color: var(--ds-blue); --ds-tab-glow: rgba(36, 93, 178, 0.12); }

        .ds-trends-content {
          position: relative;
          background: rgba(255, 255, 255, 0.9);
          overflow: hidden;
          min-height: 410px;
        }

        .ds-trends-content::before {
          content: "";
          position: absolute;
          inset: 0 0 auto 0;
          height: 6px;
          background: linear-gradient(90deg, var(--ds-green), var(--ds-accent), var(--ds-orange), var(--ds-violet));
          z-index: 4;
        }

        .ds-trend {
          position: absolute;
          inset: 0;
          height: 100%;
          padding: 34px 38px 32px;
          display: grid;
          grid-template-columns: minmax(0, 1fr) 260px;
          gap: 34px;
          align-items: start;
          opacity: 0;
          transform: translateX(22px);
          pointer-events: none;
          transition: opacity .28s ease, transform .28s ease;
        }

        .ds-trend.is-active {
          opacity: 1;
          transform: translateX(0);
          pointer-events: auto;
        }

        .ds-trend h3 {
          margin: 0 0 18px;
          font-size: 32px;
          line-height: 1.08;
          letter-spacing: 0;
          font-weight: 700;
          color: var(--ds-navy);
        }

        .ds-trend p {
          margin: 0;
          font-size: 18px;
          line-height: 1.5;
          color: var(--ds-text);
          font-weight: 400;
        }

        .ds-trend p + p { margin-top: 14px; }
        .ds-trend ul {
          display: grid;
          gap: 10px;
          margin: 16px 0 0;
          padding: 0;
          list-style: none;
        }

        .ds-trend li {
          position: relative;
          padding-left: 24px;
          font-size: 17px;
          line-height: 1.4;
          color: var(--ds-text);
          font-weight: 400;
        }

        .ds-trend li::before {
          content: "";
          position: absolute;
          left: 0;
          top: 8px;
          width: 8px;
          height: 8px;
          border-radius: 50%;
          background: var(--ds-dot);
          box-shadow: 0 0 0 6px var(--ds-glow);
        }

        .trend-online { --ds-dot: var(--ds-green); --ds-glow: rgba(57, 196, 143, 0.14); }
        .trend-api { --ds-dot: var(--ds-accent); --ds-glow: rgba(143, 211, 230, 0.2); }
        .trend-bigdata { --ds-dot: var(--ds-violet); --ds-glow: rgba(123, 108, 255, 0.14); }
        .trend-marking { --ds-dot: var(--ds-orange); --ds-glow: rgba(255, 177, 92, 0.16); }
        .trend-small { --ds-dot: var(--ds-blue); --ds-glow: rgba(36, 93, 178, 0.14); }

        .ds-mini-visual {
          min-height: 300px;
          border-radius: 8px;
          background:
            radial-gradient(circle at 50% 22%, rgba(143, 211, 230, 0.28), transparent 36%),
            linear-gradient(180deg, #f8fcff, #edf7fb);
          border: 1px solid rgba(216, 229, 244, 0.9);
          position: relative;
          overflow: hidden;
        }

        .ds-mini-visual::before {
          content: "";
          position: absolute;
          left: 50%;
          top: 48%;
          width: 170px;
          height: 210px;
          transform: translate(-50%, -50%);
          border-radius: 8px;
          background: #ffffff;
          border: 1px solid rgba(18, 60, 105, 0.1);
          box-shadow: 0 24px 50px rgba(8, 43, 92, 0.12);
        }

        .ds-mini-visual::after {
          content: "";
          position: absolute;
          left: 50%;
          top: 48%;
          width: 250px;
          height: 250px;
          transform: translate(-50%, -50%);
          border-radius: 50%;
          border: 1px solid rgba(143, 211, 230, 0.44);
          box-shadow: 0 0 36px rgba(143, 211, 230, 0.18);
        }

        .ds-mini-line {
          position: absolute;
          left: 50%;
          width: 90px;
          height: 7px;
          transform: translateX(-50%);
          border-radius: 999px;
          background: rgba(18, 60, 105, 0.14);
          z-index: 2;
        }

        .ds-mini-line:nth-child(1) { top: 102px; width: 76px; }
        .ds-mini-line:nth-child(2) { top: 128px; width: 112px; }
        .ds-mini-line:nth-child(3) { top: 154px; width: 96px; }
        .ds-mini-dot {
          position: absolute;
          z-index: 3;
          border-radius: 50%;
          background: var(--ds-green);
          box-shadow: 0 0 0 9px rgba(57, 196, 143, 0.12);
        }

        .ds-mini-dot:nth-child(4) { width: 18px; height: 18px; left: 44px; top: 72px; }
        .ds-mini-dot:nth-child(5) {
          width: 16px;
          height: 16px;
          right: 46px;
          top: 108px;
          background: var(--ds-orange);
          box-shadow: 0 0 0 9px rgba(255, 177, 92, 0.13);
        }

        .ds-mini-dot:nth-child(6) {
          width: 15px;
          height: 15px;
          left: 60px;
          bottom: 68px;
          background: var(--ds-violet);
          box-shadow: 0 0 0 9px rgba(123, 108, 255, 0.12);
        }

        .ds-trends-final {
          margin-top: 18px;
          display: grid;
          grid-template-columns: 300px minmax(0, 1fr);
          overflow: hidden;
          border-color: rgba(231, 207, 170, 0.95);
          background: #fbf4e8;
          box-shadow: 0 18px 46px rgba(158, 103, 32, 0.06);
        }

        .ds-trends-final__title {
          padding: 26px 30px;
          background: linear-gradient(135deg, var(--ds-navy), #062650);
          color: var(--ds-accent);
          font-size: 30px;
          line-height: 1.08;
          letter-spacing: 0;
          font-weight: 700;
        }

        .ds-trends-final__text {
          padding: 26px 32px;
          display: flex;
          align-items: center;
        }

        .ds-trends-final__text p {
          margin: 0;
          font-size: 19px;
          line-height: 1.45;
          color: var(--ds-dark);
          font-weight: 400;
        }

        @media (max-width: 1080px) {
          .ds-trends-light { padding: 54px 16px; }
          .ds-trends-head,
          .ds-trends-panel,
          .ds-trends-final { grid-template-columns: 1fr; }
          .ds-trends-photo { min-height: 320px; }
          .ds-trends-content { min-height: 560px; }
          .ds-trend { grid-template-columns: 1fr; gap: 24px; }
          .ds-mini-visual { min-height: 240px; }
        }

        @media (max-width: 640px) {
          .ds-trends-light { padding: 42px 14px; }
          .ds-trends-intro,
          .ds-trend,
          .ds-trends-final__title,
          .ds-trends-final__text { padding: 24px; }
          .ds-trends-tabs { padding: 14px; }
          .ds-tab { padding: 15px 16px 15px 42px; }
          .ds-trends-photo { min-height: 240px; }
          .ds-trends-content { min-height: 710px; }
          .ds-trends-title { font-size: 34px; }
          .ds-trends-lead,
          .ds-trend p,
          .ds-trends-final__text p { font-size: 17px; }
          .ds-trend h3 { font-size: 28px; }
        }
      


/* —— SGR document pack with icons (from prebuild snapshot) —— */
#sgr26-documents.sgr-document-pack,
#sgr26-documents.sgr-document-pack * {
  box-sizing: border-box;
}

#sgr26-documents.sgr-document-pack {
  --doc-navy: #041d3f;
  --doc-navy-soft: #0a2c59;
  --doc-cyan: #78c8dc;
  --doc-blue: #3175d6;
  --doc-ink: #061f45;
  --doc-muted: #5d6f89;
  --doc-rule: #d5deea;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0;
  color: #fff;
  background:
    radial-gradient(circle at 7% 10%, rgba(120, 200, 220, .18), transparent 25%),
    linear-gradient(135deg, var(--doc-navy) 0%, #062754 58%, #0b326b 100%);
}

#sgr26-documents .sgr-document-pack__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .28;
  background-image:
    linear-gradient(rgba(134, 176, 219, .18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(134, 176, 219, .18) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .9) 56%, transparent 100%);
}

#sgr26-documents .sgr-document-pack__shell {
  /* заголовок сверху → белый перечень документов ПОД ним (не в две колонки) */
  width: min(1210px, calc(100% - 40px));
  min-height: 0;
  margin: 0 auto;
  padding: 72px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
}

#sgr26-documents .sgr-document-pack__intro {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  padding: 0 0 8px;
  align-self: stretch;
}

#sgr26-documents .sgr-document-pack__year {
  position: absolute;
  top: -20px;
  left: -8px;
  z-index: -1;
  color: rgba(255, 255, 255, .055);
  font-family: var(--sgr26-font-display);
  font-size: clamp(128px, 13vw, 220px);
  line-height: .8;
  font-weight: 800;
  letter-spacing: -.08em;
  pointer-events: none;
}

#sgr26-documents .sgr-document-pack__eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 26px;
  color: var(--doc-cyan);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

#sgr26-documents .sgr-document-pack__eyebrow::before {
  width: 28px;
  height: 28px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background:
    linear-gradient(currentColor, currentColor) center / 1px 18px no-repeat,
    linear-gradient(90deg, currentColor, currentColor) center / 18px 1px no-repeat;
  content: "";
}

#sgr26-documents .sgr-document-pack__intro h2 {
  max-width: 920px;
  margin: 0;
  color: #fff;
  font-family: var(--sgr26-font-display);
  font-size: clamp(29px, 3.2vw, 48px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.045em;
}

#sgr26-documents .sgr-document-pack__intro h2 span {
  display: block;
  margin-top: 7px;
  color: var(--doc-cyan);
}

#sgr26-documents .sgr-document-pack__dash {
  display: block;
  width: 46px;
  height: 4px;
  margin: 34px 0 28px;
  border-radius: 4px;
  background: var(--doc-cyan);
}

#sgr26-documents .sgr-document-pack__lead {
  max-width: 760px;
  margin: 0;
  color: rgba(231, 239, 249, .86);
  font-size: 16px;
  line-height: 1.66;
}

#sgr26-documents .sgr-document-pack__assurance {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 400px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: rgba(225, 236, 249, .78);
  font-size: 13px;
  line-height: 1.5;
}

#sgr26-documents .sgr-document-pack__assurance svg {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  color: var(--doc-cyan);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

#sgr26-documents .sgr-document-pack__measure {
  display: none; /* колонка-разделитель не нужна: список идёт под заголовком */
}

#sgr26-documents .sgr-document-pack__measure i,
#sgr26-documents .sgr-document-pack__measure i::before,
#sgr26-documents .sgr-document-pack__measure i::after {
  position: absolute;
  display: block;
  content: "";
}

#sgr26-documents .sgr-document-pack__measure i {
  left: -4px;
  width: 9px;
  height: 9px;
  border: 1px solid var(--doc-cyan);
  background: var(--doc-navy);
}

#sgr26-documents .sgr-document-pack__measure i::before {
  top: 3px;
  left: -10px;
  width: 27px;
  height: 1px;
  background: rgba(120, 200, 220, .7);
}

#sgr26-documents .sgr-document-pack__measure i::after {
  top: -10px;
  left: 3px;
  width: 1px;
  height: 27px;
  background: rgba(120, 200, 220, .7);
}

#sgr26-documents .sgr-document-pack__measure i:first-child { top: 0; }
#sgr26-documents .sgr-document-pack__measure i:nth-child(2) { top: 50%; }
#sgr26-documents .sgr-document-pack__measure i:last-child { bottom: 0; }

#sgr26-documents .sgr-document-pack__file-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  margin-top: 28px;
  padding: 0;
  align-self: stretch;
}

#sgr26-documents .sgr-document-pack__file {
  position: relative;
  z-index: 3;
  overflow: hidden;
  color: var(--doc-ink);
  background: #fff;
  border-radius: 2px 8px 8px 2px;
  box-shadow: 0 32px 80px rgba(0, 10, 32, .3);
}

#sgr26-documents .sgr-document-pack__file::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 18px solid #e8eef6;
  border-left: 18px solid transparent;
  content: "";
}

#sgr26-documents .sgr-document-pack__file-header {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 34px;
  border-bottom: 1px solid #b9c7d8;
  color: #6b7b92;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

#sgr26-documents .sgr-document-pack__list {
  display: grid;
}

#sgr26-documents .sgr-document-pack__item {
  position: relative;
  min-height: 98px;
  display: grid;
  grid-template-columns: 48px 18px 46px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  padding: 13px 35px 13px 28px;
  border-bottom: 1px solid var(--doc-rule);
  background: #fff;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

#sgr26-documents .sgr-document-pack__item:last-child { border-bottom: 0; }

#sgr26-documents .sgr-document-pack__item::before {
  position: absolute;
  inset: 10px auto 10px 0;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--doc-blue);
  content: "";
  opacity: 0;
  transform: scaleY(.25);
  transition: opacity 180ms ease, transform 180ms cubic-bezier(.22,1,.36,1);
}

#sgr26-documents .sgr-document-pack__item:hover,
#sgr26-documents .sgr-document-pack__item:focus-visible {
  z-index: 1;
  outline: none;
  background: #f2f7fe;
  box-shadow: inset 0 0 0 1px rgba(49, 117, 214, .12);
}

#sgr26-documents .sgr-document-pack__item:hover::before,
#sgr26-documents .sgr-document-pack__item:focus-visible::before {
  opacity: 1;
  transform: scaleY(1);
}

#sgr26-documents .sgr-document-pack__number {
  color: var(--doc-blue);
  font-family: var(--sgr26-font-display);
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.055em;
  transition: color 180ms ease, transform 180ms cubic-bezier(.22,1,.36,1);
}

#sgr26-documents .sgr-document-pack__tick {
  width: 1px;
  height: 38px;
  justify-self: center;
  background: repeating-linear-gradient(to bottom, #3b8ee9 0 2px, transparent 2px 5px);
}

#sgr26-documents .sgr-document-pack__icon {
  width: 38px;
  height: 38px;
  justify-self: center;
  color: var(--doc-blue);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
  transition: color 180ms ease, transform 180ms cubic-bezier(.22,1,.36,1);
}

#sgr26-documents .sgr-document-pack__item:hover .sgr-document-pack__number,
#sgr26-documents .sgr-document-pack__item:hover .sgr-document-pack__icon,
#sgr26-documents .sgr-document-pack__item:focus-visible .sgr-document-pack__number,
#sgr26-documents .sgr-document-pack__item:focus-visible .sgr-document-pack__icon {
  color: #1468c5;
  transform: translateX(3px);
}

#sgr26-documents .sgr-document-pack__copy {
  min-width: 0;
  display: grid;
  gap: 4px;
  padding-left: 8px;
}

#sgr26-documents .sgr-document-pack__copy h3 {
  margin: 0;
  color: var(--doc-ink);
  font-family: var(--sgr26-font-display);
  font-size: var(--text-card-title);
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -.015em;
}

#sgr26-documents .sgr-document-pack__copy p {
  max-width: 650px;
  margin: 0;
  color: var(--doc-muted);
  font-size: var(--text-card-body);
  line-height: 1.5;
}

#sgr26-documents .sgr-document-pack__file-footer {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 11px 32px;
  border-top: 1px solid #b9c7d8;
  color: #61738e;
  background: #f8fafd;
  font-size: 12px;
  line-height: 1.4;
}

#sgr26-documents .sgr-document-pack__file-footer svg {
  flex: 0 0 23px;
  width: 23px;
  height: 23px;
  color: var(--doc-blue);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

#sgr26-documents .sgr-document-pack__sheets {
  position: absolute;
  inset: 18px 10px 0 18px;
  z-index: 1;
  pointer-events: none;
}

#sgr26-documents .sgr-document-pack__sheets span {
  position: absolute;
  inset: 0;
  background: #e7edf5;
  box-shadow: 0 15px 34px rgba(0, 8, 28, .22);
}

#sgr26-documents .sgr-document-pack__sheets span:first-child { transform: translate(18px, 11px); }
#sgr26-documents .sgr-document-pack__sheets span:last-child { transform: translate(9px, 5px); background: #f2f5f9; }

#sgr26-documents .sgr-document-pack__tab {
  position: absolute;
  right: -22px;
  z-index: 5;
  display: grid;
  place-items: center;
  border-radius: 0 5px 5px 0;
  box-shadow: 5px 8px 16px rgba(0, 25, 63, .2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

#sgr26-documents .sgr-document-pack__tab span {
  white-space: nowrap;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: none;
}

#sgr26-documents .sgr-document-pack__tab--main {
  top: 18px;
  width: 52px;
  height: 150px;
  color: #fff;
  background: linear-gradient(180deg, #3b91ee, #2872ce);
}

#sgr26-documents .sgr-document-pack__tab--secondary {
  top: 180px;
  right: -8px;
  width: 38px;
  height: 146px;
  color: #6d7c91;
  background: #eef2f7;
}

#sgr26-documents .sgr-document-pack__closing {
  width: min(1210px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

#sgr26-documents .sgr-document-pack__closing p {
  margin: 0;
  padding: 27px 28px;
  border: 1px solid rgba(5, 35, 76, .1);
  border-radius: 8px;
  color: var(--doc-muted);
  background: #f8fbff;
  box-shadow: 0 12px 32px rgba(5, 35, 76, .09);
  font-size: var(--text-card-body);
  line-height: 1.6;
}

@media (max-width: 1180px) {
  #sgr26-documents .sgr-document-pack__shell {
    width: min(1210px, calc(100% - 40px));
    min-height: 0;
    padding: 64px 0 32px;
    gap: 0;
  }
  #sgr26-documents .sgr-document-pack__intro { padding: 0 0 8px; }
  #sgr26-documents .sgr-document-pack__intro h2 { max-width: 780px; }
  #sgr26-documents .sgr-document-pack__lead { max-width: 680px; }
  #sgr26-documents .sgr-document-pack__file-wrap { margin-top: 22px; }
  #sgr26-documents .sgr-document-pack__closing {
    width: min(1210px, calc(100% - 40px));
    padding: 0 0 56px;
  }
}

@media (max-width: 700px) {
  #sgr26-documents .sgr-document-pack__grid { background-size: 32px 32px; }
  #sgr26-documents .sgr-document-pack__shell {
    width: min(100% - 28px, 560px);
    padding: 52px 0 56px;
    gap: 24px;
  }
  #sgr26-documents .sgr-document-pack__intro { padding: 0; }
  #sgr26-documents .sgr-document-pack__year { top: 4px; left: -3px; font-size: 112px; }
  #sgr26-documents .sgr-document-pack__eyebrow { margin-bottom: 18px; font-size: 10px; }
  #sgr26-documents .sgr-document-pack__intro h2 { font-size: clamp(29px, 3.2vw, 48px); }
  #sgr26-documents .sgr-document-pack__dash { margin: 22px 0 18px; }
  #sgr26-documents .sgr-document-pack__lead { font-size: 15px; line-height: 1.58; }
  #sgr26-documents .sgr-document-pack__assurance { margin-top: 22px; padding-top: 18px; font-size: 12px; }
  #sgr26-documents .sgr-document-pack__file-wrap { padding: 0; }
  #sgr26-documents .sgr-document-pack__file-header { min-height: 58px; padding: 13px 15px; gap: 10px; font-size: 8px; }
  #sgr26-documents .sgr-document-pack__file-header span:last-child { text-align: right; }
  #sgr26-documents .sgr-document-pack__item {
    min-height: 0;
    grid-template-columns: 38px 32px minmax(0, 1fr);
    gap: 9px;
    padding: 14px 15px 14px 12px;
  }
  #sgr26-documents .sgr-document-pack__number { font-size: 28px; }
  #sgr26-documents .sgr-document-pack__tick { display: none; }
  #sgr26-documents .sgr-document-pack__icon { width: 29px; height: 29px; }
  #sgr26-documents .sgr-document-pack__copy { gap: 5px; padding-left: 0; }
  #sgr26-documents .sgr-document-pack__copy h3 { font-size: var(--text-card-title-sm); line-height: 1.25; }
  #sgr26-documents .sgr-document-pack__copy p { font-size: var(--text-card-body); line-height: 1.5; }
  #sgr26-documents .sgr-document-pack__file-footer { padding: 12px 14px; font-size: 9px; }
  #sgr26-documents .sgr-document-pack__tab { display: none; }
  #sgr26-documents .sgr-document-pack__sheets { inset: 12px 5px 0 10px; }
  #sgr26-documents .sgr-document-pack__sheets span:first-child { transform: translate(8px, 7px); }
  #sgr26-documents .sgr-document-pack__sheets span:last-child { transform: translate(4px, 3px); }
  #sgr26-documents .sgr-document-pack__closing {
    width: min(100% - 30px, 560px);
    margin-top: -18px;
    padding: 0 0 54px;
    grid-template-columns: 1fr;
  }
  #sgr26-documents .sgr-document-pack__closing p { padding: 22px; font-size: var(--text-card-body); }
}

@media (prefers-reduced-motion: reduce) {
  #sgr26-documents .sgr-document-pack__item,
  #sgr26-documents .sgr-document-pack__item::before,
  #sgr26-documents .sgr-document-pack__number,
  #sgr26-documents .sgr-document-pack__icon { transition: none; }
}



/* —— GOST R commerce module 1:1 (Стоимость и сроки) —— */
/* Markup/CSS как на gkstandart.com/deklaraciya-gostr/ — vars на самом модуле (без .trts-combined-section) */

#sgr26-estimate.trts-commerce-module,
.trts-commerce-module {
  --blue: #3f83f8;
  --blue-dark: #0b2d5f;
  --blue-mid: #1f5eff;
  --cyan: #8bd3e6;
  --brass: #b88746;
  --navy: #0b2d5f;
  --text: #0b2d5f;
  --muted: #647084;
  --line: #d9e8ff;
  --soft: #f5f9ff;
  --soft-blue: #eaf6fb;
  --white: #ffffff;
  --text-card-title: 20px;
  --text-card-body: 16px;

  width: 100vw;
  max-width: 100vw;
  margin: 0 0 0 calc(50% - 50vw);
  padding: 88px max(20px, calc((100vw - 1210px) / 2)) 0;
  border: 0;
  border-radius: 0;
  color: var(--text);
  /* светлый фон как был (GOST), без «тяжёлого» синего */
  background:
    radial-gradient(circle at 92% 8%, rgba(139, 211, 230, .18), transparent 30%),
    radial-gradient(circle at 12% 58%, rgba(184, 135, 70, .10), transparent 34%),
    linear-gradient(180deg, #f6fbff 0%, #ffffff 42%, #f8fbff 100%);
  box-shadow: none;
  overflow: hidden;
  font-family: var(--sgr26-font-main, inherit);
}

.trts-eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 24px;
  color: #1d5fb8;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trts-eyebrow::before {
  content: "";
  width: 32px;
  height: 3px;
  border-radius: 99px;
  background: var(--cyan, #8bd3e6);
}

.trts-commerce-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.trts-price-card,
.trts-factors-box,
.trts-delegate-note,
.trts-factor-card {
  border: 1px solid rgba(217, 232, 255, .9);
  border-radius: 8px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 38px rgba(11, 45, 95, .045);
}

.trts-price-card {
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: 38px;
}

.trts-price-head {
  display: block;
}

.trts-price-card .trts-eyebrow {
  margin-bottom: 22px;
}

/* Заголовок + цена цветом — 1:1 GOST R */
.trts-price-title {
  margin: 0;
  max-width: 820px;
  font-size: clamp(29px, 3.2vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 800;
  color: var(--blue-dark);
}

.trts-price-title span {
  display: block;
  margin-top: 18px;
}

.trts-price-title .trts-price-label {
  margin-top: 0;
  color: var(--blue-dark);
}

.trts-price-title .trts-price-value {
  font-size: inherit;
  line-height: inherit;
  font-weight: 800;
  color: var(--blue); /* цветовое выделение цены */
}

.trts-price-copy {
  max-width: 560px;
  margin: 0;
  font-size: var(--text-card-body);
  font-weight: 400;
  line-height: 1.48;
  color: var(--muted);
}

.trts-price-note {
  display: inline-flex;
  width: max-content;
  margin-top: auto;
  padding-top: 30px;
  padding-bottom: 6px;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(49,117,214,.34);
}

.trts-price-note:hover {
  color: var(--blue);
}

.trts-factors-box {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: 38px;
}

.trts-box-title {
  margin: 0;
  font-size: var(--text-card-title);
  line-height: 1.22;
  letter-spacing: 0;
  font-weight: 700;
  color: var(--blue-dark);
}

.trts-factors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  counter-reset: price-factor;
}

.trts-factor-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 96px;
  padding: 18px 0;
  color: var(--muted);
  font-size: var(--text-card-body);
  font-weight: 400;
  line-height: 1.35;
  border: 0;
  border-bottom: 1px solid rgba(217, 232, 255, .9);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.trts-factor-card:last-child {
  border-bottom: 0;
}

.trts-factor-card::before {
  counter-increment: price-factor;
  content: counter(price-factor, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(217, 232, 255, .95);
  border-radius: 50%;
  background: #f5f9ff;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
}

.trts-delegate-note {
  grid-column: 1 / -1;
  padding: 28px 34px;
  color: var(--blue-dark);
  background: rgba(255, 247, 232, .9);
  border-color: rgba(184, 135, 70, .26);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.trts-delegate-note::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 20px;
  border-radius: 99px;
  background: var(--brass);
}

/* —— Срок действия (внутри commerce, с отступом до следующего блока) —— */
#sgr26-estimate .ds-validity-soft,
.ds-validity-soft {
  --blue: #3f83f8;
  --blue-dark: #0b2d5f;
  --cyan: #8bd3e6;
  --brass: #b88746;
  --navy: #0b2d5f;
  --muted: #647084;
  --text-card-title: 20px;
  --text-card-body: 16px;

  width: 100vw;
  max-width: 100vw;
  margin: 48px 0 0 calc(50% - 50vw);
  /* явный отступ снизу до следующего блока (errors и т.д.) — без negative bleed */
  padding: 72px max(20px, calc((100vw - 1210px) / 2)) 96px;
  border: 0;
  border-radius: 0;
  color: var(--blue-dark);
  /* тот же светлый фон, что у «Стоимость и сроки» — непрерывная секция */
  background:
    radial-gradient(circle at 10% 12%, rgba(139, 211, 230, .14), transparent 30%),
    radial-gradient(circle at 88% 20%, rgba(184, 135, 70, .06), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 55%, #f6fbff 100%);
  box-shadow: none;
}

#sgr26-estimate.trts-commerce-module {
  /* без зазора body-paper перед синим 06 */
  margin-bottom: 0 !important;
  padding-bottom: 0;
}

/* нижний воздух внутри validity; снаружи бежа нет */
#sgr26-estimate .ds-validity-soft {
  margin-bottom: 0 !important;
  padding-bottom: 88px;
}

/* на всякий случай: после estimate сразу идёт dark 06, без «бумаги» */
#sgr26-estimate + #sgr26-errors,
#sgr26-estimate + section.sgr26-proof {
  margin-top: 0;
}

.ds-validity-soft__inner {
  padding-top: 0;
  border-top: 0;
}

.ds-validity-soft__top {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 30px;
}

.ds-validity-soft__title {
  margin: 0;
  max-width: 650px;
  font-size: clamp(29px, 3.2vw, 48px);
  line-height: .98;
  letter-spacing: 0;
  font-weight: 900;
  color: var(--blue-dark);
}

.ds-validity-soft__title span {
  color: var(--blue);
}

.ds-validity-soft__intro {
  margin: 0;
  max-width: 650px;
  font-size: var(--text-card-body);
  line-height: 1.5;
  color: var(--muted);
}

.ds-scenarios {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.ds-scenario {
  position: relative;
  min-height: 268px;
  padding: 28px;
  border: 1px solid rgba(11, 45, 95, .14);
  border-radius: 8px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 20px 50px rgba(11, 45, 95, .08);
  overflow: hidden;
}

.ds-scenario::before {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--scenario-color);
}

.ds-scenario::after {
  content: "";
  position: absolute;
  right: -78px;
  bottom: -78px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--scenario-glow), transparent 66%);
  pointer-events: none;
}

.ds-scenario--series {
  --scenario-color: #39c48f;
  --scenario-glow: rgba(57, 196, 143, .18);
}

.ds-scenario--party {
  --scenario-color: var(--brass);
  --scenario-glow: rgba(255, 177, 92, .2);
}

.ds-scenario--contract {
  --scenario-color: #7b6cff;
  --scenario-glow: rgba(123, 108, 255, .16);
}

/* Крупный срок в карточке */
.ds-scenario__term {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-family: var(--sgr26-font-display, inherit);
  font-size: clamp(34px, 3.4vw, 46px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--scenario-color);
}

.ds-scenario h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: var(--text-card-title);
  line-height: 1.18;
  letter-spacing: 0;
  font-weight: 700;
  color: var(--navy);
}

.ds-scenario p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: var(--text-card-body);
  line-height: 1.46;
  color: var(--muted);
}

.ds-scenario p + p {
  margin-top: 12px;
}

.ds-validity-soft__notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.ds-note {
  padding: 26px 28px;
  border: 1px solid rgba(11, 45, 95, .12);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 16px 42px rgba(11, 45, 95, .05);
}

.ds-note::before {
  content: "";
  display: block;
  width: 38px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), #39c48f);
}

.ds-note--orange::before {
  background: linear-gradient(90deg, var(--brass), #7b6cff);
}

.ds-note p {
  margin: 0;
  font-size: var(--text-card-body);
  line-height: 1.48;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .trts-commerce-grid,
  .ds-validity-soft__top {
    grid-template-columns: 1fr;
  }

  .ds-scenarios,
  .ds-validity-soft__notes {
    grid-template-columns: 1fr;
  }

  .ds-scenario {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  #sgr26-estimate.trts-commerce-module,
  .trts-commerce-module {
    margin-top: 0;
    margin-bottom: 0;
    padding: 56px 16px 0;
  }

  .trts-price-card {
    padding: 22px;
    min-height: auto;
  }

  .trts-factors-box,
  .trts-delegate-note,
  .ds-scenario,
  .ds-note {
    padding: 22px;
  }

  #sgr26-estimate .ds-validity-soft,
  .ds-validity-soft {
    width: 100vw;
    margin: 40px 0 0 calc(50% - 50vw);
    padding: 48px 16px 64px;
  }

  .trts-price-title {
    width: auto;
    font-size: clamp(29px, 3.2vw, 48px);
    line-height: 1.08;
    font-weight: 800;
    white-space: normal;
  }

  /* На мобилке label и value в одну строку, как на GOST R */
  .trts-price-title span {
    display: inline;
    margin-top: 0;
  }

  .trts-price-title .trts-price-label::after {
    content: " ";
  }

  .trts-price-title .trts-price-value {
    font-size: inherit;
    color: var(--blue);
  }

  .trts-price-note {
    margin-top: 34px;
  }

  .ds-validity-soft__top {
    gap: 22px;
    margin-bottom: 24px;
  }

  .ds-validity-soft__title {
    font-size: 34px;
    line-height: 1.05;
  }

  .ds-scenario__term {
    font-size: 36px;
  }
}

/* —— Steps block 1:1 sertifikat-tr-ts (steps-intro / steps-grid / step-card) —— */
.sgr26 .sgr26-steps-block.section.tone-a,
.sgr26 section.sgr26-steps-block {
  padding: 88px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.sgr26 .sgr26-steps-block .steps-intro {
  display: grid;
  justify-items: start;
  text-align: left;
  margin-bottom: 34px;
}

.sgr26 .sgr26-steps-block .steps-intro .eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 18px;
  color: var(--sgr26-blue-deep);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sgr26 .sgr26-steps-block .steps-intro .eyebrow::before {
  content: "";
  width: 32px;
  height: 3px;
  border-radius: 99px;
  background: var(--sgr26-turq);
  flex: 0 0 auto;
}

.sgr26 .sgr26-steps-block .steps-intro h2 {
  margin: 0;
  color: var(--sgr26-navy);
  font-family: var(--sgr26-font-display);
  font-size: clamp(29px, 3.2vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  max-width: 820px;
}

.sgr26 .sgr26-steps-block .steps-intro h2 span {
  color: var(--sgr26-blue-deep);
}

.sgr26 .sgr26-steps-block .steps-intro p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #5a6b85;
  font-size: 17px;
  line-height: 1.65;
}

.sgr26 .sgr26-steps-block .steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sgr26 .sgr26-steps-block .step-card {
  position: relative;
  min-height: 214px;
  margin: 0;
  border: 1px solid var(--sgr26-line);
  border-radius: 8px;
  background: #fff;
  padding: 92px 26px 24px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(5, 35, 76, 0.04);
}

.sgr26 .sgr26-steps-block .step-card::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 34px;
  width: 46px;
  height: 4px;
  border-radius: 999px;
  background: var(--sgr26-turq);
}

.sgr26 .sgr26-steps-block .step-card b {
  display: block;
  position: relative;
  z-index: 2;
  max-width: 260px;
  margin: 0 0 12px;
  color: var(--sgr26-navy);
  font-family: var(--sgr26-font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.18;
}

.sgr26 .sgr26-steps-block .step-card p {
  position: relative;
  z-index: 2;
  max-width: 260px;
  margin: 0;
  color: #5a6b85;
  font-size: 16px;
  line-height: 1.45;
}

.sgr26 .sgr26-steps-block .step-card i {
  position: absolute;
  right: 22px;
  top: 14px;
  z-index: 1;
  font-style: normal;
  font-family: var(--sgr26-font-display);
  font-size: 86px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  color: rgba(5, 35, 76, 0.045);
}

@media (max-width: 1100px) {
  .sgr26 .sgr26-steps-block .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .sgr26 .sgr26-steps-block.section.tone-a,
  .sgr26 section.sgr26-steps-block {
    padding: 64px 0;
  }
  .sgr26 .sgr26-steps-block .steps-grid {
    grid-template-columns: 1fr;
  }
  .sgr26 .sgr26-steps-block .step-card {
    min-height: 190px;
    padding: 78px 22px 22px;
  }
  .sgr26 .sgr26-steps-block .step-card b,
  .sgr26 .sgr26-steps-block .step-card p {
    max-width: 100%;
  }
  .sgr26 .sgr26-steps-block .step-card i {
    font-size: 72px;
    right: 14px;
    top: 12px;
  }
}



/* —— 06 wide right note (same body size as other section-notes) —— */
.sgr26-section-title--wide-note {
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 0.58fr);
  gap: 36px;
  align-items: start;
}
.sgr26-section-note--stack {
  display: grid;
  gap: 14px;
}
.sgr26-section-note--stack p {
  margin: 0;
  color: inherit;
  font-size: 16px;
  line-height: 1.65;
}
.sgr26-section-title--on-dark .sgr26-section-note--stack p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.65;
}
@media (max-width: 900px) {
  .sgr26-section-title--wide-note {
    grid-template-columns: 1fr;
  }
}

/* —— Steps intro: lead stands on the right —— */
.sgr26 .sgr26-steps-block .steps-intro.steps-intro--split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.48fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
}
.sgr26 .sgr26-steps-block .steps-intro--split .steps-intro__main .eyebrow {
  margin-bottom: 18px;
}
.sgr26 .sgr26-steps-block .steps-intro--split h2 {
  margin: 0;
  max-width: 18em;
}
.sgr26 .sgr26-steps-block .steps-intro--split .steps-intro__note {
  margin: 0;
  color: #5a6b85;
  font-size: 16px;
  line-height: 1.65;
}
@media (max-width: 900px) {
  .sgr26 .sgr26-steps-block .steps-intro.steps-intro--split {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
  }
}

/* —— Book break: vertical center copy —— */
.sgr26-book-break__copy {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}
@media (max-width: 900px) {
  .sgr26-book-break__copy {
    top: auto;
    bottom: 28px;
    transform: none;
  }
}

/* —— Norms: TR list inside regular card (grid cell, not full width) —— */
.sgr26-norm-card--list {
  grid-column: auto;
}
.sgr26-norm-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.sgr26-norm-list li {
  position: relative;
  padding: 0 0 0 14px;
  color: #5a6b85;
  font-size: 14px;
  line-height: 1.4;
}
.sgr26-norm-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sgr26-turq, #8bd0df);
}
.sgr26-norm-list strong {
  color: var(--sgr26-navy, #05234c);
  font-weight: 700;
}
.sgr26-quiz .quiz-contact-label {
  display: block;
  width: 100%;
  margin: 4px 0 0;
  color: var(--sgr26-navy, #05234c);
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}

/* —— Trends: sliding cursor like diagnostic block 01 —— */
.ds-trends-tabs {
  position: relative;
}
.ds-trends-cursor {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 10px;
  z-index: 0;
  height: 54px;
  border-radius: 8px;
  border: 1.5px solid rgba(66, 139, 244, 0.45);
  background: linear-gradient(135deg, #ffffff, #f5fbff);
  box-shadow:
    0 0 0 3px rgba(66, 139, 244, 0.1),
    0 12px 26px rgba(8, 43, 92, 0.08);
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transition:
    transform 480ms cubic-bezier(0.22, 0.95, 0.28, 1),
    height 320ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    opacity 200ms ease;
  pointer-events: none;
  will-change: transform, height;
}
.ds-trends-cursor.is-visible {
  opacity: 1;
}
.ds-trends-light.is-autoplaying .ds-tab.is-active,
.ds-tab.is-autoplay-active {
  background: transparent;
  box-shadow: none;
}
.ds-tab.is-flash {
  animation: dsTabFlash 420ms ease;
}
@keyframes dsTabFlash {
  0% { transform: scale(1); }
  35% { transform: scale(1.02); }
  100% { transform: scale(1); }
}
.ds-tab {
  z-index: 1;
}
.ds-trend.is-leaving {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity .22s ease, transform .22s ease;
}
.ds-trend.is-entering {
  animation: dsTrendEnter .34s cubic-bezier(0.22, 0.95, 0.28, 1) both;
}
@keyframes dsTrendEnter {
  from { opacity: 0; transform: translateX(22px); }
  to { opacity: 1; transform: translateX(0); }
}
/* restart progress underline on active */
.ds-tab.is-active::after {
  animation: none;
}
.ds-tab.is-active.is-progress::after {
  animation: dsTabFill 4.2s linear;
}

/* —— FAQ 1:1 GOST R faq-compact —— */
#sgr26-faq.faq-compact,
.faq-compact {
  --navy: #0b2d5f;
  --blue-dark: #0b2d5f;
  --muted: #647084;
  --line: #e4e9f1;
  --sand-line: rgba(184, 135, 70, 0.35);
  --text-card-title: 20px;
  --text-card-body: 16px;
  padding: 88px 0;
  background:
    radial-gradient(circle at 92% 8%, rgba(184, 135, 70, .06), transparent 30%),
    linear-gradient(180deg, #fffcf8 0%, #faf6f0 100%);
}
#sgr26-faq .section-title {
  display: block;
  margin-bottom: 34px;
}
#sgr26-faq .section-title h2 {
  margin: 0;
  max-width: 820px;
  color: var(--navy);
  font-family: var(--sgr26-font-display, inherit);
  font-size: clamp(29px, 3.2vw, 48px);
  line-height: 1.08;
  font-weight: 800;
}
#sgr26-faq .section-title .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--blue-dark);
  font-size: 12px;
  line-height: 1.1;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  font-weight: 700;
}
#sgr26-faq .section-title .eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: var(--sgr26-turq, #8bd0df);
}
#sgr26-faq .section-note {
  margin: 16px 0 0;
  max-width: 720px;
  color: #5a6b85;
  font-size: 16px;
  line-height: 1.65;
}
#sgr26-faq .faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}
#sgr26-faq .faq-item {
  min-height: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 16px 42px rgba(55, 38, 18, .05);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
#sgr26-faq .faq-item[open] {
  border-color: var(--sand-line);
  background: #fff;
  box-shadow: 0 18px 48px rgba(55, 38, 18, .075);
}
#sgr26-faq .faq-item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
}
#sgr26-faq .faq-item summary::-webkit-details-marker { display: none; }
#sgr26-faq .faq-item summary::after {
  content: "+";
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(184, 135, 70, .13);
  color: var(--blue-dark);
  font-size: 20px;
  line-height: 1;
}
#sgr26-faq .faq-item[open] summary::after {
  content: "−";
  background: rgba(65, 138, 242, .12);
  color: var(--blue-dark);
}
#sgr26-faq .faq-answer {
  display: grid;
  gap: 14px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
#sgr26-faq .faq-item b {
  display: block;
  color: var(--navy);
  margin-bottom: 0;
  font-family: var(--sgr26-font-display, inherit);
  font-size: var(--text-card-title);
  line-height: 1.22;
  letter-spacing: 0;
  font-weight: 400;
}
#sgr26-faq .faq-item p,
#sgr26-faq .faq-item li {
  font-size: var(--text-card-body);
  line-height: 1.45;
  color: var(--muted);
  margin-bottom: 0;
  max-width: 100%;
}
#sgr26-faq .faq-item ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}
#sgr26-faq .faq-full-item {
  grid-column: 1 / -1;
}
@media (max-width: 900px) {
  #sgr26-faq .faq-grid { grid-template-columns: 1fr; }
  #sgr26-faq.faq-compact { padding: 64px 0; }
  #sgr26-faq .faq-item { padding: 20px; }
  #sgr26-faq .faq-item b { font-size: var(--text-card-title); }
}


/* —— Documents intro: lead on the right —— */
#sgr26-documents .sgr-document-pack__intro--split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.48fr);
  gap: 40px;
  align-items: end;
  width: 100%;
}
#sgr26-documents .sgr-document-pack__intro--split .sgr-document-pack__intro-main {
  position: relative;
  min-width: 0;
}
#sgr26-documents .sgr-document-pack__intro--split h2 {
  max-width: 18em;
}
#sgr26-documents .sgr-document-pack__intro--split .sgr-document-pack__lead {
  max-width: none;
  margin: 0;
  color: rgba(231, 239, 249, .86);
  font-size: 16px;
  line-height: 1.65;
  align-self: end;
}
#sgr26-documents .sgr-document-pack__intro--split .sgr-document-pack__dash {
  margin-bottom: 0;
}
@media (max-width: 900px) {
  #sgr26-documents .sgr-document-pack__intro--split {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
  }
  #sgr26-documents .sgr-document-pack__intro--split .sgr-document-pack__dash {
    margin-bottom: 0;
  }
}

/* —— Validity: «5 лет» синим —— */
.ds-scenario--party {
  --scenario-color: #3f83f8;
  --scenario-glow: rgba(63, 131, 248, .18);
}
.ds-scenario--party .ds-scenario__term {
  color: #3f83f8;
}


/* —— Quiz: multi-select + hint —— */
.sgr26 .quiz-hint {
  margin: -10px 0 18px;
  color: #5a6b85;
  font-size: 14px;
  line-height: 1.45;
}
.sgr26 .quiz-option--multi::before {
  border-radius: 5px;
  box-shadow: inset 0 0 0 6px #fff;
}
.sgr26 .quiz-option--multi.active::before {
  border-radius: 5px;
  border-color: rgba(255,255,255,.9);
  background: var(--sgr26-turq);
  box-shadow: none;
}
.sgr26 .quiz-option--multi.active::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: translateY(-58%) rotate(45deg);
  pointer-events: none;
}
.sgr26 .quiz-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  margin-bottom: 4px;
}
.sgr26 .quiz-nav[hidden] {
  display: none !important;
}
.sgr26 .quiz-nav .btn-blue[hidden],
.sgr26 .quiz-nav .quiz-ghost[hidden] {
  display: none !important;
}
.sgr26 .quiz-nav .btn-blue:disabled,
.sgr26 .quiz-nav .quiz-ghost:disabled {
  opacity: 0.42;
  cursor: default;
  pointer-events: none;
}
.sgr26 .quiz-card.is-result .quiz-nav {
  margin-top: 0;
  margin-bottom: 16px;
}

.sgr26 .quiz-result-facts > div.is-statement {
  grid-template-columns: 1fr;
}

.sgr26 .quiz-result-facts > div.is-statement dt::after {
  content: "";
}
