/* БАЗОВЫЕ ПЕРЕМЕННЫЕ И СБРОС */
:root {
  --white: #FFFFFF;
  --light: #F4F7FB;
  --navy: #0B2447;
  --blue: #19376D;
  --amber: #E8A33D;
  --amber-hover: #D18F2A;
  --text: #17263A;
  --muted: #5B6B7F;
  --line: #E3E9F2;
  --header-height: 72px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 20px 55px rgba(11, 36, 71, .08);
  --shadow-hover: 0 24px 55px rgba(11, 36, 71, .13);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  color: inherit;
  font: inherit;
}

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

button {
  border: 0;
}

h1,
h2,
h3,
p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  overflow-wrap: break-word;
  font-family: "Manrope", Arial, sans-serif;
  hyphens: auto;
  line-height: 1.13;
  letter-spacing: -.035em;
}

h1,
h2 {
  text-wrap: balance;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 32px), 1240px);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 64px 0;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

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

.section-navy {
  color: var(--white);
  background: var(--navy);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--navy);
  background: var(--white);
  border: 2px solid var(--amber);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

/* ОБЩИЕ ЭЛЕМЕНТЫ */
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.button:active {
  transform: translateY(1px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: .7;
  transform: none;
}

.button svg,
.text-link svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-primary {
  color: var(--navy);
  background: var(--amber);
  box-shadow: 0 12px 30px rgba(232, 163, 61, .2);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .04);
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, .35);
  background: transparent;
}

.button-small {
  min-height: 43px;
  padding: 10px 16px;
  font-size: 14px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--blue);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--amber);
}

.eyebrow-light {
  color: var(--white);
}

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 38px;
}

.section-heading > div {
  max-width: 880px;
}

.section-heading > :only-child {
  grid-column: 1 / -1;
}

.section-heading h2,
.result-copy h2,
.faq-intro h2,
.request-copy h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(1.85rem, 6.5vw, 2.35rem);
  font-weight: 800;
}

.section-heading > p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.section-heading-light h2,
.section-heading-light > p {
  color: var(--white);
}

/* ШАПКА */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  transition: color .3s ease, background-color .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open,
.inner-page .site-header {
  color: var(--navy);
  background: rgba(255, 255, 255, .97);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(11, 36, 71, .08);
}

.header-inner {
  display: flex;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  transition: height .3s ease;
}

.site-header.is-scrolled .header-inner {
  height: 64px;
}

.site-header.is-menu-open .header-inner {
  height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 9px;
  transition: border-color .3s ease;
}

.brand-mark svg {
  width: 30px;
  fill: none;
  stroke: var(--amber);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.is-scrolled .brand-mark,
.is-menu-open .brand-mark,
.inner-page .brand-mark {
  border-color: var(--line);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .045em;
  transition: color .2s ease;
}

.brand-copy span {
  margin-top: 5px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .16em;
  opacity: .68;
  text-transform: uppercase;
}

.menu-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 10px;
  transition: border-color .25s ease;
}

.is-scrolled .menu-toggle,
.is-menu-open .menu-toggle,
.inner-page .menu-toggle {
  border-color: var(--line);
}

.menu-toggle span {
  position: absolute;
  left: 11px;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  transition: top .25s ease, transform .25s ease, opacity .25s ease;
}

.menu-toggle span:nth-child(1) { top: 13px; }
.menu-toggle span:nth-child(2) { top: 20px; }
.menu-toggle span:nth-child(3) { top: 27px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

.main-nav {
  position: fixed;
  z-index: 99;
  top: 64px;
  right: 0;
  left: 0;
  display: grid;
  padding: 16px;
  color: var(--navy);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 45px rgba(11, 36, 71, .12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-14px);
  transition: opacity .25s ease, transform .25s ease;
}

.site-header.is-menu-open .main-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.main-nav a {
  padding: 13px 10px;
  border-bottom: 1px solid var(--line);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  transition: color .2s ease, background-color .2s ease;
}

.main-nav a:last-child {
  border-bottom: 0;
}

.header-contact {
  display: none;
}

/* HERO */
.hero {
  position: relative;
  display: flex;
  min-height: 720px;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 78px;
  color: var(--white);
  background-color: var(--navy);
  background-image: url("../img/blueprint-grid.svg");
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
}

.hero::before {
  top: -260px;
  right: -330px;
  width: 740px;
  height: 740px;
}

.hero::after {
  bottom: -340px;
  left: -230px;
  width: 620px;
  height: 620px;
}

.hero-grid {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 760px;
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(1.875rem, 8.5vw, 2.125rem);
  font-weight: 800;
  letter-spacing: -.05em;
}

.hero h1 em {
  display: block;
  color: var(--amber);
  font-style: normal;
}

.hero-lead {
  max-width: 710px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, .76);
  font-size: 16px;
  line-height: 1.7;
}

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

.hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
}

.hero-points svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  padding: 4px;
  fill: none;
  stroke: var(--amber);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  border: 1px solid rgba(232, 163, 61, .42);
  border-radius: 50%;
}

.hero-actions {
  display: grid;
  gap: 12px;
}

.hero-visual {
  display: none;
}

.hero-scroll {
  display: none;
}

/* ЦИФРЫ */
.trust-strip {
  position: relative;
  z-index: 4;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

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

.trust-item {
  position: relative;
  min-width: 0;
  padding: 26px 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-item:nth-child(2n) {
  border-right: 0;
}

.trust-item:nth-last-child(-n+2) {
  border-bottom: 0;
}

.trust-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(1.75rem, 7vw, 2.125rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
}

.counter {
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}

.trust-item > span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

/* ТРИ ВОПРОСА */
.question-grid {
  display: grid;
  gap: 16px;
}

.feature-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.card-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 38px;
  place-items: center;
  color: var(--blue);
  background: var(--light);
  border-radius: 12px;
}

.card-icon svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.card-index {
  position: absolute;
  top: 17px;
  right: 22px;
  color: var(--line);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 50px;
  font-weight: 800;
  letter-spacing: -.07em;
  line-height: 1;
}

.feature-card h3 {
  max-width: 290px;
  margin-bottom: 15px;
  color: var(--navy);
  font-size: 21px;
  font-weight: 800;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

/* УСЛУГИ */
.services-grid {
  display: grid;
  gap: 12px;
}

.service-card {
  display: grid;
  min-width: 0;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.service-card svg {
  width: 36px;
  height: 36px;
  padding: 6px;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  background: var(--light);
  border-radius: 9px;
}

.service-card h3 {
  margin: 3px 0 0;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.45;
}

.also-line {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-top: 20px;
  padding: 20px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.also-line svg {
  width: 24px;
  flex: 0 0 auto;
  margin-top: 2px;
  fill: none;
  stroke: var(--amber);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.also-line p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}

.also-line strong {
  color: var(--navy);
}

.also-line a {
  color: var(--blue);
  font-weight: 700;
  border-bottom: 1px solid var(--amber);
}

/* ЦЕНЫ */
.price-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

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

.price-table thead {
  display: none;
}

.price-table tbody,
.price-table tr,
.price-table th,
.price-table td {
  display: block;
}

.price-table tbody tr {
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.price-table tbody tr:last-child {
  border-bottom: 0;
}

.price-table tbody tr:nth-child(even) {
  background: var(--light);
}

.price-table tbody th {
  margin-bottom: 12px;
  color: var(--navy);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
  text-align: left;
}

.price-table tbody td {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 7px 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
}

.price-table tbody td::before {
  content: attr(data-label);
  color: var(--muted);
  font-weight: 500;
}

.price-table tbody td.accent-column {
  margin: 7px -10px -3px;
  padding: 10px;
  color: var(--navy);
  background: rgba(232, 163, 61, .15);
  border-radius: 8px;
}

.price-note {
  display: grid;
  gap: 20px;
  align-items: center;
  margin-top: 22px;
  padding: 24px;
  color: var(--white);
  background: var(--blue);
  border-radius: var(--radius-md);
}

.price-note p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}

/* АУДИТОРИИ */
.audience-section {
  overflow: hidden;
}

.audience-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: url("../img/blueprint-grid.svg");
  opacity: .45;
}

.audience-section .container {
  position: relative;
  z-index: 1;
}

.audience-grid {
  display: grid;
  gap: 12px;
}

.audience-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  padding: 28px 24px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-md);
  transition: background-color .3s ease, border-color .3s ease, transform .3s ease;
}

.audience-number {
  position: absolute;
  right: 18px;
  bottom: -7px;
  color: rgba(255, 255, 255, .07);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 92px;
  font-weight: 800;
  letter-spacing: -.08em;
  line-height: 1;
}

.audience-card h3 {
  position: relative;
  max-width: 240px;
  margin: 36px 0 15px;
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
}

.audience-card h3::before {
  position: absolute;
  top: -29px;
  left: 0;
  width: 36px;
  height: 2px;
  content: "";
  background: var(--amber);
}

.audience-card p {
  position: relative;
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 15px;
  line-height: 1.7;
}

/* ЭТАПЫ */
.steps-list {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  width: 1px;
  content: "";
  background: var(--line);
}

.step-card {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 20px;
  padding: 0 0 32px;
}

.step-card:last-child {
  padding-bottom: 0;
}

.step-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 9px 25px rgba(11, 36, 71, .06);
}

