﻿:root {
  --ink: #112e24;
  --ink-2: #173a2e;
  --ink-3: #33514a;
  --paper: #f6f7f9;
  --surface: #ffffff;
  --brass: #b58a3c;
  --brass-text: #8a6a2e;
  --brass-soft: #c9a567;
  --green: #2e7d5b;
  --amber: #c68a2e;
  --red: #b23a2e;
  --mist: #5a6b7e;
  --mist-2: #8a98a8;
  --line: #e3e7ec;
  --line-dark: #2a4a3c;
  --radius: 4px;
  --radius-pill: 4px;
  --text-h2: clamp(26px, 2.6vw, 34px);
  --maxw: 1280px;
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --shadow-card: 0 1px 2px rgba(17, 46, 36, 0.05);
  --shadow-pop: 0 30px 70px -30px rgba(0, 0, 0, 0.55);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
button,
input,
textarea,
select {
  font-family: var(--sans);
}
.ol-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.ol-mono {
  font-family: var(--mono);
}
section {
  padding: 84px 0;
}
.ol-section-head {
  max-width: 760px;
  margin-bottom: 42px;
}
.ol-section-head h2 {
  font-size: clamp(28px, 3.3vw, 42px);
  margin: 18px 0 14px;
}
.ol-section-head p {
  font-size: 18px;
  color: var(--mist);
}
.ol-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-text);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ol-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.ol-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 600;
  font-size: 15.5px;
  padding: 10px 24px;
  min-height: 45px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid transparent;
  transition: 0.16s ease;
}
.ol-button--primary {
  background: var(--brass);
  color: #fff;
}
.ol-button--primary:hover {
  background: #9c742f;
  transform: translateY(-1px);
}
.ol-button--dark {
  background: var(--ink);
  color: #fff;
}
.ol-button--dark:hover {
  background: var(--ink-2);
  transform: translateY(-1px);
}
.ol-button--ghost {
  background: transparent;
  border-color: var(--line-dark);
  color: var(--paper);
}
.ol-button--ghost:hover {
  border-color: var(--brass-soft);
  color: #fff;
}
.ol-button--line {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.ol-button--line:hover {
  border-color: var(--brass-text);
  color: var(--ink);
}
.ol-button--lg {
  padding: 12px 31px;
  font-size: 16.5px;
}
.ol-button--full {
  width: 100%;
}
.ol-pill {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.ol-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.ol-pill--red {
  background: rgba(178, 58, 46, 0.12);
  color: var(--red);
}
.ol-pill--red::before {
  background: var(--red);
}
.ol-pill--amber {
  background: rgba(198, 138, 46, 0.14);
  color: #9a6c1f;
}
.ol-pill--amber::before {
  background: var(--amber);
}
.ol-pill--green {
  background: rgba(46, 125, 91, 0.13);
  color: var(--green);
}
.ol-pill--green::before {
  background: var(--green);
}
.ol-pill--neutral {
  background: #eef1f4;
  color: var(--mist);
}
.ol-pill--neutral::before {
  background: var(--mist-2);
}
.ol-placeholder {
  background: repeating-linear-gradient(
    45deg,
    #e9ecf0,
    #e9ecf0 14px,
    #e4e8ec 14px,
    #e4e8ec 28px
  );
  border: 1px dashed #b7c0ca;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: var(--mist);
  min-height: 160px;
}
.ol-placeholder .ol-placeholder__tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass-text);
  display: block;
  margin-bottom: 8px;
}
.ol-placeholder .ol-placeholder__prompt {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-3);
  max-width: 90%;
}

