:root {
  --blue: #2563eb;
  --page-bg: #f9f9f9;
  --dark-card: #101728;
  --text: #111111;
  --report-green: #047857;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
}

body {
  margin: 0;
  font-family: 'Roboto', system-ui, -apple-system, Segoe UI, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--page-bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.report-landing-hero {
  width: 100%;
  min-height: auto;
  background: var(--page-bg);
  padding: 24px 20px 24px;
}

.report-landing-hero__container,
.report-landing-benefits__container,
.report-landing-included__container,
.report-landing-read__container,
.report-landing-trust__container,
.report-landing-price__container,
.report-landing-final__container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.report-landing-hero__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}

.report-landing-hero__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
}

.report-landing-hero__logo-icon {
  font-size: 1.9rem;
  color: #2563eb;
  line-height: 1;
}

.report-landing-hero__logo-text {
  font-weight: 700;
  font-size: 1.85rem;
  color: #2563eb;
  letter-spacing: -0.03em;
  line-height: 1;
}

.report-landing-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
  align-items: center;
  gap: 44px;
}

.report-landing-hero__content {
  max-width: 590px;
}

.report-landing-hero__title {
  margin: 0;
  color: var(--text);
  font-size: clamp(38px, 3.5vw, 48px);
  line-height: 1.03;
  letter-spacing: -0.035em;
  font-weight: 700;
}

.report-landing-hero__subtitle,
.report-landing-benefits__subtitle,
.report-landing-included__subtitle,
.report-landing-read__subtitle {
  color: rgba(17, 17, 17, 0.82);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

.report-landing-hero__subtitle {
  max-width: 560px;
  margin: 22px 0 0;
}

.report-landing-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.report-landing-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(16, 23, 40, 0.06);
  box-shadow: 0 8px 18px rgba(16, 23, 40, 0.045);
  color: rgba(17, 17, 17, 0.82);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
}

.report-landing-hero__badge-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(4, 120, 87, 0.1);
  color: var(--report-green);
  flex: 0 0 auto;
}

.report-landing-hero__badge-check::before {
  content: "";
  width: 7px;
  height: 4px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg) translate(1px, -1px);
}

.report-landing-hero__form {
  margin-top: 28px;
  width: 100%;
  max-width: 570px;
  padding: 16px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(16, 23, 40, 0.09);
}

.report-landing-hero__label {
  display: block;
  margin: 0 0 9px;
  color: rgba(17, 17, 17, 0.76);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 600;
}

.report-landing-hero__form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.report-landing-hero__input {
  width: 100%;
  height: 54px;
  border: 1px solid rgba(16, 23, 40, 0.12);
  border-radius: 16px;
  background: #f7f8fb;
  padding: 0 17px;
  color: var(--text);
  font: inherit;
  font-size: 16px;
  outline: none;
}

.report-landing-hero__input::placeholder {
  color: rgba(17, 17, 17, 0.42);
}

.report-landing-hero__input:focus {
  border-color: rgba(37, 99, 235, 0.55);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
  background: #ffffff;
}

.report-landing-hero__button {
  height: 54px;
  border: 0;
  border-radius: 16px;
  background: var(--blue);
  color: #ffffff;
  padding: 0 24px;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.18);
}

.report-landing-hero__button:hover,
.report-landing-price__button:hover,
.report-landing-final__button:hover {
  background: #1d56d8;
}

.report-landing-hero__button:active,
.report-landing-price__button:active,
.report-landing-final__button:active {
  transform: translateY(1px);
}

.report-landing-hero__note {
  margin: 12px 0 0;
  color: rgba(17, 17, 17, 0.82);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 400;
}

.report-landing-hero__demo-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue);
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  text-decoration: none;
}

.report-landing-hero__demo-link:hover,
.report-landing-price__link:hover,
.report-landing-final__link:hover {
  text-decoration: underline;
}

.report-landing-hero__visual {
  position: relative;
  min-width: 0;
  width: 100%;
}

.report-landing-hero__scene-v2 {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  isolation: isolate;
}

.report-landing-hero__analytics-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
}

.report-landing-hero__camera-v2 {
  position: absolute;
  left: -56px;
  bottom: 74px;
  width: 330px;
  opacity: 0.34;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 22px 38px rgba(16, 23, 40, 0.16));
}

.report-landing-hero__camera-v2 svg {
  display: block;
  width: 100%;
  height: auto;
}

.report-landing-hero__camera-v2-shadow {
  fill: rgba(16, 23, 40, 0.08);
}

.report-landing-hero__camera-v2-body {
  fill: #d9e1ee;
  stroke: rgba(16, 23, 40, 0.16);
  stroke-width: 2;
}

.report-landing-hero__camera-v2-top {
  fill: #cfd8e7;
}

.report-landing-hero__camera-v2-lens-outer {
  fill: #f7f8fb;
  stroke: rgba(37, 99, 235, 0.34);
  stroke-width: 9;
}

.report-landing-hero__camera-v2-lens-middle {
  fill: #cbd7ea;
  stroke: rgba(16, 23, 40, 0.16);
  stroke-width: 3;
}

.report-landing-hero__camera-v2-lens-inner {
  fill: #2563eb;
  opacity: 0.76;
}

.report-landing-hero__camera-v2-accent {
  stroke: #2563eb;
  stroke-width: 8;
}

.report-landing-hero__camera-v2-dot {
  fill: rgba(16, 23, 40, 0.16);
}

.report-landing-hero__analytics-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  padding: 22px;
  border-radius: 28px;
  background: var(--dark-card);
  color: #ffffff;
  box-shadow: 0 24px 52px rgba(16, 23, 40, 0.20);
  overflow: hidden;
}

