/* VARIABLES */
:root {
  --bg: #f4f1ea;
  --paper: #ffffff;
  --ink: #1f2933;
  --muted: #637083;
  --line: #e3ddd2;
  --accent: #22364c;
  --accent-dark: #152536;
  --accent-soft: #e8eef4;
  --gold: #b08d57;
  --gold-dark: #8d6d3e;
  --gold-soft: #fbf4e7;
  --green: #276749;
  --green-soft: #effaf3;
  --red: #7f1d1d;
  --red-soft: #fff3f1;
  --shadow: 0 18px 44px rgba(21, 37, 54, 0.12);
  --radius: 8px;
  --max-width: 1180px;
  --header-height: 72px;
}

/* BASE */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

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

p {
  margin-bottom: 0;
}

ul {
  padding-left: 1.1rem;
}

li + li {
  margin-top: 0.45rem;
}

:focus-visible {
  outline: 3px solid rgba(176, 141, 87, 0.58);
  outline-offset: 3px;
}

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

.section {
  padding: 86px 0;
}

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

.section--blue {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(176, 141, 87, 0.18), rgba(176, 141, 87, 0) 34%),
    var(--accent-dark);
}

.section-head {
  max-width: 820px;
  margin-bottom: 36px;
}

.section-head h2,
.split h2,
.audit-grid h2,
.lead-grid h2 {
  margin-bottom: 16px;
  color: var(--accent-dark);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.section--blue .section-head h2,
.section--blue h2 {
  color: #ffffff;
}

.section-head p,
.section-lead {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-head--light p,
.section--blue .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow {
  display: inline-flex;
  max-width: 100%;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

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

.button--primary {
  color: #ffffff;
  background: var(--gold);
}

.button--primary:hover {
  background: var(--gold-dark);
}

.button--secondary {
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(34, 54, 76, 0.18);
}

.button--secondary:hover {
  border-color: var(--gold);
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 11px max(16px, calc((100vw - var(--max-width)) / 2));
  background: rgba(244, 241, 234, 0.94);
  border-bottom: 1px solid rgba(227, 221, 210, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  min-width: 170px;
}

.brand__name {
  color: var(--accent-dark);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand__name span {
  color: var(--gold);
}

.brand__caption {
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.2;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--accent-dark);
  font-size: 0.94rem;
  font-weight: 750;
}

.main-nav a {
  transition: color 0.18s ease;
}

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

.nav-cta {
  padding: 10px 14px;
  color: #ffffff !important;
  background: var(--accent);
  border-radius: var(--radius);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 11px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--accent-dark);
}

.menu-toggle span + span {
  margin-top: 6px;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 92px;
  padding-bottom: 104px;
  background:
    linear-gradient(90deg, rgba(244, 241, 234, 1) 0%, rgba(244, 241, 234, 0.9) 50%, rgba(232, 238, 244, 0.92) 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--line);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.78fr);
  gap: 88px;
  align-items: center;
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 24px;
  color: var(--accent-dark);
  font-size: clamp(2.15rem, 3.7vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 580px;
  color: #3f4b58;
  font-size: clamp(1rem, 1.35vw, 1.13rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.hero__facts li {
  flex: 0 1 auto;
  margin: 0;
  padding: 9px 12px;
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(227, 221, 210, 0.95);
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 680;
}

.hero__visual {
  align-self: stretch;
  display: flex;
  align-items: center;
}

.hero-trust {
  width: 100%;
  overflow: hidden;
  padding: 34px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-trust__photos {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-trust__photos img {
  width: 112px;
  height: 112px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(21, 37, 54, 0.14);
  object-fit: cover;
}

.hero-trust__body {
  padding: 0;
}

.hero-trust__label {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-trust h2 {
  max-width: 390px;
  margin-bottom: 14px;
  color: var(--accent-dark);
  font-size: clamp(1.45rem, 2.1vw, 1.9rem);
  line-height: 1.16;
}

.hero-trust p {
  color: var(--muted);
}

.finance-board {
  width: 100%;
  padding: 22px;
  color: #ffffff;
  background: var(--accent-dark);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.finance-board__top,
.finance-board__rows div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.finance-board__top {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.finance-board__top strong {
  color: #f1d6aa;
}

.finance-board__question {
  margin: 28px 0 18px;
  max-width: 390px;
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.04;
}

.finance-board__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.finance-board__metrics div {
  min-height: 112px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.finance-board__metrics span {
  display: block;
  color: var(--gold);
  font-weight: 900;
}

.finance-board__metrics strong {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  line-height: 1.25;
}

.finance-board__flow {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 142px;
  margin: 24px 0;
  padding: 18px;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.08) 1px, transparent 1px, transparent 36px),
    rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
}

.finance-board__flow span {
  flex: 1;
  min-width: 16px;
  background: linear-gradient(180deg, var(--gold), rgba(176, 141, 87, 0.28));
  border-radius: 5px 5px 0 0;
}

.finance-board__flow span:nth-child(1) { height: 45%; }
.finance-board__flow span:nth-child(2) { height: 68%; }
.finance-board__flow span:nth-child(3) { height: 52%; }
.finance-board__flow span:nth-child(4) { height: 82%; }
.finance-board__flow span:nth-child(5) { height: 62%; }

.finance-board__rows {
  display: grid;
  gap: 8px;
}

.finance-board__rows div {
  padding: 12px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
}

.finance-board__rows span {
  color: var(--gold);
  font-weight: 850;
}

.finance-board__rows strong {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
}

/* CARDS */
.cards-grid {
  display: grid;
  gap: 16px;
}

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

.card {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.section--paper .card {
  background: var(--bg);
}

.card__number {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
}

.card h3 {
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-size: 1.16rem;
  line-height: 1.25;
}

.card p {
  color: var(--muted);
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* PRODUCT */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 48px;
  align-items: start;
}

.accent-note,
.wide-note,
.muted-note {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: var(--radius);
}

.accent-note {
  color: var(--accent-dark);
  background: var(--gold-soft);
  border-left: 4px solid var(--gold);
  font-weight: 820;
}

.system-list {
  display: grid;
  gap: 14px;
}

.system-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.system-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #ffffff;
  background: var(--accent);
  border-radius: 50%;
  font-weight: 900;
}

.system-item h3 {
  margin-bottom: 6px;
  color: var(--accent-dark);
}

.system-item p {
  color: var(--muted);
}

/* WORKFLOW */
.workflow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.workflow__column {
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.workflow__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--accent-dark);
  background: #f1d6aa;
  border-radius: 50%;
  font-weight: 900;
}

.workflow__column h3 {
  margin-bottom: 18px;
  color: #ffffff;
}

.check-list,
.cross-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.cross-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

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

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

.cross-list li::before {
  content: "–";
  color: var(--red);
}

.check-list--light li {
  color: rgba(255, 255, 255, 0.78);
}

.check-list--light li::before {
  color: #f1d6aa;
}

/* FORMAT */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.timeline__item {
  padding: 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.timeline__item span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-weight: 900;
}

.timeline__item h3 {
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-size: 1.06rem;
}

.timeline__item p,
.muted-note {
  color: var(--muted);
}

.muted-note {
  background: var(--paper);
  border: 1px solid var(--line);
}

/* TEAM */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.person-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(21, 37, 54, 0.07);
}

.person-card img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
  background: var(--accent-soft);
}

.person-card__body {
  padding: 24px;
}

.person-card h3 {
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-size: 1.55rem;
}

.person-card p {
  color: var(--muted);
}

.person-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.person-stats li {
  min-width: 0;
  margin: 0;
  padding: 12px;
  background: var(--gold-soft);
  border-radius: var(--radius);
}

.person-stats strong,
.person-stats span {
  display: block;
}

.person-stats strong {
  color: var(--accent-dark);
  font-size: 1rem;
  line-height: 1.18;
}

.person-stats span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.team-note {
  margin-top: 18px;
  padding: 24px;
  color: #ffffff;
  background: var(--accent);
  border-radius: var(--radius);
}

.team-note h3 {
  margin-bottom: 10px;
}

.team-note p {
  color: rgba(255, 255, 255, 0.78);
}

/* CASES */
.case-list {
  display: grid;
  gap: 18px;
}

.case-card {
  padding: 26px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.case-card__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.34fr);
  gap: 24px;
  align-items: start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.case-card__head h3 {
  margin-bottom: 0;
  color: var(--accent-dark);
  font-size: 1.34rem;
}

.case-card__head p {
  color: var(--gold);
  font-weight: 850;
}

.case-card__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.case-card h4 {
  margin-bottom: 8px;
  color: var(--accent-dark);
}

.case-card p {
  color: var(--muted);
}

/* FIT */
.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.fit-card {
  padding: 28px;
  border-radius: var(--radius);
}

.fit-card h3 {
  margin-bottom: 18px;
  font-size: 1.4rem;
}

.fit-card--yes {
  background: var(--green-soft);
  border: 1px solid rgba(39, 103, 73, 0.18);
}

.fit-card--no {
  background: var(--red-soft);
  border: 1px solid rgba(127, 29, 29, 0.16);
}

/* AUDIT */
.audit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  gap: 38px;
  align-items: start;
}

.audit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.audit-tags span {
  padding: 10px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  font-weight: 800;
}

.audit-panel {
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.audit-panel h3 {
  color: #ffffff;
}

/* FORM */
.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: 42px;
  align-items: stretch;
}

.lead-copy {
  display: flex;
  flex-direction: column;
}

.focus-picker {
  margin-top: auto;
  padding: 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.focus-picker h3 {
  margin-bottom: 14px;
  color: var(--accent-dark);
}

.focus-option {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 12px 14px;
  color: var(--accent-dark);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.focus-option:hover,
.focus-option.is-active {
  background: var(--gold-soft);
  border-color: var(--gold);
}

.focus-result {
  min-height: 54px;
  margin-top: 16px;
  color: var(--muted);
}

.lead-form {
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--accent-dark);
  font-weight: 850;
}

.form-field input {
  width: 100%;
  min-height: 50px;
  padding: 11px 12px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.form-field input:focus {
  border-color: var(--gold);
}

.field-error {
  display: block;
  min-height: 20px;
  margin-top: 5px;
  color: var(--red);
  font-size: 0.86rem;
}

.consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.consent a,
.form-note a,
.footer-links a:hover {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.form-status {
  min-height: 28px;
  margin-top: 14px;
  font-weight: 850;
}

.form-status.is-success {
  color: var(--green);
}

.form-status.is-error {
  color: var(--red);
}

.form-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: var(--accent-dark);
  font-weight: 900;
  cursor: pointer;
}

.faq-list summary::after {
  flex: 0 0 auto;
  content: "+";
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  padding: 0 20px 20px;
  color: var(--muted);
}

/* FOOTER */
.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--accent-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.1fr) repeat(3, minmax(150px, 0.6fr));
  gap: 32px;
  padding: 54px 0 34px;
}

.brand--footer .brand__name {
  color: #ffffff;
}

.brand--footer .brand__caption,
.site-footer p {
  color: rgba(255, 255, 255, 0.66);
}

.site-footer p {
  max-width: 380px;
  margin-top: 18px;
}

.footer-title {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 1rem;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.mobile-cta {
  display: none;
}

/* LEGAL PAGES */
.legal-page {
  min-height: 100vh;
  background: var(--bg);
}

.legal-shell {
  width: min(100% - 32px, 920px);
  margin: 0 auto;
  padding: 54px 0;
}

.legal-card {
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  margin-bottom: 16px;
  color: var(--accent-dark);
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1.06;
}

.legal-card h2 {
  margin: 28px 0 10px;
  color: var(--accent-dark);
  font-size: 1.35rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card .button {
  margin-top: 24px;
}

.requisites-table {
  width: 100%;
  margin-top: 18px;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.requisites-table th,
.requisites-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.requisites-table th {
  width: 34%;
  color: var(--accent-dark);
  background: var(--gold-soft);
}

.requisites-table tr:last-child th,
.requisites-table tr:last-child td {
  border-bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 1080px) {
  .hero__grid,
  .split,
  .audit-grid,
  .lead-grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    max-width: 720px;
  }

  .hero__facts,
  .cards-grid--three,
  .workflow,
  .timeline,
  .case-card__columns,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-card__head {
    grid-template-columns: 1fr;
  }

  .person-stats {
    grid-template-columns: 1fr;
  }

  .lead-copy {
    display: block;
  }

  .focus-picker {
    margin-top: 28px;
  }

}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 12px;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding-top: 58px;
    padding-bottom: 76px;
  }

  .hero__facts,
  .cards-grid--three,
  .workflow,
  .timeline,
  .team-grid,
  .fit-grid,
  .case-card__columns,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero__facts {
    display: grid;
  }

  .mobile-cta {
    position: fixed;
    right: 14px;
    bottom: 12px;
    left: auto;
    z-index: 19;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    max-width: calc(100% - 28px);
    padding: 0 18px;
    color: #ffffff;
    background: var(--gold);
    border-radius: 999px;
    box-shadow: 0 12px 26px rgba(21, 37, 54, 0.22);
    font-size: 0.94rem;
    font-weight: 900;
  }

  .site-footer {
    padding-bottom: 68px;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 64px;
  }

  .container {
    width: min(100% - 24px, var(--max-width));
  }

  .site-header {
    padding-right: 12px;
    padding-left: 12px;
  }

  .brand__name {
    font-size: 1.08rem;
  }

  .brand__caption {
    font-size: 0.68rem;
  }

  .hero h1 {
    font-size: 1.82rem;
    line-height: 1.12;
    margin-bottom: 22px;
  }

  .hero__lead {
    line-height: 1.72;
  }

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

  .finance-board {
    padding: 16px;
  }

  .hero-trust__body {
    padding: 0;
  }

  .hero-trust__photos img {
    width: 92px;
    height: 92px;
  }

  .finance-board__metrics {
    grid-template-columns: 1fr;
  }

  .finance-board__metrics div {
    min-height: auto;
  }

  .finance-board__flow {
    height: 118px;
    padding: 14px;
  }

  .system-item {
    grid-template-columns: 1fr;
  }

  .person-card img {
    aspect-ratio: 1 / 0.9;
  }

  .card,
  .workflow__column,
  .case-card,
  .fit-card,
  .audit-panel,
  .lead-form,
  .focus-picker,
  .legal-card,
  .team-note,
  .person-card__body {
    padding: 20px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .requisites-table th,
  .requisites-table td {
    display: block;
    width: 100%;
  }

  .requisites-table th {
    border-bottom: 0;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