.step-card h3 {
  margin: 2px 0 8px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* РЕЗУЛЬТАТ */
.result-grid {
  display: grid;
  gap: 50px;
  align-items: center;
}

.result-section {
  overflow: hidden;
}

.result-copy .result-lead {
  margin: 20px 0 14px;
  color: var(--blue);
  font-size: 19px;
  font-weight: 700;
}

.result-copy > p:not(.eyebrow, .result-lead) {
  margin-bottom: 24px;
  color: var(--muted);
}

.law-note {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--amber);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

.law-note svg {
  width: 28px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.report-visual {
  position: relative;
  width: min(100%, 360px);
  margin: 0 auto;
}

.report-visual::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 115%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid var(--line);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.report-sheet {
  position: relative;
  z-index: 2;
  min-height: 440px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px 18px 4px 4px;
  box-shadow: var(--shadow-hover);
  transform: rotate(2deg);
}

.report-sheet-back {
  position: absolute;
  z-index: 1;
  inset: 14px -14px -14px 14px;
  min-height: 0;
  background: var(--blue);
  border: 0;
  border-radius: 4px 18px 4px 4px;
  box-shadow: none;
  opacity: .18;
  transform: rotate(-2deg);
}

.report-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.report-logo {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--navy);
  border: 2px solid var(--amber);
  border-radius: 8px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 800;
}

.report-head div {
  display: grid;
  flex: 1;
  gap: 7px;
}

.report-head i,
.report-lines i,
.report-title,
.report-subtitle {
  display: block;
  height: 5px;
  background: var(--line);
  border-radius: 4px;
}

.report-head i:first-child { width: 52%; background: var(--blue); }
.report-head i:last-child { width: 36%; }
.report-title { width: 72%; height: 9px; margin: 28px auto 9px; background: var(--navy); }
.report-subtitle { width: 47%; margin: 0 auto 25px; }

.report-photo {
  display: grid;
  height: 140px;
  place-items: center;
  background: var(--light);
  border: 1px solid var(--line);
}

.report-photo svg {
  width: 86%;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.report-lines {
  display: grid;
  gap: 9px;
  margin-top: 24px;
}

.report-lines i:nth-child(1) { width: 100%; }
.report-lines i:nth-child(2) { width: 92%; }
.report-lines i:nth-child(3) { width: 96%; }
.report-lines i:nth-child(4) { width: 61%; }

.report-stamp {
  position: absolute;
  right: 28px;
  bottom: 25px;
  display: grid;
  width: 64px;
  height: 64px;
  place-content: center;
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 50%;
  text-align: center;
  transform: rotate(-9deg);
}

.report-stamp span,
.report-stamp strong {
  display: block;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 11px;
  line-height: 1.15;
}

.report-stamp strong { font-size: 19px; }

/* ЭКСПЕРТЫ */
.experts-grid {
  display: grid;
  gap: 12px;
}

.expert-card {
  display: flex;
  min-height: 156px;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.expert-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--blue);
  background: var(--light);
  border-radius: 12px;
}

.expert-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.expert-card h3 {
  margin: 3px 0 0;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.5;
}

/* FAQ */
.faq-layout {
  display: grid;
  gap: 38px;
}

.faq-intro h2 {
  margin-bottom: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
  transition: color .2s ease;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-item h3 {
  margin: 0;
}

.accordion-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 21px 0;
  color: var(--navy);
  cursor: pointer;
  background: transparent;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.45;
  text-align: left;
}

.accordion-trigger i {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background-color .25s ease, border-color .25s ease, transform .3s ease;
}

.accordion-trigger i::before,
.accordion-trigger i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  content: "";
  background: var(--blue);
  transform: translate(-50%, -50%);
}

