/*
  predbankrotnaya-diagnostika.css
  CSS Р»РµРЅРґРёРЅРіР° В«РџСЂРµРґР±Р°РЅРєСЂРѕС‚РЅР°СЏ РґРёР°РіРЅРѕСЃС‚РёРєР°В».
*/

:root {
  --color-text: #293040;
  --color-block: #949eb4;
  --color-logo: #d2ac2d;
  --color-bg: #f9f9f9;
  --color-block-h: #7080a5;
  --color-logo-h: #be9714;
  --landing-bg: #ffffff;
  --landing-bg-soft: #f6f4ef;
  --landing-bg-alt: #f2eee6;
  --landing-dark: #293040;
  --landing-dark-2: #343d51;
  --landing-dark-3: #222938;
  --landing-text: #293040;
  --landing-text-soft: rgba(41, 48, 64, 0.74);
  --landing-text-light: rgba(255, 255, 255, 0.8);
  --landing-border: rgba(41, 48, 64, 0.1);
  --landing-border-light: rgba(255, 255, 255, 0.14);
  --landing-gold: #d2ac2d;
  --landing-gold-dark: #bd9620;
  --landing-shadow: 0 24px 50px rgba(27, 33, 46, 0.08);
}

@keyframes landing-fade-up {
  from {
    opacity: 0;
    transform: translate3d(0, 34px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes landing-fade-soft {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

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

.flex-sb {
  display: flex;
  justify-content: space-between;
}

.flex-st {
  display: flex;
  justify-content: flex-start;
}

:is(.text-block_numb-title, .landing-signal-number-title) {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: var(--color-text);
}

:is(.text-block_numb-wr, .landing-signal-number-wrap) {
  gap: 10px;
}

:is(.text-block_numb, .landing-signal-number) {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: var(--color-logo);
}

html {
  scroll-behavior: smooth;
}

body.landing-preview {
  margin: 0;
  min-width: 320px;
  color: var(--landing-text);
  background: var(--landing-bg);
  font-family: "Raleway";
  overflow-x: hidden;
}

body.landing-preview img {
  max-width: 100%;
  height: auto;
}

body.landing-preview a {
  color: inherit;
  text-decoration: none;
}

body.landing-preview p,
body.landing-preview h1,
body.landing-preview h2,
body.landing-preview h3,
body.landing-preview ul,
body.landing-preview ol {
  margin: 0;
}

body.landing-preview ul,
body.landing-preview ol {
  padding: 0;
  list-style: none;
}

body.landing-preview :is(.container, .landing-container) {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

body.landing-preview .site {
  background: var(--landing-bg);
}

body.landing-preview .landing-main {
  overflow: hidden;
}

body.landing-preview [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

body.landing-preview [data-reveal="left"] {
  transform: translate3d(-28px, 18px, 0);
}

body.landing-preview [data-reveal="right"] {
  transform: translate3d(28px, 18px, 0);
}

body.landing-preview [data-reveal="scale"] {
  transform: translate3d(0, 22px, 0) scale(0.975);
}

body.landing-preview [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

body.landing-preview .site-header {
  background-color: #ffffff;
  position: relative;
  z-index: 20;
}

body.landing-preview .header__top {
  border-bottom: 0;
}

body.landing-preview .header-wr {
  align-items: center;
  min-height: 94px;
}

body.landing-preview .site-branding {
  width: 229px;
  margin-top: 15px;
  margin-right: 15px;
  margin-bottom: 15px;
  flex: 0 0 229px;
}

body.landing-preview .site-branding img {
  display: block;
  width: 100%;
  height: auto;
}

body.landing-preview .header-navigation {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 0;
}

body.landing-preview .menu-toggle {
  display: none;
}

body.landing-preview .main-navigation ul,
body.landing-preview .main-navigation .menu {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 0;
  list-style: none;
}

body.landing-preview .main-navigation ul li,
body.landing-preview .main-navigation .menu > .menu-item {
  position: relative;
  margin-right: 35px;
}

body.landing-preview .main-navigation ul li:last-child,
body.landing-preview .main-navigation .menu > .menu-item:last-child {
  margin-right: 0;
}

body.landing-preview .main-navigation ul:first-of-type > li {
  padding-top: 36px;
  padding-bottom: 36px;
}

body.landing-preview .main-navigation a,
body.landing-preview .main-navigation .menu > .menu-item > a {
  display: inline-block;
  padding-left: 15px;
  font-size: 18px;
  line-height: 1.2;
  color: var(--color-text);
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease;
}

body.landing-preview .main-navigation .menu > .menu-item > a:hover {
  color: var(--color-logo-h);
}

body.landing-preview .header-search,
body.landing-preview .header-search--static {
  display: block;
  width: 18px;
  height: 18px;
  margin-right: 35px;
  flex: 0 0 auto;
  cursor: default;
}

body.landing-preview .header-burger {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
}

body.landing-preview :is(.section, .landing-section) {
  padding: 96px 0;
}

body.landing-preview :is(.section--intro, .landing-section--intro),
body.landing-preview :is(.section--strip, .landing-section--strip) {
  padding-top: 44px;
  padding-bottom: 44px;
}

body.landing-preview :is(.section--strip, .landing-section--strip) {
  background: #f9f9f9;
  padding-top: 0;
  padding-bottom: 96px;
}

body.landing-preview :is(.section--risks, .landing-section--risks),
body.landing-preview :is(.section--report, .landing-section--report),
body.landing-preview :is(.section--results, .landing-section--results),
body.landing-preview :is(.section--process, .landing-section--process),
body.landing-preview :is(.section--format, .landing-section--format) {
  background: #f9f9f9;
}

body.landing-preview :is(.section--format, .landing-section--format) {
  padding-top: 0;
}

body.landing-preview :is(.section--results, .landing-section--results) {
  padding-top: 0;
  padding-bottom: 0;
}

body.landing-preview :is(.section--dark, .landing-section--dark) {
  background: linear-gradient(180deg, var(--landing-dark) 0%, var(--landing-dark-2) 100%);
  color: #ffffff;
}

body.landing-preview :is(.section-head, .landing-section-head) {
  max-width: 940px;
  margin-bottom: 34px;
}

body.landing-preview :is(.section-title, .landing-section-title),
body.landing-preview .cta-band__title {
  font-family: "Raleway";
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: 1.06;
  font-weight: 600;
  letter-spacing: -0.02em;
}

body.landing-preview :is(.section-intro, .landing-section-intro),
body.landing-preview .cta-band__text {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--landing-text-soft);
}

body.landing-preview :is(.section--dark, .landing-section--dark) :is(.section-intro, .landing-section-intro),
body.landing-preview :is(.section--dark, .landing-section--dark) .cta-band__text {
  color: var(--landing-text-light);
}

body.landing-preview :is(.button, .landing-button) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 28px;
  border: 1px solid transparent;
  appearance: none;
  cursor: pointer;
  font-size: 14px;
  font-family: inherit;
  line-height: 1.2;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

body.landing-preview :is(.button--gold, .landing-button--gold) {
  background: var(--landing-gold);
  color: #ffffff;
}

body.landing-preview :is(.button--gold, .landing-button--gold):hover {
  background: var(--landing-gold-dark);
}

body.landing-preview :is(.button--dark, .landing-button--dark) {
  background: var(--landing-dark);
  color: #ffffff;
  border-color: var(--landing-dark);
}

body.landing-preview :is(.button--dark, .landing-button--dark):hover {
  background: var(--landing-dark-3);
  border-color: var(--landing-dark-3);
}

body.landing-preview :is(.button--light, .landing-button--light) {
  background: #ffffff;
  color: var(--landing-dark);
  border-color: rgba(41, 48, 64, 0.12);
}

body.landing-preview :is(.button--light, .landing-button--light):hover {
  background: #f7f6f3;
}

/* РџРµСЂРІС‹Р№ СЌРєСЂР°РЅ */

body.landing-preview .hero {
  position: relative;
  min-height: calc(100vh - 94px);
  padding: 64px 0;
  display: flex;
  align-items: center;
  background:
    url("../images/business_hero.webp") center/cover no-repeat,
    #232b3b;
  color: #ffffff;
  overflow: hidden;
}

/* РћС‚РєР»СЋС‡Р°РµРј РІСЃРµ РЅР°Р»РѕР¶РµРЅРёСЏ РїРѕРІРµСЂС… С„РѕРЅРѕРІРѕР№ РєР°СЂС‚РёРЅРєРё */
body.landing-preview .hero::before,
body.landing-preview .hero::after {
  display: none;
}

body.landing-preview .hero :is(.container, .landing-container) {
  position: relative;
  z-index: 2;
}

body.landing-preview .hero__frame {
  position: relative;
  max-width: 1040px;
  border-left: 4px solid var(--landing-gold);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(35, 43, 59, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.985);
}

/* РЈР±РёСЂР°РµРј Р±РµР»СѓСЋ СѓРіР»РѕРІСѓСЋ РїРѕР»РѕСЃРєСѓ */
body.landing-preview .hero__frame::after {
  display: none;
}

body.landing-preview .hero__content {
  position: relative;
  z-index: 1;
  padding: 62px 68px 48px;
}

body.landing-preview .hero__title {
  max-width: 760px;
  font-family: "Raleway";
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: 0;
  color: #ffffff;
  opacity: 0;
  transform: translate3d(0, 22px, 0);
}

body.landing-preview .hero__lead {
  max-width: 620px;
  margin-top: 22px;
  font-family: "Raleway";
  font-size: clamp(22px, 2.1vw, 32px);
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transform: translate3d(0, 22px, 0);
}

body.landing-preview .hero__meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 32px;
  align-items: center;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  opacity: 0;
  transform: translate3d(0, 22px, 0);
}

body.landing-preview .hero__note {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.62;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.76);
}

body.landing-preview .hero :is(.button--gold, .landing-button--gold) {
  min-height: 60px;
  background: var(--landing-gold);
  color: #ffffff;
}

body.landing-preview .hero :is(.button--gold, .landing-button--gold):hover {
  background: var(--landing-gold-dark);
}

body.landing-preview.is-ready .hero__frame {
  animation: landing-fade-soft 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.06s forwards;
}

body.landing-preview.is-ready .hero__title {
  animation: landing-fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.22s forwards;
}

body.landing-preview.is-ready .hero__lead {
  animation: landing-fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.34s forwards;
}

body.landing-preview.is-ready .hero__meta {
  animation: landing-fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.48s forwards;
}

/* Intro-Р±Р»РѕРє */

body.landing-preview :is(.section--intro, .landing-section--intro) {
  padding-top: 96px;
  padding-bottom: 42px;
  background: #F9F9F9;
}

body.landing-preview .intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 0;
  align-items: stretch;
  box-shadow: 0 28px 70px rgba(27, 33, 46, 0.1);
}

body.landing-preview :is(.panel, .landing-panel) {
  min-height: 100%;
  background: #ffffff;
  border: 1px solid var(--landing-border);
  box-shadow: none;
}

body.landing-preview :is(.panel__title, .landing-panel__title) {
  font-family: "Raleway";
  font-size: 24px;
  line-height: 1.22;
  font-weight: 600;
}

body.landing-preview :is(.panel__title--small, .landing-panel__title--small) {
  max-width: 440px;
  font-family: "Raleway";
  font-size: 26px;
  line-height: 1.25;
  font-weight: 600;
  color: var(--landing-dark);
}

body.landing-preview :is(.panel--story, .landing-panel--story) {
  position: relative;
  padding: 54px 56px 50px;
  border: 0;
}

body.landing-preview :is(.panel--story, .landing-panel--story)::after {
  content: "";
  position: absolute;
  right: 34px;
  bottom: 34px;
  width: 90px;
  height: 90px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  pointer-events: none;
}

body.landing-preview .intro-story__lead {
  max-width: none;
  font-family: "Raleway";
  font-size: 19px;
  line-height: 1.34;
  font-weight: 500;
  color: #ffffff;
}

body.landing-preview .intro-story__text {
  max-width: 660px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.74);
}

body.landing-preview :is(.panel--checklist, .landing-panel--checklist) {
  padding: 54px 50px 50px;
  background: #ffffff;
  border: 1px solid rgba(41, 48, 64, 0.08);
  border-left: 0;
}

body.landing-preview :is(.checklist, .landing-checklist) {
  display: grid;
  gap: 16px;
  list-style: none;
  margin-top: 22px;
}

body.landing-preview :is(.checklist, .landing-checklist) li {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  line-height: 1.58;
}

body.landing-preview :is(.checklist, .landing-checklist) li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  background: var(--landing-gold);
}

body.landing-preview :is(.panel--checklist, .landing-panel--checklist) :is(.checklist, .landing-checklist) {
  gap: 18px;
  margin-top: 30px;
}

body.landing-preview :is(.panel--checklist, .landing-panel--checklist) :is(.checklist, .landing-checklist) li {
  padding-left: 34px;
  font-size: 17px;
  line-height: 1.52;
  color: rgba(41, 48, 64, 0.82);
}

body.landing-preview :is(.panel--checklist, .landing-panel--checklist) :is(.checklist, .landing-checklist) li::before {
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  background: transparent;
  border: 2px solid var(--landing-gold);
  transform: rotate(45deg);
}

body.landing-preview .cta-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 0;
  align-items: stretch;
}

