:root {
  --bg: #f5f5f7;
  --paper: #fffdf8;
  --ink: #050505;
  --muted: #5d5d5d;
  --line: rgba(0, 0, 0, 0.14);
  --danger: #b81f1b;
  --danger-dark: #8f1714;
  --dark: #020202;
  --white: #fff9f6;
  --max: 1440px;
  --pad: clamp(18px, 3.2vw, 64px);
  --page-width: min(var(--max), calc(100% - var(--pad) - var(--pad)));
  --radius: 0;
  --font-display: "Bauhaus Display", system-ui, sans-serif;
  --font-text: "Bauhaus Text", system-ui, sans-serif;
  --font-ui: "Bauhaus Text", system-ui, sans-serif;
}

@font-face {
  font-family: "Bauhaus Display";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/geologica-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Bauhaus Display";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/geologica-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Bauhaus Display";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/geologica-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Bauhaus Text";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Bauhaus Text";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Bauhaus Text";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-text);
  letter-spacing: 0;
  font-kerning: normal;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

body.legal-open {
  overflow: hidden;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

h1,
h2,
h3,
p,
li,
a,
button,
span {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1,
h2,
h3,
p,
li {
  text-wrap: pretty;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 42px;
  width: var(--page-width);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 245, 247, 0.92);
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-family: var(--font-ui);
  font-weight: 800;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 32px;
  flex: 0 0 auto;
  box-sizing: border-box;
  padding: 5px 7px;
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
}

.brand-icon {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.brand-path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.08;
  stroke-linecap: square;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  transform-box: fill-box;
  transform-origin: 50% 50%;
}

.brand-path-burst {
  stroke: var(--danger);
  stroke-width: 1.38;
}

.brand-mark .brand-path-burst {
  stroke: currentColor;
}

.brand strong {
  font-size: 20px;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 46px;
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
}

.nav a,
.header-phone {
  transition: opacity 0.2s ease;
}

.header-phone:hover {
  opacity: 0.55;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-bottom: -7px;
  padding-bottom: 7px;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size 0.16s ease;
}

.nav a:hover {
  background-size: 100% 2px;
}

.header-phone {
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 800;
  white-space: nowrap;
}

.menu-button {
  display: none;
  border: 1px solid var(--ink);
  background: transparent;
  padding: 10px 14px;
  font-weight: 800;
}

.hero {
  width: var(--page-width);
  max-width: none;
  margin: 0 auto;
  padding: 44px 0 0;
}

.hero-top {
  position: relative;
  min-height: 360px;
  padding-bottom: clamp(24px, 3vw, 46px);
}

.eyebrow,
.kicker {
  margin: 0 0 18px;
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--ink);
  vertical-align: 0.08em;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
}

h1 {
  position: relative;
  z-index: 1;
  max-width: 1130px;
  font-size: clamp(56px, 8.1vw, 118px);
  font-weight: 400;
  line-height: 0.88;
}

h2 {
  font-size: clamp(38px, 4.65vw, 72px);
  font-weight: 400;
  line-height: 0.94;
}

h3 {
  font-size: clamp(28px, 2.9vw, 44px);
  font-weight: 500;
  line-height: 0.98;
}

.hero-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-products a {
  position: relative;
  --move-x: 0px;
  --move-y: 0px;
  --move-x-sm: 0px;
  --move-y-sm: 0px;
  --move-x-neg: 0px;
  --move-y-neg: 0px;
  --rot: 0deg;
  --rot-neg: 0deg;
  min-width: 0;
  min-height: 360px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  padding: 18px 18px 0 0;
  overflow: hidden;
  transition: none;
}

.hero-products a:last-child {
  border-right: 0;
}

.hero-products a:hover,
.hero-products a:focus-visible {
  background: var(--ink);
  border-color: rgba(255, 249, 246, 0.22);
  color: var(--white);
}

.hero-products span {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.1vw, 32px);
  font-weight: 500;
  line-height: 1.05;
}