.accordion-trigger i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item.is-open .accordion-trigger i {
  background: var(--amber);
  border-color: var(--amber);
  transform: rotate(45deg);
}

.accordion-item.is-open .accordion-trigger i::before,
.accordion-item.is-open .accordion-trigger i::after {
  background: var(--navy);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}

.accordion-item.is-open .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-panel > div {
  overflow: hidden;
}

.accordion-panel p {
  max-width: 680px;
  margin: 0;
  padding: 0 48px 23px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

/* ФОРМА */
.request-section {
  background: var(--white);
}

.request-shell {
  position: relative;
  display: grid;
  gap: 34px;
  overflow: hidden;
  padding: 28px 22px;
  color: var(--white);
  background: var(--navy);
  background-image: url("../img/blueprint-grid.svg");
  border-radius: var(--radius-lg);
  box-shadow: 0 35px 75px rgba(11, 36, 71, .17);
}

.request-shell::after {
  position: absolute;
  top: -190px;
  right: -190px;
  width: 400px;
  height: 400px;
  content: "";
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
}

.request-copy,
.lead-form {
  position: relative;
  z-index: 1;
}

.request-copy h2 {
  margin-bottom: 18px;
  color: var(--white);
}

.request-copy > p:not(.eyebrow) {
  max-width: 510px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, .7);
  font-size: 15px;
}

.request-phone {
  display: inline-block;
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
  transition: color .2s ease;
}

.lead-form {
  padding: 22px;
  color: var(--text);
  background: var(--white);
  border-radius: var(--radius-md);
}

.form-row {
  display: grid;
  gap: 15px;
}

.field {
  display: block;
  margin-bottom: 15px;
}

