﻿:root {
  --navy: #333A54;
  --navy-deep: #2E354D;
  --blue: #234880;
  --blue-soft: #EEF4FD;
  --red: #951111;
  --green: #327332;
  --gray: #F7F9FC;
  --text: #353f4f;
  --heading: #353f4f;
  --muted: #5F6673;
  --line: #E0E6EF;
  --white: #ffffff;
  --container: 1320px;
  --content-wide: 1200px;
  --content-medium: 1080px;

  /* Block rules based on the "Why choose REGOS" section:
     1200px content, 76px vertical rhythm, 50px h2,
     58px title-to-content gap, 70px icons, 44px markers. */
  --block-width: var(--content-wide);
  --block-padding-y: 76px;
  --block-title-size: 50px;
  --block-title-line: 1.25;
  --block-title-weight: 400;
  --block-title-gap: 58px;
  --block-description-size: 1.08rem;
  --block-description-line: 1.45;
  --block-description-weight: 500;
  --block-grid-row-gap: 58px;
  --block-grid-column-gap: 118px;
  --block-item-gap: 30px;
  --block-item-title-size: 1.56rem;
  --block-item-title-line: 1.22;
  --block-item-title-weight: 500;
  --block-item-text-size: 1.06rem;
  --block-item-text-line: 1.58;
  --block-item-text-weight: 400;
  --block-icon-size: 70px;
  --block-icon-font-size: 3.125rem;
  --block-icon-color: #4d6b97;
  --block-marker-size: 44px;
  --section-title-size: var(--block-title-size);
  --section-title-line: var(--block-title-line);
  --section-title-weight: var(--block-title-weight);
  --section-description-size: var(--block-description-size);
  --section-description-line: var(--block-description-line);
  --section-description-weight: var(--block-description-weight);
  --item-title-size: var(--block-item-title-size);
  --item-title-line: var(--block-item-title-line);
  --item-title-weight: var(--block-item-title-weight);
  --item-text-size: var(--block-item-text-size);
  --item-text-line: var(--block-item-text-line);
  --item-text-weight: var(--block-item-text-weight);
  --surface-radius: 24px;
  --surface-border: 1px solid var(--line);
  --pill-radius: 999px;
  --shadow: 0 16px 34px rgba(31, 42, 68, .11);
  --shadow-soft: 0 10px 24px rgba(31, 42, 68, .07);
  --shadow-modal: 0 24px 70px rgba(8, 13, 28, .28);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.58;
  overflow-x: hidden;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.container {
  width: calc(100% - 48px);
  max-width: var(--container);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: 0;
}

.hero::after {
  content: "";
  position: absolute;
  left: -2vw;
  right: -2vw;
  bottom: -1px;
  height: 64px;
  background: var(--white);
  clip-path: ellipse(74% 58% at 37% 100%);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 780px) minmax(340px, 400px);
  column-gap: 30px;
  row-gap: 26px;
  align-items: center;
  padding: 24px 0 42px;
}

.hero-inner > * {
  min-width: 0;
}

.logo {
  width: 154px;
  height: 42px;
  margin-bottom: 0;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.hero-topline {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  min-width: 0;
  margin-bottom: 8px;
}

.hero-topline .logo {
  flex: 0 0 auto;
  margin-bottom: 0;
}

.hero-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  min-width: 0;
  margin-left: auto;
}

.hero-telegram-link {
  display: inline-flex;
  align-self: end;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--pill-radius);
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  font-size: .84rem;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.hero-telegram-link i {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--white);
  background: #2AABEE;
  font-size: .78rem;
  line-height: 1;
}

.hero-telegram-link i::before,
.telegram-contact-icon i::before {
  display: block;
  width: 1em;
  height: 1em;
  line-height: 1;
  transform: translate(-1px, 1px);
}

.hero-telegram-link:hover,
.hero-telegram-link:focus-visible {
  border-color: rgba(255, 255, 255, .62);
  background: rgba(255, 255, 255, .14);
  transform: translateY(-1px);
}

.hero-phone {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas:
    "label label"
    "phone reveal";
  align-items: end;
  justify-content: end;
  gap: 5px 14px;
  min-width: 0;
  margin-left: auto;
  padding: 0;
  color: var(--white);
  background: transparent;
  text-align: right;
}

.hero-contact .hero-phone {
  margin-left: 0;
}

.hero-phone-label {
  grid-area: label;
  justify-self: end;
  color: rgba(255, 255, 255, .84);
  font-size: .84rem;
  line-height: 1.15;
}

.hero-phone-link {
  grid-area: phone;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
  text-decoration: none;
}

.hero-phone-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero-phone .hero-phone-reveal {
  grid-area: reveal;
  padding: 0 0 2px;
  border: 0;
  border-bottom: 1px dashed rgba(255, 255, 255, .58);
  border-radius: 0;
  color: rgba(255, 255, 255, .88);
  background: transparent;
  font-size: .84rem;
}

.hero-phone .hero-phone-reveal:hover {
  border-color: var(--white);
  background: transparent;
}

h1 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: 46px;
  line-height: 1.16;
  font-weight: 400;
  overflow-wrap: anywhere;
}

.hero p {
  max-width: 760px;
  margin-bottom: 20px;
  padding: 11px 15px;
  color: var(--white);
  background: rgba(82, 100, 127, .84);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--surface-radius);
  font-size: 1.08rem;
  line-height: 1.38;
  font-weight: 400;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.hero-image {
  position: relative;
  width: 350px;
  height: 380px;
  margin-top: 12px;
  justify-self: end;
  overflow: visible;
  border-radius: var(--surface-radius);
  background: transparent;
  box-shadow: var(--shadow);
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: -18px -18px -18px -18px;
  border: 5px solid rgba(96, 115, 144, .78);
  border-radius: var(--surface-radius);
  clip-path: polygon(0 0, 100% 0, 100% 23%, 92% 23%, 92% 4%, 0 4%, 0 0, 0 70%, 4% 70%, 4% 96%, 34% 96%, 34% 100%, 0 100%);
  pointer-events: none;
}

.hero-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--surface-radius);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  max-width: 720px;
  margin-top: 20px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.proof-item {
  position: relative;
  min-height: 0;
  padding: 0 28px 0 0;
  margin-right: 28px;
}

.proof-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 0;
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, .18);
}

.proof-item strong {
  display: block;
  color: var(--white);
  font-size: 18px;
  line-height: 1.15;
  font-weight: 700;
}

.proof-item span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .74);
  font-size: 11.5px;
  line-height: 1.25;
  font-weight: 500;
}

.btn {
  min-height: 46px;
  border: 0;
  border-radius: 7px;
  padding: 13px 26px;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.1;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .11);
}

.btn-red {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 24px rgba(149, 17, 17, .18);
}

.btn-red:hover {
  background: #A91818;
}

.btn-wide {
  width: min(340px, 100%);
}