body.landing-preview :is(.panel--story, .landing-panel--story),
body.landing-preview .cta-strip {
  background: linear-gradient(135deg, rgba(41, 48, 64, 0.98) 0%, rgba(52, 61, 81, 0.96) 100%);
  border-left: 4px solid var(--landing-gold);
  color: #ffffff;
}

body.landing-preview .cta-strip__copy {
  padding: 34px 34px 32px;
}

body.landing-preview .cta-strip__title {
  margin-bottom: 16px;
  font-family: "Raleway";
  font-size: 24px;
  line-height: 1.22;
  font-weight: 600;
  color: #ffffff;
}

body.landing-preview .cta-strip__text {
  font-family: "Raleway";
  font-size: 17px;
  line-height: 1.62;
  font-weight: 400;
  max-width: 720px;
}

body.landing-preview .cta-strip__actions {
  display: grid;
  gap: 12px;
  align-content: center;
  padding: 34px 34px 32px;
  background: transparent;
}

body.landing-preview .signals-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  counter-reset: signals;
  gap: 20px;
  align-items: stretch;
}

body.landing-preview .signal-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 34px 30px 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 2px solid rgba(210, 172, 45, 0.88);
  box-shadow: 0 18px 40px rgba(16, 21, 31, 0.14);
}

body.landing-preview .signal-card::before {
  display: none;
}

body.landing-preview .signal-card::after {
  display: none;
}

body.landing-preview .signal-card__head {
  align-items: baseline;
  margin-bottom: 18px;
}

body.landing-preview .signal-card__title {
  margin: 0;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.35;
  color: #ffffff;
}

body.landing-preview .signal-card p,
body.landing-preview .risk-card p,
body.landing-preview .report-card p,
body.landing-preview .why-card p,
body.landing-preview .scope-flow__text,
body.landing-preview .scope-tree__branches li,
body.landing-preview .results-sheet__list li,
body.landing-preview .timeline li,
body.landing-preview .audience-panel p,
body.landing-preview .format-note p,
body.landing-preview .format-spec__row span {
  font-size: 16px;
  line-height: 1.62;
}

body.landing-preview .signal-card p,
body.landing-preview .why-card p {
  color: rgba(255, 255, 255, 0.88);
}

body.landing-preview .signal-card p {
  padding-top: 0;
  font-size: 16px;
  line-height: 1.62;
}

body.landing-preview .risks-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: risks;
  align-items: stretch;
}

body.landing-preview .risk-card {
  position: relative;
  min-height: 100%;
  padding: 72px 22px 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
  border: 1px solid var(--landing-border);
  box-shadow: none;
}

body.landing-preview .risk-card::before {
  counter-increment: risks;
  content: "Риск " counter(risks);
  position: absolute;
  left: 22px;
  top: 22px;
  font-family: "Raleway";
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  color: var(--landing-gold-dark);
}

body.landing-preview .risk-card::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 28px;
  width: 54px;
  height: 2px;
  background: var(--landing-gold);
}

body.landing-preview .risk-card__content {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 22px;
  height: 100%;
}

body.landing-preview .risk-card__body {
  padding-top: 18px;
  border-top: 1px solid rgba(41, 48, 64, 0.12);
}

body.landing-preview .risk-card :is(.panel__title, .landing-panel__title),
body.landing-preview .report-card :is(.panel__title, .landing-panel__title),
body.landing-preview .why-card :is(.panel__title, .landing-panel__title) {
  max-width: 420px;
  margin-bottom: 14px;
}

body.landing-preview .risk-card :is(.panel__title, .landing-panel__title) {
  margin-bottom: 0;
  max-width: none;
  min-height: 130px;
  font-size: 22px;
  line-height: 1.18;
}

body.landing-preview .risk-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: auto;
  padding: 12px 18px;
  border: 1px solid var(--landing-gold);
  background: var(--landing-gold);
  font-family: inherit;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  color: #ffffff;
  transition:
    border-color 0.24s ease,
    background 0.24s ease,
    color 0.24s ease,
    transform 0.24s ease;
}

body.landing-preview .risk-card__action:hover {
  border-color: var(--landing-gold-dark);
  background: var(--landing-gold-dark);
  color: #ffffff;
  transform: translateY(-1px);
}

body.landing-preview .scope-flow {
  display: grid;
  gap: 28px;
}

body.landing-preview .scope-flow__text {
  max-width: 980px;
  color: rgba(255, 255, 255, 0.84);
}

body.landing-preview .scope-tree {
  display: grid;
  gap: 10px;
  padding: 0;
  background: transparent;
}

body.landing-preview .scope-tree__root {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0 0 12px;
  padding: 0 0 6px;
  border: 0;
  font-family: inherit;
  font-size: 24px;
  line-height: 1.22;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: #ffffff;
}