.report-landing-hero__analytics-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 86% 8%, rgba(37, 99, 235, 0.22), transparent 34%),
    radial-gradient(circle at 10% 100%, rgba(4, 120, 87, 0.12), transparent 38%);
  pointer-events: none;
}

.report-landing-hero__analytics-card > * {
  position: relative;
  z-index: 1;
}

.report-landing-hero__analytics-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.report-landing-hero__status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(4, 120, 87, 0.16);
  color: #a7f3d0;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}

.report-landing-hero__status-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #34d399;
  box-shadow: 0 0 0 5px rgba(52, 211, 153, 0.12);
}

.report-landing-hero__mini-brand {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.report-landing-hero__analytics-title {
  max-width: 340px;
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.report-landing-hero__analytics-text {
  max-width: 360px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}

.report-landing-hero__analytics-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 18px;
}

.report-landing-hero__analytics-stats div {
  min-width: 0;
  padding: 13px 11px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.055);
}

.report-landing-hero__analytics-stats strong {
  display: block;
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.report-landing-hero__analytics-stats span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 500;
}

.report-landing-hero__history-preview {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.065);
}

.report-landing-hero__history-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
  padding: 9px 10px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.055);
}

.report-landing-hero__history-row span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 600;
}

.report-landing-hero__history-row strong {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.report-landing-hero__analytics-note {
  margin-top: 13px;
  padding: 11px 13px;
  border-radius: 15px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(117, 162, 255, 0.16);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
}

.report-landing-hero__insights {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  padding-left: 4px;
}

.report-landing-hero__insight {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 9px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(16, 23, 40, 0.08);
  box-shadow: 0 10px 24px rgba(16, 23, 40, 0.10);
  color: #111111;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

.report-landing-hero__insight::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--blue);
}

.report-landing-hero__insight--green::before {
  background: var(--report-green);
}

.report-landing-benefits {
  width: 100%;
  background: var(--page-bg);
  padding: 8px 20px 42px;
}

.report-landing-benefits__head,
.report-landing-read__head {
  max-width: 800px;
  margin-bottom: 26px;
}

.report-landing-benefits__title,
.report-landing-included__title,
.report-landing-read__title,
.report-landing-trust__title,
.report-landing-faq__title {
  margin: 0;
  font-size: clamp(30px, 2.6vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--text);
}

.report-landing-benefits__subtitle {
  max-width: 760px;
  margin: 14px 0 0;
}

.report-landing-benefits__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.report-landing-benefits__card {
  min-width: 0;
  min-height: 190px;
  padding: 20px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(16, 23, 40, 0.06);
}

.report-landing-benefits__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 13px;
  background: rgba(37, 99, 235, 0.09);
  color: var(--blue);
}

.report-landing-benefits__icon svg {
  width: 22px;
  height: 22px;
}

.report-landing-benefits__card-title,
.report-landing-read__card-title,
.report-landing-included__preview-title,
.report-landing-trust__item-title {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--text);
}

.report-landing-benefits__card-title {
  font-size: 20px;
}

.report-landing-benefits__card-text,
.report-landing-read__card-text,
.report-landing-included__preview-text,
.report-landing-trust__item-text {
  color: rgba(17, 17, 17, 0.82);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

.report-landing-benefits__card-text {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.5;
}

.report-landing-included {
  width: 100%;
  background: var(--page-bg);
  padding: 0 20px 42px;
}

.report-landing-included__panel {
  width: 100%;
  padding: 30px 34px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(247, 248, 252, 0.92));
  border: 1px solid rgba(16, 23, 40, 0.055);
  box-shadow: 0 14px 34px rgba(16, 23, 40, 0.04);
}

.report-landing-included__head {
  max-width: 820px;
  margin-bottom: 22px;
}

.report-landing-included__subtitle {
  max-width: 800px;
  margin: 14px 0 0;
}

.report-landing-included__grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: 22px;
  align-items: stretch;
}

.report-landing-included__nav {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.report-landing-included__nav-item {
  position: relative;
  min-width: 0;
  padding: 12px 16px;
  border-radius: 14px;
  color: rgba(17, 17, 17, 0.74);
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.5);
}

.report-landing-included__nav-item--active {
  background: #ffffff;
  color: var(--text);
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(16, 23, 40, 0.075);
}

.report-landing-included__nav-item--active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 4px;
  border-radius: 999px;
  background: var(--blue);
}

.report-landing-included__nav-item--active::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--report-green);
  box-shadow: 0 0 0 5px rgba(4, 120, 87, 0.1);
  transform: translateY(-50%);
}

.report-landing-included__preview {
  position: relative;
  min-width: 0;
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(16, 23, 40, 0.06);
  box-shadow: 0 22px 55px rgba(16, 23, 40, 0.095);
}

.report-landing-included__preview::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--report-green);
  box-shadow: 0 0 0 7px rgba(4, 120, 87, 0.1);
}

.report-landing-included__preview-title {
  padding-right: 34px;
  font-size: 26px;
}

.report-landing-included__preview-text {
  max-width: 620px;
  margin: 14px 0 0;
}

.report-landing-included__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.report-landing-included__stat {
  position: relative;
  min-width: 0;
  padding: 16px;
  border-radius: 16px;
  background: #f7f8fb;
  box-shadow: inset 0 0 0 1px rgba(16, 23, 40, 0.045);
}

.report-landing-included__stat::before {
  content: "";
  display: block;
  width: 18px;
  height: 4px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(4, 120, 87, 0.22);
}

