:root {
  --soft: #FEF1EA;
  --orange: #F3712F;
  --light-orange: #FEF1EA;
  --soft-orange: #FABFA1;

  --red-bg: #FDF4F4;
  --red: #D64545;
  --light-red: #FBECEC;

  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
}

.research-page {
  font-family: Arial, sans-serif;
  color: var(--ink);
}

.text-16-158 {
  font-family: Ubuntu;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 158%;
  letter-spacing: 0%;
  color: #0A0A0A;
}

.text-14-130 {
  font-family: Ubuntu;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 130%;
  letter-spacing: 0%;
  color: #242424;
}

.container {
  width: min(var(--container), calc(100% - 80px));
  margin: 0 auto;
  min-width: 0;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3,
.stat-number,
.brand-title {
  font-family: "Unbounded", Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  font-family: "Unbounded";
  font-size: 38px;
  line-height: 120%;
  font-weight: 700;
  margin-bottom: 20px;
}

h2 {
  font-family: Unbounded;
  font-weight: 500;
  font-style: Medium;
  font-size: 32px;
  color: #0A0A0A;
  line-height: 118%;
  letter-spacing: 0%;
}

h3 {
  font-family: Ubuntu;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  color: #242424;
  line-height: 130%;
  letter-spacing: 0%;

}

p,
li,
td,
th {
  font-size: 15px;
  line-height: 1.5;
}

table {
  width: 100%;
  border-collapse: collapse;
}

.hero {
  padding: 50px 0;
}

.hero__texts {
  max-width: 802px;
}

.orange-bg {
  background-color: var(--soft);
}

.red-bg {
  background-color: var(--red-bg);
}

.background-orange {
  background-color: var(--orange);
}

.background-red {
  background-color: var(--red);
}


.text-color-orange {
  color: var(--orange);
}

.text-color-red {
  color: var(--red);
}

.breadcrumbs {
  margin-bottom: 20px;
  color: #777;
  font-size: 13px;
  font-weight: 700;
}

.breadcrumbs span::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  margin: 0 10px 3px;
  border-radius: 50%;
  background: currentColor;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 58px;
  align-items: start;
  min-width: 0;
}

.research__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 12px 32px 0 rgba(13, 13, 20, 0.12);
}

.tagrow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.pill {
  font-family: Ubuntu;
  display: inline-flex;
  gap: 7px;
  align-items: center;
  min-height: 24px;
  padding: 7px 16px;
  border-radius: 30px;
  background: #ffffff;
  color: #333;
  font-size: 13px;
  font-weight: 500;
}

.pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;

}

.circle-orange::before {
  background-color: var(--orange);
}

.circle-red::before {
  background-color: var(--red);
}


.eyebrow {
  font-family: Ubuntu;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.eyebrow.orange {
  color: var(--orange);
}

.lead {
  font-family: Ubuntu;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: 20px;
}

.meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 7px 28px;
  margin: 18px 0 0;
  padding: 0;
  font-size: 13px;
}

.meta div {
  display: flex;
  gap: 4px;
}

.meta dt,
.meta dd {
  margin: 0;
  font-size: 13px;
  font-family: Ubuntu;
  font-weight: 500;
  color: #0A0A0A;
}