body.landing-preview .scope-tree__root::before {
  content: "";
  width: 34px;
  height: 2px;
  background: #bd9620;
}

body.landing-preview .scope-tree__root::after {
  display: none;
}

body.landing-preview .scope-tree__branches {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 0;
  padding: 0;
  list-style: none;
}

body.landing-preview .scope-tree__branches::before {
  display: none;
}

body.landing-preview .scope-tree__card {
  position: relative;
  width: auto;
  min-height: 160px;
  margin: 0;
  padding: 22px 24px 20px;
  border: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085) 0%, rgba(255, 255, 255, 0.055) 100%);
  box-shadow: none;
  color: rgba(255, 255, 255, 0.88);
}

body.landing-preview .scope-tree__card-title {
  margin: 0 0 8px;
  font-family: "Raleway";
  font-size: 17px;
  line-height: 1.3;
  font-weight: 600;
  color: #ffffff;
}

body.landing-preview .scope-tree__branches p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

body.landing-preview .scope-tree__card:nth-child(odd),
body.landing-preview .scope-tree__card:nth-child(even) {
  margin: 0;
}

body.landing-preview .scope-tree__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 76px;
  height: 3px;
  background: #bd9620;
}

body.landing-preview .scope-tree__card::after {
  display: none;
}

body.landing-preview .scope-tree__card--summary {
  grid-column: 1 / -1;
  min-height: auto;
  padding: 24px 26px 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085) 0%, rgba(255, 255, 255, 0.045) 100%);
}

body.landing-preview .scope-tree__card--summary .scope-tree__card-title {
  font-size: 18px;
}

body.landing-preview .scope-flow__text--final {
  max-width: 980px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

body.landing-preview .report-grid {
  position: relative;
  display: grid;
  gap: 0;
  counter-reset: report;
  grid-auto-rows: 100px;
  padding: 0;
  background: #ffffff;
  border: 1px solid var(--landing-border);
}

body.landing-preview .report-grid::before {
  display: none;
}

body.landing-preview .report-card {
  position: relative;
  display: grid;
  grid-template-columns: 76px minmax(260px, 0.92fr) minmax(0, 1.08fr);
  gap: 16px;
  align-items: center;
  min-height: 0;
  height: 100%;
  padding: 8px 20px 12px;
  background: transparent;
  border: 0;
  border-bottom: 2px solid #d2ac2d;
  box-shadow: none;
  overflow: hidden;
}

body.landing-preview .report-card + .report-card {
  border-top: 0;
}

body.landing-preview .report-card::before {
  counter-increment: report;
  content: "0" counter(report);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: #d2ac2d;
  font-family: "Raleway";
  font-size: 17px;
  line-height: 1;
  font-weight: 600;
  color: #ffffff;
}

body.landing-preview .report-card::after {
  display: none;
}

body.landing-preview .report-card :is(.panel__title, .landing-panel__title) {
  grid-column: 2;
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
  height: 100%;
  margin-bottom: 0;
  max-width: none;
  padding-left: 0;
  font-size: 19px;
  line-height: 1.12;
}

body.landing-preview .report-card :is(.panel__title, .landing-panel__title)::after {
  display: none;
}

body.landing-preview .report-card p {
  grid-column: 3;
  justify-self: start;
  align-self: center;
  display: block;
  width: auto;
  max-width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  font-size: 14px;
  line-height: 1.38;
}

body.landing-preview .results-window {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(41, 48, 64, 0.98) 0%, rgba(52, 61, 81, 0.96) 100%);
  border-left: 4px solid var(--landing-gold);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 56px 44px 44px;
}

body.landing-preview .results-window::before {
  content: "";
  position: absolute;
  top: 0;
  left: 44px;
  width: 112px;
  height: 1px;
  background: rgba(210, 172, 45, 0.9);
}

body.landing-preview .results-window :is(.section-head, .landing-section-head) {
  max-width: 1120px;
  margin-bottom: 28px;
  padding: 0;
}

body.landing-preview .results-window :is(.section-title, .landing-section-title) {
  color: #ffffff;
}

body.landing-preview .results-window :is(.section-intro, .landing-section-intro) {
  color: var(--landing-text-light);
}

body.landing-preview .results-sheet {
  position: relative;
  overflow: visible;
  background: transparent;
  color: #ffffff;
  border-left: 0;
  box-shadow: none;
  padding: 0;
}

body.landing-preview .results-sheet__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
  list-style: none;
  padding-top: 0;
}

body.landing-preview .results-sheet__list li {
  position: relative;
  min-height: 100%;
  padding: 16px 18px 16px 46px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  line-height: 1.5;
}

body.landing-preview .results-sheet__list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 27px;
  width: 16px;
  height: 2px;
  background: var(--landing-gold);
}

body.landing-preview .results-sheet__item--wide {
  grid-column: 1 / -1;
}

body.landing-preview .results-sheet__final {
  margin-top: 20px;
  padding: 22px 24px 24px;
  background: rgba(24, 31, 45, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "Raleway";
  font-size: 20px;
  line-height: 1.36;
  font-weight: 600;
  color: #ffffff;
}

body.landing-preview :is(.section--articles, .landing-section--articles) {
  background: #f9f9f9;
}

body.landing-preview .articles-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}

body.landing-preview .articles-head__link {
  color: var(--landing-text);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
  border-bottom: 1px solid rgba(41, 48, 64, 0.35);
}

body.landing-preview .articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

body.landing-preview .articles-slider {
  position: relative;
}

body.landing-preview .articles-slider__viewport {
  overflow: visible;
}

body.landing-preview .articles-slider__arrow {
  display: none;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--landing-text);
  cursor: pointer;
}

body.landing-preview .articles-slider__arrow::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

body.landing-preview .articles-slider__arrow--prev::before {
  transform: rotate(-135deg);
}

body.landing-preview .articles-slider__arrow--next::before {
  transform: rotate(45deg);
}

body.landing-preview .articles-slider__arrow[disabled] {
  opacity: 0.24;
  pointer-events: none;
}

body.landing-preview .article-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: #ffffff;
  border: 1px solid rgba(41, 48, 64, 0.08);
}

body.landing-preview .article-card__image {
  display: block;
  aspect-ratio: 1.54 / 1;
  overflow: hidden;
  background: #e9ebef;
}

body.landing-preview .article-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.landing-preview .article-card__body {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 22px 22px 24px;
}

body.landing-preview .article-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(41, 48, 64, 0.64);
  font-size: 14px;
  line-height: 1.3;
}

body.landing-preview .article-card__category {
  color: var(--landing-gold-dark);
  font-weight: 500;
}

body.landing-preview .article-card__title {
  color: var(--landing-text);
  font-family: "Raleway";
  font-size: 23px;
  line-height: 1.22;
  font-weight: 600;
}

body.landing-preview .process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 24px;
}

body.landing-preview .timeline,
body.landing-preview .audience-panel {
  background: #ffffff;
  border: 1px solid var(--landing-border);
  box-shadow: var(--landing-shadow);
}

body.landing-preview .timeline {
  position: relative;
  padding: 34px 34px 34px 92px;
  border-left: 4px solid var(--landing-gold);
}

body.landing-preview .timeline::before {
  content: "";
  position: absolute;
  left: 50px;
  top: 44px;
  bottom: 42px;
  width: 1px;
  background: rgba(41, 48, 64, 0.16);
}

body.landing-preview .timeline ol {
  list-style: none;
  display: grid;
  gap: 20px;
}

body.landing-preview .timeline li {
  position: relative;
}

body.landing-preview .timeline li::before {
  content: counter(item);
  counter-increment: item;
  position: absolute;
  left: -56px;
  top: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--landing-dark);
  color: #ffffff;
  font-family: "Raleway";
  font-size: 12px;
  font-weight: 600;
}

body.landing-preview .timeline ol {
  counter-reset: item;
}

body.landing-preview .audience-panel {
  padding: 34px 30px;
  border-top: 4px solid var(--landing-gold);
}

body.landing-preview .audience-panel p + p {
  margin-top: 16px;
}

body.landing-preview :is(.checklist--compact, .landing-checklist--compact) {
  margin-top: 18px;
  margin-bottom: 18px;
}

body.landing-preview .why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  counter-reset: why;
  border-top: 1px solid var(--landing-border-light);
  border-left: 1px solid var(--landing-border-light);
}

body.landing-preview .why-card {
  position: relative;
  min-height: 100%;
  padding: 78px 26px 26px;
  border-right: 1px solid var(--landing-border-light);
  border-bottom: 1px solid var(--landing-border-light);
}

body.landing-preview .why-card::before {
  counter-increment: why;
  content: "0" counter(why);
  position: absolute;
  left: 24px;
  top: 20px;
  font-family: "Raleway";
  font-size: 14px;
  color: rgba(255, 255, 255, 0.34);
}

body.landing-preview .why-card::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 24px;
  width: 18px;
  height: 2px;
  background: var(--landing-gold);
}

body.landing-preview .why-card :is(.panel__title, .landing-panel__title) {
  color: #ffffff;
}

body.landing-preview .format-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 18px;
  align-items: stretch;
}