.report-landing-included__stat strong {
  display: block;
  color: var(--dark-card);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.report-landing-included__stat span {
  display: block;
  margin-top: 7px;
  color: rgba(17, 17, 17, 0.66);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 600;
}

.report-landing-included__disclaimer {
  margin: 20px 0 0;
  padding: 13px 15px;
  border-radius: 15px;
  background: rgba(37, 99, 235, 0.08);
  color: rgba(17, 17, 17, 0.78);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 400;
}

.report-landing-price {
  width: 100%;
  background: var(--page-bg);
  padding: 0 20px 44px;
}

.report-landing-price__card {
  display: grid;
  grid-template-columns: minmax(210px, 0.7fr) minmax(320px, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 26px 32px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 8% 20%, rgba(37, 99, 235, 0.08), transparent 34%),
    #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.10);
  box-shadow: 0 18px 42px rgba(16, 23, 40, 0.055);
}

.report-landing-price__badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 9px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.09);
  color: var(--blue);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}

.report-landing-price__label {
  color: var(--text);
  font-size: 23px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.report-landing-price__value {
  margin-top: 8px;
  color: var(--blue);
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 800;
  white-space: nowrap;
}

.report-landing-price__caption {
  margin-top: 6px;
  color: rgba(17, 17, 17, 0.74);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
}

.report-landing-price__points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 16px;
}

.report-landing-price__point {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 8px;
  color: rgba(17, 17, 17, 0.82);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
}

.report-landing-price__check,
.report-landing-final__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(4, 120, 87, 0.10);
  color: var(--report-green);
}

.report-landing-price__check::before,
.report-landing-final__check::before {
  content: "";
  width: 8px;
  height: 5px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg) translate(1px, -1px);
}

.report-landing-price__actions {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.report-landing-price__button,
.report-landing-final__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border: 0;
  border-radius: 16px;
  background: #2563eb;
  color: #ffffff;
  padding: 0 22px;
  font: inherit;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.18);
}

.report-landing-price__link,
.report-landing-final__link {
  color: var(--blue);
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.report-landing-read {
  width: 100%;
  background: var(--page-bg);
  padding: 0 20px 44px;
}

.report-landing-read__head {
  margin-bottom: 22px;
}

.report-landing-read__subtitle {
  max-width: 800px;
  margin: 14px 0 0;
}

.report-landing-read__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.report-landing-read__card {
  position: relative;
  min-width: 0;
  min-height: 180px;
  padding: 18px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(16, 23, 40, 0.05);
  box-shadow: 0 10px 24px rgba(16, 23, 40, 0.04);
  overflow: hidden;
}

.report-landing-read__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.18);
}

.report-landing-read__accent {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 16px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.09);
  color: var(--blue);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
}

.report-landing-read__accent::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 999px;
  background: currentColor;
}

.report-landing-read__accent--green {
  background: rgba(4, 120, 87, 0.09);
  color: var(--report-green);
}

.report-landing-read__card-title {
  font-size: 19px;
}

.report-landing-read__card-text {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.5;
}

.report-landing-trust {
  width: 100%;
  background: var(--page-bg);
  padding: 0 20px 42px;
}

.report-landing-trust__panel {
  padding: 30px 32px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(16, 23, 40, 0.06);
  box-shadow: 0 12px 30px rgba(16, 23, 40, 0.04);
}

.report-landing-trust__head {
  max-width: 760px;
  margin-bottom: 24px;
}

.report-landing-trust__title {
  font-size: clamp(30px, 2.6vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 700;
}

.report-landing-trust__subtitle {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(17, 17, 17, 0.82);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

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

.report-landing-trust__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 10px;
  min-width: 0;
  padding: 16px;
  border-radius: 16px;
  background: #f7f8fb;
  border: 1px solid rgba(16, 23, 40, 0.06);
}

.report-landing-trust__marker {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  margin-top: 0;
  padding: 8px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}

.report-landing-trust__marker svg {
  width: 22px;
  height: 22px;
  min-width: 22px;
  color: #2563eb;
  stroke: #2563eb;
}

.report-landing-trust__item-title {
  grid-column: 2;
  color: var(--text);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 700;
}

.report-landing-trust__item-text {
  grid-column: 2;
  margin: 7px 0 0;
  color: rgba(17, 17, 17, 0.82);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
}

.report-landing-trust__item--positive {
  grid-column: 1 / -1;
  background: rgba(4, 120, 87, 0.06);
  border: 1px solid rgba(4, 120, 87, 0.14);
}

.report-landing-trust__item--positive .report-landing-trust__marker {
  min-width: 40px;
  height: 40px;
  background: rgba(4, 120, 87, 0.10);
  color: #047857;
}

.report-landing-trust__item--positive .report-landing-trust__marker svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
  color: #047857;
  stroke: #047857;
}

.report-landing-final {
  width: 100%;
  background: var(--page-bg);
  padding: 0 20px 38px;
}

.report-landing-final__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.42fr) auto;
  align-items: center;
  gap: 22px;
  padding: 22px 26px;
  border-radius: 22px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(37, 99, 235, 0.09);
  box-shadow: 0 12px 28px rgba(16, 23, 40, 0.045);
}

.report-landing-final__content {
  min-width: 0;
}

.report-landing-final__title {
  max-width: 560px;
  margin: 0;
  color: var(--text);
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 700;
}

.report-landing-final__price {
  color: var(--blue);
  white-space: nowrap;
}

.report-landing-final__subtitle {
  max-width: 560px;
  margin: 10px 0 0;
  color: rgba(17, 17, 17, 0.82);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
}

.report-landing-final__points {
  display: grid;
  gap: 9px;
  min-width: 0;
}

.report-landing-final__point {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  color: rgba(17, 17, 17, 0.82);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
}