/* Header */
.ol-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 247, 249, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.ol-header__inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.ol-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 19px;
  line-height: 115%;
  color: var(--ink);
}
.ol-header__brand .ol-header__logo {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  background:var(--ink);
  color: var(--brass-soft);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 15px;
}
.ol-header__brand small {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  line-height: 115%;
  max-width: 200px;
  color: var(--mist);
}
.ol-header__links-list {
  display: flex;
  gap: 26px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--mist);
  list-style: none;
}
.ol-header__links a:hover {
  color: var(--ink);
}
.ol-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ol-header__phone {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
}
.ol-header__search-toggle,
.ol-header-search__close {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}
.ol-header__search-toggle:hover,
.ol-header__search-toggle[aria-expanded="true"],
.ol-header-search__close:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}
.ol-header__search-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.ol-header-search {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 45;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 18px 36px rgba(16, 29, 47, 0.12);
}
.ol-header-search__inner {
  min-height: 148px;
  padding-top: 22px;
  padding-bottom: 26px;
}
.ol-header-search__heading {
  display: grid;
  gap: 4px;
}
.ol-header-search__heading strong {
  font-family: var(--serif);
  font-size: 21px;
}
.ol-header-search__heading span {
  color: var(--mist);
  font-size: 12px;
}
.ol-header-search__form {
  display: flex;
  gap: 10px;
}
.ol-header-search .ol-search-form__input {
  min-width: 0;
  min-height: 48px;
  flex: 1;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font: inherit;
}
.ol-header-search .ol-search-form__input:focus {
  border-color: var(--brass);
  outline: none;
  box-shadow: 0 0 0 3px rgba(181, 138, 60, 0.14);
}
.ol-header-search__hints {
  min-height: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  color: var(--mist);
  font-size: 13.5px;
}
.ol-header-search__hints a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink-3);
}
.ol-header-search__hints a:hover {
  border-color: var(--brass);
  color: var(--ink);
}
.ol-messenger ol-messenger--mini {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: #fff;
  transition: 0.15s;
}
.ol-messenger ol-messenger--mini:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}
.ol-messenger ol-messenger--mini svg {
  width: 21px;
  height: 21px;
  fill: #fff;
}
.ol-messenger--telegram {
  background: linear-gradient(135deg, #2aabee, #229ed9);
}
.ol-messenger--max {
  background: linear-gradient(135deg, #4a90e2, #9b59d6);
}
.ol-header__burger {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.ol-header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

/* Hero + dynamic background */
.ol-hero {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  padding: 0;
  --hero-dx: 0px;
  --hero-dy: 0px;
  --hero-sdx: 0px;
  --hero-sdy: 0px;
}
.ol-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(169, 128, 63, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(169, 128, 63, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, #000, transparent 82%);
  z-index: 0;
}
.ol-hero__dynamic {
  position: absolute;
  inset: -8% -4%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.34;
  mix-blend-mode: screen;
  transform: translate3d(var(--hero-dx), var(--hero-dy), 0);
  transition: transform 0.18s ease-out;
}
.ol-hero__dynamic .ol-hero__dyn-svg {
  width: 100%;
  height: 100%;
  display: block;
  transform: translate3d(var(--hero-sdx), var(--hero-sdy), 0) scale(1.02);
  transition: transform 0.25s ease-out;
}
.ol-hero__dyn-line {
  stroke: rgba(201, 165, 103, 0.36);
  stroke-width: 1;
  stroke-dasharray: 6 12;
  animation: dashFlow 48s linear infinite;
}
.ol-hero__dyn-line--muted {
  stroke: rgba(195, 205, 216, 0.12);
  stroke-width: 1;
}
.ol-hero__dyn-node {
  fill: rgba(17, 46, 36, 0.56);
  stroke: rgba(201, 165, 103, 0.75);
  stroke-width: 1.2;
}
.ol-hero__dyn-node.red {
  stroke: rgba(178, 58, 46, 0.8);
}
.ol-hero__dyn-node.amber {
  stroke: rgba(198, 138, 46, 0.85);
}
.ol-hero__dyn-node.green {
  stroke: rgba(46, 125, 91, 0.8);
}
.ol-hero__dyn-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  fill: rgba(230, 235, 242, 0.72);
}
.ol-hero__dyn-label--muted {
  fill: rgba(230, 235, 242, 0.32);
}
.ol-hero__dyn-glow {
  filter: url(#dynGlow);
}
@keyframes dashFlow {
  to {
    stroke-dashoffset: -360;
  }
}
.ol-hero__grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 52px;
  align-items: center;
  padding: 76px 0 84px;
  position: relative;
  z-index: 2;
}
.ol-hero .ol-eyebrow {
  color: var(--brass-soft);
}
.ol-hero .ol-eyebrow::before {
  background: var(--brass-soft);
}
.ol-hero h1 {
  font-size: clamp(34px, 4.4vw, 56px);
  margin: 22px 0 20px;
  color: #fff;
  letter-spacing: -0.02em;
}
.ol-hero h1 .ol-hero__accent {
  color: var(--brass-soft);
}
.ol-hero .ol-hero__lead {
  font-size: 18.5px;
  color: #c3cdd8;
  max-width: 600px;
  margin-bottom: 30px;
}
.ol-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.ol-messenger-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 460px;
}
.ol-messenger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  min-height: 45px;
  padding: 0 10px;
  border-radius: var(--radius);
  color: #fff;
  transition: 0.15s;
}
.ol-messenger:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}
.ol-messenger svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}
.ol-hero__trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 26px;
  margin-top: 28px;
  border-top: 1px solid var(--line-dark);
}
.ol-hero__trust div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ol-hero__trust .ol-page-hero__stat-value {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}
.ol-hero__trust .ol-page-hero__stat-label {
  font-size: 13px;
  color: var(--mist-2);
}
.ol-status-card {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-pop);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}
.ol-status-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.ol-status-card__head .acc {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--mist);
}
.ol-status-card__head .acc b {
  display: block;
  color: var(--ink);
  font-size: 15px;
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.ol-path-step {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  position: relative;
}
.ol-path-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 45px;
  bottom: -7px;
  width: 2px;
  background: var(--line);
}
.ol-path-step .idx {
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 14px;
  color: var(--mist);
  z-index: 2;
}
.ol-path-step .body b {
  font-weight: 600;
  font-size: 14.5px;
  display: block;
}
.ol-path-step .body span {
  font-size: 12.5px;
  color: var(--mist);
}