body.landing-preview .format-note,
body.landing-preview .format-spec {
  min-height: 100%;
}

body.landing-preview .format-note {
  position: relative;
  padding: 42px 40px 40px;
  background: linear-gradient(180deg, var(--landing-dark) 0%, var(--landing-dark-2) 100%);
  border-left: 4px solid var(--landing-gold);
  color: #ffffff;
  overflow: hidden;
}

body.landing-preview .format-note::after {
  content: "";
  position: absolute;
  right: 34px;
  bottom: 34px;
  width: 88px;
  height: 88px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

body.landing-preview .format-note :is(.section-title, .landing-section-title) {
  margin: 0;
}

body.landing-preview .format-note p {
  max-width: 580px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
}

body.landing-preview .format-note :is(.checklist, .landing-checklist) {
  gap: 20px;
  margin-top: 28px;
  max-width: 620px;
}

body.landing-preview .format-note :is(.checklist, .landing-checklist) li {
  padding-left: 34px;
  font-size: 17px;
  line-height: 1.64;
}

body.landing-preview .format-note :is(.checklist, .landing-checklist) li::before {
  top: 13px;
  width: 14px;
  height: 2px;
  background: var(--landing-gold);
}

body.landing-preview .format-spec {
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 0;
  background: #ffffff;
  border: 1px solid var(--landing-border);
  box-shadow: var(--landing-shadow);
}

body.landing-preview .format-spec :is(.section-title, .landing-section-title) {
  margin: 0;
  padding: 36px 34px 20px;
  border-bottom: 1px solid rgba(41, 48, 64, 0.08);
}

body.landing-preview .format-spec__rows {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 18px;
}

body.landing-preview .format-spec__row {
  position: relative;
  padding: 22px 22px 22px 26px;
  border: 1px solid rgba(41, 48, 64, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

body.landing-preview .format-spec__row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--landing-gold);
}

body.landing-preview .format-spec__row span {
  display: block;
  max-width: none;
  font-family: "Raleway";
  font-size: clamp(20px, 1.55vw, 26px);
  line-height: 1.22;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--landing-text);
}

body.landing-preview .final-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

body.landing-preview .final-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 0;
  background: transparent;
  color: inherit;
}

body.landing-preview .final-copy {
  max-width: 1080px;
}

body.landing-preview .final-actions :is(.button, .landing-button) {
  min-height: 66px;
  padding: 18px 34px;
  font-size: 18px;
  line-height: 1.2;
  min-width: 320px;
}

body.landing-preview .footer {
  margin-top: 0;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: var(--color-text);
}

body.landing-preview .footer__desk {
  display: block;
}

body.landing-preview .footer__top,
body.landing-preview .footer__bot,
body.landing-preview .footer__bot-left,
body.landing-preview .footer__mobile-top {
  display: flex;
  justify-content: space-between;
}

body.landing-preview .footer__top {
  gap: 40px;
}

body.landing-preview .footer__top-left {
  flex: 0 0 auto;
}

body.landing-preview .footer__top-left-logo {
  margin-bottom: 16px;
  width: 228px;
  height: auto;
}

body.landing-preview .footer__top-left-logo img,
body.landing-preview .footer__bot-right img {
  display: block;
}

body.landing-preview .footer__top-left-text {
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
}

body.landing-preview .footer__top-right {
  margin-top: 24px;
  margin-left: auto;
}

body.landing-preview .footer__top-right-menu {
  width: 574px;
}

body.landing-preview .footer__top-right-menu ul li a,
body.landing-preview .footer__top-right-privacy a,
body.landing-preview .footer__bot-left-number a,
body.landing-preview .footer__bot-left-email a,
body.landing-preview .footer__mobile-center ul li a,
body.landing-preview .footer__mobile-center-privacy a,
body.landing-preview .footer__top-left-text,
body.landing-preview .footer__bot-right a,
body.landing-preview .footer__bot-right p {
  color: #ffffff;
}

body.landing-preview .footer__top-right-menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.landing-preview .footer__top-right-menu ul li a {
  font-size: 18px;
  font-weight: 500;
}

body.landing-preview .footer__top-right-privacy {
  text-align: end;
  margin-top: 37px;
}

body.landing-preview .footer__top-right-privacy a {
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: 18px;
  font-weight: 500;
}

body.landing-preview .footer__line {
  margin-top: 30px;
  width: 100%;
  height: 1px;
  background-color: var(--color-bg);
  opacity: 0.24;
}

body.landing-preview .footer__bot {
  margin-top: 36px;
  align-items: center;
  gap: 32px;
}