.report-landing-final__actions {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.report-landing-faq {
  width: 100%;
  background: var(--page-bg);
  padding: 0 20px 28px;
}

.report-landing-faq__container {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.report-landing-faq__title {
  margin: 0 0 16px;
  text-align: center;
}

.report-landing-faq__list {
  display: grid;
  gap: 8px;
}

.report-landing-faq__item {
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(16, 23, 40, 0.06);
  box-shadow: 0 8px 20px rgba(16, 23, 40, 0.035);
  overflow: hidden;
}

.report-landing-faq__question {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 14px 18px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.015em;
  cursor: pointer;
  list-style: none;
}

.report-landing-faq__question::-webkit-details-marker {
  display: none;
}

.report-landing-faq__question::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue);
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
}

.report-landing-faq__item[open] .report-landing-faq__question::after {
  content: "−";
}

.report-landing-faq__answer {
  padding: 0 20px 18px;
}

.report-landing-faq__answer p {
  margin: 0;
  max-width: 820px;
  color: rgba(17, 17, 17, 0.82);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
}







@media (max-width: 1020px) {
  .report-landing-price__card {
    grid-template-columns: minmax(210px, 0.8fr) minmax(280px, 1fr);
  }

  .report-landing-price__actions {
    grid-column: 1 / -1;
    grid-template-columns: auto auto;
    justify-content: start;
    align-items: center;
  }

  .report-landing-final__card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .report-landing-final__points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .report-landing-final__actions {
    grid-template-columns: auto auto;
    justify-content: start;
    align-items: center;
  }
}

@media (max-width: 920px) {
  .report-landing-hero {
    min-height: auto;
    padding: 22px 16px 44px;
  }

  .report-landing-hero__top {
    margin-bottom: 38px;
  }

  .report-landing-hero__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .report-landing-hero__content {
    max-width: none;
  }

  .report-landing-hero__subtitle {
    max-width: 680px;
  }

  .report-landing-hero__scene-v2 {
    max-width: 620px;
    margin: 0 auto;
  }

  .report-landing-benefits {
    padding: 18px 16px 50px;
  }

  .report-landing-benefits__cards {
    grid-template-columns: 1fr;
  }

  .report-landing-benefits__card {
    min-height: auto;
  }

  .report-landing-included {
    padding: 0 16px 42px;
  }

  .report-landing-included__panel {
    padding: 30px;
    border-radius: 30px;
  }

  .report-landing-included__grid {
    grid-template-columns: 1fr;
  }

  .report-landing-price {
    padding: 0 16px 44px;
  }

  .report-landing-price__card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px 28px;
  }

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

  .report-landing-price__actions {
    grid-column: auto;
    grid-template-columns: auto auto;
    justify-content: start;
  }

  .report-landing-read {
    padding: 0 16px 54px;
  }

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

  .report-landing-trust {
    padding: 0 16px 54px;
  }

  .report-landing-trust__panel {
    padding: 32px 28px;
    border-radius: 26px;
  }

  .report-landing-trust__list {
    grid-template-columns: 1fr;
  }

  .report-landing-trust__item--positive {
    grid-column: auto;
  }

  .report-landing-final {
    padding: 0 16px 48px;
  }

  .report-landing-faq {
    padding: 0 16px 40px;
  }
}