/* Components */
.ol-aeo {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brass);
  border-radius: var(--radius);
  padding: 30px 34px;
  max-width: 900px;
}
.ol-aeo p {
  font-size: 18px;
  line-height: 1.65;
}
.ol-key-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.ol-takeaways {
  padding: 26px;
  max-width: 900px;
}
.ol-takeaways ol {
  padding-left: 30px;
  display: grid;
  gap: 0; 
}
.ol-takeaways li {
  color: var(--ink-3);
}
.ol-situation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ol-situation-card {
  padding: 24px;
  transition: 0.18s;
}
.ol-situation-card:hover {
  border-color: var(--brass-soft);
  transform: translateY(-2px);
}
.ol-situation-card .code {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--brass-text);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.ol-situation-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.ol-situation-card p {
  font-size: 14.5px;
  color: var(--mist);
  margin-bottom: 14px;
}
.ol-do-dont {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.ol-do-dont__col {
  padding: 24px;
}
.ol-do-dont__col h3 {
  font-family: var(--sans);
  font-size: 16px;
  margin-bottom: 14px;
}
.ol-do-dont__col ul {
  list-style: none;
  display: grid;
  gap: 10px;
}
.ol-do-dont__col li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-3);
  font-size: 15px;
}
.ol-do-dont__col ol-do-dont__col--do {
  background: rgba(46, 125, 91, 0.055);
  border-color: rgba(46, 125, 91, 0.25);
}
.ol-do-dont__col ol-do-dont__col--dont {
  background: rgba(178, 58, 46, 0.045);
  border-color: rgba(178, 58, 46, 0.25);
}
.ol-do-dont__col ol-do-dont__col--do li::before {
  content: "вњ“";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.ol-do-dont__col ol-do-dont__col--dont li::before {
  content: "вњ•";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
.ol-doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ol-doc-card {
  padding: 22px;
}
.ol-doc-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.ol-doc-card p {
  font-size: 14.5px;
  color: var(--mist);
}
.ol-levels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
}
.ol-path-section {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.ol-path-section .ol-section-head h2 {
  color: #fff;
}
.ol-path-section .ol-section-head p {
  color: #aebac7;
}
.ol-path-section .ol-eyebrow {
  color: var(--brass-soft);
}
.ol-path-section .ol-eyebrow::before {
  background: var(--brass-soft);
}
.ol-levels__item {
  padding: 30px 24px;
  border-right: 1px solid var(--line-dark);
}
.ol-levels__item:last-child {
  border-right: 0;
}
.ol-levels__item .ol-levels__number {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--brass-soft);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.ol-levels__item h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 9px;
}
.ol-levels__item p {
  font-size: 14px;
  color: #aebac7;
  margin-bottom: 16px;
}
.ol-levels__item .ol-levels__meta {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--mist-2);
  display: grid;
  gap: 6px;
}
.ol-levels__item .ol-levels__meta b {
  color: #fff;
  font-weight: 500;
}
.ol-included {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.ol-included__list {
  display: grid;
  gap: 2px;
}
.ol-included__item {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.ol-included__item .ol-included__check {
  width: 26px;
  height: 26px;
  border-radius: var(--radius);
  background: rgba(46, 125, 91, 0.1);
  color: var(--green);
  display: grid;
  place-items: center;
  font-weight: 700;
}
.ol-included__item b {
  font-weight: 600;
  font-size: 16px;
  display: block;
  margin-bottom: 3px;
}
.ol-included__item span {
  font-size: 14.5px;
  color: var(--mist);
}
.ol-price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.ol-price-table th,
.ol-price-table td {
  text-align: left;
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
}
.ol-price-table thead th {
  background: #eef1f4;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mist);
  font-weight: 600;
}
.ol-price-table tbody tr:last-child td {
  border-bottom: 0;
}
.ol-price-table .ol-price-table__service {
  font-weight: 600;
  font-size: 16px;
}
.ol-price-table .ol-price-table__service small {
  display: block;
  font-weight: 400;
  font-size: 13.5px;
  color: var(--mist);
  margin-top: 3px;
}
.ol-price-table .ol-price-table__term,
.ol-price-table .ol-price-table__price {
  font-family: var(--mono);
}
.ol-price-table .ol-price-table__term {
  font-size: 13.5px;
  color: var(--mist);
}
.ol-price-table .ol-price-table__price {
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
}
.ol-price-table__note {
  font-size: 13.5px;
  color: var(--mist);
  margin-top: 14px;
}
.ol-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}
.ol-packages__item {
  padding: 24px;
}
.ol-packages__item h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.ol-packages__item .ol-packages__badge {
  font-size: 14px;
  color: var(--mist);
  margin-bottom: 16px;
}
.ol-packages__item ul {
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--ink-3);
  font-size: 14.5px;
}
.ol-packages__item .price {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 18px;
  margin: 18px 0 14px;
}
.ol-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: ol-steps__item;
}
.ol-steps__item {
  position: relative;
  padding-top: 24px;
}
.ol-steps__item::before {
  counter-increment: ol-steps__item;
  content: "0" counter(ol-steps__item);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--brass-text);
  position: absolute;
  top: 0;
  left: 0;
}
.ol-steps__item .bar {
  height: 3px;
  background: var(--line);
  border-radius: var(--radius);
  margin-bottom: 18px;
  overflow: hidden;
}
.ol-steps__item .bar i {
  display: block;
  height: 100%;
  background: var(--brass);
}
.ol-steps__item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.ol-steps__item p {
  font-size: 14.5px;
  color: var(--mist);
}
.ol-source-box {
  padding: 24px;
}
.ol-source-box__list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}
.ol-source-box__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.ol-source-box__item b {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--brass-text);
  text-transform: uppercase;
}
.ol-source-box__item span {
  font-size: 14.5px;
  color: var(--ink-3);
}
.ol-examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ol-example-doc {
  overflow: hidden;
}
.ol-example-doc .ol-doc-card__preview {
  height: 170px;
  border-bottom: 1px dashed #b7c0ca;
}
.ol-example-doc .body {
  padding: 20px;
}
.ol-example-doc h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.ol-example-doc p {
  font-size: 14.5px;
  color: var(--mist);
  margin-bottom: 14px;
}
.ol-about {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 42px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px;
}
.ol-about__photo-container {
  max-width: 100%;
}
.ol-about__photo {
  width: 100%;
}
.ol-about .ol-about__role {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--brass-text);
  letter-spacing: 0.04em;
  margin: 6px 0 18px;
}
.ol-about p {
  font-size: 16px;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.ol-creds {
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.ol-creds__item {
  border-left: 2px solid var(--brass);
  padding: 4px 0 4px 13px;
}
.ol-creds__item b {
  font-family: var(--mono);
  font-size: 17px;
  display: block;
}
.ol-creds__item span {
  font-size: 12.5px;
  color: var(--mist);
}
.ol-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ol-case {
  overflow: hidden;
}
.ol-case .c-body {
  padding: 22px;
}
.ol-case .c-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 12px;
}
.ol-case h3 {
  font-size: 17px;
  margin-bottom: 10px;
}
.ol-case p {
  font-size: 14.5px;
  color: var(--mist);
  margin-bottom: 15px;
}
.ol-case .c-result {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  color: var(--green);
  font-weight: 600;
  font-size: 14px;
}
.ol-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ol-review {
  overflow: hidden;
}
.ol-review__shot {
  aspect-ratio: 9/16;
  background: linear-gradient(180deg, #eef1f4, #e3e7ec);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--mist);
  padding: 18px;
}
.ol-review .body {
  padding: 18px;
}
.ol-review h3 {
  font-family: var(--sans);
  font-size: 15px;
  margin-bottom: 6px;
}
.ol-review p {
  font-size: 13.5px;
  color: var(--mist);
}
.ol-reading-grid,
.ol-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ol-article-card,
.ol-related-card {
  overflow: hidden;
}
.ol-article-card__thumb {
  height: 150px;
  border-bottom: 1px dashed #b7c0ca;
}
.ol-article-card__body,
.ol-related-card {
  padding: 20px;
}
.ol-article-card__meta {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brass-text);
  margin-bottom: 10px;
}
.ol-article-card h3,
.ol-related-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.ol-article-card p,
.ol-related-card p {
  font-size: 14.5px;
  color: var(--mist);
  margin-bottom: 14px;
}
.ol-inline-cta {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brass);
  border-radius: var(--radius);
  padding: 30px;
}
.ol-inline-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
}
.ol-inline-form input {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 15px;
}
.ol-inline-form input:focus {
  outline: 2px solid var(--brass);
  border-color: transparent;
}
.ol-form {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.ol-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 7px;
}
.ol-form input,
.ol-form textarea,
.ol-form select {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 15px;
  margin-bottom: 14px;
  color: var(--ink);
  background: #fff;
}
.ol-form textarea {
  min-height: 96px;
  resize: vertical;
}
.ol-form input:focus,
.ol-form textarea:focus,
.ol-form select:focus {
  outline: 2px solid var(--brass);
  border-color: transparent;
}
.ol-form__consent {
  font-size: 12px;
  color: var(--mist);
  margin-top: 6px;
  line-height: 1.45;
}
.ol-form__consent a {
  color: var(--brass-text);
  text-decoration: underline;
}
.ol-form__consent a:hover {
  color: var(--brass);
}
.ol-form .ol-form__consent {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 400;
  color: var(--mist);
  margin-top: 6px;
  line-height: 1.45;
}
.ol-form .ol-form__consent input[type="checkbox"] {
  width: auto;
  flex: 0 0 auto;
  margin: 2px 0 0;
  padding: 0;
  min-height: unset;
}
.ol-form__consent .ol-form__error {
  flex-basis: 100%;
  margin: 4px 0 0;
}
.ol-form__alt {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.ol-form__alt .lbl {
  display: block;
  font-size: 13px;
  color: var(--mist);
  margin-bottom: 9px;
}
.ol-cta-final-section {
  padding-top: 0;
}
.ol-cta-final__content {
  margin-bottom: 20px;
}
.ol-cta-final {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 46px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.ol-cta-final::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(169, 128, 63, 0.22),
    transparent 70%
  );
}
.ol-cta-final h2 {
  font-size: 34px;
  color: #fff;
  margin-bottom: 14px;
  position: relative;
}
.ol-cta-final p {
  color: #aebac7;
  font-size: 17px;
  position: relative;
}
.ol-faq {
  max-width: 860px;
}
.ol-faq__item {
  border-bottom: 1px solid var(--line);
}
.ol-faq__question {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  color: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  font-size: 19px;
  cursor: pointer;
  font-family: var(--serif);
  font-weight: 600;
}
.ol-faq__question .ol-faq__icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--brass-text);
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease;
}
.ol-faq__question .ol-faq__icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  fill: none;
}
.ol-faq__question .ol-faq__icon svg .v {
  transform-origin: 12px 12px;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.ol-faq__question:hover .ol-faq__icon {
  border-color: var(--brass-soft);
}
.ol-faq__item--open .ol-faq__question .ol-faq__icon {
  background: var(--brass);
  border-color: var(--brass-text);
  color: #fff;
}
.ol-faq__item--open .ol-faq__question .ol-faq__icon svg .v {
  transform: scaleY(0);
}
.ol-faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.34s cubic-bezier(0.4, 0, 0.2, 1);
}
.ol-faq__item--open .ol-faq__answer {
  grid-template-rows: 1fr;
}
.ol-faq__answer-inner {
  overflow: hidden;
  min-height: 0;
}
.ol-faq__answer-body {
  font-size: 16px;
  color: var(--mist);
  max-width: 700px;
  padding: 0 0 26px;
}
@media (prefers-reduced-motion: reduce) {
  .ol-faq__answer {
    transition: none;
  }
  .ol-faq__question .ol-faq__icon,
  .ol-faq__question .ol-faq__icon svg .v {
    transition: none;
  }
}
.ol-disclaimer {
  background: #edeff2;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.55;
}
.ol-disclaimer b {
  color: var(--ink);
}
footer {
  background: var(--ink);
  color: #aebac7;
  padding: 54px 0 34px;
}
.ol-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line-dark);
}
footer .ol-header__brand {
  color: #fff;
}
footer .ol-header__brand .ol-header__logo {
  background: #fff;
  color: var(--ink);
}
.ol-footer__heading {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mist-2);
  margin: 0 0 16px;
}
.ol-footer__col a {
  display: block;
  color: #aebac7;
  font-size: 14.5px;
  margin-bottom: 10px;
}
.ol-footer__col a:hover { 
  color: #fff;
}
.ol-footer__bottom {
  padding-top: 24px;
  font-size: 12.5px;
  color: var(--mist-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.ol-footer__legal-nav {
  margin: 0;
}
.ol-footer__legal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}
.ol-footer__legal-list a {
  color: var(--mist-2);
  text-decoration: none;
}
.ol-footer__legal-list a:hover {
  color: #fff;
}
.ol-share-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.ol-share-bar__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.ol-share-bar__btn {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 600;
  background: #fff;
  color: var(--ink);
}
/* icons v1.4 */
.ol-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ol-card-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: rgba(169, 128, 63, 0.08);
  border: 1px solid rgba(169, 128, 63, 0.2);
  display: grid;
  place-items: center;
  color: var(--brass-text);
  margin-bottom: 14px;
}
.ol-card-icon .ol-icon {
  width: 24px;
  height: 24px;
}
/* meta bar: ol-breadcrumbs + ol-reviewed (LP-01/LP-02) */
.ol-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 15px 0;
}
.ol-crumbs {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--mist);
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.ol-crumbs a:hover {
  color: var(--brass-text);
}
.ol-crumbs .ol-crumbs__sep {
  color: var(--brass-soft);
}
.ol-crumbs .ol-crumbs__current {
  color: var(--ink);
}
.ol-reviewed {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-3);
}
.ol-reviewed .rb {
  width: 30px;
  height: 30px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: rgba(46, 125, 91, 0.12);
  color: var(--green);
}
.ol-reviewed .rb .ol-icon {
  width: 18px;
  height: 18px;
}
.ol-reviewed time {
  font-family: var(--mono);
  color: var(--brass-text);
}
.ol-src-ref {
  color: var(--brass-text);
  font-weight: 600;
  white-space: nowrap;
}
.ol-src-ref:hover {
  text-decoration: underline;
}
/* states & a11y v1.4 */
:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--brass-text);
  outline-offset: 2px;
  border-radius: var(--radius);
}
.ol-button:disabled,
.ol-button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.ol-form input.ol-form__field--invalid,
.ol-form select.ol-form__field--invalid,
.ol-form textarea.ol-form__field--invalid,
.ol-inline-form input.ol-form__field--invalid {
  border-color: var(--red);
  outline-color: var(--red);
}
.ol-form__error {
  display: block;
  font-size: 12px;
  color: var(--red);
  margin: -8px 0 12px;
}
/* ol-modal v1.4 */
.ol-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(17, 46, 36, 0.62);
  backdrop-filter: blur(3px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 16px;
  overflow-y: auto;
}
.ol-modal-backdrop--open {
  display: flex;
}
.ol-modal {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  max-width: 540px;
  width: 100%;
  box-shadow: var(--shadow-pop);
  position: relative;
  animation: modalIn 0.22s ease;
}
@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.ol-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 28px 0;
}
.ol-modal__head h3 {
  font-size: 26px;
  margin-top: 6px;
}
.ol-modal__close {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: 0.15s;
}
.ol-modal__close:hover {
  border-color: var(--brass-soft);
  color: var(--brass-text);
}
.ol-modal__body {
  padding: 18px 28px 28px;
}
.ol-modal__intro {
  font-size: 14.5px;
  color: var(--mist);
  line-height: 1.55;
  margin: 0 0 16px;
}
.ol-modal .ol-form {
  background: transparent;
  border: 0;
  padding: 0;
  max-width: none;
  box-shadow: none;
  margin: 0;
}
.ol-modal__success {
  background: rgba(46, 125, 91, 0.08);
  border: 1px solid rgba(46, 125, 91, 0.25);
  border-radius: var(--radius);
  padding: 18px;
  margin-top: 16px;
}
.ol-modal__success b {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
}
.ol-modal__success span {
  color: var(--ink-3);
  font-size: 14.5px;
}
.ol-modal .ol-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 12px;
}
.ol-modal .ol-messenger-row {
  max-width: none;
}
.ol-modal .ol-form__field--full {
  grid-column: 1/-1;
}
body.ol-modal-lock {
  overflow: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .ol-modal {
    animation: none;
  }
}
.ol-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.ol-reveal--visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .ol-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .ol-button:hover,
  .ol-situation-card:hover,
  .ol-messenger:hover,
  .ol-messenger ol-messenger--mini:hover {
    transform: none;
  }
  .ol-hero__dyn-line {
    animation: none;
  }
  .ol-hero__dynamic,
  .ol-hero__dynamic .ol-hero__dyn-svg {
    transform: none !important;
    transition: none !important;
  }
}
/* tablet в‰¤1279px */
@media (max-width: 1279px) {
  .ol-header__links {
    display: none;
  }
  .ol-header__burger {
    display: block;
  }
  .ol-hero__grid,
  .ol-included,
  .ol-about,
  .ol-cta-final,
  .ol-inline-cta {
    grid-template-columns: 1fr;
  }
  .ol-situation-grid,
  .ol-doc-grid,
  .ol-packages,
  .ol-examples-grid,
  .ol-case-grid,
  .ol-review-grid,
  .ol-reading-grid,
  .ol-related-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ol-levels,
  .ol-steps,
  .ol-key-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ol-levels__item {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }
  .ol-inline-form {
    grid-template-columns: 1fr;
  }
  .ol-cta-final {
    padding: 38px;
  }
  .ol-hero__dynamic {
    opacity: 0.26;
  }
}
/* mobile в‰¤767px */ 
@media (max-width: 767px) {
  body {
    font-size: 16px;
  }
  .ol-wrap {
    padding: 0 16px;
  }
  section {
    padding: 60px 0; 
  }
  .ol-hero__grid {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .ol-hero__actions,
  .ol-messenger-row {
    flex-direction: column;
  }
  .ol-button,
  .ol-messenger {
    width: 100%;
  }
  .ol-header__actions .ol-messenger {
    display: none;
  }
  .ol-header__phone,
  .ol-header__actions .ol-button--dark {
    display: none;
  }
  .ol-header__inner {
    gap: 10px;
  }
  .ol-header__actions {
    gap: 6px;
  }
  .ol-header__search-toggle {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }
  .ol-header-search__inner {
    min-height: 0;
    padding-top: 22px;
    padding-bottom: 26px;
  }
  .ol-header-search__heading {
    min-width: 0;
  }
  .ol-header-search__form {
    flex-direction: column;
  }
  .ol-header-search .ol-search-form__submit {
    width: 100%;
  }
  .ol-header-search__hints {
    align-content: flex-start;
  }
  .ol-header__brand small {
    font-size: 11px;
    line-height: 14px;
    max-width: 180px;
  }
  .ol-header__links-list {
    flex-direction: column;
    border-top: 1px solid #eee;
    padding: 20px 0 10px;
    font-size: 16px;
  }
  .ol-section-head p {
    font-size: 14px;
  }
  .ol-situation-grid,
  .ol-doc-grid,
  .ol-packages,
  .ol-examples-grid,
  .ol-case-grid,
  .ol-review-grid,
  .ol-reading-grid,
  .ol-related-grid,
  .ol-levels,
  .ol-steps,
  .ol-key-grid,
  .ol-creds,
  .ol-do-dont,
  .ol-modal .ol-form__grid {
    grid-template-columns: 1fr;
  }
  .ol-price-table thead {
    display: none;
  }
  .ol-price-table tr {
    display: block;
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
  }
  .ol-price-table td {
    display: block;
    border: 0;
    padding: 6px 18px;
  }
  .ol-source-box__item {
    grid-template-columns: 1fr;
  }
  .ol-share-bar {
    align-items: flex-start;
    flex-direction: column;
  }
  .ol-cta-final {
    padding: 28px;
  }
  .ol-review__shot {
    max-height: 520px;
  }
  .ol-footer__grid {
    grid-template-columns: 1fr;
  }
  .ol-header__brand {
    font-size: 17px;
  }
  .ol-hero__dynamic {
    display: none;
  }
  .ol-hero::after {
    opacity: 0.85;
  }
}

/* BEM shared lead/stat typography */
.ol-section-head .ol-hero__lead {
  font-size: 18px;
  color: var(--mist);
}
.ol-page-hero .ol-hero__lead {
  font-size: 19px;
  color: var(--ink-3);
  max-width: 720px;
}
.ol-hero__trust .ol-hero__stat-value {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}
.ol-hero__trust .ol-hero__stat-label {
  font-size: 13px;
  color: var(--mist-2);
}
footer.ol-footer {
  background: var(--ink);
  color: #aebac7;
  padding: 54px 0 34px;
}
footer.ol-footer .ol-header__brand {
  color: #fff;
}
footer.ol-footer .ol-header__brand .ol-header__logo {
  background: #fff;
  color: var(--ink);
}
.ol-header__brand .ol-header__logo img {
  display: block;
  max-height: 45px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.ol-footer .menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