body.landing-preview .footer__bot-left {
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

body.landing-preview .footer__bot-left-number a,
body.landing-preview .footer__bot-left-email a {
  font-size: 18px;
  font-weight: 500;
}

body.landing-preview .footer__bot-socials {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
}

body.landing-preview .footer__bot-socials a {
  width: 35px;
  height: 36px;
  flex: 0 0 35px;
}

body.landing-preview .footer__bot-socials-tg {
  background-image: url("../images/telegram.svg");
  background-position: center;
  background-repeat: no-repeat;
}

body.landing-preview .footer__bot-socials-tg:hover {
  background-image: url("../images/telegram-hover.svg");
}

body.landing-preview .footer__bot-right {
  margin-left: auto;
}

body.landing-preview .footer__bot-right p {
  margin-bottom: 10px;
  text-align: right;
}

body.landing-preview .footer__mobile {
  display: none;
}

body.landing-preview .cookie-accept {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  width: min(420px, calc(100% - 32px));
}

body.landing-preview .cookie-accept-wr {
  padding: 18px 18px 16px;
  background: rgba(41, 48, 64, 0.96);
  color: rgba(255, 255, 255, 0.86);
  border-left: 4px solid var(--landing-gold);
}

body.landing-preview .cookie-accept-wr p,
body.landing-preview .cookie-accept-wr a {
  font-size: 13px;
  line-height: 1.5;
}

body.landing-preview .cookie-accept__button {
  margin-top: 14px;
  min-width: 120px;
  min-height: 42px;
  padding: 10px 16px;
  border: 0;
  background: var(--landing-gold);
  color: #ffffff;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  text-transform: lowercase;
  cursor: pointer;
}

body.landing-preview .cookie-accept__button:hover {
  background: var(--landing-gold-dark);
}

@media (max-width: 1200px) {
  body.landing-preview .main-navigation .menu {
    gap: 0;
  }

  body.landing-preview .hero {
    min-height: auto;
    padding: 72px 0;
  }

  body.landing-preview .hero__meta,
  body.landing-preview .cta-strip,
  body.landing-preview .scope-layout,
  body.landing-preview .process-layout,
  body.landing-preview .format-layout,
  body.landing-preview .final-layout {
    grid-template-columns: 1fr;
  }

  body.landing-preview .hero :is(.button, .landing-button) {
    width: fit-content;
  }

  body.landing-preview .scope-tree__branches,
  body.landing-preview .results-sheet__list {
    grid-template-columns: 1fr 1fr;
  }

  body.landing-preview .risks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.landing-preview .articles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  body.landing-preview .risk-card :is(.panel__title, .landing-panel__title) {
    min-height: 0;
  }

  body.landing-preview .report-card {
    grid-template-columns: 84px minmax(220px, 0.95fr) minmax(0, 1fr);
    gap: 18px;
    padding: 22px 24px 22px 26px;
  }

  body.landing-preview .report-card::before {
    left: 26px;
    top: 24px;
    transform: none;
    width: 46px;
    height: 46px;
    font-size: 17px;
  }

  body.landing-preview .report-card::after {
    left: 26px;
    right: 40px;
    top: 70px;
    bottom: auto;
    height: 2px;
  }

  body.landing-preview .report-card :is(.panel__title, .landing-panel__title)::after {
    display: none;
  }
}

@media (max-width: 1024px) {
  body.landing-preview :is(.container, .landing-container) {
    width: min(1240px, calc(100% - 32px));
  }

  body.landing-preview .header-wr {
    flex-wrap: nowrap;
    align-items: center;
    gap: 0;
    min-height: 0;
    padding: 0;
  }

  body.landing-preview .site-branding {
    width: 170px;
    height: 52px;
    margin: 15px 15px 15px 0;
    flex: 0 0 170px;
  }

  body.landing-preview .header-navigation {
    flex: 0 0 auto;
    width: auto;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 0;
    margin-left: auto;
  }

  body.landing-preview .main-navigation {
    display: none;
  }

  body.landing-preview .header-search--static {
    margin-right: 15px;
    margin-left: 0;
  }

  body.landing-preview .header-burger {
    display: block;
    position: relative;
    width: 24px;
    height: 16px;
    flex: 0 0 24px;
    margin-left: 15px;
  }

  body.landing-preview .header-burger::before,
  body.landing-preview .header-burger::after {
    content: "";
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--color-text);
  }

  body.landing-preview .header-burger::before {
    top: 0;
  }

  body.landing-preview .header-burger::after {
    bottom: 0;
  }

  body.landing-preview .header-burger span {
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--color-text);
  }

  body.landing-preview .signals-grid,
  body.landing-preview .report-grid,
  body.landing-preview .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  body.landing-preview :is(.section, .landing-section) {
    padding: 72px 0;
  }

  body.landing-preview :is(.section--intro, .landing-section--intro),
  body.landing-preview :is(.section--strip, .landing-section--strip) {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  body.landing-preview :is(.section--strip, .landing-section--strip) {
    padding-top: 0;
    padding-bottom: 72px;
  }

  body.landing-preview .hero {
    padding: 56px 0;
  }

  body.landing-preview .hero__content,
  body.landing-preview :is(.panel--story, .landing-panel--story),
  body.landing-preview :is(.panel--checklist, .landing-panel--checklist),
  body.landing-preview .scope-tree,
  body.landing-preview .results-sheet,
  body.landing-preview .timeline,
  body.landing-preview .audience-panel,
  body.landing-preview .format-note,
  body.landing-preview .format-spec {
    padding-left: 24px;
    padding-right: 24px;
  }

  body.landing-preview .format-note {
    padding: 34px 24px 32px;
  }

  body.landing-preview .format-note::after {
    right: 24px;
    bottom: 24px;
    width: 72px;
    height: 72px;
  }

  body.landing-preview .format-note :is(.checklist, .landing-checklist) {
    gap: 18px;
    margin-top: 24px;
  }

  body.landing-preview .format-note :is(.checklist, .landing-checklist) li {
    padding-left: 30px;
    font-size: 16px;
  }

  body.landing-preview .format-spec {
    padding-left: 0;
    padding-right: 0;
  }

  body.landing-preview .format-spec :is(.section-title, .landing-section-title) {
    padding: 30px 24px 18px;
  }

  body.landing-preview .format-spec__rows {
    padding: 16px;
    gap: 10px;
  }

  body.landing-preview .format-spec__row {
    padding: 18px 18px 18px 22px;
  }

  body.landing-preview .hero__content {
    padding-top: 44px;
    padding-bottom: 36px;
  }

  body.landing-preview .hero__title {
    font-size: clamp(38px, 10vw, 54px);
  }

  body.landing-preview .hero__lead {
    font-size: 23px;
  }

  body.landing-preview .hero__meta {
    margin-top: 32px;
    padding-top: 24px;
  }

  body.landing-preview .intro-grid,
  body.landing-preview .risks-grid,
  body.landing-preview .report-grid,
  body.landing-preview .signals-grid,
  body.landing-preview .why-grid,
  body.landing-preview .scope-tree__branches,
  body.landing-preview .results-sheet__list {
    grid-template-columns: 1fr;
  }

  body.landing-preview .scope-tree__branches {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 0;
    padding: 20px 0 0;
  }

  body.landing-preview .scope-tree {
    gap: 16px;
    padding: 0;
  }

  body.landing-preview .scope-tree__root {
    margin: 0 0 8px;
    gap: 10px;
    padding: 0 0 4px;
    font-size: 22px;
  }

  body.landing-preview .scope-tree__card,
  body.landing-preview .scope-tree__card:nth-child(odd),
  body.landing-preview .scope-tree__card:nth-child(even) {
    width: auto;
    margin: 0;
    padding: 20px 22px 18px;
    min-height: auto;
  }

  body.landing-preview .scope-tree__card--summary {
    grid-column: auto;
  }

  body.landing-preview .report-card {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: auto;
    height: auto;
    align-items: start;
    padding: 56px 22px 20px;
  }

  body.landing-preview .report-card::before {
    left: 22px;
    top: 20px;
    transform: none;
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  body.landing-preview .report-card::after {
    left: 22px;
    right: 32px;
    top: 64px;
    bottom: auto;
    height: 2px;
  }

  body.landing-preview .report-card :is(.panel__title, .landing-panel__title),
  body.landing-preview .report-card p {
    grid-column: 1;
  }

  body.landing-preview .report-card :is(.panel__title, .landing-panel__title) {
    align-self: start;
    height: auto;
    padding-bottom: 12px;
  }

  body.landing-preview .report-card :is(.panel__title, .landing-panel__title)::after {
    display: none;
  }

  body.landing-preview .report-card p {
    margin-top: 4px;
    width: auto;
    padding: 0;
  }

  body.landing-preview .signal-card,
  body.landing-preview .why-card {
    min-height: auto;
  }

  body.landing-preview .risk-card {
    padding: 68px 22px 22px;
  }

  body.landing-preview .risk-card :is(.panel__title, .landing-panel__title) {
    min-height: 0;
    font-size: 24px;
  }

  body.landing-preview .timeline {
    padding-left: 78px;
  }

  body.landing-preview .timeline::before {
    left: 42px;
  }

  body.landing-preview .timeline li::before {
    left: -46px;
  }

  body.landing-preview .cta-strip__copy,
  body.landing-preview .cta-strip__actions,
  body.landing-preview .final-actions {
    padding: 22px;
  }

  body.landing-preview .final-actions {
    padding: 0;
    gap: 14px;
  }

  body.landing-preview .final-actions :is(.button, .landing-button) {
    flex: 1 1 calc(50% - 7px);
    min-width: 0;
    padding: 16px 24px;
    min-height: 62px;
    font-size: 16px;
  }

  body.landing-preview .articles-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
  }

  body.landing-preview .articles-head__link {
    display: none;
  }

  body.landing-preview .articles-slider {
    width: min(460px, calc(100% - 72px));
    margin: 20px auto 0;
  }

  body.landing-preview .articles-slider__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
  }

  body.landing-preview .articles-slider__viewport::-webkit-scrollbar {
    display: none;
  }

  body.landing-preview .articles-grid {
    display: flex;
    grid-template-columns: none;
    gap: 0;
    width: 100%;
  }

  body.landing-preview .article-card {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: start;
  }

  body.landing-preview .articles-slider__arrow {
    display: flex;
    position: absolute;
    top: calc(50% - 15px);
    z-index: 2;
  }

  body.landing-preview .articles-slider__arrow--prev {
    left: -36px;
  }

  body.landing-preview .articles-slider__arrow--next {
    right: -36px;
  }

  body.landing-preview .article-card__body {
    gap: 14px;
    padding: 18px 18px 20px;
  }

  body.landing-preview .article-card__title {
    font-size: 20px;
  }

  body.landing-preview .cookie-accept {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
  }
}