.cta-note {
  display: block;
  max-width: 320px;
  margin-top: 12px;
  color: rgba(255, 255, 255, .76);
  font-size: .9rem;
  line-height: 1.35;
  font-weight: 500;
}

.callback-note {
  max-width: 520px;
  margin-top: 10px;
  color: rgba(255, 255, 255, .88);
}

[data-work-hours-only][hidden] {
  display: none !important;
}

.hero .btn-wide {
  display: block;
  margin: 0;
}

.btn-outline {
  color: var(--white);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .72);
}

section {
  padding: var(--block-padding-y) 0;
}

.section-title {
  max-width: var(--block-width);
  margin: 0 auto var(--block-title-gap);
  text-align: center;
}

.section-title h2 {
  margin-bottom: 14px;
  color: var(--heading);
  font-size: var(--section-title-size);
  line-height: var(--section-title-line);
  font-weight: var(--section-title-weight);
  overflow-wrap: anywhere;
}

.section-title p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: var(--section-description-size);
  line-height: var(--section-description-line);
  font-weight: var(--section-description-weight);
}

.problem-section {
  padding-top: 34px;
  padding-bottom: var(--block-padding-y);
  background: #fff;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px var(--block-grid-column-gap);
  max-width: var(--block-width);
  margin: 0 auto;
}

.problem-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 26px;
  align-items: start;
}

.problem-item > div,
.benefit > div {
  min-width: 0;
}

.problem-icon {
  width: 62px;
  min-height: 62px;
  display: grid;
  place-items: center;
  color: var(--block-icon-color);
  font-size: 3rem;
  line-height: 1;
}

.problem-item h3 {
  margin-bottom: 10px;
  color: var(--heading);
  font-size: 1.36rem;
  line-height: 1.24;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.problem-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.46;
  font-weight: 400;
}

.problem-result {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  max-width: var(--block-width);
  margin: 52px auto 0;
  padding: 31px 56px;
  border-radius: var(--surface-radius);
  color: var(--white);
  background: var(--blue);
  box-shadow: var(--shadow);
}

.problem-result p {
  max-width: 850px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .92);
  font-size: 1.28rem;
  line-height: 1.34;
  font-weight: 500;
}

.problem-result .btn-outline {
  min-width: 236px;
  color: var(--white);
  border-color: rgba(255, 255, 255, .74);
  background: transparent;
}

.problem-result .btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .08);
}

.features-section {
  padding-top: var(--block-padding-y);
  padding-bottom: var(--block-padding-y);
}

.features-section .section-title {
  margin-bottom: var(--block-title-gap);
}

.features-section .section-title h2 {
  font-size: var(--section-title-size);
}

.benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--block-grid-row-gap) var(--block-grid-column-gap);
  max-width: var(--block-width);
  margin: 0 auto;
}

.benefit {
  display: grid;
  grid-template-columns: var(--block-icon-size) 1fr;
  gap: var(--block-item-gap);
  align-items: start;
}

.icon {
  width: var(--block-icon-size);
  height: var(--block-icon-size);
  display: grid;
  place-items: center;
  color: var(--block-icon-color);
  font-weight: 800;
}

.icon i {
  display: block;
  font-size: var(--block-icon-font-size);
  line-height: 1;
}

.features-section .benefit h3 {
  margin-bottom: 12px;
  color: var(--heading);
  font-size: var(--block-item-title-size);
  line-height: var(--block-item-title-line);
  font-weight: var(--block-item-title-weight);
}

.features-section .benefit p {
  color: var(--muted);
  font-size: var(--block-item-text-size);
  line-height: var(--block-item-text-line);
  font-weight: var(--block-item-text-weight);
}

.benefit h3,
.feature-card h3,
.variant h3,
.step h3 {
  margin-bottom: 8px;
  color: var(--heading);
  font-size: var(--item-title-size);
  line-height: var(--item-title-line);
  font-weight: var(--item-title-weight);
  overflow-wrap: anywhere;
}

.benefit p,
.feature-card p,
.variant p,
.variant li,
.step p,
.fit-list li {
  margin-bottom: 0;
  color: var(--muted);
  font-size: var(--item-text-size);
  font-weight: var(--item-text-weight);
  line-height: var(--item-text-line);
}

.fit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: var(--block-grid-column-gap);
  align-items: center;
  max-width: var(--block-width);
  margin: 0 auto;
}

.variants-section {
  background: #fff;
}

.fit-section {
  padding-top: var(--block-padding-y);
  padding-bottom: var(--block-padding-y);
  background: #fff;
}

.fit-section .section-title {
  max-width: var(--block-width);
  margin-bottom: var(--block-title-gap);
}

.fit-section .section-title h2 {
  max-width: 980px;
  margin-right: auto;
  margin-bottom: 14px;
  margin-left: auto;
  font-size: var(--section-title-size);
  line-height: var(--section-title-line);
  font-weight: var(--section-title-weight);
}

.fit-section .section-title p {
  color: var(--muted);
  font-size: var(--section-description-size);
  font-weight: var(--section-description-weight);
  line-height: var(--section-description-line);
}

.fit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 var(--block-item-gap);
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-list li {
  position: relative;
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 12px 0 12px 28px;
  border: 0;
  box-shadow: none;
  color: var(--muted);
  font-size: var(--item-text-size);
  font-weight: var(--item-text-weight);
  line-height: var(--item-text-line);
}

.fit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  transform: translateY(-50%);
}

.fit-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 318px;
  isolation: isolate;
}

.fit-image::before {
  content: "";
  position: absolute;
  inset: 18px -2px 10px 28px;
  z-index: -1;
  border: 4px solid rgba(77, 107, 151, .34);
  border-radius: var(--surface-radius);
  clip-path: polygon(0 0, 100% 0, 100% 22%, 92% 22%, 92% 4%, 0 4%, 0 0, 0 70%, 4% 70%, 4% 96%, 34% 96%, 34% 100%, 0 100%);
  pointer-events: none;
}

.fit-image img {
  width: min(100%, 386px);
  max-height: 312px;
  object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(31, 42, 68, .14));
}

.cta-strip {
  max-width: var(--block-width);
  margin: var(--block-title-gap) auto 0;
  padding: 30px 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  color: var(--white);
  background: linear-gradient(135deg, #2d4772 0%, var(--navy) 100%);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--surface-radius);
  box-shadow: var(--shadow);
}

.cta-strip h3 {
  margin-bottom: 8px;
  font-size: var(--item-title-size);
  line-height: var(--item-title-line);
  font-weight: var(--item-title-weight);
}

.cta-strip p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .9);
  font-size: var(--item-text-size);
  font-weight: var(--item-text-weight);
  line-height: var(--item-text-line);
}

.cta-strip .btn-outline {
  min-width: 240px;
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 10px 20px rgba(149, 17, 17, .16);
}

.cta-action {
  display: grid;
  justify-items: end;
  gap: 9px;
}

.cta-action-note {
  max-width: 260px;
  color: rgba(255, 255, 255, .84);
  font-size: .86rem;
  line-height: 1.34;
  font-weight: 500;
  text-align: right;
}