.meta dt {
  font-size: 13px;
  font-family: Ubuntu;
  font-weight: 500;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  font-family: Ubuntu;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: 4px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.border-color-orange {
  border-color: var(--orange);
}


.button--primary {
  color: #fff;
}

.hero-art {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 15px 38px rgba(20, 20, 20, .13);
}

.hero-art img {
  display: block;
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
}

.section {
  padding: 54px 0 0;
  background: #fff;
}

.section--soft {
  background: var(--soft);
}


.section--tight {
  padding-top: 26px;
}

.text-stack {
  display: grid;
  gap: 24px;
}

.text-stack p {
  font-family: Ubuntu;
  font-size: 17px;
  line-height: 1.58;
  color: #0A0A0A;
}

.section-img {
  display: block;
  margin: 54px auto 0;
  max-width: 100%;
}

.section-img-button {
  display: block;
  max-width: 100%;
  margin: 54px auto 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.section-img-button .section-img {
  margin: 0 auto;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: block;
  padding: 72px 40px 40px;
  overflow: auto;
  background: rgba(10, 10, 10, .82);
  -webkit-overflow-scrolling: touch;
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox img {
  display: block;
  width: min(2560px, 90vw);
  max-width: none;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .35);
  cursor: grab;
  user-select: none;
  -webkit-user-drag: none;
  touch-action: none;
}

.image-lightbox.is-dragging img {
  cursor: grabbing;
}

.image-lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  background: rgba(0, 0, 0, .25);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.overflow {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.overflow>.standart-table {
  min-width: 920px;
}



.key-findings__inner {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.section-kicker {
  font-family: Ubuntu;
  font-size: 12px;
  line-height: 1.17;
  font-weight: 700;
  letter-spacing: 2px;
}

.section-title {
  font-family: Unbounded;
  font-weight: 500;
  font-style: Medium;
  font-size: 32px;
  color: #0A0A0A;
  line-height: 118%;
  letter-spacing: 0%;

}

.section-padding-54 {
  padding: 54px 0;
}

.research-method {
  background: #fff;
}

.research-method__inner {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.flex-col-24 {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.flex-col-24>* {
  min-width: 0;
}

.research-method__text {
  color: #0a0a0a;
  font-family: Ubuntu;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 158%;
  letter-spacing: 0%;

}

.research-method__list {
  gap: 11px;
}

.key-findings__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
  min-width: 0;
}

.key-findings__col {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
}

.key-finding {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #ECECEC;
}

.key-finding__number {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var();
  color: var(--orange);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
}

.background-number-orange {
  background-color: var(--light-orange);
}

.background-number-red {
  background-color: var(--light-red);
}

.key-finding p {
  font-family: Ubuntu;
  font-weight: 400;
  font-style: Regular;
  font-size: 15px;
  color: #0a0a0a;
  line-height: 1.45;
}

.report-section {
  padding: 54px 0;
}

.report-section--soft {
  background: #fef6f3;
}

.report-section__inner {
  display: grid;
  gap: 24px;
}

.subsection-title {
  color: #242424;
  font-family: Ubuntu, Arial, sans-serif;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
}

.section-copy {
  color: #0a0a0a;
  font-size: 16px;
  line-height: 1.58;
}

.research-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px #ececec;
}

.research-table {
  min-width: 980px;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
}

.research-table th,
.research-table td {
  height: 50px;
  padding: 0 18px;
  border: 0;
  text-align: left;
  vertical-align: middle;
  font-size: 14px;
  line-height: 1.3;
}

.research-table thead th {
  height: 54px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

.research-table tbody tr:nth-child(odd) {
  background: #fff;
}

.research-table tbody tr:nth-child(even) {
  background: #fef6f3;
}

.report-section:not(.report-section--soft) .research-table tbody tr:nth-child(even) {
  background: #f6f7f9;
}

.research-table tbody th {
  color: #0a0a0a;
  font-weight: 500;
}

.research-table tbody td {
  color: #666;
  font-weight: 400;
}

.research-table--pricing th:first-child,
.research-table--pricing td:first-child {
  width: 360px;
}

.research-table--method {
  min-width: 760px;
}

.research-table--method th:first-child,
.research-table--method td:first-child {
  width: 320px;
}

.metod__block {
  display: grid;
  gap: 22px;
  padding: 28px 30px;
  border-radius: 16px;
  background: #F6F7F9;
  border: 1px solid #ECECEC;
}

.metod__top,
.metod__lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.metod__item {
  margin: 0;
}

.metod__item dt,
.metod__list-block span {
  display: block;
  margin: 0 0 4px;
  color: #9a9a9a;
  font-family: Ubuntu, Arial, sans-serif;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.metod__item dd {
  margin: 0;
  color: #0a0a0a;
  font-family: Ubuntu;
  font-weight: 400;
  font-style: Regular;
  font-size: 15px;
  leading-trim: NONE;
  line-height: 145%;
  letter-spacing: 0%;

}

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

.metod__list li {
  position: relative;
  padding-left: 20px;
  color: #0a0a0a;
  font-size: 14px;
  line-height: 1.4;
}

.metod__list li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
  font-weight: 700;
}

.metod__list--included li::before {
  content: "✓";
  color: var(--orange);
}

.gal-orange::before {
  color: var(--orange);
}

.gal-red::before {
  color: var(--red);
}

.metod__list--excluded li::before {
  content: "×";
  color: #9a9a9a;
}

.research-table--app-cost {
  min-width: 1120px;
}

.research-table--app-cost th:nth-child(1),
.research-table--app-cost td:nth-child(1) {
  width: 220px;
}

.research-table--app-cost th:nth-child(2),
.research-table--app-cost td:nth-child(2) {
  width: 420px;
}

.research-table--factors {
  min-width: 1120px;
}

.research-table--factors th:first-child,
.research-table--factors td:first-child {
  width: 300px;
}

.research-table--games {
  min-width: 1180px;
}

.research-table--games th:first-child,
.research-table--games td:first-child {
  width: 210px;
}

.research-table--games th:nth-child(2),
.research-table--games td:nth-child(2) {
  width: 215px;
}

.research-table--game-factors {
  min-width: 980px;
}

.research-table--game-factors th:first-child,
.research-table--game-factors td:first-child {
  width: 240px;
}

.research-table--game-factors th:nth-child(2),
.research-table--game-factors td:nth-child(2) {
  width: 240px;
}

.research-table--telegram-parts {
  min-width: 820px;
}

.research-table--telegram-parts th:first-child,
.research-table--telegram-parts td:first-child {
  width: 300px;
}

.research-table--telegram-cost {
  min-width: 1080px;
}

.research-table--telegram-cost th:first-child,
.research-table--telegram-cost td:first-child {
  width: 280px;
}

.research-table--telegram-cost th:nth-child(2),
.research-table--telegram-cost td:nth-child(2) {
  width: 270px;
}

.method-card {
  display: grid;
  gap: 22px;
  padding: 28px 30px;
  border-radius: 16px;
  background: #f6f7f9;
  box-shadow: inset 0 0 0 1px #ececec;
}

.method-card__top,
.method-card__lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.method-kv {
  display: grid;
  gap: 4px;
}

.method-kv span,
.method-card__lists h3 {
  color: #9a9a9a;
  font-family: Ubuntu, Arial, sans-serif;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .5px;
}

.method-kv p {
  color: #0a0a0a;
  font-size: 15px;
  line-height: 1.45;
}

.check-list,
.cross-list,
.dot-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.cross-list li,
.dot-list li {
  position: relative;
  padding-left: 12px;
  color: #0a0a0a;
  font-family: Ubuntu;
  font-weight: 400;
  font-style: Regular;
  font-size: 15px;
  leading-trim: NONE;
  line-height: 148%;
  letter-spacing: 0%;

}

.check-list li::before,
.cross-list li::before,
.dot-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  color: var(--orange);
}

.cross-list li::before {
  content: "x";
  color: #9a9a9a;
}

.dot-list li::before {
  content: "•";
  font-weight: 400;
}

.callout {
  display: flex;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid #fabfa1;
  border-radius: 10px;
  background: #fef6f3;
}

.callout::before {
  content: "";
  flex: 0 0 3px;
  border-radius: 2px;
  background: var(--orange);
}

.callout p {
  color: #0a0a0a;
  font-size: 15px;
  line-height: 1.55;
}

.poster-section {
  padding: 20px 0 42px;
}

.research-poster {
  min-height: 470px;
  padding: 34px;
  border-radius: 2px;
  background:
    radial-gradient(circle at 82% 12%, rgba(243, 111, 50, .22), transparent 28%),
    linear-gradient(135deg, #0f1218 0%, #12161f 58%, #080a0f 100%);
  color: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
}

.poster-head,
.poster-brand,
.poster-kpis,
.poster-grid {
  display: flex;
}

.poster-head {
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.poster-brand {
  align-items: center;
  gap: 10px;
  color: #fff;
}

.poster-mark {
  width: 24px;
  height: 24px;
  display: inline-block;
  border-radius: 7px 7px 3px 7px;
  background: var(--orange);
  transform: rotate(45deg);
}

.research-poster h2 {
  max-width: 720px;
  margin-top: 26px;
  color: #fff;
}

.research-poster>p {
  margin-top: 10px;
  color: rgba(255, 255, 255, .64);
}

.poster-kpis {
  gap: 12px;
  margin-top: 32px;
}

.poster-kpis div {
  flex: 1;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .045);
}

.poster-kpis strong {
  display: block;
  color: var(--orange);
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 24px;
}

.poster-kpis span,
.poster-table span,
.poster-chart span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-weight: 800;
}

.poster-grid {
  gap: 14px;
  margin-top: 18px;
}

.poster-table,
.poster-chart {
  flex: 1;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .045);
}

.poster-table ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.poster-table li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .84);
  font-size: 12px;
}

.poster-table em {
  color: var(--orange);
  font-style: normal;
  font-weight: 800;
}

.poster-chart div {
  margin-top: 12px;
  color: rgba(255, 255, 255, .86);
  font-size: 12px;
}

.poster-chart div::after {
  content: "";
  display: block;
  width: var(--w);
  height: 9px;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--orange);
}

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