.hero-arrow {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 0.78em;
  margin-left: 8px;
  vertical-align: -0.08em;
  font-style: normal;
  color: currentColor;
  transition: width 0.46s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-arrow::before,
.hero-arrow::after {
  content: "";
  position: absolute;
  display: block;
}

.hero-arrow::before {
  top: 50%;
  right: 0;
  left: 0;
  height: 3px;
  background: currentColor;
  transform: translateY(-50%);
}

.hero-arrow::after {
  top: 50%;
  right: 1px;
  width: 10px;
  height: 10px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.hero-products a:hover .hero-arrow,
.hero-products a:focus-visible .hero-arrow {
  width: clamp(58px, 5vw, 86px);
}

.line-icon {
  position: relative;
  display: block;
  height: 250px;
  margin-top: 38px;
  color: currentColor;
  transform-origin: 50% 58%;
  transition: none;
  will-change: transform;
}

.line-icon::before,
.line-icon::after {
  content: "";
  position: absolute;
  border: 4px solid currentColor;
  transition: none;
  will-change: transform;
}

.hero-products a:hover .line-icon,
.hero-products a:focus-visible .line-icon {
  transform: translate3d(var(--move-x-sm), var(--move-y-sm), 0) rotate(var(--rot));
}

.line-icon-penalty::before {
  left: 18%;
  top: 5%;
  width: 36%;
  height: 78%;
  transform: skewY(-18deg);
  border-radius: 18px 18px 4px 4px;
}

.line-icon-penalty::after {
  right: 14%;
  top: 48%;
  width: 28%;
  height: 28%;
  border-radius: 50%;
}

.line-icon-box::before {
  left: 12%;
  bottom: 12%;
  width: 68%;
  height: 46%;
  transform: skewY(-12deg);
}

.line-icon-box::after {
  left: 30%;
  top: 9%;
  width: 40%;
  height: 52%;
  border-top: 0;
  transform: skewY(13deg);
}

.line-icon-pay::before {
  left: 12%;
  top: 18%;
  width: 72%;
  height: 48%;
  border-radius: 8px;
}

.line-icon-pay::after {
  left: 22%;
  top: 34%;
  width: 26%;
  height: 26%;
  border-radius: 50%;
}

.line-icon-lock::before {
  left: 18%;
  bottom: 12%;
  width: 58%;
  height: 46%;
  border-radius: 4px;
}

.line-icon-lock::after {
  left: 32%;
  top: 18%;
  width: 30%;
  height: 32%;
  border-bottom: 0;
  border-radius: 60px 60px 0 0;
}

.hero-products a:hover .line-icon-penalty::before,
.hero-products a:focus-visible .line-icon-penalty::before {
  transform: skewY(-10deg) translate(var(--move-x), var(--move-y-neg)) rotate(var(--rot));
}

.hero-products a:hover .line-icon-penalty::after,
.hero-products a:focus-visible .line-icon-penalty::after {
  transform: translate(var(--move-x-neg), var(--move-y-sm)) scale(1.18);
}

.hero-products a:hover .line-icon-box::before,
.hero-products a:focus-visible .line-icon-box::before {
  transform: skewY(-6deg) translate(var(--move-x-sm), var(--move-y-neg)) rotate(var(--rot));
}

.hero-products a:hover .line-icon-box::after,
.hero-products a:focus-visible .line-icon-box::after {
  transform: skewY(8deg) translate(var(--move-x-neg), var(--move-y)) rotate(var(--rot-neg));
}

.hero-products a:hover .line-icon-pay::before,
.hero-products a:focus-visible .line-icon-pay::before {
  transform: translate(var(--move-x-sm), var(--move-y-neg)) rotate(var(--rot));
}

.hero-products a:hover .line-icon-pay::after,
.hero-products a:focus-visible .line-icon-pay::after {
  transform: translate(var(--move-x), var(--move-y)) scale(0.86);
}

.hero-products a:hover .line-icon-lock::before,
.hero-products a:focus-visible .line-icon-lock::before {
  transform: translate(var(--move-x-sm), var(--move-y-sm));
}

.hero-products a:hover .line-icon-lock::after,
.hero-products a:focus-visible .line-icon-lock::after {
  transform: translate(var(--move-x-sm), var(--move-y-neg)) scaleX(0.78);
}

@media (prefers-reduced-motion: reduce) {
  .hero-products a,
  .service-grid article,
  .service-grid a,
  .numbers span,
  .lead-motion,
  .lead-motion span,
  .lead-motion span::before,
  .lead-motion span::after,
  .line-icon,
  .line-icon::before,
  .line-icon::after,
  .service-arrow {
    transition: none;
  }
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: var(--page-width);
  max-width: none;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.split-section > div,
.split-section > figure {
  min-width: 0;
  min-height: 620px;
}

.split-section > div {
  padding: 58px var(--pad);
}

.large-copy {
  margin-top: 28px;
  font-size: clamp(28px, 3.1vw, 48px);
  font-weight: 500;
  line-height: 1.02;
}

.mono-image {
  margin: 0;
  overflow: hidden;
  background: #ddd;
}

.mono-image img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.18);
  mix-blend-mode: multiply;
}

.numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: var(--page-width);
  max-width: none;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.numbers div {
  min-height: 250px;
  border-right: 1px solid var(--line);
  padding: 26px var(--pad);
}

.numbers div:last-child {
  border-right: 0;
}

.numbers span {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(90px, 12vw, 190px);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  line-height: 0.8;
  transform: translateY(0);
  opacity: 1;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.numbers span.is-pre-count {
  transform: translateY(10px);
  opacity: 0.42;
}

.numbers span.is-counted {
  transform: translateY(0);
  opacity: 1;
}

.numbers p {
  max-width: 260px;
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.1;
}

@media (prefers-reduced-motion: reduce) {
  .numbers span {
    transition: none;
  }
}

.section {
  width: var(--page-width);
  max-width: none;
  margin: 0 auto;
  padding: 76px 0;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 980px;
  margin-bottom: 44px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.situation-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.situation-grid article,
.service-grid article {
  position: relative;
  --move-x: 0px;
  --move-y: 0px;
  --move-x-sm: 0px;
  --move-y-sm: 0px;
  --move-x-neg: 0px;
  --move-y-neg: 0px;
  --rot: 0deg;
  --rot-neg: 0deg;
  min-width: 0;
  min-height: 320px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px;
}

.situation-grid article {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--ink);
  padding: 0;
  transition: none;
}

.situation-grid article:hover,
.situation-grid article:focus-within {
  background: var(--ink);
  border-color: rgba(255, 249, 246, 0.24);
  color: var(--white);
}

.situation-grid article:hover p,
.situation-grid article:focus-within p {
  color: rgba(255, 249, 246, 0.72);
}

.situation-grid article:hover .situation-price strong,
.situation-grid article:focus-within .situation-price strong {
  color: var(--white);
}

.situation-card {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 100%;
  color: inherit;
  padding: 24px;
}

.situation-card:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: -2px;
}

.situation-grid h3 {
  min-height: calc(2em * 0.98);
}

.situation-grid article > span,
.service-grid article > span {
  display: block;
  margin-bottom: 48px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
}

.situation-grid p,
.service-grid li {
  margin-top: 18px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.15;
}

.situation-grid p {
  margin-top: clamp(24px, 2vw, 34px);
  min-height: calc(3em * 1.15);
}

.situation-price {
  margin-top: 34px;
}

.situation-price strong {
  display: inline-flex;
  align-items: baseline;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(38px, 3.7vw, 58px);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  line-height: 0.92;
  white-space: nowrap;
}

.price-value {
  letter-spacing: 0;
}

.price-currency {
  display: inline-block;
  margin-left: 0.08em;
  font-family: inherit;
  font-size: 0.9em;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  transform: translateY(0.03em);
}

.situation-card-action,
.service-grid a {
  display: inline-block;
  margin-top: 24px;
  border-bottom: 2px solid var(--ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
}

.situation-card-action,
.service-grid a {
  border-bottom: 0;
}

.situation-grid .service-link-text,
.service-grid .service-link-text {
  display: inline-block;
  margin-bottom: 0;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 2px;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-decoration: none;
  transition: background-size 0.36s cubic-bezier(0.16, 1, 0.3, 1), background-position 0.36s cubic-bezier(0.16, 1, 0.3, 1);
}

.situation-card:hover .service-link-text,
.situation-card:focus-visible .service-link-text,
.service-grid article:hover .service-link-text,
.service-grid article:focus-within .service-link-text,
.service-grid a:hover .service-link-text,
.service-grid a:focus-visible .service-link-text {
  background-position: 100% 100%;
  background-size: 0% 2px;
}

.service-arrow {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 0.78em;
  margin-left: 8px;
  vertical-align: -0.08em;
  font-style: normal;
  color: currentColor;
  transition: width 0.46s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-arrow::before,
.service-arrow::after {
  content: "";
  position: absolute;
  display: block;
}

.service-arrow::before {
  top: 50%;
  right: 0;
  left: 0;
  height: 3px;
  background: currentColor;
  transform: translateY(-50%);
}

.service-arrow::after {
  top: 50%;
  right: 1px;
  width: 10px;
  height: 10px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.situation-card:hover .service-arrow,
.situation-card:focus-visible .service-arrow,
.service-grid article:hover .service-arrow,
.service-grid article:focus-within .service-arrow,
.service-grid a:hover .service-arrow,
.service-grid a:focus-visible .service-arrow {
  width: clamp(58px, 5vw, 86px);
}

.dispute-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  min-height: 330px;
  background: var(--danger);
  color: var(--white);
  border-right: 1px solid var(--danger-dark);
  border-bottom: 1px solid var(--danger-dark);
  border-left: 1px solid var(--danger-dark);
}

.dispute-cta-copy,
.dispute-cta-side {
  min-width: 0;
  padding: clamp(28px, 4.2vw, 64px);
}

.dispute-cta-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 32px);
}

.dispute-cta-label {
  max-width: 360px;
  color: rgba(255, 249, 246, 0.72);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.dispute-cta h3 {
  max-width: 900px;
  color: var(--white);
  font-size: clamp(38px, 4.3vw, 68px);
  font-weight: 400;
  line-height: 0.94;
  text-wrap: balance;
}

.dispute-cta h3 span {
  display: block;
  font-size: 1em;
  line-height: inherit;
  overflow-wrap: break-word;
  word-break: normal;
}

.dispute-cta.is-long-solution h3 {
  font-size: clamp(36px, 3.8vw, 58px);
}

.dispute-cta.is-extra-long-solution h3 {
  font-size: clamp(32px, 3.2vw, 50px);
}

.dispute-cta-copy > p:not(.dispute-cta-label) {
  max-width: 820px;
  color: rgba(255, 249, 246, 0.84);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 500;
  line-height: 1.04;
}

.dispute-cta-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  border-left: 1px solid rgba(255, 249, 246, 0.32);
}

.dispute-cta-price {
  display: grid;
  gap: 8px;
  color: var(--white);
}

.dispute-cta-price > span {
  color: rgba(255, 249, 246, 0.72);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.dispute-cta-price strong {
  display: flex;
  align-items: flex-start;
  gap: 0.08em;
  font-family: var(--font-display);
  font-size: clamp(58px, 6.4vw, 112px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.86;
}

.dispute-cta-price em {
  font-family: var(--font-text);
  font-size: 0.62em;
  font-style: normal;
  font-weight: 500;
  line-height: 0.96;
  transform: translateY(0.06em);
}

.dispute-cta-side > p {
  max-width: 640px;
  color: rgba(255, 249, 246, 0.86);
  font-size: clamp(20px, 1.55vw, 25px);
  font-weight: 500;
  line-height: 1.08;
}

.dispute-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-end;
}

.dispute-cta-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid rgba(255, 249, 246, 0.58);
  color: var(--white);
  padding: 0 16px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.dispute-cta-actions a:hover,
.dispute-cta-actions a:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: #9f1a17;
  transform: translateY(-2px);
}

.dispute-cta-actions .dispute-cta-primary {
  background: var(--white);
  color: #9f1a17;
  border-color: var(--white);
}

.dispute-cta-actions .dispute-cta-primary:hover,
.dispute-cta-actions .dispute-cta-primary:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.plain-list {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.05;
}

.plain-list li::before {
  content: "—\00a0";
}

.process {
  width: var(--page-width);
  max-width: none;
  margin: 0 auto;
  padding: 76px 0 0;
  border-bottom: 1px solid var(--line);
}

.process .section-heading {
  padding: 0;
}

.process-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 570px;
  overflow: hidden;
  background: #000;
  color: var(--white);
}