.capabilities-section {
  padding-top: var(--block-padding-y);
  padding-bottom: var(--block-padding-y);
  background: #fff;
}

.capabilities-section .section-title {
  margin-bottom: var(--block-title-gap);
}

.capabilities-section .section-title h2,
.variants-section .section-title h2,
.steps-section .section-title h2 {
  font-size: var(--section-title-size);
  line-height: var(--section-title-line);
  font-weight: var(--section-title-weight);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--block-grid-row-gap) var(--block-grid-column-gap);
  max-width: var(--block-width);
  margin: 0 auto;
}

.feature-card {
  position: relative;
  display: grid;
  grid-template-columns: var(--block-marker-size) 1fr;
  gap: 0 calc(var(--block-item-gap) - 6px);
  min-height: 0;
  overflow: hidden;
  padding: 30px;
  border: var(--surface-border);
  border-radius: var(--surface-radius);
  background: #F4F8FF;
  box-shadow: var(--shadow-soft);
}

.feature-card::before {
  display: none;
}

.num {
  grid-row: 1 / span 2;
  width: var(--block-marker-size);
  height: var(--block-marker-size);
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  border: 0;
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: var(--item-title-size);
  line-height: var(--item-title-line);
  font-weight: var(--item-title-weight);
}

.feature-card p {
  color: var(--muted);
  font-size: var(--item-text-size);
  line-height: var(--item-text-line);
  font-weight: var(--item-text-weight);
}

.device-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  align-items: end;
  max-width: var(--block-width);
  margin: 40px auto 0;
}

.device-card {
  display: grid;
  min-height: 330px;
  place-items: center;
  padding: 0;
  background: transparent;
}

.device-row img {
  width: 100%;
  max-height: 310px;
  object-fit: contain;
}

.device-card.is-phone {
  min-height: 360px;
}

.device-card.is-phone img {
  max-height: 350px;
  width: auto;
}

.variants {
  padding-top: 52px;
  padding-bottom: var(--block-padding-y);
}

.variants-section .section-title {
  margin-bottom: var(--block-title-gap);
}

.variant-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--block-item-gap);
  max-width: var(--block-width);
  margin: 0 auto;
}

.variant {
  min-height: 0;
  padding: 34px;
  border: var(--surface-border);
  border-radius: var(--surface-radius);
  background: #F4F8FF;
  box-shadow: var(--shadow-soft);
}

.variant.is-green {
  border-color: var(--line);
  background: #F1F8F3;
}

.variant h3 {
  font-size: var(--item-title-size);
  line-height: var(--item-title-line);
  font-weight: var(--item-title-weight);
}

.variant p {
  color: var(--muted);
  font-size: var(--item-text-size);
  line-height: var(--item-text-line);
  font-weight: var(--item-text-weight);
}

.variant ul {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.variant li {
  position: relative;
  min-height: 32px;
  padding-left: 44px;
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: var(--item-text-size);
  line-height: var(--item-text-line);
  font-weight: var(--item-text-weight);
}

.variant li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-weight: 600;
}

.variant li::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 7px;
  width: 8px;
  height: 14px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.variant.is-green li::before {
  background: var(--green);
}

.steps {
  padding-top: var(--block-padding-y);
  padding-bottom: var(--block-padding-y);
  background: #fff;
}

.steps-section .section-title {
  margin-bottom: var(--block-title-gap);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--block-grid-row-gap) var(--block-grid-column-gap);
  max-width: var(--block-width);
  margin: 0 auto;
  border-top: 0;
}

.step {
  display: grid;
  grid-template-columns: var(--block-marker-size) 1fr;
  gap: calc(var(--block-item-gap) - 6px);
  align-items: start;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.step-number {
  width: var(--block-marker-size);
  height: var(--block-marker-size);
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
}

.step h3 {
  margin-bottom: 10px;
  font-size: var(--item-title-size);
  line-height: var(--item-title-line);
  font-weight: var(--item-title-weight);
}

.step p {
  color: var(--muted);
  font-size: var(--item-text-size);
  line-height: var(--item-text-line);
  font-weight: var(--item-text-weight);
}

.trust-section {
  padding-top: var(--block-padding-y);
  padding-bottom: var(--block-padding-y);
  background: #F7F9FC;
}

.trust-section .section-title {
  margin-bottom: 38px;
}

.trust-section .section-title h2 {
  font-size: var(--section-title-size);
  line-height: var(--section-title-line);
  font-weight: var(--section-title-weight);
}

.trust-section .section-title p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: var(--section-description-size);
  line-height: var(--section-description-line);
  font-weight: var(--section-description-weight);
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 32px;
  max-width: var(--block-width);
  margin: 0 auto 52px;
  padding: 26px 0;
  border-top: 1px solid rgba(80, 102, 136, .16);
  border-bottom: 1px solid rgba(80, 102, 136, .16);
  background: transparent;
}

.client-logo {
  display: grid;
  place-items: center;
  min-height: 58px;
  padding: 4px 12px;
}

.client-logo img {
  max-width: 168px;
  max-height: 58px;
  object-fit: contain;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--block-grid-row-gap) 70px;
  max-width: var(--block-width);
  margin: 0 auto;
}

.case-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  align-items: start;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.case-item + .case-item {
  padding-left: 0;
  border-left: 0;
}

.case-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 0;
  border-radius: 50%;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 1.45rem;
}

.case-item h3 {
  grid-column: 2;
  margin-bottom: 0;
  color: var(--heading);
  font-size: 1.28rem;
  line-height: 1.28;
  font-weight: 500;
}

.case-item p {
  grid-column: 2;
  grid-row: auto;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.case-item strong {
  grid-column: 2;
  display: inline-flex;
  width: fit-content;
  align-self: start;
  padding: 7px 14px;
  border-radius: var(--pill-radius);
  color: var(--blue);
  background: rgba(238, 244, 253, .88);
  font-size: .96rem;
  line-height: 1.4;
  font-weight: 700;
}

.faq-section {
  padding-top: var(--block-padding-y);
  padding-bottom: var(--block-padding-y);
  background: #fff;
}

.faq-section .section-title {
  margin-bottom: var(--block-title-gap);
}

.faq-section .section-title h2 {
  font-size: var(--section-title-size);
  line-height: var(--section-title-line);
  font-weight: var(--section-title-weight);
}

.faq-section .section-title p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: var(--section-description-size);
  line-height: var(--section-description-line);
  font-weight: var(--section-description-weight);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--block-grid-row-gap) var(--block-grid-column-gap);
  max-width: var(--block-width);
  margin: 0 auto;
}

.faq-item {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(80, 102, 136, .2);
}

.faq-item h3 {
  margin-bottom: 12px;
  color: var(--heading);
  font-size: var(--item-title-size);
  line-height: var(--item-title-line);
  font-weight: var(--item-title-weight);
}