.card {
  min-height: 118px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
}

.card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.mini-stat {
  padding: 18px;
  border: 1px solid #f3d8cc;
  border-radius: 5px;
  background: #fff;
}

.stat-number {
  display: block;
  color: var(--red);
  font-size: 26px;
  font-weight: 800;
}

.mini-stat span:last-child {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.table-block {
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
}

.table-block__title {
  padding: 10px 16px;
  background: var(--orange);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.data-table th,
.data-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #eee8e4;
  text-align: left;
  vertical-align: top;
  font-size: 13px;
}

.data-table th {
  background: #fff5f1;
  font-weight: 800;
}

.data-table tr:nth-child(even) td {
  background: #fffaf8;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 22px;
}

.note-box {
  margin-top: 22px;
  padding: 18px 22px;
  border-left: 4px solid var(--orange);
  border-radius: 5px;
  background: #fff5f1;
  color: #4b403c;
}

.list-box {
  margin-top: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
}

.list-box ul,
.faq-list,
.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-box li,
.plain-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.list-box li+li,
.plain-list li+li {
  margin-top: 8px;
}

.list-box li::before,
.plain-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  left: 0;
  top: .62em;
  border-radius: 50%;
  background: var(--orange);
}

.warning {
  margin-top: 22px;
  padding: 14px 18px;
  border: 1px solid #f1c85f;
  border-radius: 4px;
  background: #fff8df;
  color: #85640d;
  font-weight: 800;
}