.field > span {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.field > span b {
  color: var(--amber-hover);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: none;
  background: var(--light);
  transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.field input {
  height: 50px;
  padding: 0 14px;
}

.field textarea {
  display: block;
  min-height: 92px;
  padding: 12px 14px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
  opacity: .75;
}

.field input:focus,
.field textarea:focus {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(25, 55, 109, .08);
}

.field input:focus-visible,
.field textarea:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

.field.has-error input {
  border-color: var(--amber-hover);
  box-shadow: 0 0 0 3px rgba(209, 143, 42, .1);
}

.field-error {
  display: block;
  min-height: 16px;
  margin-top: 4px;
  color: var(--amber-hover);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.consent input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.custom-checkbox {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  transition: background-color .2s ease, border-color .2s ease;
}

.custom-checkbox svg {
  width: 15px;
  fill: none;
  stroke: var(--navy);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  opacity: 0;
}

.consent input:checked + .custom-checkbox {
  background: var(--amber);
  border-color: var(--amber);
}

.consent input:checked + .custom-checkbox svg {
  opacity: 1;
}

.consent input:focus-visible + .custom-checkbox {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.consent > span:last-child {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.consent a {
  color: var(--blue);
  border-bottom: 1px solid var(--line);
  transition: color .2s ease, border-color .2s ease;
}

.consent-error {
  margin: 0 0 8px 30px;
}

.form-submit {
  width: 100%;
  margin-top: 3px;
}

.form-success {
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 13px;
  color: var(--navy);
  background: var(--light);
  border: 1px solid var(--line);
  border-left: 3px solid var(--amber);
  border-radius: 9px;
  font-size: 14px;
  line-height: 1.45;
}

.form-success:not([hidden]) {
  display: flex;
}

.form-success svg {
  width: 28px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.form-success strong {
  display: block;
}

/* КОНТАКТЫ */
.contacts-grid {
  display: grid;
  gap: 26px;
}

.contact-main {
  min-width: 0;
}

.company-details {
  margin-bottom: 28px;
  color: var(--navy);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

.company-details span {
  color: var(--amber);
}

.contact-main address {
  display: grid;
  gap: 20px;
  font-style: normal;
}

.contact-line {
  display: grid;
  min-width: 0;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
}

.contact-line svg {
  width: 42px;
  height: 42px;
  padding: 9px;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  background: var(--light);
  border-radius: 10px;
}

.contact-line span,
.contact-line strong {
  display: block;
}

.contact-line a {
  transition: color .2s ease;
}

.contact-line span {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 12px;
}

.contact-line strong {
  overflow-wrap: anywhere;
  color: var(--navy);
  font-size: 15px;
  font-style: normal;
  line-height: 1.55;
}

.map-blueprint {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.map-blueprint > svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.map-lines {
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
  opacity: .22;
}

.map-blocks {
  fill: var(--white);
  stroke: var(--line);
  stroke-width: 1;
}

.map-pin {
  fill: var(--amber);
  stroke: var(--navy);
  stroke-width: 2;
}

.map-pin circle {
  fill: var(--white);
}

.map-address {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 12px 15px;
  color: var(--navy);
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--line);
  border-radius: 9px;
  box-shadow: 0 12px 30px rgba(11, 36, 71, .1);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

/* ФУТЕР */
.site-footer {
  padding-bottom: 0;
  color: rgba(255, 255, 255, .7);
  background: var(--navy);
}

.has-mobile-actions .site-footer {
  padding-bottom: calc(74px + env(safe-area-inset-bottom));
}

.footer-main {
  display: grid;
  gap: 34px;
  padding-top: 46px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.brand-footer {
  width: fit-content;
  color: var(--white);
}

.footer-about p {
  max-width: 340px;
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.65;
}

.footer-column h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
}

.footer-nav a {
  width: fit-content;
  font-size: 15px;
  font-weight: 600;
  transition: color .2s ease;
}

.footer-contacts address {
  display: grid;
  gap: 8px;
  max-width: 330px;
  font-size: 15px;
  font-style: normal;
  line-height: 1.55;
}

.footer-contacts a:not(.footer-phone) {
  width: fit-content;
  overflow-wrap: anywhere;
  transition: color .2s ease;
}

.footer-phone {
  width: fit-content;
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  transition: color .2s ease;
}

.footer-bottom {
  display: grid;
  gap: 8px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  width: fit-content;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
  transition: color .2s ease, border-color .2s ease;
}

/* МОБИЛЬНАЯ ПАНЕЛЬ */
.mobile-actions {
  position: fixed;
  z-index: 90;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px max(8px, env(safe-area-inset-right)) max(8px, env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(11, 36, 71, .1);
}

.mobile-actions a {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.mobile-call {
  color: var(--navy);
  background: var(--light);
  border: 1px solid var(--line);
}

.mobile-call svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.mobile-request {
  color: var(--navy);
  background: var(--amber);
}

/* ПОЛИТИКА */
.policy-hero {
  padding: 132px 0 62px;
  background: var(--light);
  border-bottom: 1px solid var(--line);
}

.policy-heading {
  max-width: 960px;
}

.policy-heading h1 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(2rem, 8vw, 3.25rem);
  font-weight: 800;
}

.policy-heading > p:last-child {
  max-width: 750px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.policy-layout {
  display: grid;
  gap: 36px;
}

.policy-aside {
  height: fit-content;
  padding: 22px;
  background: var(--navy);
  background-image: url("../img/blueprint-grid.svg");
  border-radius: var(--radius-md);
}

.policy-aside span,
.policy-aside strong {
  display: block;
}

.policy-aside span {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, .6);
  font-size: 11px;
  text-transform: uppercase;
}

.policy-aside strong {
  margin-bottom: 20px;
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
}

.policy-aside a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--amber);
  font-size: 15px;
  font-weight: 700;
  transition: color .2s ease;
}

.policy-aside svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.policy-text {
  border-top: 1px solid var(--line);
}

.policy-text article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 15px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.policy-text article > span {
  color: var(--amber-hover);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.policy-text h2 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
}

.policy-text p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.policy-text a {
  color: var(--blue);
  font-weight: 700;
  overflow-wrap: anywhere;
  transition: color .2s ease;
}

/* АНИМАЦИИ ПОЯВЛЕНИЯ */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-ready .reveal-delay {
  transition-delay: .16s;
}

/* ПЛАНШЕТЫ */
@media (min-width: 640px) {
  .container {
    width: min(calc(100% - 56px), 1240px);
  }

  .section {
    padding: 80px 0;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-points {
    grid-template-columns: repeat(3, auto);
    justify-content: start;
    gap: 14px 25px;
  }

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

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

  .price-note {
    grid-template-columns: minmax(0, 1fr) auto;
  }

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

  .footer-bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 768px) {
  :root {
    --header-height: 78px;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1.6fr) minmax(240px, .7fr);
    align-items: end;
    margin-bottom: 50px;
  }

  .section-heading h2,
  .result-copy h2,
  .faq-intro h2,
  .request-copy h2 {
    font-size: clamp(2.15rem, 4.5vw, 2.45rem);
  }

  .header-contact {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .header-phone {
    font-family: "Manrope", Arial, sans-serif;
    font-size: 15px;
    font-weight: 800;
  }

  .is-scrolled .button-outline,
  .is-menu-open .button-outline,
  .inner-page .button-outline {
    color: var(--navy);
    border-color: var(--amber);
  }

  .menu-toggle {
    margin-left: 0;
  }

  .main-nav {
    top: 64px;
  }

  .hero {
    min-height: 760px;
    padding: 135px 0 95px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 6.5vw, 3.5rem);
  }

  .hero-lead {
    font-size: 17px;
  }

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

  .trust-item,
  .trust-item:nth-child(2n) {
    padding: 32px 20px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .trust-item:last-child {
    border-right: 0;
  }

  .trust-item > span {
    font-size: 13px;
  }

  .feature-card {
    padding: 30px;
  }

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

  .service-card {
    display: block;
    min-height: 188px;
    padding: 25px;
  }

  .service-card svg {
    width: 42px;
    height: 42px;
    margin-bottom: 30px;
  }

  .price-table thead {
    display: table-header-group;
  }

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

  .price-table tbody {
    display: table-row-group;
  }

  .price-table tr {
    display: table-row;
  }

  .price-table th,
  .price-table td,
  .price-table tbody th,
  .price-table tbody td {
    display: table-cell;
    margin: 0;
    padding: 20px 22px;
    text-align: left;
    vertical-align: middle;
  }

  .price-table thead th {
    color: var(--white);
    background: var(--navy);
    font-family: "Manrope", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .03em;
  }

  .price-table thead th:first-child {
    width: 40%;
  }

  .price-table tbody tr {
    padding: 0;
    border-bottom: 1px solid var(--line);
  }

  .price-table tbody th {
    width: 40%;
    color: var(--navy);
    background: inherit;
    font-size: 15px;
  }

  .price-table tbody td {
    color: var(--text);
    font-size: 15px;
  }

  .price-table tbody td::before {
    display: none;
  }

  .price-table thead .accent-column {
    color: var(--navy);
    background: var(--amber);
  }

  .price-table tbody td.accent-column {
    color: var(--navy);
    background: rgba(232, 163, 61, .13);
    border-radius: 0;
    font-weight: 800;
  }

  .price-note {
    padding: 26px 30px;
  }

  .price-note p {
    font-size: 16px;
  }

  .audience-card {
    min-height: 250px;
    padding: 30px;
  }

  .steps-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 56px;
  }

  .steps-list::before {
    display: none;
  }

  .step-card,
  .step-card:last-child {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 22px;
    padding: 0;
  }

  .step-number {
    width: 74px;
    height: 74px;
    font-size: 20px;
  }

  .result-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .75fr);
    gap: 80px;
  }

  .faq-layout {
    grid-template-columns: minmax(250px, .65fr) minmax(0, 1.35fr);
    gap: 70px;
    align-items: start;
  }

  .faq-intro {
    position: sticky;
    top: 100px;
  }

  .request-shell {
    padding: 52px;
  }

  .lead-form {
    padding: 28px;
  }

  .contacts-grid {
    grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
    gap: 55px;
    align-items: stretch;
  }

  .map-blueprint {
    min-height: 380px;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .7fr) minmax(0, 1fr);
    align-items: start;
    gap: 32px;
    padding-top: 54px;
    padding-bottom: 46px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    padding-top: 22px;
    padding-bottom: 22px;
    font-size: 13px;
  }

  .has-mobile-actions .site-footer {
    padding-bottom: 0;
  }

  .mobile-actions {
    display: none;
  }

  .policy-hero {
    padding: 160px 0 80px;
  }

  .policy-layout {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 70px;
    align-items: start;
  }

  .policy-aside {
    position: sticky;
    top: 100px;
  }

  .policy-text article {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 30px 0;
  }

  .policy-text h2 {
    font-size: 21px;
  }
}

/* НОУТБУКИ И ДЕСКТОП */
@media (min-width: 1024px) {
  .section {
    padding: 96px 0;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(340px, .84fr);
    gap: 55px;
    align-items: center;
  }

  .hero-copy {
    max-width: 740px;
  }

  .hero h1 {
    font-size: 49px;
  }

  .hero-visual {
    position: relative;
    display: block;
  }

  .hero-visual::before {
    position: absolute;
    inset: 8% -5% -10% 8%;
    content: "";
    background: radial-gradient(circle, rgba(232, 163, 61, .13), transparent 68%);
    filter: blur(12px);
  }

  .drawing-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1.05;
    padding: 20px;
    background: rgba(255, 255, 255, .025);
    border: 1px solid rgba(255, 255, 255, .15);
  }

  .building-drawing .draw-main path,
  .building-drawing .draw-accent path,
  .building-drawing .draw-accent circle {
    stroke-dasharray: 1100;
    stroke-dashoffset: 1100;
    animation: blueprint-draw 1.8s .25s cubic-bezier(.2, .7, .3, 1) forwards;
  }

  .frame-corner {
    position: absolute;
    width: 22px;
    height: 22px;
    border-color: var(--amber);
    border-style: solid;
  }

  .corner-one { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
  .corner-two { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
  .corner-three { right: -1px; bottom: -1px; border-width: 0 2px 2px 0; }
  .corner-four { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; }

  .building-drawing {
    width: 100%;
    height: 100%;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .draw-muted {
    stroke: var(--white);
    stroke-width: 1;
    opacity: .15;
  }

  .draw-main {
    stroke: var(--white);
    stroke-width: 1.25;
    opacity: .65;
  }

  .draw-accent {
    stroke: var(--amber);
    stroke-width: 1.5;
  }

  .drawing-label {
    position: absolute;
    padding: 6px 9px;
    color: rgba(255, 255, 255, .62);
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, .12);
    font-family: "Manrope", Arial, sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .09em;
  }

  .label-top { top: 16px; left: 18px; }
  .label-bottom { left: 18px; bottom: 17px; color: var(--amber); }

  .document-card {
    position: absolute;
    right: -23px;
    bottom: 31px;
    display: flex;
    min-width: 175px;
    align-items: center;
    gap: 12px;
    padding: 15px;
    color: var(--navy);
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 22px 50px rgba(11, 36, 71, .25);
  }

  .document-card svg {
    width: 32px;
    flex: 0 0 auto;
    fill: none;
    stroke: var(--blue);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
  }

  .document-card span,
  .document-card strong {
    display: block;
    font-size: 11px;
    line-height: 1.3;
  }

  .document-card span { color: var(--muted); }
  .document-card strong { font-family: "Manrope", Arial, sans-serif; font-size: 14px; }

  .trust-strip .container {
    width: min(calc(100% - 56px), 1240px);
  }

  .trust-grid {
    margin-top: -40px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
  }

  .trust-strip {
    border-bottom: 0;
  }

  .trust-item {
    padding: 34px 30px;
  }

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

  .feature-card {
    min-height: 380px;
    padding: 34px;
  }

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

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

  .service-card {
    min-height: 210px;
  }

  .also-line {
    align-items: center;
    padding: 22px 26px;
  }

  .also-line p {
    font-size: 15px;
  }

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

  .audience-card {
    min-height: 300px;
  }

  .steps-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 55px 65px;
  }

  .steps-list::after {
    position: absolute;
    z-index: -1;
    top: 37px;
    right: 10%;
    left: 37px;
    height: 1px;
    content: "";
    background: var(--line);
  }

  .step-card:nth-child(n+4) {
    padding-top: 32px;
  }

  .step-card h3 {
    font-size: 19px;
  }

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

  .expert-card {
    display: block;
    min-height: 235px;
    padding: 28px;
  }

  .expert-icon {
    margin-bottom: 40px;
  }

  .request-shell {
    grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
    gap: 70px;
    padding: 64px;
    align-items: center;
  }

  .request-copy h2 {
    font-size: 38px;
  }
}

@media (min-width: 1160px) {
  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 21px;
    margin-left: auto;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav a {
    position: relative;
    padding: 8px 0;
    border: 0;
    font-family: "Inter", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
  }

  .main-nav a::after {
    position: absolute;
    right: 50%;
    bottom: 2px;
    left: 50%;
    height: 2px;
    content: "";
    background: var(--amber);
    transition: right .25s ease, left .25s ease;
  }

  .header-contact {
    gap: 16px;
  }

  .header-phone {
    font-size: 14px;
  }
}

@media (min-width: 1280px) {
  .hero {
    min-height: 790px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(440px, .8fr);
    gap: 88px;
  }

  .hero h1 {
    font-size: 55px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-scroll {
    position: absolute;
    z-index: 4;
    bottom: 27px;
    left: 50%;
    display: block;
    width: 21px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 20px;
    transform: translateX(-50%);
  }

  .hero-scroll span {
    position: absolute;
    top: 7px;
    left: 9px;
    width: 2px;
    height: 6px;
    background: var(--amber);
    border-radius: 2px;
    animation: scroll-hint 1.8s ease-in-out infinite;
  }

  .section-heading > p {
    font-size: 17px;
  }
}

/* СОСТОЯНИЯ НАВЕДЕНИЯ */
@media (hover: hover) {
  .button:hover {
    transform: translateY(-2px);
  }

  .button-primary:hover {
    background: var(--amber-hover);
    box-shadow: 0 14px 32px rgba(209, 143, 42, .25);
  }

  .button:disabled:hover {
    background: var(--amber);
    box-shadow: none;
    transform: none;
  }

  .button-ghost:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .45);
  }

  .button-outline:hover {
    color: var(--navy);
    background: var(--amber);
    border-color: var(--amber);
  }

  .main-nav a:hover::after {
    right: 0;
    left: 0;
  }

  .main-nav a:hover {
    color: var(--amber);
  }

  .site-header.is-scrolled .main-nav a:hover,
  .site-header.is-menu-open .main-nav a:hover,
  .inner-page .main-nav a:hover {
    color: var(--blue);
  }

  .menu-toggle:hover {
    color: var(--navy);
    background: var(--amber);
    border-color: var(--amber);
  }

  .brand:hover .brand-copy strong {
    color: var(--amber);
  }

  .feature-card:hover,
  .service-card:hover,
  .expert-card:hover {
    border-color: rgba(25, 55, 109, .25);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
  }

  .audience-card:hover {
    background: rgba(255, 255, 255, .09);
    border-color: rgba(232, 163, 61, .6);
    transform: translateY(-4px);
  }

  .text-link:hover,
  .footer-nav a:hover,
  .footer-bottom a:hover,
  .footer-phone:hover,
  .footer-contacts a:hover,
  .header-phone:hover,
  .request-phone:hover,
  .contact-line a:hover,
  .also-line a:hover,
  .consent a:hover,
  .policy-text a:hover {
    color: var(--amber);
  }

  .field input:hover,
  .field textarea:hover {
    border-color: rgba(25, 55, 109, .45);
  }

  .consent:hover .custom-checkbox {
    border-color: var(--blue);
  }

  .policy-aside a:hover {
    color: var(--white);
  }

  .mobile-call:hover {
    background: var(--line);
    border-color: rgba(25, 55, 109, .28);
  }

  .mobile-request:hover {
    background: var(--amber-hover);
  }

  .accordion-trigger:hover {
    color: var(--blue);
  }
}

@keyframes scroll-hint {
  0%, 100% { opacity: .3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(11px); }
}

@keyframes blueprint-draw {
  to { stroke-dashoffset: 0; }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .js-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