.faq-item p {
  color: var(--muted);
  font-size: var(--item-text-size);
  line-height: var(--item-text-line);
  font-weight: var(--item-text-weight);
}

.lead {
  padding: 68px 0;
  color: var(--white);
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(420px, 480px);
  gap: 78px;
  align-items: center;
  max-width: var(--block-width);
}

.lead-copy h2 {
  max-width: 640px;
  margin-bottom: 22px;
  font-size: var(--section-title-size);
  line-height: var(--section-title-line);
  color: var(--white);
  font-weight: var(--section-title-weight);
  overflow-wrap: anywhere;
}

.lead-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, .78);
  font-size: var(--section-description-size);
  line-height: var(--section-description-line);
  font-weight: var(--section-description-weight);
}

.lead-points {
  display: grid;
  gap: 12px;
  max-width: 560px;
  margin: 28px 0 28px;
  padding: 0;
  list-style: none;
}

.lead-points li {
  position: relative;
  padding-left: 34px;
  color: rgba(255, 255, 255, .9);
  font-size: 1rem;
  line-height: 1.42;
  font-weight: 500;
}

.lead-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .14em;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: rgba(149, 17, 17, .95);
  box-shadow: 0 8px 18px rgba(149, 17, 17, .22);
}

.lead-points li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: .39em;
  width: 5px;
  height: 9px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.lead-call {
  margin-bottom: 16px;
  color: var(--white) !important;
}

.lead-contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-top: 18px;
}

.phone-mark {
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(149, 17, 17, .2);
}

.lead-phone {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, .8);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.25;
  text-align: left;
}

.lead-phone strong {
  display: block;
  color: var(--white);
  font-weight: 700;
}

.lead-phone-button {
  display: block;
  width: fit-content;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
}

.lead-phone-button:hover strong {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.lead-phone-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .74);
  outline-offset: 5px;
  border-radius: 4px;
}

.phone-reveal-button,
.bot-test-button {
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 6px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  font: inherit;
  font-size: .88rem;
  line-height: 1.1;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}

.phone-reveal-button:hover,
.bot-test-button:hover {
  border-color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .14);
}

.phone-reveal-button:focus-visible,
.bot-test-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .74);
  outline-offset: 3px;
}

.bot-test-button {
  margin-top: 2px;
  border-color: rgba(255, 255, 255, .28);
  color: rgba(255, 255, 255, .82);
}

.telegram-contact-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--pill-radius);
  padding: 8px 16px 8px 8px;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.telegram-contact-button:hover {
  border-color: rgba(255, 255, 255, .62);
  background: rgba(255, 255, 255, .14);
  transform: translateY(-1px);
}

.telegram-contact-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .74);
  outline-offset: 4px;
}

.telegram-contact-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--white);
  background: #2AABEE;
  font-size: 1.35rem;
  box-shadow: 0 12px 24px rgba(42, 171, 238, .22);
}

.telegram-contact-icon i {
  display: block;
  line-height: 1;
}

.telegram-contact-label {
  display: block;
  color: rgba(255, 255, 255, .78);
  font-size: .82rem;
  line-height: 1.2;
}

.telegram-contact-button strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--white);
  font-size: 1.02rem;
  line-height: 1.28;
}