.process-strip::before,
.process-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.process-strip::before {
  background: url("assets/documents.webp") center / cover;
  filter: grayscale(1) contrast(1.14);
}

.process-strip::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), #000);
}

.process-strip article {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  padding: 28px;
}

.process-strip article:last-child {
  border-right: 0;
}

.process-strip span,
.process-strip p {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 400;
  line-height: 0.98;
}

.contact-band,
.lead-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  width: var(--page-width);
  max-width: none;
  margin: 0 auto;
  background: var(--dark);
  color: var(--white);
  padding: 86px var(--pad);
}

.contact-band {
  position: relative;
  --contact-pull: 0px;
  --contact-wobble-y: 0px;
  --contact-wobble-y-neg: 0px;
  --contact-burst-x: 0px;
  --contact-burst-y: 0px;
  --contact-rot: 0deg;
  --contact-rot-neg: 0deg;
  --contact-burst-scale: 1.08;
  overflow: hidden;
  isolation: isolate;
}

.contact-band > *,
.lead-section > * {
  min-width: 0;
}

.contact-band h2,
.lead-section h2 {
  color: var(--white);
}

.contact-band p:not(.kicker) {
  max-width: 760px;
  margin-top: 26px;
  color: rgba(255, 249, 246, 0.75);
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 500;
  line-height: 1.04;
}