@media (max-width: 620px) {
  .report-landing-hero {
    padding: 14px 14px 24px;
  }

  .report-landing-hero__top {
    margin-bottom: 20px;
  }

  .report-landing-hero__logo {
    gap: 7px;
  }

  .report-landing-hero__logo-icon {
    font-size: 1.65rem;
  }

  .report-landing-hero__logo-text {
    font-size: 1.65rem;
    letter-spacing: -0.035em;
  }

  .report-landing-hero__title {
    font-size: clamp(29px, 7.4vw, 35px);
    line-height: 1.03;
    letter-spacing: -0.035em;
  }

  .report-landing-hero__subtitle,
  .report-landing-benefits__subtitle,
  .report-landing-included__subtitle,
  .report-landing-read__subtitle {
    font-size: 15px;
    line-height: 1.48;
  }

  .report-landing-hero__subtitle {
    margin-top: 14px;
  }

  .report-landing-hero__badges {
    margin-top: 15px;
    gap: 7px;
  }

  .report-landing-hero__badge {
    min-height: 30px;
    padding: 6px 10px;
    font-size: 12px;
    box-shadow: 0 6px 14px rgba(16, 23, 40, 0.04);
  }

  .report-landing-hero__form {
    margin-top: 20px;
    padding: 14px;
    border-radius: 20px;
    box-shadow: 0 14px 34px rgba(16, 23, 40, 0.07);
  }

  .report-landing-hero__label {
    margin-bottom: 8px;
    font-size: 12px;
  }

  .report-landing-hero__form-row {
    grid-template-columns: 1fr;
  }

  .report-landing-hero__input,
  .report-landing-hero__button {
    height: 50px;
  }

  .report-landing-hero__button {
    width: 100%;
  }

  .report-landing-hero__note {
    margin-top: 10px;
    font-size: 12.5px;
    line-height: 1.42;
  }

  .report-landing-hero__demo-link {
    margin-top: 10px;
    font-size: 13.5px;
  }

  .report-landing-hero__visual {
    margin-top: 18px;
    padding-bottom: 0;
  }

  .report-landing-hero__scene-v2 {
    min-height: auto;
    display: block;
    max-width: none;
    margin: 0;
  }

  .report-landing-hero__analytics-wrap {
    max-width: 100%;
  }

  .report-landing-hero__camera-v2 {
    display: none !important;
  }

  .report-landing-hero__analytics-card {
    max-width: 100%;
    padding: 18px;
    border-radius: 22px;
    box-shadow: 0 18px 38px rgba(16, 23, 40, 0.18);
  }

  .report-landing-hero__analytics-top {
    margin-bottom: 13px;
  }

  .report-landing-hero__analytics-title {
    font-size: 21px;
    line-height: 1.12;
  }

  .report-landing-hero__analytics-text {
    margin-top: 9px;
    font-size: 13.5px;
    line-height: 1.45;
  }

  .report-landing-hero__analytics-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-top: 15px;
  }

  .report-landing-hero__analytics-stats div {
    display: block;
    padding: 11px 8px;
    border-radius: 15px;
  }

  .report-landing-hero__analytics-stats strong {
    font-size: 21px;
  }

  .report-landing-hero__analytics-stats span {
    margin-top: 5px;
    font-size: 10px;
    line-height: 1.18;
  }

  .report-landing-hero__history-preview {
    margin-top: 13px;
    padding: 11px;
    gap: 7px;
    border-radius: 17px;
  }

  .report-landing-hero__history-row {
    padding: 8px 9px;
    border-radius: 12px;
  }

  .report-landing-hero__history-row span {
    font-size: 12px;
  }

  .report-landing-hero__history-row strong {
    font-size: 14px;
  }

  .report-landing-hero__analytics-note {
    margin-top: 12px;
    padding: 10px 12px;
  }

  .report-landing-hero__insights {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    margin-top: 12px;
    padding-left: 0;
  }

  .report-landing-hero__insight {
    width: 100%;
    justify-content: flex-start;
    min-height: 32px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12.5px;
    box-shadow: none;
    border: 1px solid rgba(16, 23, 40, 0.06);
    background: #ffffff;
  }

  .report-landing-benefits {
    padding: 18px 14px 30px;
  }

  .report-landing-benefits__head {
    margin-bottom: 18px;
  }

  .report-landing-benefits__title,
  .report-landing-included__title,
  .report-landing-read__title,
  .report-landing-trust__title,
  .report-landing-faq__title {
    font-size: 26px;
    line-height: 1.12;
    letter-spacing: -0.025em;
  }

  .report-landing-benefits__subtitle {
    margin-top: 12px;
  }

  .report-landing-benefits__cards {
    gap: 12px;
  }

  .report-landing-benefits__card {
    padding: 18px;
    border-radius: 18px;
  }

  .report-landing-benefits__icon {
    width: 34px;
    height: 34px;
    margin-bottom: 14px;
    border-radius: 12px;
  }

  .report-landing-benefits__icon svg {
    width: 19px;
    height: 19px;
  }

  .report-landing-benefits__card-title {
    font-size: 19px;
  }

  .report-landing-benefits__card-text {
    margin-top: 10px;
    font-size: 14.5px;
    line-height: 1.48;
  }

  .report-landing-read__card-text,
  .report-landing-included__preview-text {
    font-size: 14.5px;
    line-height: 1.48;
  }

  .report-landing-included {
    padding: 0 14px 26px;
  }

  .report-landing-included__panel {
    padding: 20px 15px;
    border-radius: 22px;
    background: #fcfcfd;
    border: 1px solid rgba(16, 23, 40, 0.06);
    box-shadow: 0 10px 30px rgba(16, 23, 40, 0.04);
  }

  .report-landing-included__head {
    margin-bottom: 18px;
  }

  .report-landing-included__subtitle {
    margin-top: 12px;
  }

  .report-landing-included__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .report-landing-included__nav {
    display: flex;
    overflow-x: auto;
    gap: 7px;
    padding: 0 0 5px;
    border-radius: 0;
    background: transparent;
    border: 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .report-landing-included__nav::-webkit-scrollbar {
    display: none;
  }

  .report-landing-included__nav-item {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 9px 12px;
    margin-bottom: 0;
    border-radius: 999px;
    font-size: 12.5px;
    line-height: 1.2;
    font-weight: 700;
    color: rgba(17, 17, 17, 0.62);
    background: #ffffff;
    border: 1px solid rgba(16, 23, 40, 0.06);
  }

  .report-landing-included__nav-item--active {
    padding: 9px 28px 9px 12px;
    background: #ffffff;
    color: var(--text);
    font-weight: 800;
    box-shadow: 0 6px 18px rgba(16, 23, 40, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.08);
  }

  .report-landing-included__nav-item--active::before {
    display: none;
  }

  .report-landing-included__nav-item--active::after {
    right: 12px;
    width: 7px;
    height: 7px;
    background: var(--report-green);
    box-shadow: 0 0 0 4px rgba(4, 120, 87, 0.1);
  }

  .report-landing-included__preview {
    padding: 17px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(16, 23, 40, 0.06);
    box-shadow: 0 12px 28px rgba(16, 23, 40, 0.05);
  }

  .report-landing-included__preview::before {
    top: 18px;
    right: 18px;
    width: 10px;
    height: 10px;
    box-shadow: 0 0 0 6px rgba(4, 120, 87, 0.1);
  }

  .report-landing-included__preview-title {
    padding-right: 28px;
    font-size: 21px;
    line-height: 1.15;
  }

  .report-landing-included__preview-text {
    margin-top: 10px;
  }

  .report-landing-included__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
  }

  .report-landing-included__stat {
    padding: 11px;
    border-radius: 15px;
    background: #f7f8fc;
    border: 1px solid rgba(16, 23, 40, 0.05);
    box-shadow: none;
  }

  .report-landing-included__stat::before {
    width: 16px;
    height: 3px;
    margin-bottom: 10px;
    background: rgba(4, 120, 87, 0.24);
  }

  .report-landing-included__stat strong {
    font-size: 20px;
  }

  .report-landing-included__stat span {
    font-size: 11.5px;
    line-height: 1.25;
    font-weight: 500;
  }

  .report-landing-included__disclaimer {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #f3f6ff;
    border: 1px solid rgba(37, 99, 235, 0.08);
    font-size: 13px;
    line-height: 1.45;
  }

  .report-landing-included__disclaimer::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 8px;
    border-radius: 999px;
    background: var(--report-green);
    vertical-align: 1px;
  }

  .report-landing-price {
    padding: 0 14px 28px;
  }

  .report-landing-price__card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 18px;
    border-radius: 21px;
  }

  .report-landing-price__label {
    font-size: 21px;
  }

  .report-landing-price__value {
    font-size: 46px;
  }

  .report-landing-price__points {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .report-landing-price__point {
    font-size: 14px;
    line-height: 1.45;
  }

  .report-landing-price__actions {
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 10px;
  }

  .report-landing-price__button {
    width: 100%;
    height: 50px;
  }

  .report-landing-price__link {
    justify-self: center;
  }

  .report-landing-read {
    padding: 0 14px 34px;
  }

  .report-landing-read__head {
    margin-bottom: 18px;
  }

  .report-landing-read__subtitle {
    margin-top: 12px;
  }

  .report-landing-read__cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .report-landing-read__card {
    min-height: auto;
    padding: 17px;
    border-radius: 19px;
  }

  .report-landing-read__accent {
    min-height: 30px;
    margin-bottom: 13px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .report-landing-read__card-title {
    font-size: 19px;
  }

  .report-landing-read__card-text {
    margin-top: 10px;
    font-size: 14.5px;
    line-height: 1.48;
  }

  .report-landing-trust {
    padding: 0 14px 34px;
  }

  .report-landing-trust__panel {
    padding: 22px 16px;
    border-radius: 21px;
  }

  .report-landing-trust__head {
    max-width: none;
    margin-bottom: 18px;
  }

  .report-landing-trust__subtitle {
    max-width: none;
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.55;
  }

  .report-landing-trust__list {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .report-landing-trust__item {
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 10px;
    padding: 15px;
    border-radius: 17px;
  }

  .report-landing-trust__marker {
    min-width: 36px;
    height: 36px;
    padding: 8px;
    border-radius: 999px;
  }

  .report-landing-trust__marker svg {
    width: 22px;
    height: 22px;
    min-width: 22px;
  }

  .report-landing-trust__item--positive .report-landing-trust__marker {
    min-width: 40px;
    height: 40px;
  }

  .report-landing-trust__item--positive .report-landing-trust__marker svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
  }

  .report-landing-trust__item-title {
    font-size: 15.5px;
    line-height: 1.25;
  }

  .report-landing-trust__item-text {
    margin-top: 6px;
    font-size: 13.8px;
    line-height: 1.45;
  }

  .report-landing-final {
    padding: 0 14px 34px;
  }

  .report-landing-final__card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
    border-radius: 21px;
  }

  .report-landing-final__title {
    font-size: 23px;
    line-height: 1.15;
  }

  .report-landing-final__subtitle {
    margin-top: 10px;
    font-size: 14.5px;
    line-height: 1.5;
  }

  .report-landing-final__points {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .report-landing-final__point {
    font-size: 14px;
  }

  .report-landing-final__actions {
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 10px;
  }

  .report-landing-final__button {
    width: 100%;
    height: 50px;
  }

  .report-landing-final__link {
    justify-self: center;
  }

  .report-landing-faq {
    padding: 0 14px 30px;
  }

  .report-landing-faq__title {
    margin-bottom: 16px;
    text-align: left;
  }

  .report-landing-faq__list {
    gap: 9px;
  }

  .report-landing-faq__item {
    border-radius: 18px;
  }

  .report-landing-faq__question {
    gap: 12px;
    padding: 15px;
    font-size: 14.5px;
    line-height: 1.35;
  }

  .report-landing-faq__question::after {
    width: 25px;
    height: 25px;
    font-size: 18px;
  }

  .report-landing-faq__answer {
    padding: 0 16px 16px;
  }

  .report-landing-faq__answer p {
    font-size: 14px;
    line-height: 1.55;
  }

  

  

  

}

/* Финальная правка мобильной версии */
@media (max-width: 620px) {

  /* 1. HERO — сделать компактнее и собраннее */
  .report-landing-hero {
    padding: 12px 14px 14px;
  }

  .report-landing-hero__top {
    margin-bottom: 16px;
  }

  .report-landing-hero__logo-icon {
    font-size: 1.55rem;
  }

  .report-landing-hero__logo-text {
    font-size: 1.55rem;
  }

  .report-landing-hero__title {
    font-size: clamp(27px, 7vw, 32px);
    line-height: 1.04;
    letter-spacing: -0.03em;
  }

  .report-landing-hero__subtitle {
    margin-top: 12px;
    font-size: 14.5px;
    line-height: 1.45;
  }

  .report-landing-hero__badges {
    margin-top: 14px;
    gap: 6px;
  }

  .report-landing-hero__badge {
    min-height: 29px;
    padding: 6px 9px;
    font-size: 12px;
  }

  .report-landing-hero__form {
    margin-top: 18px;
    padding: 14px;
    border-radius: 19px;
  }

  .report-landing-hero__input,
  .report-landing-hero__button {
    height: 48px;
  }

  /* 2. Убрать лишний воздух между формой и тёмной карточкой */
  .report-landing-hero__visual {
    margin-top: 10px;
    padding-bottom: 0;
  }

  .report-landing-hero__scene-v2 {
    margin-top: 0;
  }

  .report-landing-hero__analytics-card {
    padding: 16px;
    border-radius: 20px;
  }

  .report-landing-hero__analytics-title {
    font-size: 20px;
    line-height: 1.12;
  }

  .report-landing-hero__analytics-text {
    font-size: 13px;
    line-height: 1.45;
  }

  .report-landing-hero__analytics-stats {
    margin-top: 14px;
    gap: 7px;
  }

  .report-landing-hero__analytics-stats div {
    padding: 10px 8px;
    border-radius: 14px;
  }

  .report-landing-hero__analytics-stats strong {
    font-size: 20px;
  }

  .report-landing-hero__history-preview {
    margin-top: 12px;
    padding: 10px;
  }

  .report-landing-hero__analytics-note {
    margin-top: 10px;
    font-size: 12px;
  }

  .report-landing-hero__insights {
    margin-top: 9px;
    gap: 6px;
  }

  .report-landing-hero__insight {
    min-height: 29px;
    padding: 7px 11px;
    font-size: 12px;
  }

  /* 3. Блок "Чем полезен" — сделать менее высоким */
  .report-landing-benefits {
    padding: 10px 14px 24px;
  }

  .report-landing-benefits__head {
    margin-bottom: 14px;
  }

  .report-landing-benefits__cards {
    gap: 10px;
  }

  .report-landing-benefits__card {
    display: grid;
    grid-template-columns: 34px 1fr;
    column-gap: 12px;
    row-gap: 8px;
    align-items: start;
    min-height: 0;
    padding: 16px;
    border-radius: 18px;
  }

  .report-landing-benefits__icon {
    grid-column: 1;
    grid-row: 1;
    width: 32px;
    height: 32px;
    margin-bottom: 0;
    border-radius: 11px;
  }

  .report-landing-benefits__icon svg {
    width: 18px;
    height: 18px;
  }

  .report-landing-benefits__card-title {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    font-size: 18px;
    line-height: 1.16;
  }

  .report-landing-benefits__card-text {
    grid-column: 1 / -1;
    margin-top: 0;
    font-size: 14.2px;
    line-height: 1.45;
  }

  /* 4. "Что входит" — чуть уплотнить */
  .report-landing-included {
    padding: 0 14px 22px;
  }

  .report-landing-included__panel {
    padding: 18px 14px;
    border-radius: 20px;
  }

  .report-landing-included__head {
    margin-bottom: 14px;
  }

  .report-landing-included__title {
    font-size: 25px;
  }

  .report-landing-included__preview {
    padding: 16px;
    border-radius: 19px;
  }

  .report-landing-included__stats {
    margin-top: 12px;
    gap: 8px;
  }

  .report-landing-included__stat {
    padding: 10px;
  }

  .report-landing-included__disclaimer {
    margin-top: 12px;
  }

  /* 5. Цена / CTA — оставить, только чуть компактнее */
  .report-landing-price {
    padding: 0 14px 24px;
  }

  .report-landing-price__card {
    padding: 18px 16px;
    border-radius: 20px;
  }

  /* 6. "Как читать отчёт" — уменьшить простыню */
  .report-landing-read {
    padding: 0 14px 26px;
  }

  .report-landing-read__head {
    margin-bottom: 14px;
  }

  .report-landing-read__cards {
    gap: 10px;
  }

  .report-landing-read__card {
    padding: 16px;
    border-radius: 18px;
  }

  .report-landing-read__accent {
    min-height: 28px;
    margin-bottom: 12px;
    padding: 7px 10px;
  }

  /* 7. Блок доверия — уплотнить */
  .report-landing-trust {
    padding: 0 14px 26px;
  }

  .report-landing-trust__panel {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .report-landing-trust__list {
    gap: 8px;
  }

  .report-landing-trust__item {
    padding: 14px;
  }

  /* 8. Нижний CTA и FAQ */
  .report-landing-final {
    padding: 0 14px 26px;
  }

  .report-landing-final__card {
    padding: 18px 16px;
    border-radius: 20px;
  }

  .report-landing-faq {
    padding: 0 14px 24px;
  }

  .report-landing-faq__title {
    margin-bottom: 12px;
  }

  .report-landing-faq__list {
    gap: 8px;
  }

  .report-landing-faq__question {
    padding: 14px 15px;
  }

  
}
/* Report checkout email field */
.report-landing-check-result__email {
  display: grid;
  gap: 7px;
  margin-top: 14px;
}

.report-landing-check-result__email-label {
  color: rgba(17, 17, 17, 0.76);
  font-size: 12.5px;
  line-height: 1.2;
  font-weight: 700;
}

.report-landing-check-result__email-input {
  width: 100%;
  height: 44px;
  border: 1px solid rgba(16, 23, 40, 0.12);
  border-radius: 14px;
  background: #f7f8fb;
  padding: 0 14px;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  outline: none;
}

.report-landing-check-result__email-input:focus {
  border-color: rgba(37, 99, 235, 0.55);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
  background: #ffffff;
}

.report-landing-check-result__email-input--error {
  border-color: rgba(220, 38, 38, 0.7);
  background: #fffafa;
}

.report-landing-check-result__email-error {
  color: #b91c1c;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
}

.report-landing-check-result__button:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}






@media (max-width: 620px) {
  

  

  

  

  
}

/* Check result: restored styled card */
.report-landing-check-result {
  width: 100%;
  max-width: 570px;
  margin-top: 14px;
  padding: 16px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(16, 23, 40, 0.06);
  box-shadow: 0 14px 34px rgba(16, 23, 40, 0.06);
}

.report-landing-check-result[hidden] {
  display: none !important;
}

.report-landing-check-result--visible {
  display: block;
}

.report-landing-check-result--found {
  border-color: rgba(4, 120, 87, 0.14);
}

.report-landing-check-result--not-found {
  border-color: rgba(37, 99, 235, 0.12);
}

.report-landing-check-result--error {
  border-color: rgba(220, 38, 38, 0.16);
}

.report-landing-check-result__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(4, 120, 87, 0.10);
  color: var(--report-green);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
}