.lead-form {
  display: grid;
  gap: 0;
  padding: 30px 30px 31px;
  border: var(--surface-border);
  border-radius: var(--surface-radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.lead-form p {
  margin: 0;
  color: var(--text);
  font-weight: 500;
}

.lead-form .form-title {
  margin-bottom: 22px;
  color: var(--heading);
  font-size: 1.18rem;
  line-height: 1.38;
  font-weight: 700;
}

.lead-form .controls {
  display: grid;
  gap: 14px;
}

.lead-form .controls > .row {
  margin-bottom: 0;
}

.lead-form .controls > .row:last-child {
  display: grid;
  gap: 14px;
}

.lead-form .form-group {
  display: grid;
  gap: 7px;
}

.lead-form .b24-lead-form-control-label {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 500;
}

.lead-form .form-check-label {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 500;
}

.lead-form .b24-lead-form-control-required {
  display: inline;
  color: var(--red);
  font-weight: 700;
}

.lead-form .form-optional {
  color: #6F7A8A;
  font-weight: 400;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 12px 14px;
  color: var(--text);
  background: #FDFEFE;
  outline: 0;
}

textarea {
  min-height: 102px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(35, 72, 128, .14);
}

.lead-form .form-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 8px;
  margin: 2px 0 0;
}

.lead-form .form-check-input {
  width: 14px;
  height: 14px;
  margin-top: 2px;
  accent-color: var(--red);
}

.lead-form .d-grid {
  display: grid;
}

.lead-form .text-center {
  text-align: center;
}

.lead-form [data-lead-submit] {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 7px;
  color: var(--white);
  background-color: var(--red) !important;
  font-weight: 600;
  box-shadow: 0 10px 22px rgba(149, 17, 17, .14);
}

.lead-form .form-microcopy {
  margin-top: 10px;
  color: #5F6673;
  font-size: 12.5px;
  line-height: 1.35;
  font-weight: 500;
  text-align: center;
}

.lead-form .form-status {
  display: grid;
  min-height: 120px;
  place-items: center;
  color: var(--green);
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
}

.sticky-cta {
  display: none;
}

.sticky-cta-button {
  min-width: 0;
  min-height: 54px;
  padding: 0 18px;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: var(--pill-radius);
  font-size: 1rem;
  line-height: 1.12;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.sticky-cta-button {
  display: inline-flex;
  gap: 8px;
  border: 0;
  color: var(--white);
  background: linear-gradient(180deg, #b91414 0%, var(--red) 100%);
  box-shadow: 0 14px 28px rgba(149, 17, 17, .28), inset 0 1px 0 rgba(255, 255, 255, .22);
}

@media (max-width: 980px) {
  :root {
    --block-padding-y: 66px;
    --block-title-size: 40px;
    --block-title-gap: 46px;
    --block-description-size: 1rem;
    --block-grid-row-gap: 44px;
    --block-grid-column-gap: 64px;
    --block-item-gap: 24px;
    --block-item-title-size: 1.34rem;
    --block-item-text-size: 1rem;
    --block-icon-size: 62px;
    --block-icon-font-size: 2.75rem;
    --block-marker-size: 40px;
    --section-title-size: var(--block-title-size);
    --section-description-size: var(--block-description-size);
    --item-title-size: var(--block-item-title-size);
    --item-text-size: var(--block-item-text-size);
  }

  .hero {
    min-height: auto;
    border-radius: 0;
  }

  .hero-inner,
  .fit-grid,
  .lead-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 36px;
    padding: 24px 0 44px;
  }

  .logo {
    margin-bottom: 44px;
  }

  .hero-topline {
    margin-bottom: 0;
  }

  .hero-topline .logo {
    margin-bottom: 0;
  }

  h1 {
    font-size: 42px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-image {
    width: min(360px, 100%);
    height: 300px;
    margin: 0 auto;
    justify-self: center;
  }

  .fit-grid,
  .lead-grid {
    gap: var(--block-grid-row-gap);
  }

  .benefits {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: var(--block-width);
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .case-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 620px;
  }

  .case-item {
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 0;
  }

  .case-item strong {
    grid-column: 2;
  }

  .case-item p {
    grid-column: 2;
    grid-row: auto;
  }

  .case-item + .case-item {
    padding-left: 0;
    border-top: 0;
    border-left: 0;
  }

  .features-section .section-title h2 {
    font-size: var(--section-title-size);
  }

  .device-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
    max-width: var(--block-width);
  }

  .device-card {
    min-height: 220px;
  }

  .device-card.is-phone {
    min-height: 260px;
  }

  .device-card.is-phone img {
    max-height: 260px;
  }
}

@media (max-width: 820px) {
  .hero-telegram-link {
    display: none;
  }
}

@media (max-width: 720px) {
  :root {
    --block-padding-y: 54px;
    --block-title-size: 32px;
    --block-title-gap: 34px;
    --block-description-size: .95rem;
    --block-grid-row-gap: 34px;
    --block-grid-column-gap: 34px;
    --block-item-gap: 18px;
    --block-item-title-size: 1.16rem;
    --block-item-text-size: .96rem;
    --block-icon-size: 58px;
    --block-icon-font-size: 2.85rem;
    --block-marker-size: 38px;
    --section-title-size: var(--block-title-size);
    --section-description-size: var(--block-description-size);
    --item-title-size: var(--block-item-title-size);
    --item-text-size: var(--block-item-text-size);
  }

  body {
    padding-bottom: 86px;
  }

  .container {
    width: calc(100% - 28px);
  }

  .sticky-cta {
    position: fixed;
    left: 50%;
    right: auto;
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 60;
    display: grid;
    width: min(calc(100% - 28px), 420px);
    padding: 0;
    border-radius: var(--pill-radius);
    transform: translateX(-50%);
    filter: drop-shadow(0 18px 34px rgba(31, 42, 68, .18));
  }

  .hero-inner {
    gap: 28px;
    padding: 16px 0 32px;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .logo {
    width: 118px;
    height: auto;
    margin-bottom: 28px;
  }

  .hero-topline {
    display: grid;
    justify-items: center;
    gap: 14px;
    width: 100%;
    margin-bottom: 0;
  }

  .hero-topline .logo {
    margin-bottom: 0;
  }

  .hero-phone {
    display: none;
  }

  .hero-contact {
    display: none;
  }

  .hero-phone-label {
    width: 100%;
    text-align: center;
  }

  h1 {
    width: 100%;
    max-width: 100%;
    font-size: 30px;
    line-height: 1.17;
    overflow-wrap: break-word;
  }

  .hero p {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
    font-size: 14px;
    margin-bottom: 18px;
    padding: 12px;
    overflow-wrap: anywhere;
  }

  .hero .btn-wide {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
  }

  .hero-actions .btn-outline {
    display: none;
  }

  .cta-note {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
  }

  .cta-action {
    justify-items: center;
  }

  .cta-action .btn {
    width: min(310px, 100%);
  }

  .cta-action-note {
    text-align: center;
  }

  .hero-proof {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
    margin-top: 16px;
    padding: 12px 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proof-item {
    min-width: 0;
    min-height: 0;
    padding: 0 8px;
    margin-right: 0;
    text-align: center;
  }

  .proof-item:not(:last-child)::after {
    height: 30px;
  }

  .proof-item strong {
    font-size: 16px;
  }

  .proof-item span {
    font-size: 10.5px;
    overflow-wrap: anywhere;
  }

  .hero-image {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 168px;
    max-height: 210px;
    margin-top: 0;
    justify-self: center;
    overflow: hidden;
    border-radius: var(--surface-radius);
    box-shadow: 0 14px 30px rgba(10, 16, 32, .18);
  }

  .hero-image::before {
    display: none;
  }

  .hero-image img {
    border-radius: var(--surface-radius);
  }

  .hero::after {
    height: 30px;
  }

  section {
    padding: var(--block-padding-y) 0;
  }

  .section-title {
    margin-bottom: var(--block-title-gap);
  }

  .section-title h2 {
    font-size: var(--section-title-size);
  }

  .features-section {
    padding-top: var(--block-padding-y);
    padding-bottom: var(--block-padding-y);
  }

  .features-section .section-title {
    margin-bottom: var(--block-title-gap);
  }

  .features-section .section-title h2 {
    font-size: var(--section-title-size);
    line-height: 1.25em;
  }

  .benefits {
    gap: var(--block-grid-row-gap);
  }

  .features-section .benefits {
    gap: var(--block-grid-row-gap);
  }

  .problem-section {
    padding-top: 26px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    max-width: 560px;
  }

  .problem-item {
    grid-template-columns: 48px 1fr;
    justify-items: start;
    gap: 16px;
    text-align: left;
  }

  .problem-icon {
    width: 48px;
    min-height: 48px;
    font-size: 2.35rem;
  }

  .problem-item h3 {
    margin-bottom: 6px;
    font-size: 1.1rem;
  }

  .problem-item p {
    font-size: .95rem;
    line-height: 1.44;
  }

  .problem-result {
    grid-template-columns: 1fr;
    justify-items: center;
    max-width: 560px;
    padding: 28px;
    text-align: center;
  }

  .problem-result .btn-outline {
    width: 100%;
    max-width: 320px;
  }

  .benefit {
    grid-template-columns: var(--block-icon-size) 1fr;
    gap: var(--block-item-gap);
  }

  .features-section .benefit {
    grid-template-columns: 1fr;
    gap: calc(var(--block-item-gap) - 4px);
    justify-items: center;
    text-align: center;
  }

  .icon {
    width: var(--block-icon-size);
    height: var(--block-icon-size);
  }

  .features-section .icon {
    width: var(--block-icon-size);
    height: var(--block-icon-size);
  }

  .icon i {
    font-size: var(--block-icon-font-size);
  }

  .features-section .icon i {
    font-size: var(--block-icon-font-size);
  }

  .cta-strip {
    grid-template-columns: 1fr;
    padding: 24px;
    margin-top: var(--block-title-gap);
    justify-items: center;
    text-align: center;
  }

  .feature-card {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 0;
    padding: 24px;
    text-align: center;
  }

  .feature-card .num {
    grid-row: auto;
    margin-bottom: 12px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .device-row {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 330px;
    margin-top: 34px;
  }

  .device-card {
    min-height: auto;
    padding: 0;
  }

  .device-card.is-phone {
    min-height: auto;
  }

  .fit-grid {
    gap: var(--block-grid-row-gap);
  }

  .fit-section {
    padding-top: var(--block-padding-y);
  }

  .fit-section .section-title {
    margin-bottom: var(--block-title-gap);
  }

  .fit-section .section-title h2 {
    font-size: var(--section-title-size);
    line-height: var(--section-title-line);
  }

  .fit-section .section-title p {
    font-size: var(--section-description-size);
  }

  .fit-list {
    grid-template-columns: 1fr;
  }

  .fit-list li {
    justify-content: center;
    min-height: 50px;
    padding: 10px 0;
    text-align: center;
  }

  .fit-list li::before {
    position: static;
    flex: 0 0 7px;
    margin-right: 10px;
    transform: none;
  }

  .fit-image {
    min-height: 270px;
  }

  .fit-image::before {
    inset: 18px 0 18px 18px;
    border-width: 4px;
    border-radius: var(--surface-radius);
  }

  .fit-image img {
    max-height: 260px;
  }

  .variant {
    min-height: 0;
    padding: 26px;
    text-align: center;
  }

  .variant-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--block-grid-row-gap);
    max-width: 420px;
  }

  .client-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 34px;
    padding: 18px 0;
  }

  .client-logo {
    min-height: 58px;
    padding: 8px 14px;
  }

  .client-logo img {
    max-width: 132px;
    max-height: 44px;
  }

  .case-grid {
    max-width: 420px;
  }

  .case-item {
    grid-template-columns: 1fr;
    padding: 0;
    text-align: center;
    justify-items: center;
  }

  .case-icon {
    width: 58px;
    height: 58px;
  }

  .case-item strong {
    grid-column: auto;
  }

  .case-item h3,
  .case-item p {
    grid-column: auto;
    grid-row: auto;
  }

  .case-item + .case-item {
    padding-left: 0;
    padding-top: 24px;
    border-top: 1px solid rgba(80, 102, 136, .16);
  }

  .faq-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .faq-item {
    text-align: center;
  }

  .step {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 0;
    text-align: center;
  }

  .step-number {
    margin-bottom: 10px;
  }

  .lead {
    padding: var(--block-padding-y) 0;
  }

  .lead-copy h2 {
    font-size: var(--section-title-size);
    text-align: center;
  }

  .lead-copy p {
    font-size: var(--section-description-size);
    text-align: center;
  }

  .lead-points {
    max-width: 420px;
    margin-right: auto;
    margin-left: auto;
  }

  .lead-call {
    text-align: center;
  }

  .phone-mark {
    width: 54px;
    height: 54px;
    margin: 0;
    font-size: 24px;
  }

  .lead-contact {
    justify-content: center;
    gap: 14px;
  }

  .lead-phone {
    font-size: 19px;
    text-align: center;
  }

  .phone-reveal-button,
  .bot-test-button {
    margin-right: auto;
    margin-left: auto;
  }

  .telegram-contact-button {
    justify-content: center;
  }

  .lead-form {
    padding: 22px;
  }
}

/* Page 2 pill refresh */
.btn,
.phone-reveal-button,
.bot-test-button {
  border-radius: var(--pill-radius);
}

.hero p {
  border-radius: var(--surface-radius);
}

.hero-actions {
  gap: 14px;
}

.hero-actions .btn-wide {
  width: auto;
  min-width: 240px;
}

.hero-proof {
  gap: 10px;
  border: 0;
}

.proof-item {
  display: grid;
  min-width: 150px;
  margin: 0;
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--pill-radius);
  background: rgba(255, 255, 255, .08);
}

.proof-item:not(:last-child)::after {
  display: none;
}

.proof-item strong,
.proof-item span {
  white-space: nowrap;
}

.problem-result,
.cta-strip,
.quiz-card,
.calculator-card,
.lead-form,
.variant,
.feature-card {
  border-radius: var(--surface-radius);
}

.quiz-progress,
.form-status {
  border-radius: var(--pill-radius);
}

.quiz-options button:not(.btn) {
  grid-template-columns: 18px 1fr;
  border-radius: var(--pill-radius);
  background: var(--white);
}

.calculator-card {
  background: var(--white);
}

.range-field input[type="range"] {
  height: 6px;
}

.comparison-section {
  background: linear-gradient(180deg, var(--gray) 0%, #fff 100%);
}

.comparison-matrix {
  overflow: hidden;
  display: grid;
  max-width: var(--content-wide);
  margin: 0 auto;
  border: var(--surface-border);
  border-radius: var(--surface-radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.comparison-matrix__head,
.comparison-case {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) minmax(0, 1fr);
}

.comparison-matrix__head {
  min-height: 58px;
  color: var(--white);
  background: var(--navy);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.comparison-matrix__head span {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 16px 24px;
  border-right: 1px solid rgba(255, 255, 255, .16);
}

.comparison-matrix__head span:last-child {
  border-right: 0;
}

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

.comparison-case__task,
.comparison-case__cell {
  min-width: 0;
  padding: 22px 24px;
}

.comparison-case__task {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--heading);
  background: #F8FAFD;
  font-size: 1.08rem;
  line-height: 1.25;
}

.comparison-case__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 1.05rem;
}

.comparison-case__cell {
  display: grid;
  align-content: center;
  gap: 7px;
  min-height: 118px;
  border-left: 1px solid var(--line);
}

.comparison-case__cell span {
  display: none;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.comparison-case__cell p {
  margin: 0;
  color: var(--heading);
  font-size: 1.03rem;
  line-height: 1.45;
  font-weight: 500;
}

.comparison-case__cell.is-regos {
  background: #F3F7FE;
}

.comparison-case__cell.is-regos span,
.comparison-case__cell.is-regos p {
  color: var(--blue);
}

.comparison-case__cell.is-regos p {
  font-weight: 700;
}

@media (max-width: 980px) {
  .comparison-matrix__head,
  .comparison-case {
    grid-template-columns: 190px minmax(0, 1fr) minmax(0, 1fr);
  }

  .comparison-case__task,
  .comparison-case__cell,
  .comparison-matrix__head span {
    padding-right: 18px;
    padding-left: 18px;
  }
}

@media (max-width: 720px) {
  .hero-actions .btn-wide {
    width: 100%;
    min-width: 0;
  }

  .hero-proof {
    justify-content: center;
  }

  .proof-item {
    min-width: 0;
    padding: 10px 14px;
  }

  .comparison-matrix {
    overflow: visible;
    gap: 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .comparison-matrix__head {
    display: none;
  }

  .comparison-case {
    overflow: hidden;
    grid-template-columns: 1fr;
    border: var(--surface-border);
    border-radius: var(--surface-radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
  }

  .comparison-case:first-of-type {
    border-top: var(--surface-border);
  }

  .comparison-case__task {
    padding: 18px 20px;
    background: var(--white);
  }

  .comparison-case__cell {
    min-height: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 17px 20px;
  }

  .comparison-case__cell span {
    display: block;
  }

  .quiz-options button:not(.btn) {
    border-radius: var(--pill-radius);
  }
}

@media (max-width: 520px) {
  :root {
    --block-title-size: 30px;
    --block-description-size: .94rem;
    --block-grid-row-gap: 30px;
    --block-item-title-size: 1.08rem;
    --block-item-text-size: .92rem;
    --block-icon-size: 54px;
    --block-icon-font-size: 2.55rem;
    --block-marker-size: 36px;
    --section-title-size: var(--block-title-size);
    --section-description-size: var(--block-description-size);
    --item-title-size: var(--block-item-title-size);
    --item-text-size: var(--block-item-text-size);
  }

  .container {
    width: calc(100% - 28px);
    max-width: 362px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero .container {
    max-width: 340px;
  }

  .hero-image {
    width: 100%;
    min-height: 172px;
  }

  .hero-inner {
    padding-top: 18px;
  }

  h1 {
    justify-self: center;
    max-width: 330px;
    font-size: 30px;
  }

  .hero p {
    justify-self: center;
    max-width: 330px;
    font-size: 13.5px;
    line-height: 1.36;
  }

  .hero .btn-wide,
  .cta-note,
  .hero-proof {
    justify-self: center;
    max-width: 330px;
  }

  .section-title h2 {
    font-size: var(--section-title-size);
  }

  .features-section .section-title h2 {
    font-size: var(--section-title-size);
  }

  .fit-section .section-title h2 {
    font-size: var(--section-title-size);
  }

  .device-card img {
    max-height: 178px;
  }

  .device-card.is-phone img {
    max-height: 236px;
  }

  .benefit p,
  .problem-item p,
  .feature-card p,
  .variant p,
  .variant li,
  .faq-item p,
  .step p,
  .fit-list li {
    overflow-wrap: anywhere;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions .btn-outline {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .08);
}

.hero-actions .btn-outline:hover {
  color: var(--navy-deep);
  background: var(--white);
}

.quiz-section,
.calculator-section,
.comparison-section {
  padding: var(--block-padding-y) 0;
}

.quiz-section,
.comparison-section {
  background: var(--gray);
}

.quiz-shell,
.calculator-shell {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: start;
  max-width: var(--content-wide);
}

.quiz-copy,
.calculator-copy {
  margin-bottom: 0;
}

.quiz-copy p,
.calculator-copy p {
  max-width: 560px;
}

.quiz-card,
.calculator-card {
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: 30px;
  border: var(--surface-border);
  border-radius: var(--surface-radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.quiz-progress {
  width: fit-content;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 7px;
  color: var(--blue);
  background: var(--blue-soft);
  font-weight: 700;
  line-height: 1.2;
}

.quiz-card h3 {
  margin: 0;
  color: var(--heading);
  font-size: 1.35rem;
  line-height: 1.28;
  font-weight: 500;
}

.quiz-options {
  display: grid;
  gap: 10px;
}

.quiz-options button:not(.btn) {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: center;
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: #FBFCFE;
  text-align: left;
}

.quiz-options button:not(.btn)::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #B9C7DE;
  border-radius: 50%;
}

.quiz-options button:not(.btn):hover,
.quiz-options button:not(.btn):focus-visible {
  border-color: var(--blue);
  box-shadow: 0 8px 18px rgba(35, 72, 128, .10);
}

.quiz-result {
  margin: 0;
  color: var(--muted);
}

.range-field {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 16px;
  align-items: center;
  color: var(--heading);
  font-weight: 500;
}

.range-field strong {
  color: var(--blue);
}

.range-field input[type="range"] {
  grid-column: 1 / -1;
  width: 100%;
  accent-color: var(--red);
}

.calc-total {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 8px;
  background: var(--blue-soft);
}

.calc-total span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.calc-total strong {
  color: var(--navy-deep);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.1;
}

.comparison-table {
  overflow: hidden;
  max-width: var(--content-wide);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  min-height: 70px;
  border-bottom: 1px solid var(--line);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row > * {
  display: flex;
  align-items: center;
  min-width: 0;
  margin: 0;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
}

.comparison-row > *:last-child {
  border-right: 0;
}

.comparison-head {
  min-height: 62px;
  color: var(--white);
  background: var(--navy);
  font-weight: 700;
}

.comparison-head > * {
  border-color: rgba(255, 255, 255, .18);
}

.comparison-row span {
  color: var(--heading);
  font-weight: 700;
}

.comparison-row p:last-child {
  color: var(--blue);
  font-weight: 700;
}

select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 14px;
  color: var(--text);
  background: #fff;
}

select:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(35, 72, 128, .14);
}

.sticky-cta {
  gap: 8px;
}

.sticky-cta-button i {
  font-size: .95rem;
}

.exit-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(46, 53, 77, .62);
}

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

.exit-dialog {
  position: relative;
  width: min(100%, 520px);
  padding: 34px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-modal);
}

.exit-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--muted);
  background: var(--white);
}

.exit-eyebrow {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.exit-dialog h2 {
  margin: 0 40px 12px 0;
  color: var(--heading);
  font-size: 1.9rem;
  line-height: 1.22;
  font-weight: 400;
}

.exit-dialog p:not(.exit-eyebrow) {
  margin-bottom: 24px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .quiz-shell,
  .calculator-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero-actions {
    display: grid;
    justify-items: center;
    width: 100%;
  }

  .hero-actions .btn-wide {
    width: min(330px, 100%);
    max-width: 100%;
  }

  .callback-note {
    display: none !important;
  }

  .quiz-card,
  .calculator-card {
    padding: 22px;
  }

  .comparison-table {
    border: 0;
    background: transparent;
  }

  .comparison-head {
    display: none;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-bottom: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    overflow: hidden;
  }

  .comparison-row > * {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .comparison-row > *:last-child {
    border-bottom: 0;
    background: #F7FAFE;
  }

  .sticky-cta {
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    width: min(calc(100% - 28px), 420px);
    padding: 0;
    border: 0;
    border-radius: var(--pill-radius);
    background: transparent;
    filter: drop-shadow(0 18px 34px rgba(31, 42, 68, .18));
  }

  .sticky-cta.is-visible {
    display: grid;
  }

  .sticky-cta-button {
    min-height: 54px;
    padding: 0 18px;
    border: 0;
    border-radius: var(--pill-radius);
    color: var(--white);
    background: linear-gradient(180deg, #b91414 0%, var(--red) 100%);
    box-shadow: 0 14px 28px rgba(149, 17, 17, .28), inset 0 1px 0 rgba(255, 255, 255, .22);
    font-size: 1rem;
  }

  .sticky-primary {
    border-color: var(--red);
    color: var(--white);
    background: var(--red);
  }

  .exit-modal {
    display: none !important;
  }
}

/* Page 2 calculator pricing */
.calculator-choice,
.calculator-select {
  display: grid;
  gap: 8px;
}

.calculator-choice__label,
.calculator-select > span {
  color: var(--heading);
  font-weight: 700;
}

.calculator-segments {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 0 0 16px;
  border: 0;
  border-bottom: 1px solid rgba(77, 107, 151, .18);
  border-radius: 0;
  background: transparent;
}

.calculator-segments button {
  min-height: 48px;
  border: 1px solid rgba(77, 107, 151, .2);
  border-radius: calc(var(--surface-radius) - 8px);
  padding: 0 16px;
  color: var(--blue);
  background: #F7FAFD;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.calculator-segments button:hover {
  background: var(--white);
  border-color: rgba(35, 72, 128, .34);
}

.calculator-segments button.is-active {
  border-color: var(--blue);
  color: var(--white);
  background: var(--blue);
}

.calculator-select select {
  min-height: 52px;
  border-radius: calc(var(--surface-radius) - 8px);
  padding: 0 46px 0 18px;
  color: var(--heading);
  background-color: var(--white);
  background-image:
    linear-gradient(45deg, transparent 50%, var(--blue) 50%),
    linear-gradient(135deg, var(--blue) 50%, transparent 50%);
  background-position:
    calc(100% - 23px) 22px,
    calc(100% - 17px) 22px;
  background-repeat: no-repeat;
  background-size: 6px 6px;
  font-weight: 700;
  appearance: none;
}

.calc-total {
  border: 0;
  border-top: 1px solid rgba(77, 107, 151, .18);
  border-radius: 0;
  padding: 20px 0 0;
  background: transparent;
}

.calc-total small {
  max-width: none;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.45;
}

.is-native-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  padding: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.custom-select {
  position: relative;
  z-index: 1;
  width: 100%;
}

.custom-select.is-open {
  z-index: 20;
}

.custom-select__button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: center;
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(77, 107, 151, .24);
  border-radius: calc(var(--surface-radius) - 8px);
  padding: 0 9px 0 18px;
  color: var(--heading);
  background: #FBFCFE;
  box-shadow: none;
  font: inherit;
  font-weight: 700;
  text-align: left;
  transition: border-color .2s ease, box-shadow .2s ease, color .2s ease;
}

.custom-select__button:hover,
.custom-select.is-open .custom-select__button {
  border-color: rgba(35, 72, 128, .46);
  box-shadow: none;
}

.custom-select.is-placeholder .custom-select__button {
  color: #6F7A8A;
}

.custom-select__button span:first-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-select__icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 0;
  color: var(--blue);
  background: transparent;
  font-size: .78rem;
  transition: transform .2s ease, color .2s ease, background .2s ease;
}

.custom-select__icon i {
  display: none;
}

.custom-select__icon::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: -3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.custom-select.is-open .custom-select__icon {
  color: var(--blue);
  background: transparent;
  transform: rotate(180deg);
}

.custom-select__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  display: grid;
  gap: 5px;
  max-height: 270px;
  overflow: auto;
  padding: 8px;
  border: var(--surface-border);
  border-radius: var(--surface-radius);
  background: rgba(255, 255, 255, .98);
  box-shadow: var(--shadow-soft);
}

.custom-select__menu[hidden] {
  display: none;
}

.custom-select__option {
  display: block;
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: calc(var(--surface-radius) - 8px);
  padding: 10px 13px;
  color: var(--heading);
  background: transparent;
  font: inherit;
  font-weight: 700;
  text-align: left;
  transition: background .18s ease, color .18s ease;
}

.custom-select__option:hover,
.custom-select__option[aria-selected="true"] {
  color: var(--blue);
  background: #EEF4FD;
}

.custom-select__option.is-placeholder {
  color: #6F7A8A;
  font-weight: 500;
}

.lead-form .custom-select__button {
  min-height: 49px;
  border-radius: 7px;
  box-shadow: none;
}

.lead-form .custom-select__menu {
  border-radius: var(--surface-radius);
}

body.modal-open {
  overflow: hidden;
}

.quiz-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(46, 53, 77, .66);
}

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

.quiz-dialog {
  position: relative;
  display: grid;
  gap: 14px;
  width: min(100%, 560px);
  max-height: calc(100vh - 32px);
  overflow: auto;
  padding: 32px;
  border: var(--surface-border);
  border-radius: var(--surface-radius);
  background: rgba(255, 255, 255, .98);
  box-shadow: var(--shadow-modal);
}

.quiz-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  background: var(--white);
  transition: color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.quiz-close:hover {
  border-color: rgba(35, 72, 128, .36);
  color: var(--blue);
  box-shadow: 0 10px 22px rgba(35, 72, 128, .12);
}

.quiz-modal-eyebrow {
  margin: 0;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.quiz-dialog h2 {
  margin: 0 46px 0 0;
  color: var(--heading);
  font-size: clamp(1.9rem, 4vw, 2.4rem);
  line-height: 1.16;
  font-weight: 400;
}

.quiz-modal-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.quiz-modal-summary {
  max-height: 150px;
  overflow: auto;
  margin: 0;
  border: 1px solid rgba(77, 107, 151, .16);
  border-radius: var(--surface-radius);
  padding: 14px 16px;
  color: var(--heading);
  background: #F4F7FC;
  font-size: .93rem;
  line-height: 1.48;
  white-space: pre-line;
}

.quiz-result {
  white-space: pre-line;
}

.callback-dialog {
  width: min(100%, 620px);
}

.callback-conditions {
  display: grid;
  gap: 10px;
  margin: 2px 0 4px;
  padding: 0;
  list-style: none;
}

.callback-conditions li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(77, 107, 151, .16);
  border-radius: var(--pill-radius);
  color: var(--heading);
  background: #F4F7FC;
  font-size: .95rem;
  line-height: 1.45;
}

.callback-conditions i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  color: #234880;
  background: #E6F2FF;
  font-family: "Font Awesome 7 Free";
  font-size: .88rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.callback-conditions i::before {
  display: block;
  color: inherit;
  line-height: 1;
}

.quiz-lead-form {
  margin-top: 2px;
  border: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.quiz-lead-form .controls {
  gap: 12px;
}

@media (max-width: 620px) {
  .calculator-segments {
    grid-template-columns: 1fr;
    border-radius: 0;
  }

  .calculator-segments button,
  .calculator-select select {
    min-height: 50px;
  }

  .calc-total {
    border-radius: 0;
    padding: 18px 0 0;
  }

  .custom-select__button {
    min-height: 50px;
  }

  .custom-select__menu {
    border-radius: var(--surface-radius);
  }

  .quiz-modal {
    align-items: flex-end;
    padding: 12px;
  }

  .quiz-dialog {
    width: 100%;
    padding: 26px 18px 20px;
    border-radius: var(--surface-radius);
  }

  .quiz-dialog h2 {
    margin-right: 40px;
  }

  .callback-dialog {
    gap: 10px;
    padding: 24px 18px 18px;
  }

  .callback-dialog h2 {
    font-size: 1.72rem;
    line-height: 1.15;
  }

  .callback-conditions {
    gap: 8px;
  }

  .callback-conditions li {
    gap: 9px;
    padding: 10px 12px;
    font-size: .9rem;
  }

  .callback-conditions i {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .callback-lead-form .controls {
    gap: 10px;
  }

  .callback-lead-form .form-microcopy {
    display: none;
  }
}