.invert {
  color: rgba(255, 249, 246, 0.65);
}

.contact-stack {
  display: grid;
  align-self: stretch;
  align-content: end;
  justify-items: start;
  min-height: 100%;
}

.contact-logo-scene {
  width: min(calc(100% - 20px), clamp(360px, 39vw, 640px));
  aspect-ratio: 64 / 40;
  margin: 0 0 clamp(34px, 4.2vw, 72px);
  overflow: visible;
  color: var(--white);
  transform: none;
  transform-origin: 51% 52%;
  transition: none;
  will-change: transform;
}

.contact-logo-icon {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.contact-logo-icon .brand-path {
  vector-effect: non-scaling-stroke;
  stroke-width: 4;
  transition: transform 460ms cubic-bezier(0.16, 0.84, 0.22, 1);
  will-change: transform;
}

.contact-band.is-motion-active .contact-logo-icon .brand-path {
  transition: none;
}

.contact-logo-icon .brand-path-seller {
  transform: none;
}

.contact-logo-icon .brand-path-market {
  transform: none;
}

.contact-logo-icon .brand-path-burst {
  fill: transparent;
  stroke: currentColor;
  stroke-width: 4.35;
  transform: scale(1.08);
}

.contact-band:hover .contact-logo-icon .brand-path-burst,
.contact-band:focus-within .contact-logo-icon .brand-path-burst,
.contact-band.is-motion-active .contact-logo-icon .brand-path-burst {
  fill: var(--danger);
  stroke: var(--danger);
}

.contact-band:hover,
.contact-band:focus-within,
.contact-band.is-motion-active {
  --contact-pull: 4.2px;
  --contact-wobble-y: 0.62px;
  --contact-wobble-y-neg: -0.62px;
  --contact-burst-x: 0px;
  --contact-burst-y: 0px;
  --contact-rot: 2.15deg;
  --contact-rot-neg: -2.15deg;
  --contact-burst-scale: 1.36;
}

.contact-band:hover .contact-logo-scene,
.contact-band:focus-within .contact-logo-scene,
.contact-band.is-motion-active .contact-logo-scene {
  transform: none;
}

.contact-band:hover .contact-logo-icon .brand-path-seller,
.contact-band:focus-within .contact-logo-icon .brand-path-seller,
.contact-band.is-motion-active .contact-logo-icon .brand-path-seller {
  transform: translate(var(--contact-pull), var(--contact-wobble-y)) rotate(var(--contact-rot));
}

.contact-band:hover .contact-logo-icon .brand-path-market,
.contact-band:focus-within .contact-logo-icon .brand-path-market,
.contact-band.is-motion-active .contact-logo-icon .brand-path-market {
  transform: translate(calc(var(--contact-pull) * -1), var(--contact-wobble-y-neg)) rotate(var(--contact-rot-neg));
}

.contact-band:hover .contact-logo-icon .brand-path-burst,
.contact-band:focus-within .contact-logo-icon .brand-path-burst,
.contact-band.is-motion-active .contact-logo-icon .brand-path-burst {
  transform: translate(var(--contact-burst-x), var(--contact-burst-y)) rotate(var(--contact-rot-neg)) scale(var(--contact-burst-scale));
}

.phone-xl {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 400;
  line-height: 0.92;
}

.messenger-row {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 18px;
  margin-top: 24px;
  justify-content: start;
}

.messenger-row a {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 2px;
  border-bottom: 0;
  font-size: 26px;
  font-weight: 500;
  transition: background-size 0.36s cubic-bezier(0.16, 1, 0.3, 1), background-position 0.36s cubic-bezier(0.16, 1, 0.3, 1);
}

.messenger-row a:hover,
.messenger-row a:focus-visible {
  background-position: 100% 100%;
  background-size: 0% 2px;
}

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

.service-grid article {
  min-height: 430px;
  overflow: hidden;
  color: var(--ink);
  transition: none;
}

.service-grid article:hover,
.service-grid article:focus-within {
  background: var(--ink);
  border-color: rgba(255, 249, 246, 0.24);
  color: var(--white);
}

.service-grid article:hover > span,
.service-grid article:focus-within > span,
.service-grid article:hover li,
.service-grid article:focus-within li {
  color: rgba(255, 249, 246, 0.72);
}

.service-grid article:hover li::before,
.service-grid article:focus-within li::before {
  color: var(--white);
}

.service-grid ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-grid li::before {
  content: "—\00a0";
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  min-width: 0;
  align-self: start;
}

.hp-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-band,
.lead-section {
  --move-x: 0px;
  --move-y: 0px;
  --move-x-sm: 0px;
  --move-y-sm: 0px;
  --move-x-neg: 0px;
  --move-y-neg: 0px;
  --rot: 0deg;
  --rot-neg: 0deg;
}

.lead-motion {
  position: relative;
  width: clamp(154px, 15vw, 228px);
  height: clamp(116px, 11vw, 168px);
  margin: clamp(22px, 3vw, 42px) 0 clamp(22px, 3vw, 40px);
  color: var(--white);
  transform-origin: 48% 58%;
  transition: none;
  will-change: transform;
}

.lead-motion span,
.lead-motion span::before,
.lead-motion span::after {
  content: "";
  position: absolute;
  display: block;
  color: currentColor;
  transition: none;
  will-change: transform;
}

.lead-motion-doc {
  left: 3%;
  top: 9%;
  width: 43%;
  height: 78%;
  border: 4px solid currentColor;
  border-radius: 16px 16px 5px 5px;
  transform: skewY(-13deg);
}

.lead-motion-doc::before,
.lead-motion-doc::after {
  right: 16%;
  left: 16%;
  height: 4px;
  background: currentColor;
}

.lead-motion-doc::before {
  top: 28%;
}

.lead-motion-doc::after {
  top: 46%;
}

.lead-motion-chat {
  right: 1%;
  top: 14%;
  width: 50%;
  height: 42%;
  border: 4px solid currentColor;
  border-radius: 8px;
}

.lead-motion-chat::before {
  right: 13%;
  bottom: -16px;
  width: 28px;
  height: 28px;
  border-right: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  transform: skewX(-20deg);
}

.lead-motion-chat::after {
  top: 42%;
  right: 18%;
  left: 18%;
  height: 4px;
  background: currentColor;
}

.lead-motion-check {
  right: 13%;
  bottom: 13%;
  width: 36%;
  height: 24%;
  border-right: 5px solid currentColor;
  border-bottom: 5px solid currentColor;
  transform: rotate(40deg);
}

.lead-section:hover .lead-motion,
.lead-section:focus-within .lead-motion {
  transform: translate3d(var(--move-x-sm), var(--move-y-sm), 0) rotate(var(--rot));
}

.lead-section:hover .lead-motion-doc,
.lead-section:focus-within .lead-motion-doc {
  transform: skewY(-7deg) translate(var(--move-x), var(--move-y-neg)) rotate(var(--rot));
}

.lead-section:hover .lead-motion-doc::before,
.lead-section:focus-within .lead-motion-doc::before {
  transform: translateX(var(--move-x-sm)) scaleX(0.7);
}

.lead-section:hover .lead-motion-doc::after,
.lead-section:focus-within .lead-motion-doc::after {
  transform: translateX(var(--move-x-neg)) scaleX(1.14);
}

.lead-section:hover .lead-motion-chat,
.lead-section:focus-within .lead-motion-chat {
  transform: translate(var(--move-x-neg), var(--move-y)) scaleX(0.9);
}

.lead-section:hover .lead-motion-check,
.lead-section:focus-within .lead-motion-check {
  transform: translate(var(--move-x), var(--move-y-sm)) rotate(40deg) scale(1.16);
}

.lead-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.lead-form span {
  color: rgba(255, 249, 246, 0.62);
  font-size: 16px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: #1a1a1a;
  color: var(--white);
  padding: 18px 16px;
  outline: 0;
}

.lead-form select {
  appearance: none;
  -webkit-appearance: none;
  background-color: #1a1a1a;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 249, 246, 0.72) 50%),
    linear-gradient(135deg, rgba(255, 249, 246, 0.72) 50%, transparent 50%);
  background-position:
    calc(100% - 24px) 50%,
    calc(100% - 17px) 50%;
  background-repeat: no-repeat;
  background-size: 8px 8px, 8px 8px;
  color-scheme: dark;
  cursor: pointer;
  padding-right: 48px;
}

.lead-form select::-ms-expand {
  display: none;
}

.lead-form select option {
  background: #1a1a1a;
  color: var(--white);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  background-color: #242424;
}

.lead-form .wide,
.lead-form > button,
.form-status {
  grid-column: 1 / -1;
}

.consent {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 10px;
}

.consent input {
  width: auto;
  margin-top: 3px;
}

.lead-form > button {
  min-height: 62px;
  border: 1px solid var(--white);
  background: var(--white);
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lead-form > button:hover {
  transform: translateY(-2px);
}

.lead-form.is-sending > button,
.lead-form > button:disabled {
  opacity: 0.58;
  cursor: wait;
  transform: none;
}

.form-status {
  min-height: 24px;
  color: rgba(255, 249, 246, 0.75);
  font-size: 16px;
}

.form-status.is-success {
  color: #fff9f6;
}

.form-status.is-error {
  color: #ff9e99;
}

.form-status.is-loading {
  color: rgba(255, 249, 246, 0.72);
}

.lead-notice {
  position: fixed;
  right: max(18px, calc((100vw - var(--page-width)) / 2));
  bottom: 92px;
  z-index: 95;
  width: min(420px, calc(100vw - 36px));
  border: 1px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  padding: 22px 22px 18px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.lead-notice.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lead-notice.is-error {
  background: #fff1ef;
  border-color: var(--danger);
}

.lead-notice strong {
  display: block;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 800;
  line-height: 0.98;
}

.lead-notice p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.18;
}

.lead-notice button {
  min-height: 38px;
  margin-top: 16px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  padding: 0 12px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.lead-notice button:hover {
  background: var(--ink);
  color: var(--white);
}

.faq {
  width: var(--page-width);
  max-width: none;
  margin: 0 auto;
  padding: 88px 0 76px;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  max-width: none;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-list details {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  transition: background 0.16s ease, border-color 0.16s ease;
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list details:hover,
.faq-list details[open] {
  background: #ececef;
}

.faq-list summary {
  display: grid;
  grid-template-columns: minmax(148px, 0.24fr) minmax(0, 1fr) 54px;
  gap: clamp(20px, 3.2vw, 54px);
  align-items: center;
  min-height: clamp(96px, 8vw, 132px);
  padding: 26px clamp(0px, 1.8vw, 28px);
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.faq-meta b {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.faq-list details[open] .faq-meta b {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.faq-question {
  display: block;
  max-width: 1040px;
  font-size: clamp(24px, 2.35vw, 40px);
  font-weight: 500;
  line-height: 1.02;
  text-wrap: balance;
}

.faq-marker {
  position: relative;
  display: block;
  justify-self: end;
  width: 54px;
  height: 54px;
  border: 1px solid currentColor;
  transition: background 0.16s ease, color 0.16s ease, transform 0.2s ease;
}

.faq-marker::before,
.faq-marker::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-marker::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details:hover .faq-marker,
.faq-list details[open] .faq-marker {
  background: var(--ink);
  color: var(--white);
}

.faq-list details[open] .faq-marker::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-columns: minmax(148px, 0.24fr) minmax(0, 1fr) 54px;
  gap: clamp(20px, 3.2vw, 54px);
  padding: 0 clamp(0px, 1.8vw, 28px) 34px;
}

.faq-answer p {
  grid-column: 2;
  max-width: 920px;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.28;
}

.footer {
  width: var(--page-width);
  max-width: none;
  margin: 0 auto;
  padding: 76px 0 52px;
  background: var(--bg);
}

.footer-action {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(390px, 0.8fr);
  gap: clamp(36px, 5vw, 82px);
  align-items: end;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--line);
}

.footer-action h2 {
  max-width: 980px;
  font-size: clamp(46px, 6.5vw, 108px);
  line-height: 0.9;
}

.footer-lead {
  max-width: 780px;
  margin-top: 26px;
  color: var(--muted);
  font-size: clamp(22px, 2.15vw, 34px);
  font-weight: 500;
  line-height: 1.08;
}

.footer-main-link {
  display: inline-flex;
  align-items: center;
  min-height: 74px;
  margin-top: 34px;
  background: var(--ink);
  color: var(--white);
  padding: 0 28px;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 800;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-main-link:hover {
  background: #303030;
  transform: translateY(-2px);
}

.footer-contact-panel {
  min-width: 0;
  background: var(--ink);
  color: var(--white);
  padding: 28px;
}

.footer-contact-panel > span {
  display: block;
  color: rgba(255, 249, 246, 0.62);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  padding-top: 32px;
}

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

.footer-brand .brand-mark {
  width: 52px;
  height: 32px;
  color: var(--bg);
}

.footer-brand .brand-icon {
  width: 100%;
  height: 100%;
}

.footer-phone {
  display: block;
  margin-top: 18px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(34px, 3.4vw, 52px);
  font-weight: 400;
  line-height: 0.95;
  white-space: nowrap;
}

.footer-second-phone {
  display: inline-block;
  margin-top: 12px;
  color: rgba(255, 249, 246, 0.72);
  font-size: 22px;
  font-weight: 800;
  white-space: nowrap;
}

.footer-messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.footer-messengers a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid rgba(255, 249, 246, 0.42);
  color: var(--white);
  padding: 0 14px;
  font-size: 18px;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-messengers a:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.footer strong {
  display: block;
  margin-bottom: 18px;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 500;
  line-height: 1;
}

.footer-brand strong {
  margin-bottom: 0;
}

.footer-grid p,
.footer-grid a {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.footer-legal button,
.legal-inline {
  border: 0;
  background-color: transparent;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 2px;
  color: inherit;
  padding: 0;
  font: inherit;
  font-weight: 800;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: background-size 0.36s cubic-bezier(0.16, 1, 0.3, 1), background-position 0.36s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

.footer-legal button {
  font-size: 18px;
}

.legal-inline {
  color: var(--white);
}

.footer-legal button:hover,
.legal-inline:hover {
  background-position: 100% 100%;
  background-size: 0% 2px;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  align-items: end;
  background: rgba(5, 5, 5, 0.42);
}

.legal-modal[hidden] {
  display: none;
}

.legal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.legal-dialog {
  position: relative;
  z-index: 1;
  width: var(--page-width);
  max-height: min(82vh, 820px);
  margin: 0 auto 22px;
  overflow: auto;
  border: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
  padding: clamp(28px, 4vw, 58px);
  outline: 0;
}

.legal-close {
  position: sticky;
  top: 0;
  float: right;
  min-height: 44px;
  border: 1px solid rgba(255, 249, 246, 0.42);
  background: var(--ink);
  color: var(--white);
  padding: 0 14px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.legal-close:hover {
  background: var(--white);
  color: var(--ink);
}

.legal-dialog .kicker {
  color: rgba(255, 249, 246, 0.62);
}

.legal-dialog h2 {
  max-width: 980px;
  color: var(--white);
  font-size: clamp(34px, 5vw, 72px);
}

.legal-content {
  display: grid;
  gap: 22px;
  max-width: 980px;
  margin-top: 34px;
}

.legal-content h3 {
  margin-top: 18px;
  color: var(--white);
  font-size: clamp(22px, 2.4vw, 34px);
}

.legal-content p,
.legal-content li {
  color: rgba(255, 249, 246, 0.72);
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.25;
}

.legal-content ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.1em;
}

.fixed-dock {
  position: fixed;
  right: 50%;
  bottom: 22px;
  z-index: 40;
  width: min(288px, calc(100vw - 36px));
  transform: translateX(50%);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.fixed-dock-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 58px;
  border: 1px solid var(--ink);
  background: rgba(245, 245, 247, 0.94);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.fixed-dock-bar a,
.fixed-dock-bar button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  border: 0;
  border-right: 1px solid var(--ink);
  background: transparent;
  color: inherit;
  padding: 0;
  cursor: pointer;
  line-height: 1;
}

.fixed-dock-bar a:last-child {
  border-right: 0;
}

.fixed-dock-bar a:hover,
.fixed-dock-bar button:hover,
.fixed-dock.is-open .fixed-dock-contact {
  background: var(--ink);
  color: var(--white);
}

.dock-icon {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.fixed-contact-popover {
  position: absolute;
  right: 50%;
  bottom: calc(100% + 12px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(420px, calc(100vw - 36px));
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translate(50%, 8px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.fixed-dock.is-open .fixed-contact-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translate(50%, 0);
}

.fixed-contact-popover span,
.fixed-contact-popover a {
  display: flex;
  align-items: center;
  min-height: 52px;
  border-right: 1px solid rgba(255, 249, 246, 0.28);
  border-bottom: 1px solid rgba(255, 249, 246, 0.28);
  padding: 0 18px;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.05;
}

.fixed-contact-popover span {
  grid-column: 1 / -1;
  color: rgba(255, 249, 246, 0.62);
  text-transform: uppercase;
}

.fixed-contact-popover a:nth-child(2n + 1) {
  border-right: 0;
}

.fixed-contact-popover a:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.fixed-contact-popover a:hover {
  background: var(--white);
  color: var(--ink);
}

.fixed-dock.is-hidden,
.fixed-dock.is-hidden-on-hero {
  opacity: 0;
  pointer-events: none;
  transform: translate(50%, 12px);
}

@media (max-width: 1100px) {
  .header {
    grid-template-columns: 1fr auto auto;
  }

  .nav {
    position: fixed;
    inset: 65px 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--bg);
  }

  .nav.is-open {
    display: grid;
  }

  .nav a {
    border-top: 1px solid var(--line);
    padding: 18px var(--pad);
  }

  .menu-button {
    display: inline-block;
  }

  .header-phone {
    display: none;
  }
}

@media (max-width: 840px) {
  .hero {
    padding-top: 28px;
  }

  .hero-top {
    min-height: auto;
    padding-bottom: 34px;
  }

  .hero-products,
  .split-section,
  .numbers,
  .contact-band,
  .lead-section,
  .footer-action,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-products a {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
  }

  .hero-products a:last-child {
    border-bottom: 0;
  }

  .line-icon {
    height: 130px;
    margin-top: 20px;
  }

  .split-section > div,
  .split-section > figure {
    min-height: auto;
  }

  .mono-image {
    aspect-ratio: 4 / 3;
  }

  .numbers div {
    min-height: 170px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .numbers div:last-child {
    border-bottom: 0;
  }

  .situation-grid,
  .service-grid,
  .dispute-cta,
  .process-strip {
    grid-template-columns: 1fr;
  }

  .situation-grid article,
  .service-grid article {
    min-height: auto;
  }

  .dispute-cta {
    min-height: auto;
  }

  .dispute-cta-copy {
    gap: 28px;
  }

  .dispute-cta-side {
    border-left: 0;
    border-top: 1px solid rgba(255, 249, 246, 0.32);
  }

  .process-strip {
    min-height: auto;
  }

  .process-strip article {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .messenger-row {
    grid-template-columns: repeat(2, auto);
  }

  .contact-logo-scene {
    width: min(100%, 420px);
    margin: 8px 0 30px;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .lead-notice {
    right: 18px;
    bottom: 88px;
  }

  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-dialog {
    width: calc(100vw - 28px);
    max-height: 88vh;
    margin-bottom: 14px;
  }
}

@media (max-width: 560px) {
  .header {
    gap: 12px;
    padding: 14px 0;
  }

  .brand strong {
    font-size: 16px;
  }

  h1 {
    font-size: clamp(30px, 9.2vw, 36px);
    line-height: 1.03;
    overflow-wrap: normal;
    word-break: normal;
  }

  h2 {
    font-size: clamp(30px, 9vw, 38px);
    line-height: 0.98;
  }

  h3 {
    font-size: clamp(24px, 7.6vw, 32px);
    line-height: 1;
  }

  .large-copy,
  .contact-band p:not(.kicker) {
    font-size: clamp(22px, 6.8vw, 30px);
    line-height: 1.08;
  }

  .phone-xl {
    font-size: clamp(34px, 10vw, 48px);
  }

  .legal-close {
    position: static;
    float: none;
    margin-bottom: 24px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 17px;
  }

  .faq-list summary {
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 12px 18px;
    min-height: 0;
    padding: 22px 0;
  }

  .faq-meta,
  .faq-question {
    grid-column: 1;
  }

  .faq-meta {
    gap: 10px;
    font-size: 14px;
    white-space: normal;
  }

  .faq-meta b {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    font-size: 13px;
  }

  .faq-question {
    font-size: clamp(24px, 7.6vw, 32px);
    line-height: 1.02;
  }

  .faq-marker {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 42px;
    height: 42px;
  }

  .faq-list details[open] summary,
  .faq-list details[open] .faq-answer {
    padding-right: 0;
    padding-left: 0;
  }

  .faq-answer {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0 0 28px;
  }

  .faq-answer p {
    grid-column: 1;
    font-size: 18px;
    line-height: 1.24;
  }

  .situation-grid p {
    font-size: clamp(16px, 4.2vw, 18px);
    line-height: 1.25;
    min-height: calc(3em * 1.25);
  }

  .hero-products span,
  .messenger-row a {
    font-size: 24px;
  }

  .dispute-cta h3 {
    font-size: clamp(32px, 9.2vw, 42px);
  }

  .dispute-cta.is-long-solution h3 {
    font-size: clamp(30px, 8.4vw, 38px);
  }

  .dispute-cta.is-extra-long-solution h3 {
    font-size: clamp(27px, 7.4vw, 34px);
  }

  .dispute-cta-copy,
  .dispute-cta-side {
    padding: 28px 24px;
  }

  .dispute-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .dispute-cta-actions a {
    width: 100%;
  }

  .contact-band,
  .lead-section,
  .section,
  .faq,
  .footer {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .footer-action {
    padding-bottom: 36px;
  }

  .footer-action h2 {
    font-size: clamp(38px, 12vw, 54px);
    line-height: 0.94;
  }

  .footer-main-link {
    width: 100%;
    justify-content: center;
    min-height: 64px;
    padding: 0 18px;
    text-align: center;
  }

  .footer-contact-panel {
    padding: 22px;
  }

  .footer-phone {
    font-size: clamp(30px, 9vw, 38px);
  }

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

  .footer-messengers a {
    justify-content: center;
  }

  .fixed-dock {
    right: 50%;
    bottom: 12px;
    left: auto;
    width: min(252px, calc(100vw - 24px));
    transform: translateX(50%);
  }

  .fixed-dock-bar {
    min-height: 56px;
    grid-template-columns: repeat(3, 1fr);
  }

  .fixed-dock-bar a,
  .fixed-dock-bar button {
    padding: 0;
  }

  .dock-icon {
    width: 24px;
    height: 24px;
  }

  .fixed-contact-popover {
    right: 50%;
    bottom: calc(100% + 10px);
    width: min(366px, calc(100vw - 24px));
    grid-template-columns: 1fr 1fr;
    transform: translate(50%, 8px);
  }

  .fixed-dock.is-open .fixed-contact-popover {
    transform: translate(50%, 0);
  }

  .fixed-contact-popover span,
  .fixed-contact-popover a {
    min-height: 50px;
    padding: 0 12px;
    font-size: 16px;
  }

  .fixed-dock.is-hidden,
  .fixed-dock.is-hidden-on-hero {
    transform: translate(50%, 12px);
  }

  .lead-notice {
    right: 12px;
    bottom: 78px;
    width: calc(100vw - 24px);
    padding: 18px;
  }

  .lead-notice strong {
    font-size: 24px;
  }

  .lead-notice p {
    font-size: 16px;
  }

  .footer-phone {
    white-space: nowrap;
  }
}