@media (max-width: 900px) {
  body.landing-preview .footer {
    padding-top: 45px;
    padding-bottom: 30px;
  }

  body.landing-preview .footer__desk {
    display: none;
  }

  body.landing-preview .footer__mobile {
    display: block;
    width: min(500px, 100%);
    margin: 0 auto;
  }

  body.landing-preview .footer__mobile-top {
    align-items: flex-start;
    gap: 20px;
  }

  body.landing-preview .footer__bot-left-contacts {
    display: grid;
    gap: 8px;
  }

  body.landing-preview .footer__bot-left-number a,
  body.landing-preview .footer__bot-left-email a {
    font-size: 16px;
  }

  body.landing-preview .footer__bot-socials a {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
    background-size: cover;
  }

  body.landing-preview .footer__line {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  body.landing-preview .footer__mobile-center ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  body.landing-preview .footer__mobile-center ul li {
    margin-bottom: 15px;
  }

  body.landing-preview .footer__mobile-center ul li:last-child {
    margin-bottom: 0;
  }

  body.landing-preview .footer__mobile-center ul li a,
  body.landing-preview .footer__mobile-center-privacy a {
    font-size: 14px;
    font-weight: 500;
  }

  body.landing-preview .footer__top-left {
    width: 160px;
  }

  body.landing-preview .footer__top-left-logo {
    width: 160px;
    margin-bottom: 10px;
  }

  body.landing-preview .footer__top-left-text,
  body.landing-preview .footer__bot-right p,
  body.landing-preview .footer__bot-right a {
    font-size: 14px;
  }

  body.landing-preview .footer__bot-right {
    margin-top: 40px;
    margin-left: 0;
  }

  body.landing-preview .footer__mobile-bot {
    display: block;
  }
}

@media (max-width: 560px) {
  body.landing-preview :is(.container, .landing-container) {
    width: calc(100% - 24px);
  }

  body.landing-preview .site-branding {
    width: 116px;
    height: 35px;
    margin-right: 15px;
    flex-basis: 116px;
  }

  body.landing-preview .header-search--static {
    width: 16px;
    height: 16px;
    margin-right: 12px;
  }

  body.landing-preview .header-burger {
    margin-left: 12px;
  }

  body.landing-preview :is(.section-title, .landing-section-title),
  body.landing-preview .cta-band__title {
    font-size: 28px;
  }

  body.landing-preview .articles-slider {
    width: 100%;
    margin-top: 20px;
  }

  body.landing-preview .articles-slider__arrow--prev {
    left: -10px;
  }

  body.landing-preview .articles-slider__arrow--next {
    right: -10px;
  }

  body.landing-preview .final-actions {
    gap: 12px;
  }

  body.landing-preview .final-actions :is(.button, .landing-button) {
    flex-basis: 100%;
    width: 100%;
    min-height: 58px;
    font-size: 15px;
  }

  body.landing-preview .article-card__meta {
    font-size: 13px;
  }

  body.landing-preview .article-card__title {
    font-size: 18px;
  }

  body.landing-preview :is(.section-intro, .landing-section-intro),
  body.landing-preview .cta-band__text,
  body.landing-preview .hero__note {
    font-size: 16px;
  }

  body.landing-preview .hero {
    min-height: calc(100vh - 80px);
    padding: 32px 0;
    align-items: center;
  }

  body.landing-preview .hero__frame {
    border-left-width: 3px;
  }

  body.landing-preview .hero__content {
    padding: 34px 18px 28px;
  }

  body.landing-preview .hero__title {
    font-size: 36px;
    line-height: 1.05;
    letter-spacing: -0.025em;
  }

  body.landing-preview .hero__lead {
    margin-top: 18px;
    font-size: 20px;
    line-height: 1.28;
  }

  body.landing-preview .hero__note {
    font-size: 15px;
    line-height: 1.55;
  }

  body.landing-preview .hero__meta {
    margin-top: 26px;
    padding-top: 20px;
    gap: 22px;
  }

  body.landing-preview .intro-story__lead,
  body.landing-preview .format-spec__row span {
    font-size: 20px;
  }

  body.landing-preview .cta-strip__title {
    font-size: 22px;
  }

  body.landing-preview .cta-strip__text {
    font-size: 16px;
    line-height: 1.58;
  }

  body.landing-preview :is(.panel--story, .landing-panel--story),
  body.landing-preview :is(.panel--checklist, .landing-panel--checklist),
  body.landing-preview .scope-tree,
  body.landing-preview .results-sheet,
  body.landing-preview .timeline,
  body.landing-preview .audience-panel,
  body.landing-preview .format-note,
  body.landing-preview .format-spec {
    padding-left: 18px;
    padding-right: 18px;
  }

  body.landing-preview .format-note {
    padding: 28px 18px 26px;
  }

  body.landing-preview .format-note::after {
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
  }

  body.landing-preview .format-note :is(.checklist, .landing-checklist) {
    gap: 16px;
    margin-top: 22px;
  }

  body.landing-preview .format-note :is(.checklist, .landing-checklist) li {
    padding-left: 28px;
  }

  body.landing-preview .format-spec {
    padding-left: 0;
    padding-right: 0;
  }

  body.landing-preview .format-spec :is(.section-title, .landing-section-title) {
    padding: 24px 18px 16px;
  }

  body.landing-preview .format-spec__rows {
    padding: 12px;
    gap: 8px;
  }

  body.landing-preview .format-spec__row {
    padding: 16px 16px 16px 20px;
  }

  body.landing-preview :is(.button, .landing-button) {
    width: 100%;
  }

  body.landing-preview .scope-tree__branches {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 0;
    padding: 18px 0 0;
  }

  body.landing-preview .scope-tree {
    gap: 14px;
    padding: 0;
  }

  body.landing-preview .scope-tree__root {
    margin: 0 0 8px;
    gap: 10px;
    padding: 0 0 4px;
    font-size: 20px;
  }

  body.landing-preview .scope-tree__card,
  body.landing-preview .scope-tree__card:nth-child(odd),
  body.landing-preview .scope-tree__card:nth-child(even) {
    width: auto;
    margin: 0;
    padding: 18px 18px 16px;
  }

  body.landing-preview .scope-tree__card::before {
    width: 60px;
  }

  body.landing-preview .scope-tree__card-title {
    font-size: 16px;
  }

  body.landing-preview .report-card {
    gap: 10px;
    padding: 50px 18px 18px;
  }

  body.landing-preview .report-card::before {
    left: 18px;
    top: 18px;
    transform: none;
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  body.landing-preview .report-card::after {
    left: 18px;
    right: 28px;
    top: 58px;
    bottom: auto;
    height: 2px;
  }

  body.landing-preview .report-card :is(.panel__title, .landing-panel__title)::after {
    display: none;
  }
}

/* Intro-Р±Р»РѕРє: Р°РґР°РїС‚РёРІ */

@media (max-width: 1024px) {
  body.landing-preview .intro-grid {
    grid-template-columns: 1fr;
  }

  body.landing-preview :is(.panel--checklist, .landing-panel--checklist) {
    border-left: 1px solid rgba(41, 48, 64, 0.08);
    border-top: 0;
  }
}

@media (max-width: 768px) {
  body.landing-preview :is(.section--intro, .landing-section--intro) {
    padding-top: 48px;
    padding-bottom: 42px;
  }

  body.landing-preview :is(.panel--story, .landing-panel--story),
  body.landing-preview :is(.panel--checklist, .landing-panel--checklist) {
    padding: 34px 28px;
  }

  body.landing-preview .intro-story__lead {
    font-size: 16px;
    line-height: 1.38;
  }

  body.landing-preview .intro-story__text {
    font-size: 16px;
  }

  body.landing-preview :is(.panel__title--small, .landing-panel__title--small) {
    font-size: 22px;
  }

  body.landing-preview :is(.panel--checklist, .landing-panel--checklist) :is(.checklist, .landing-checklist) li {
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  body.landing-preview :is(.panel--story, .landing-panel--story),
  body.landing-preview :is(.panel--checklist, .landing-panel--checklist) {
    padding: 28px 20px;
  }

  body.landing-preview :is(.panel--story, .landing-panel--story) {
    border-left-width: 3px;
  }

  body.landing-preview .intro-story__lead {
    font-size: 16px;
    line-height: 1.38;
  }
}

body.landing-preview .articles-block .single-title {
  font-family: "Raleway";
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: 1.06;
  font-weight: 600;
  letter-spacing: -0.02em;
}

body.landing-preview .articles-block {
  padding-top: 60px;
  padding-bottom: 80px;
  background-color: #f9f9f9;
}

body.landing-preview .articles-block-top-line {
  align-items: center;
  width: 100%;
}

body.landing-preview .articles-block-top-line a {
  width: 230px;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #d2ac2d;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

body.landing-preview .articles-block-top-line a:hover {
  background: var(--color-logo-h);
  color: #fff;
}

body.landing-preview .articles-block__slider {
  margin-top: 40px;
}

body.landing-preview .articles-block__slider .slick-list {
  width: 1230px;
  margin-left: -15px;
}

body.landing-preview .articles-block__slider-card {
  width: 585px;
  margin: 0 auto;
}

body.landing-preview .articles-block__slider-card-left {
  width: 250px;
  height: 240px;
}

body.landing-preview .articles-block__slider-card-img {
  width: 100%;
  height: 100%;
}

body.landing-preview .articles-block__slider-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body.landing-preview .articles-block__slider-card-right {
  width: 340px;
  padding: 25px 20px;
  background-color: #fff;
  flex-direction: column;
}

body.landing-preview .articles-block__slider-card-title {
  display: block;
  margin-top: 14px;
  font-size: 18px;
  line-height: 121%;
  font-weight: 500;
  color: var(--color-text);
}

body.landing-preview .articles-block__slider-card-title:hover {
  color: var(--color-text);
}

body.landing-preview .articles-block__slider .short-card-title-date {
  width: auto;
  font-size: 15px;
  font-weight: 400;
  color: var(--color-block);
}

body.landing-preview .articles-block__slider .short-card-filter,
body.landing-preview .articles-block__slider .short-card-filter a {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-block);
  text-decoration: underline;
  text-underline-offset: 4px;
}

body.landing-preview .articles-block__slider .short-card-filter a {
  display: block;
}

body.landing-preview .articles-block__slider .short-card-filter a:hover {
  color: var(--color-block-h);
}

body.landing-preview .articles-block .slick-arrow {
  z-index: 10;
  width: 30px;
  height: 30px;
  background-image: url("../images/posts-slider-arrow.svg") !important;
}

body.landing-preview .articles-block .slick-arrow:hover {
  background-image: url("../images/posts-slider-arrow-hover.svg") !important;
}

body.landing-preview .articles-block .slick-arrow::before {
  display: none;
}

body.landing-preview .articles-block .slick-next {
  right: -42px;
}

body.landing-preview .articles-block .slick-prev {
  left: -42px;
  transform: translate(0, -50%) rotate(180deg);
}

body.landing-preview .articles-block-slider-card-right-img {
  display: none;
}

body.landing-preview .landing-form-popup {
  width: 500px;
  max-width: calc(100vw - 24px);
  min-height: 486px;
  padding: 30px 50px;
  height: auto;
  max-height: calc(100vh - 24px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow-y: auto;
}

body.landing-preview .landing-form-popup .form-question-form {
  margin-top: 22px;
}

body.landing-preview .landing-form-popup .form-question-form .form-question-subtitle,
body.landing-preview .landing-form-popup .form-question-form p:first-child {
  margin: 0 0 18px;
}

@media (max-width: 560px) {
  body.landing-preview .articles-block .single-title {
    font-size: 28px;
  }

  body.landing-preview .landing-form-popup {
    padding: 26px 18px;
    min-height: auto;
  }

  body.landing-preview .landing-form-popup .form-question-form {
    margin-top: 18px;
  }

  body.landing-preview .landing-form-popup .form-question-form .form-question-subtitle,
  body.landing-preview .landing-form-popup .form-question-form p:first-child {
    margin-bottom: 14px;
  }
}

@media screen and (max-width: 1370px) {
  body.landing-preview .articles-block__slider-card-left {
    display: none;
  }

  body.landing-preview .articles-block-slider-card-right-img {
    display: block;
    width: 100%;
    height: 200px;
  }

  body.landing-preview .articles-block__slider {
    width: 760px;
    margin: 40px auto 0;
  }

  body.landing-preview .articles-block__slider .slick-list {
    width: 760px;
    margin-left: 0;
  }

  body.landing-preview .articles-block__slider-card {
    width: 350px;
    height: 420px;
  }

  body.landing-preview .articles-block__slider-card-right {
    width: 350px;
    padding: 0;
  }

  body.landing-preview .articles-block__slider-card-right-wrap {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    gap: 18px;
    height: 165px;
    padding: 14px 10px;
  }

  body.landing-preview .articles-block__slider-card-title {
    margin-top: 0;
    font-size: 16px;
  }

  body.landing-preview .articles-block__slider .short-card-filter {
    padding: 14px 10px 18px;
  }

  body.landing-preview .articles-block__slider .short-card-filter a {
    font-size: 14px;
  }

  body.landing-preview .articles-block__slider .short-card-title-date {
    font-size: 13px;
  }

  body.landing-preview .articles-block .slick-prev {
    left: -27px;
  }

  body.landing-preview .articles-block .slick-next {
    right: -27px;
  }
}

@media screen and (max-width: 768px) {
  body.landing-preview .articles-block__slider .slick-list {
    width: 630px;
    margin-left: 7px;
  }

  body.landing-preview .articles-block__slider {
    width: 630px;
  }

  body.landing-preview .articles-block__slider-card-right {
    width: 300px;
  }

  body.landing-preview .articles-block .slick-next {
    right: -30px;
  }

  body.landing-preview .articles-block .slick-prev {
    left: -30px;
  }

  body.landing-preview .articles-block {
    padding-top: 45px;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 750px) {
  body.landing-preview .articles-block__slider .slick-list {
    width: auto;
    margin: auto;
  }

  body.landing-preview .articles-block__slider {
    width: 460px;
    margin-top: 20px;
  }

  body.landing-preview .articles-block__slider-card {
    width: 100%;
    height: auto;
  }

  body.landing-preview .articles-block__slider-card-right {
    width: 100%;
  }

  body.landing-preview .articles-block .slick-next {
    right: -42px;
  }

  body.landing-preview .articles-block .slick-prev {
    left: -42px;
  }

  body.landing-preview .articles-block-top-line a {
    display: none;
  }

  body.landing-preview .articles-block__slider-card-right-wrap {
    height: auto;
  }
}

@media screen and (max-width: 580px) {
  body.landing-preview .articles-block .slick-next {
    right: -7px;
  }

  body.landing-preview .articles-block .slick-prev {
    left: -7px;
  }
}

@media screen and (max-width: 500px) {
  body.landing-preview .articles-block__slider {
    width: 100%;
  }

  body.landing-preview .articles-block__slider .short-card-title-date {
    font-size: 11px;
  }

  body.landing-preview .articles-block__slider .short-card-filter {
    padding: 16px 10px;
  }

  body.landing-preview .articles-block__slider .short-card-filter a {
    font-size: 12px;
  }

  body.landing-preview .articles-block__slider-card-right {
    height: auto;
    justify-content: flex-start;
  }

  body.landing-preview .articles-block__slider-card-right-wrap {
    height: 163px;
    padding: 12px 10px 14px;
  }
}

@media screen and (max-width: 375px) {
  body.landing-preview .articles-block .slick-arrow {
    top: 60%;
  }
}

@media screen and (max-width: 374px) {
  body.landing-preview .articles-block-slider-card-right-img {
    height: 150px;
  }
}

body.landing-preview .report-card {
  --report-line-left: 20px;
  --report-line-right: 48px;
  --report-line-top: calc(50% + 22px);
  --report-text-right-gap: 28px;
  border-bottom: 0;
}

body.landing-preview .report-card::after {
  content: "";
  display: block;
  position: absolute;
  left: var(--report-line-left);
  right: var(--report-line-right);
  top: var(--report-line-top);
  bottom: auto;
  height: 2px;
  background: #d2ac2d;
}

body.landing-preview .report-card p {
  justify-self: stretch;
  width: auto;
  max-width: none;
  padding-right: var(--report-text-right-gap);
  box-sizing: border-box;
}

@media (max-width: 1200px) {
  body.landing-preview .report-card {
    --report-line-left: 26px;
    --report-line-right: 40px;
    --report-line-top: 70px;
    --report-text-right-gap: 16px;
  }
}

@media (max-width: 1024px) {
  body.landing-preview .report-card {
    --report-line-left: 22px;
    --report-line-right: 32px;
    --report-line-top: 64px;
    --report-text-right-gap: 10px;
  }
}

@media (max-width: 560px) {
  body.landing-preview .report-card {
    --report-line-left: 18px;
    --report-line-right: 28px;
    --report-line-top: 58px;
    --report-text-right-gap: 10px;
  }
}

@media (max-width: 768px) {
  body.landing-preview :is(.section--results, .landing-section--results) {
    padding-top: 0;
    padding-bottom: 0;
  }

  body.landing-preview .results-window {
    padding: 44px 28px 28px;
  }

  body.landing-preview .results-window::before {
    left: 28px;
    top: 0;
    width: 88px;
  }

  body.landing-preview .results-sheet {
    padding: 0;
  }

  body.landing-preview .results-sheet__list {
    gap: 16px;
    padding-top: 0;
  }

  body.landing-preview .results-sheet__list li {
    padding: 14px 16px 14px 42px;
    font-size: 16px;
    line-height: 1.52;
  }

  body.landing-preview .results-sheet__list li::before {
    left: 16px;
    top: 24px;
    width: 14px;
    height: 2px;
  }

  body.landing-preview .results-sheet__final {
    margin-top: 18px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 18px;
  }
}

@media (max-width: 560px) {
  body.landing-preview :is(.section--results, .landing-section--results) {
    padding-top: 0;
    padding-bottom: 0;
  }

  body.landing-preview :is(.section--strip, .landing-section--strip) {
    padding-top: 0;
    padding-bottom: 56px;
  }

  body.landing-preview .results-window {
    padding: 40px 20px 20px;
  }

  body.landing-preview .results-window::before {
    left: 20px;
    top: 0;
    width: 72px;
  }

  body.landing-preview .results-sheet {
    padding: 0;
  }

  body.landing-preview .results-sheet__list li {
    padding: 14px 14px 14px 40px;
  }

  body.landing-preview .results-sheet__list li::before {
    left: 14px;
    top: 23px;
    width: 14px;
    height: 2px;
  }

  body.landing-preview .results-sheet__final {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* Process module redesign */

body.landing-preview .process-module {
  background: #ffffff;
  border: 1px solid var(--landing-border);
  border-left: 4px solid var(--landing-gold);
  overflow: hidden;
}

body.landing-preview .process-roadmap {
  position: relative;
  padding: 34px 36px 30px;
  background: #f4f6fa;
  border-bottom: 1px solid rgba(41, 48, 64, 0.08);
}

body.landing-preview .process-roadmap__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
}

body.landing-preview .process-roadmap__list::before {
  content: "";
  position: absolute;
  left: 19px;
  right: calc((100% - 54px) / 4 - 19px);
  top: 19px;
  height: 2px;
  background: rgba(210, 172, 45, 0.65);
}

body.landing-preview .process-roadmap__item {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  align-content: start;
  padding-top: 34px;
}

body.landing-preview .process-roadmap__num {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--landing-gold);
  color: #ffffff;
  font-family: "Raleway";
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

body.landing-preview .process-roadmap__item p {
  margin: 0;
  color: var(--landing-text);
  font-size: 17px;
  line-height: 1.5;
}

body.landing-preview .process-audience {
  padding: 38px 36px 34px;
}

body.landing-preview .process-audience :is(.panel__title, .landing-panel__title) {
  color: var(--landing-text);
}

body.landing-preview .process-audience__head {
  display: grid;
  gap: 8px;
  max-width: none;
}

body.landing-preview .process-audience__head p {
  margin: 0;
  color: var(--landing-gold-dark);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.landing-preview .process-audience__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

body.landing-preview .audience-tile {
  position: relative;
  min-height: 204px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px 24px 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
  border: 1px solid rgba(41, 48, 64, 0.08);
}

body.landing-preview .audience-tile::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  width: 58px;
  height: 2px;
  background: var(--landing-gold);
}

body.landing-preview .audience-tile__icon {
  width: 100px;
  height: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--landing-gold);
  background: transparent;
  border: 0;
}

body.landing-preview .audience-tile__icon svg {
  width: 100px;
  height: 100px;
  display: block;
}

body.landing-preview .audience-tile__icon svg [stroke] {
  vector-effect: non-scaling-stroke;
}

body.landing-preview .audience-tile__title {
  margin: 0;
  margin-top: auto;
  max-width: 290px;
  color: var(--landing-text);
  font-family: "Raleway";
  font-size: 22px;
  line-height: 1.16;
  font-weight: 600;
}

body.landing-preview .audience-tile__text {
  display: none;
}

body.landing-preview .process-audience__note {
  max-width: 980px;
  margin: 22px 0 0;
  padding: 18px 0 0 18px;
  border-top: 1px solid rgba(41, 48, 64, 0.08);
  color: var(--landing-muted);
  position: relative;
}

body.landing-preview .process-audience__note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 0;
  width: 2px;
  background: var(--landing-gold);
}

@media (max-width: 1200px) {
  body.landing-preview .process-roadmap__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.landing-preview .process-roadmap__list::before {
    right: calc((100% - 18px) / 2 - 19px);
  }

  body.landing-preview .process-audience__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body.landing-preview .process-roadmap {
    padding: 28px 26px 24px;
  }

  body.landing-preview .process-audience {
    padding: 28px 26px 28px;
  }

  body.landing-preview .process-roadmap__item p {
    font-size: 16px;
  }

  body.landing-preview .audience-tile {
    min-height: 184px;
    padding: 22px 20px 20px;
  }

  body.landing-preview .audience-tile__icon {
    width: 100px;
    height: 100px;
  }

  body.landing-preview .audience-tile__icon svg {
    width: 100px;
    height: 100px;
  }

  body.landing-preview .audience-tile__title {
    max-width: none;
    font-size: 20px;
  }

  body.landing-preview .process-audience__note {
    padding-left: 16px;
  }
}

@media (max-width: 640px) {
  body.landing-preview .process-roadmap__list,
  body.landing-preview .process-audience__grid {
    grid-template-columns: 1fr;
  }

  body.landing-preview .process-roadmap__list::before {
    left: 19px;
    right: auto;
    top: 22px;
    bottom: 22px;
    width: 2px;
    height: auto;
  }

  body.landing-preview .process-roadmap__item {
    padding-top: 0;
    padding-left: 56px;
    min-height: 38px;
  }

  body.landing-preview .process-roadmap__item:last-child::after {
    content: "";
    position: absolute;
    left: 19px;
    top: 38px;
    bottom: 0;
    width: 2px;
    background: #f4f6fa;
  }

  body.landing-preview .process-roadmap__num {
    position: absolute;
    left: 0;
    top: 0;
  }

  body.landing-preview .audience-tile {
    min-height: auto;
    padding: 20px 18px 18px;
  }

  body.landing-preview .audience-tile__icon {
    width: 60px;
    height: 60px;
  }

  body.landing-preview .audience-tile__icon svg {
    width: 60px;
    height: 60px;
  }

  body.landing-preview .audience-tile__title {
    font-size: 18px;
    line-height: 1.18;
  }

  body.landing-preview .process-audience__note {
    margin-top: 18px;
    padding-top: 16px;
    padding-left: 14px;
  }

  body.landing-preview .process-audience__note::before {
    top: 16px;
  }
}

@media (hover: none) {
  body.landing-preview .audience-tile {
    min-height: auto;
  }
}

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

  body.landing-preview [data-reveal],
  body.landing-preview .hero__frame,
  body.landing-preview .hero__title,
  body.landing-preview .hero__lead,
  body.landing-preview .hero__meta {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
}

/* Why section redesign */

body.landing-preview :is(.section--why, .landing-section--why) {
  background: #f9f9f9;
  color: var(--landing-text);
  padding-top: 0;
  padding-bottom: 0;
}

body.landing-preview :is(.section--why, .landing-section--why) :is(.section-title, .landing-section-title) {
  color: var(--landing-text);
}

body.landing-preview .why-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 24px;
  border: 0;
  counter-reset: why;
}

body.landing-preview .why-card {
  min-height: 100%;
  padding: 86px 32px 30px;
  background: linear-gradient(180deg, var(--landing-dark) 0%, var(--landing-dark-2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body.landing-preview .why-card::before {
  left: 30px;
  top: 22px;
  color: rgba(255, 255, 255, 0.3);
}

body.landing-preview .why-card::after {
  left: 30px;
  right: auto;
  top: 48px;
  width: 48px;
}

body.landing-preview .why-card :is(.panel__title, .landing-panel__title) {
  color: #ffffff;
  font-size: clamp(28px, 2.4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

body.landing-preview .why-card--core:first-child :is(.panel__title, .landing-panel__title) {
  max-width: none;
}

body.landing-preview .why-card p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
}

body.landing-preview .why-card--team {
  grid-column: 1 / -1;
  display: block;
  padding-bottom: 34px;
}

body.landing-preview .why-card--team :is(.panel__title, .landing-panel__title) {
  max-width: 760px;
}

body.landing-preview .why-card__copy {
  min-width: 0;
}

body.landing-preview .why-team {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

body.landing-preview .why-team__person {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  min-height: 0;
  padding: 22px;
  background: rgba(24, 31, 43, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

body.landing-preview .why-team__photo {
  width: 148px;
  height: 188px;
  min-height: 0;
  object-fit: cover;
  object-position: center top;
  display: block;
}

body.landing-preview .why-team__meta {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
}

body.landing-preview .why-team__name,
body.landing-preview .why-team__role {
  margin: 0;
}

body.landing-preview .why-team__name {
  color: #ffffff;
  font-family: "Raleway";
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
}

body.landing-preview .why-team__role {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.45;
}

body.landing-preview .why-team__link {
  margin-top: 16px;
  color: var(--landing-gold);
  font-family: "Raleway";
  font-size: 15px;
  line-height: 1.3;
  font-weight: 400;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

@media (max-width: 1200px) {
  body.landing-preview .why-team {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }
}

@media (max-width: 900px) {
  body.landing-preview .why-grid {
    grid-template-columns: 1fr;
  }

  body.landing-preview .why-card {
    padding: 78px 26px 26px;
  }

  body.landing-preview .why-card :is(.panel__title, .landing-panel__title) {
    font-size: 34px;
  }

  body.landing-preview .why-team__person {
    grid-template-columns: 124px minmax(0, 1fr);
  }

  body.landing-preview .why-team__photo {
    width: 124px;
    height: 168px;
  }
}

@media (max-width: 640px) {
  body.landing-preview .why-team {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  body.landing-preview .why-team__person {
    grid-template-columns: 104px minmax(0, 1fr);
    align-items: center;
    padding: 12px;
  }

  body.landing-preview .why-team__photo {
    width: 104px;
    height: 136px;
  }

  body.landing-preview .why-team__meta {
    justify-content: center;
  }

  body.landing-preview .why-team__name {
    font-size: 18px;
  }

  body.landing-preview .why-team__role {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  body.landing-preview :is(.section--format, .landing-section--format) {
    padding-top: 0;
  }

  body.landing-preview .report-grid {
    grid-auto-rows: auto;
    gap: 12px;
    padding: 0;
    background: transparent;
    border: 0;
  }

  body.landing-preview .report-card {
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
    min-height: auto;
    height: auto;
    padding: 16px 18px 18px;
    background: #ffffff;
    border: 1px solid var(--landing-border);
    overflow: visible;
  }

  body.landing-preview .report-card::before {
    left: 18px;
    top: 14px;
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  body.landing-preview .report-card::after {
    display: none;
  }

  body.landing-preview .report-card :is(.panel__title, .landing-panel__title),
  body.landing-preview .report-card p {
    grid-column: 1;
  }

  body.landing-preview .report-card :is(.panel__title, .landing-panel__title) {
    position: relative;
    align-self: start;
    display: flex;
    align-items: flex-end;
    height: auto;
    min-height: 40px;
    margin: 0 0 10px;
    padding: 0 0 10px 54px;
    font-size: 16px;
    line-height: 1.16;
  }

  body.landing-preview .report-card :is(.panel__title, .landing-panel__title)::after {
    content: "";
    display: block;
    position: absolute;
    left: 54px;
    right: 0;
    bottom: 0;
    height: 2px;
    background: #d2ac2d;
  }

  body.landing-preview .report-card p {
    margin-top: 0;
    padding-right: 0;
    font-size: 15px;
    line-height: 1.5;
  }
}

@media (max-width: 560px) {
  body.landing-preview .report-grid {
    gap: 10px;
  }

  body.landing-preview .report-card {
    padding: 14px 16px 16px;
  }

  body.landing-preview .report-card::before {
    left: 16px;
    top: 14px;
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  body.landing-preview .report-card::after {
    display: none;
  }

  body.landing-preview .report-card :is(.panel__title, .landing-panel__title) {
    min-height: 36px;
    margin-bottom: 8px;
    padding: 0 0 10px 48px;
    font-size: 15px;
    line-height: 1.14;
  }

  body.landing-preview .report-card :is(.panel__title, .landing-panel__title)::after {
    left: 48px;
  }

  body.landing-preview .report-card p {
    font-size: 14px;
    line-height: 1.46;
  }
}