.key-data {
  margin-top: 24px;
}

.key-data h2 {
  margin-bottom: 16px;
}

.key-data .warning {
  margin-top: 0;
}

.chart-card {
  margin-top: 24px;
  padding: 26px 32px 32px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.chart-card p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.range-row {
  display: grid;
  grid-template-columns: 230px minmax(280px, 1fr) 90px;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  font-size: 14px;
}

.range-track {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: #ededed;
}

.range-track i {
  position: absolute;
  left: 8%;
  right: 50%;
  top: 0;
  height: 100%;
  border-radius: inherit;
  background: #ffd9c9;
}

.range-track b {
  position: absolute;
  left: 32%;
  top: -8px;
  width: 6px;
  height: 26px;
  border-radius: 999px;
  background: var(--orange);
}

.range-row strong {
  color: var(--orange);
  font-size: 13px;
  white-space: nowrap;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.faq-list li {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
}

.faq-list h3 {
  font-size: 16px;
}

.faq-list p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.quote-card {
  margin-top: 22px;
  padding: 20px 24px;
  border-radius: 5px;
  background: var(--orange);
  color: #fff;
}

.quote-card p {
  font-weight: 800;
}

.site-footer {
  padding: 36px 0;
  background: var(--dark);
  color: #fff;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 4px;
}

.brand-title {
  font-size: 22px;
  font-weight: 800;
}

.site-footer p {
  margin-top: 10px;
  color: rgba(255, 255, 255, .72);
}

.standart-table {
  border: 1px solid #ECECEC;
  border-radius: 14px;
  overflow: hidden;
  min-width: 1000px;
}

.white-bg {
  background-color: #fff;
}

.gray-bg {
  background-color: #F6F7F9;
}

.standart-table th {
  padding: 18px;
  text-align: left;
  font-family: Ubuntu;
  font-weight: 500;
  font-style: Medium;
  font-size: 13px;
  color: #fff;
  line-height: 130%;
  letter-spacing: 0%;
}

.standart-table td {
  padding: 18px;
}

.standart-table td {
  font-family: Ubuntu;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  color: #666666;
  line-height: 130%;
  letter-spacing: 0%;

}

.standart-table tr td:first-child {
  font-family: Ubuntu;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  color: #0A0A0A;
  line-height: 130%;
  letter-spacing: 0%;

}

.standart-table .price-nowrap {
  white-space: nowrap;
}

.method-values-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.method-values-table {
  min-width: 920px;
}

.method-values-table tbody tr:nth-child(odd) {
  background-color: #fff;
}

.bg-pseudo-orange::before {
  background-color: var(--orange);
}

.bg-pseudo-red::before {
  background-color: var(--red);
}

.quote {
  font-family: Ubuntu;
  font-weight: 400;
  font-style: Regular;
  font-size: 15px;
  color: #0A0A0A;
  line-height: 155%;
  letter-spacing: 0%;
  padding: 16px 20px;
  display: flex;
  align-items: stretch;
  gap: 14px;
  border-radius: 10px;
  border: 1px solid transparent;
}

.quote::before {
  content: "";
  width: 3px;
  flex-shrink: 0;
  height: auto;
  display: block;
  border-radius: 5px;
}



.method-values-table th:first-child,
.method-values-table td:first-child {
  width: 280px;
}

.estimate-checklist {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.estimate-checklist li {
  position: relative;
  padding-left: 26px;
  color: #0a0a0a;
  font-family: Ubuntu, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.35;
}

.estimate-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 14px;
  height: 14px;
  border: 1px solid #cfd3d8;
  border-radius: 2px;
  background: #fff;
}

.research-conclusion-list {
  display: grid;
  gap: 12px;
}

.research-conclusion-card {
  display: grid;
  gap: 6px;
  padding: 16px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
}

.research-conclusion-card p {
  font-family: Ubuntu, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
}

.research-conclusion-card span {
  color: #0a0a0a;
  font-family: Ubuntu, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

.final-insight {
  padding: 30px 34px;
  border-radius: 18px;
}

.final-insight__content {
  position: relative;
  display: grid;
  gap: 8px;
  padding-left: 28px;
}

.final-insight__content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  border-radius: 999px;
  background: #fff;
}

.final-insight__content p {
  color: #fff;
  font-family: Ubuntu, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 1.4px;
}

.final-insight__content strong {
  display: block;
  max-width: 1100px;
  color: #fff;
  font-family: Unbounded, Arial, sans-serif;
  font-size: 27px;
  line-height: 1.28;
  font-weight: 500;
}

.data-warning {
  padding: 16px 20px;
  border: 1px solid #d7bd5a;
  border-radius: 6px;
  background: #fff9df;
}

.data-warning span {
  position: relative;
  display: block;
  padding-left: 28px;
  color: #9b6d00;
  font-family: Ubuntu, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.4;
}

.data-warning span::before {
  content: "!";
  position: absolute;
  left: 0;
  top: 1px;
  width: 17px;
  height: 17px;
  border-radius: 3px;
  background: #ffc400;
  color: #0a0a0a;
  font-size: 13px;
  line-height: 17px;
  font-weight: 700;
  text-align: center;
}

.data-card {
  display: grid;
  gap: 22px;
  padding: 28px;
  border: 1px solid #dfe3e8;
  border-radius: 14px;
  background: #fff;
  min-width: 0;
  overflow-x: auto;
}

.data-card h3 {
  font-size: 22px;
}

.range-chart {
  display: grid;
  gap: 0;
}

.range-chart__row {
  display: grid;
  grid-template-columns: 230px minmax(220px, 1fr) 100px;
  gap: 16px;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
}

.range-chart__row span,
.range-chart__row em,
.range-chart__axis span,
.chart-legend span,
.budget-legend span {
  font-family: Ubuntu, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.3;
}

.range-chart__row em {
  color: var(--orange);
  font-style: normal;
  font-weight: 700;
}

.range-chart__track {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: #e6e6e6;
}

.range-chart__track i {
  position: absolute;
  top: 0;
  height: 8px;
  border-radius: 999px;
  background: #ffd5c0;
}

.range-chart__track b {
  position: absolute;
  top: -6px;
  width: 4px;
  height: 20px;
  border-radius: 999px;
  background: var(--orange);
}

.range-chart__axis {
  display: grid;
  grid-template-columns: 230px 1fr 100px;
  gap: 16px;
  padding: 6px 12px 0;
  color: #9a9a9a;
}

.range-chart__axis span:nth-child(2) {
  text-align: center;
}

.range-chart__axis span:nth-child(3) {
  text-align: right;
}

.chart-legend,
.budget-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.chart-legend span,
.budget-legend span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.chart-legend i {
  width: 32px;
  height: 8px;
  border-radius: 999px;
  background: #ffd5c0;
}

.chart-legend b {
  width: 4px;
  height: 18px;
  border-radius: 999px;
  background: var(--orange);
}

.budget-bar {
  display: flex;
  overflow: hidden;
  min-height: 58px;
  border-radius: 8px;
}

.budget-bar span {
  display: block;
}

.budget-legend i {
  width: 14px;
  height: 14px;
  border-radius: 3px;
}

.faq-list {
  display: grid;
  gap: 24px;
}

.text-color-gray {
  color: #9A9A9A;
}

.faq-card {
  display: grid;
  gap: 10px;
  padding: 20px 24px;
  border: 1px solid #dfe3e8;
  border-radius: 12px;
  background: #fff;
}

.faq-card h3 {
  font-family: Ubuntu, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
}

.faq-card p {
  color: #555;
  font-family: Ubuntu, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.55;
}

.research-cta {
  padding: 44px 0;
  background: #252525;
}

.research-cta__inner {
  display: grid;
  gap: 12px;
}

.research-cta__inner p:not(.section-kicker) {
  max-width: 1180px;
  color: #d6d6d6;
  font-family: Ubuntu, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

.research-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.research-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 6px;
  color: #fff;
  font-family: Ubuntu, Arial, sans-serif;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
}

.research-cta__button--primary {
  border-color: var(--orange);
  background: var(--orange);
}

.light-orange-border-color {
  border-color: var(--soft-orange);
}

.standart-table th @media (max-width: 1100px) {
  .container {
    width: min(var(--container), calc(100% - 48px));
  }

  .hero-grid {
    grid-template-columns: 1fr 300px;
    gap: 32px;
  }

  h1 {
    font-size: 34px;
  }

  .cards-grid,
  .mini-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container {
    width: calc(100% - 32px);
  }

  .hero {
    padding: 24px 0 32px;
  }

  .hero-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 23px;
  }

  .key-findings {
    padding: 36px 0;
  }

  .section-title {
    min-height: 0;
    font-size: 23px;
    line-height: 1.22;
  }

  .key-findings__grid {
    grid-template-columns: 1fr;
  }

  .key-finding {
    align-items: flex-start;
    min-height: 0;
    padding: 16px;
  }

  .report-section {
    padding: 36px 0;
  }

  .report-section__inner {
    gap: 20px;
  }

  .subsection-title {
    font-size: 18px;
  }

  .method-card {
    padding: 22px 18px;
  }

  .method-card__top,
  .method-card__lists {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .metod__block {
    padding: 22px 18px;
  }

  .metod__top,
  .metod__lists {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .research-table-wrap {
    border-radius: 10px;
  }

  .lead,
  .text-stack p {
    font-size: 15px;
  }

  .meta,
  .cards-grid,
  .mini-stats {
    grid-template-columns: 1fr;
  }

  .actions,
  .button {
    width: 100%;
  }

  .table-block {
    overflow-x: auto;
  }

  .data-table {
    min-width: 680px;
  }

  .poster-section .container,
  .key-data {
    overflow-x: auto;
  }

  .research-poster,
  .chart-card {
    min-width: 820px;
  }
}

@media (max-width: 1100px) {
  .hero {
    padding: 42px 0;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 32px;
    align-items: center;
  }

  .hero__texts {
    max-width: none;
  }

  h1 {
    font-size: 34px;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .research__img {
    max-width: 520px;
  }

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

  .key-findings__grid {
    gap: 12px;
  }

  .key-findings__col {
    gap: 12px;
  }

  .key-finding {
    gap: 12px;
    padding: 16px 18px;
    border-radius: 12px;
  }

  .key-finding__number {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .key-finding p {
    font-size: 14px;
    line-height: 1.4;
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 28px 0 34px;
  }

  .hero-grid {
    gap: 24px;
  }

  .tagrow {
    gap: 8px;
    margin-bottom: 14px;
  }

  .pill {
    min-height: 22px;
    padding: 6px 12px;
    font-size: 12px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 1px;
  }

  h1 {
    margin-bottom: 14px;
    font-size: 26px;
    line-height: 1.22;
  }

  .lead {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.5;
  }

  .meta {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .meta div {
    flex-wrap: wrap;
    row-gap: 2px;
  }

  .actions {
    gap: 10px;
    margin-top: 20px;
  }

  .button {
    min-height: 44px;
    padding: 12px 18px;
    font-size: 14px;
  }

  .research__img {
    max-width: 100%;
    border-radius: 16px;
  }

  .key-findings__inner,
  .key-findings .flex-col-24 {
    gap: 18px;
  }

  .key-findings__grid {
    gap: 10px;
  }

  .key-findings__col {
    gap: 10px;
  }

  .key-finding {
    gap: 10px;
    padding: 14px;
    border-radius: 10px;
  }

  .key-finding__number {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .key-finding p {
    font-size: 14px;
    line-height: 1.42;
  }
}

@media (max-width: 420px) {
  .tagrow {
    align-items: flex-start;
    flex-direction: column;
  }

  h1 {
    font-size: 24px;
  }

  .meta dt,
  .meta dd {
    font-size: 12px;
  }
}

@media (max-width: 900px) {

  .section-padding-54,
  .section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .flex-col-24 {
    gap: 20px;
  }

  .standart-table th,
  .standart-table td {
    padding: 14px;
  }

  .method-values-table {
    min-width: 820px;
  }

  .data-card {
    padding: 22px;
  }

  .range-chart__row {
    grid-template-columns: 190px minmax(220px, 1fr) 86px;
    gap: 12px;
  }

  .range-chart__axis {
    grid-template-columns: 190px 1fr 86px;
    gap: 12px;
  }

  .final-insight {
    padding: 30px;
  }

  .final-insight__content strong {
    font-size: 22px;
  }
}

@media (max-width: 760px) {

  .section-padding-54,
  .section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .section-kicker {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .overflow {
    margin-right: -16px;
    padding-right: 16px;
  }

  .standart-table th,
  .standart-table td {
    padding: 12px;
    font-size: 13px;
  }

  .image-lightbox {
    padding: 64px 16px 24px;
  }

  .image-lightbox img {
    width: min(2560px, 130vw);
  }

  .method-values-table,
  .overflow>.standart-table {
    min-width: 760px;
  }

  .quote {
    padding: 14px 16px;
    font-size: 14px;
  }

  .data-card {
    gap: 18px;
    padding: 18px;
  }

  .data-card h3 {
    font-size: 18px;
  }

  .range-chart {
    min-width: 720px;
  }

  .budget-bar {
    min-width: 720px;
    min-height: 48px;
  }

  .chart-legend,
  .budget-legend {
    gap: 12px;
  }

  .research-conclusion-card,
  .faq-card {
    padding: 16px;
  }

  .final-insight {
    padding: 22px;
    border-radius: 10px;
  }

  .final-insight__content {
    padding-left: 20px;
  }

  .final-insight__content strong {
    font-size: 18px;
    line-height: 1.35;
  }

  .research-cta {
    padding: 34px 0;
  }

  .research-cta__inner p:not(.section-kicker) {
    font-size: 14px;
  }

  .research-cta__button {
    width: 100%;
    min-height: 44px;
    padding: 0 18px;
  }
}

@media (max-width: 520px) {

  .method-values-table,
  .overflow>.standart-table {
    min-width: 680px;
  }

  .range-chart,
  .budget-bar {
    min-width: 680px;
  }

  .data-warning {
    padding: 14px;
  }

  .data-warning span {
    font-size: 13px;
  }

  .estimate-checklist {
    gap: 12px;
  }

  .estimate-checklist li {
    font-size: 14px;
  }
}