.report-landing-check-result__badge--blue,
.report-landing-check-result__badge--not-found {
  background: rgba(37, 99, 235, 0.09);
  color: var(--blue);
}

.report-landing-check-result__title {
  margin: 12px 0 0;
  color: var(--text);
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.report-landing-check-result__text {
  margin: 10px 0 0;
  color: rgba(17, 17, 17, 0.78);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}

.report-landing-check-result__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.report-landing-check-result--not-found .report-landing-check-result__facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.report-landing-check-result__fact {
  min-width: 0;
  padding: 10px 11px;
  border-radius: 14px;
  background: #f7f8fb;
  border: 1px solid rgba(16, 23, 40, 0.05);
  color: rgba(17, 17, 17, 0.82);
  font-size: 12.5px;
  line-height: 1.25;
  font-weight: 700;
}

.report-landing-check-result__fact--muted {
  color: rgba(17, 17, 17, 0.72);
}

.report-landing-check-result__email {
  display: grid;
  gap: 7px;
  margin-top: 14px;
}

.report-landing-check-result__email-label {
  color: rgba(17, 17, 17, 0.76);
  font-size: 12.5px;
  line-height: 1.2;
  font-weight: 700;
}

.report-landing-check-result__email-input {
  width: 100%;
  height: 44px;
  border: 1px solid rgba(16, 23, 40, 0.12);
  border-radius: 14px;
  background: #f7f8fb;
  padding: 0 14px;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  outline: none;
}

.report-landing-check-result__email-input:focus {
  border-color: rgba(37, 99, 235, 0.55);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
  background: #ffffff;
}

.report-landing-check-result__email-input--error {
  border-color: rgba(220, 38, 38, 0.7);
  background: #fffafa;
}

.report-landing-check-result__email-error {
  color: #b91c1c;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
}

.report-landing-check-result__terms {
  margin-top: 12px;
}

.report-landing-check-result__terms + .report-landing-check-result__terms {
  margin-top: 9px;
}

.report-landing-check-result__terms-label {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: rgba(17, 17, 17, 0.76);
  font-size: 12.5px;
  line-height: 1.45;
  font-weight: 500;
  cursor: pointer;
}

.report-landing-check-result__terms-checkbox {
  appearance: none;
  -webkit-appearance: none;
  display: inline-grid;
  place-content: center;
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  border: 1.5px solid rgba(16, 23, 40, 0.18);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: background-color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.report-landing-check-result__terms-checkbox::before {
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg) translate(1px, -1px) scale(0);
  transform-origin: center;
  transition: transform 0.14s ease;
}

.report-landing-check-result__terms-checkbox:checked {
  border-color: #2563eb;
  background: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.report-landing-check-result__terms-checkbox:checked::before {
  transform: rotate(-45deg) translate(1px, -1px) scale(1);
}

.report-landing-check-result__terms-checkbox:focus-visible {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14);
}

.report-landing-check-result__terms a {
  color: #2563eb;
  font-weight: 700;
  text-decoration: none;
}

.report-landing-check-result__terms a:hover {
  text-decoration: underline;
}

.report-landing-check-result__terms-error {
  margin-top: 6px;
  color: #b91c1c;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
}

.report-landing-check-result__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 14px;
}

.report-landing-check-result__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 15px;
  background: var(--blue);
  color: #ffffff;
  padding: 0 18px;
  font: inherit;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.16);
}

.report-landing-check-result__button:hover {
  background: #1d56d8;
}

.report-landing-check-result__button--secondary {
  background: #ffffff;
  color: var(--blue);
  border: 1px solid rgba(37, 99, 235, 0.18);
  box-shadow: none;
}

.report-landing-check-result__button--secondary:hover {
  background: rgba(37, 99, 235, 0.06);
}

.report-landing-check-result__button:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.report-landing-check-result__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  color: var(--blue);
  font-size: 14px;
  line-height: 1.3;
  font-weight: 800;
  text-decoration: none;
}

.report-landing-check-result__link:hover {
  text-decoration: underline;
}

.report-landing-check-result__note {
  margin: 12px 0 0;
  color: rgba(17, 17, 17, 0.66);
  font-size: 12.5px;
  line-height: 1.4;
  font-weight: 500;
}

/* Legal footer */
.report-landing-footer {
  width: 100%;
  margin-top: 0;
  padding: 28px 20px 30px;
  background: #101728;
  color: rgba(255, 255, 255, 0.76);
}

.report-landing-footer__container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.report-landing-footer__text {
  max-width: 980px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 400;
}

.report-landing-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 18px;
}

.report-landing-footer__link {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
  text-decoration: none;
}

.report-landing-footer__link:hover {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 620px) {
  .report-landing-check-result {
    width: 100%;
    max-width: none;
    padding: 15px;
    border-radius: 20px;
  }

  .report-landing-check-result__facts,
  .report-landing-check-result--not-found .report-landing-check-result__facts {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .report-landing-check-result__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .report-landing-check-result__button,
  .report-landing-check-result__link {
    width: 100%;
  }

  .report-landing-footer {
    padding: 22px 16px 26px;
  }

  .report-landing-footer__text {
    font-size: 12.5px;
    line-height: 1.55;
  }

  .report-landing-footer__links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 16px;
  }

  .report-landing-footer__link {
    font-size: 13px;
  }
}
