:root {
  --indigo: #4b5cc4;
  --yellow: #ffc857;
  --blue: #dceeff;
  --indigo-50: #eaedfb;
  --gray-bg: #f4f6fb;
  --text: #2b2f38;
  --muted: #5b6472;
  --light: #9aa3b2;
  --border: #e6eaf2;
  --footer: #2b2f38;
  --shadow: 0 30px 60px -34px rgba(40, 55, 120, 0.4);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.modal-open,
body.menu-open,
body.t-menu-open,
body.home-menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

.mobile-sticky-cta {
  display: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(100% - 80px, 1200px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #eceff5;
}

.site-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  text-decoration: none;
  flex: 0 0 auto;
}

.site-logo__mark {
  flex: 0 0 auto;
}

.site-logo__text {
  font-size: 21px;
  font-weight: 800;
}

.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-left: 8px;
}

.site-nav__list {
  display: flex;
  gap: 28px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a,
.nav-link {
  position: relative;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a::after,
.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--indigo);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover,
.nav-link:hover {
  color: var(--indigo);
}

.site-nav a:hover::after,
.nav-link:hover::after {
  transform: scaleX(1);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.site-phone {
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 0;
  border-radius: 12px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  filter: brightness(0.97);
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--yellow);
  color: #2b2f38;
}

.btn--secondary {
  background: var(--indigo);
  color: #fff;
}

.btn--soft {
  background: var(--indigo-50);
  color: var(--indigo);
}

.btn--outline {
  border: 1.5px solid #c7cff0;
  background: #fff;
  color: var(--indigo);
}

.btn--outline:hover {
  border-color: var(--indigo);
  background: #f7f8fe;
}

.btn--large {
  min-height: 56px;
  padding: 16px 28px;
  border-radius: 13px;
  font-size: 16px;
}

.btn--wide {
  width: 100%;
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.burger span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
}

.mobile-menu {
  display: none;
}

.hero {
  background: var(--blue);
}

.hero--indigo {
  background: var(--indigo);
  color: #fff;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 64px;
}

.hero h1 {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: 54px;
  font-weight: 800;
  line-height: 1.04;
}

.hero p {
  max-width: 540px;
  margin: 22px 0 0;
  color: #4a5260;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.55;
}

.hero--indigo p {
  color: rgba(255, 255, 255, 0.82);
}

.hero .btn {
  min-height: 56px;
  margin-top: 32px;
  padding: 17px 30px;
  font-size: 17px;
}

.hero__media img {
  display: block;
  width: 572px;
  margin: -24px 0 -36px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border-radius: 999px;
  background: #fff;
  color: var(--indigo);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 4px 14px -8px rgba(40, 55, 120, 0.4);
}

.badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
}

.section {
  padding: 64px 0;
  background: #fff;
}

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

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.section-label {
  color: var(--indigo);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section h2,
.section-head h2,
.cta-band h2 {
  margin: 12px 0 0;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
}

.cards-grid {
  display: grid;
  gap: 18px;
}

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

.service-card,
.price-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover,
.price-card:hover {
  border-color: #c7cff0;
  box-shadow: 0 24px 50px -34px rgba(40, 55, 120, 0.5);
  transform: translateY(-3px);
}

.service-card img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card__body {
  padding: 26px;
}

.service-card h3,
.price-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.service-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 16px 0;
}

.tags span {
  padding: 5px 10px;
  border-radius: 7px;
  background: #f2f4f9;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.text-link {
  color: var(--indigo);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

/* Cards that act as a single link or action. */
.clickable-card {
  position: relative;
  color: inherit !important;
  text-decoration: none !important;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(.2,.7,.25,1), border-color 0.25s ease, box-shadow 0.25s ease;
}

.clickable-card:link,
.clickable-card:visited,
.clickable-card:hover,
.clickable-card:active,
.clickable-card * {
  text-decoration: none !important;
}

.clickable-card:hover {
  color: inherit !important;
  border-color: #aeb9e8 !important;
  box-shadow: 0 24px 44px -20px rgba(40, 55, 120, 0.42);
  transform: translateY(-7px);
}

.clickable-card > img {
  transition: transform 0.35s cubic-bezier(.2,.7,.25,1), filter 0.35s ease;
}

.clickable-card:hover > img {
  filter: saturate(1.08);
  transform: scale(1.035);
}

.clickable-card:focus-visible {
  outline: 3px solid rgba(75, 92, 196, 0.35);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .clickable-card { transition: none; }
  .clickable-card:hover { transform: none; }
  .clickable-card > img { transition: none; }
  .clickable-card:hover > img { transform: none; }
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.advantage {
  padding: 26px;
  border-radius: 16px;
  background: #fff;
}

.advantage strong {
  display: block;
  color: var(--indigo);
  font-size: 33px;
  font-weight: 800;
  line-height: 1;
}

.advantage span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.process::before {
  content: "";
  position: absolute;
  top: 28px;
  right: 10%;
  left: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--indigo), var(--blue));
}

.process-step {
  position: relative;
  z-index: 1;
}

.process-step__num {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: var(--indigo);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 0 0 6px var(--indigo-50);
}

.process-step span {
  display: block;
  margin-top: 22px;
  color: var(--indigo);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-step h3 {
  margin: 8px 0 0;
  font-size: 18px;
  line-height: 1.25;
}

.process-step p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.price-note {
  margin: -12px 0 24px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #fff4da;
  color: #9a6b12;
  font-weight: 700;
}

.price-card {
  padding: 28px;
}

.price-card--featured {
  border-color: var(--indigo);
  background: var(--indigo);
  color: #fff;
}

.price-card strong {
  display: block;
  margin-top: 16px;
  color: var(--indigo);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.price-card--featured strong {
  color: var(--yellow);
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

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

.price-card--featured li {
  color: rgba(255, 255, 255, 0.86);
}

.price-card li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--indigo);
  font-weight: 800;
}

.price-card--featured li::before {
  color: var(--yellow);
}

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

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

.faq-item summary {
  position: relative;
  padding: 20px 32px 20px 0;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 0;
  color: var(--indigo);
  font-size: 22px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding-bottom: 20px;
  color: var(--muted);
  font-size: 15px;
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.two-col h2 {
  margin: 12px 0 0;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
}

.two-col p {
  color: var(--muted);
  font-size: 17px;
}

.operator-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.operator-grid article {
  padding: 24px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 42px -34px rgba(40, 55, 120, 0.45);
}

.operator-grid h3 {
  margin: 0;
  font-size: 18px;
}

.operator-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.cta-band {
  background: var(--indigo);
  color: #fff;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 42px;
  padding-bottom: 42px;
}

.cta-band h2 {
  margin: 0;
  color: #fff;
  font-size: 28px;
}

.cta-band p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  background: var(--footer);
  color: #fff;
}

.footer-top {
  display: flex;
  gap: 56px;
  padding-top: 54px;
  padding-bottom: 40px;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .site-logo {
  color: #fff;
}

.footer-brand p,
.footer-contact span,
.footer-bottom {
  color: rgba(255, 255, 255, 0.64);
}

.footer-links {
  display: flex;
  gap: 56px;
  margin-left: auto;
}

@media (min-width: 1001px) {
  [data-screen-label="Подвал"] .footer-links {
    transform: translateX(24px);
  }
}

.footer-title {
  margin: 0 0 14px;
  color: #fff;
  font-size: 15px;
}

.footer-links a,
.footer-phone {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-phone {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
}

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

.page-hero {
  background: var(--indigo);
  color: #fff;
  padding: 58px 0;
}

.page-hero h1 {
  margin: 12px 0 0;
  font-size: 48px;
  line-height: 1.08;
}

.breadcrumbs {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.breadcrumbs a {
  text-decoration: none;
}

.content-page {
  max-width: 860px;
}

.entry-content > *:first-child {
  margin-top: 0;
}

/* Shared typography for blog articles and universal pages. */
.editorial-content {
  min-width: 0;
  max-width: 100%;
  color: #374151;
  font-size: 17px;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.editorial-content > *:first-child,
.editorial-content > .wpb-content-wrapper > *:first-child,
.editorial-content > .wpb-content-wrapper > .vc_row:first-child {
  margin-top: 0;
}

.editorial-content h2 {
  margin: 52px 0 18px;
  color: #2b2f38;
  font-size: 29px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
  scroll-margin-top: 96px;
}

.editorial-content h3 {
  margin: 40px 0 14px;
  color: #2b2f38;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
}

.editorial-content h4 {
  margin: 32px 0 12px;
  color: #2b2f38;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.editorial-content p {
  margin: 0 0 20px;
}

.editorial-content a {
  color: #4b5cc4;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.editorial-content a:hover,
.editorial-content a:focus-visible {
  color: #3547b4;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.editorial-content strong {
  color: #2b2f38;
  font-weight: 700;
}

.editorial-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 28px 0;
  border-radius: 14px;
}

.editorial-content ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.editorial-content ul > li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 30px;
}

.editorial-content ul > li::before {
  position: absolute;
  top: 11px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ffc857;
  box-shadow: 0 0 0 4px #fff4da;
  content: "";
}

.editorial-content ol {
  margin: 0 0 24px;
  padding-left: 24px;
}

.editorial-content ol > li {
  margin-bottom: 12px;
  padding-left: 6px;
}

.editorial-content ol > li::marker {
  color: #4b5cc4;
  font-weight: 700;
}

.editorial-content blockquote {
  margin: 28px 0;
  padding: 20px 26px;
  border-left: 4px solid #4b5cc4;
  border-radius: 0 12px 12px 0;
  background: #f4f6fb;
  color: #2b2f38;
  font-size: 19px;
  font-style: italic;
}

.editorial-content .table-scroll {
  width: 100%;
  max-width: 100%;
  margin: 28px 0;
  overflow-x: auto;
  border: 1px solid #e6eaf2;
  border-radius: 14px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
}

.editorial-content .table-scroll:focus-visible {
  outline: 2px solid #4b5cc4;
  outline-offset: 3px;
}

.editorial-content table {
  width: 100%;
  min-width: 640px;
  margin: 0;
  border-collapse: collapse;
  font-size: 15px;
  table-layout: auto;
}

.editorial-content table th,
.editorial-content table td {
  min-width: 120px;
  max-width: 280px;
  overflow-wrap: break-word;
  word-break: normal;
  white-space: normal !important;
  vertical-align: top;
}

.editorial-content table th {
  padding: 14px 18px;
  background: #4b5cc4;
  color: #fff;
  font-weight: 700;
  text-align: left;
}

.editorial-content table td {
  padding: 13px 18px;
  border-top: 1px solid #edf0f6;
  color: #374151;
}

@media (max-width: 768px) {
  .editorial-content {
    font-size: 17px;
  }

  .editorial-content h2 {
    font-size: 25px;
  }

  .editorial-content h3 {
    font-size: 21px;
  }

  .editorial-content table {
    min-width: 600px;
  }

  .editorial-content table,
  .editorial-content table th,
  .editorial-content table td,
  .editorial-content table th *,
  .editorial-content table td * {
    font-size: 14px !important;
    line-height: 1.45 !important;
  }

  .editorial-content table th,
  .editorial-content table td {
    min-width: 110px;
    max-width: 220px;
    padding: 10px 12px;
  }
}

.not-found {
  background: var(--blue);
  padding: 70px 0;
}

.not-found__grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.not-found h1 {
  margin: 12px 0 0;
  font-size: 54px;
  line-height: 1.04;
}

.not-found p {
  max-width: 560px;
  color: var(--muted);
  font-size: 19px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.error-404 {
  display: flex;
  flex: 1;
  align-items: center;
  background: var(--blue);
}

.error-404__inner {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 48px;
  align-items: center;
  width: min(100% - 80px, 1160px);
  padding-top: 56px;
  padding-bottom: 72px;
}

.error-404__code {
  color: #1aa6a6;
  font-size: 128px;
  font-weight: 800;
  line-height: 0.9;
}

.error-404 h1 {
  max-width: 620px;
  margin: 20px 0 0;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.08;
}

.error-404 p {
  max-width: 480px;
  margin: 18px 0 0;
  color: #4a5260;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
}

.error-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.error-404__popular {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 28px;
}

.error-404__popular span {
  color: #6b7590;
  font-size: 13px;
  font-weight: 600;
}

.error-404__popular a {
  padding: 7px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--indigo);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.error-404__media img {
  display: block;
  width: 100%;
  max-width: 460px;
  height: auto;
  justify-self: center;
  margin: 0 auto;
  filter: drop-shadow(0 30px 40px rgba(40, 55, 120, 0.22));
  animation: tarelka-floaty 6s ease-in-out infinite;
}

@keyframes tarelka-floaty {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-16px) rotate(2deg);
  }
}

.request-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.request-modal.is-open {
  display: flex;
}

.request-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 26, 45, 0.55);
}

.request-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 32px;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.request-modal__panel h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.12;
}

.request-modal__panel p {
  margin: 10px 0 22px;
  color: var(--muted);
}

.request-modal__panel label {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.request-modal input,
.request-modal select {
  width: 100%;
  height: 48px;
  margin-top: 7px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 11px;
  color: var(--text);
  font: inherit;
}

.request-modal select {
  appearance: none;
  background: #fff;
}

.request-modal .checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 600;
}

.request-modal .checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--indigo);
}

.request-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--gray-bg);
  color: var(--text);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

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

@media (max-width: 980px) {
  .container {
    width: min(100% - 40px, 1200px);
  }

  .site-nav,
  .site-header__actions {
    display: none;
  }

  .burger {
    display: flex;
  }

  .mobile-menu {
    position: fixed;
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 45;
    overflow: auto;
    background: #fff;
    border-top: 1px solid #eceff5;
  }

  .mobile-menu.is-open {
    display: block;
  }

  .mobile-menu__inner {
    padding-top: 24px;
    padding-bottom: 32px;
  }

  .mobile-menu__nav {
    display: grid;
    border-top: 1px solid #f0f2f7;
  }

  .mobile-menu__list {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mobile-menu__nav a {
    padding: 16px 0;
    border-bottom: 1px solid #f0f2f7;
    color: var(--text);
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-menu__phone {
    display: block;
    margin: 28px 0 12px;
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
  }

  .hero__grid,
  .not-found__grid,
  .two-col,
  .error-404__inner {
    grid-template-columns: 1fr;
  }

  .error-404__inner {
    gap: 28px;
    text-align: center;
  }

  .error-404 p,
  .error-404 h1 {
    margin-right: auto;
    margin-left: auto;
  }

  .error-404__actions,
  .error-404__popular {
    justify-content: center;
  }

  .error-404__media img {
    width: 78%;
    max-width: 340px;
  }

  .hero__media img {
    width: 100%;
    margin: 0;
  }

  .cards-grid--3,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .process::before {
    display: none;
  }

  .footer-top,
  .footer-links,
  .cta-band__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  body.has-mobile-sticky-cta {
    padding-bottom: calc(82px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 900;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(43, 47, 56, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -10px 30px rgba(40, 55, 120, 0.12);
    backdrop-filter: blur(12px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .mobile-sticky-cta__button {
    display: block;
    width: 100%;
    min-height: 50px;
    padding: 13px 20px;
    border: 0;
    border-radius: 12px;
    background: var(--yellow);
    color: var(--text);
    box-shadow: 0 10px 24px -14px rgba(43, 47, 56, 0.45);
    font: 700 16px/1.3 Manrope, system-ui, sans-serif;
    cursor: pointer;
  }

  body.modal-open .mobile-sticky-cta,
  body.menu-open .mobile-sticky-cta,
  body.t-menu-open .mobile-sticky-cta,
  body.home-menu-open .mobile-sticky-cta,
  body.tarelka-cookie-visible .mobile-sticky-cta {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
  }

  .container {
    width: min(100% - 40px, 1200px);
  }

  .site-header__inner {
    min-height: 70px;
  }

  .mobile-menu {
    top: 70px;
  }

  .hero__grid {
    gap: 24px;
    padding-top: 36px;
    padding-bottom: 42px;
  }

  .hero h1,
  .not-found h1 {
    font-size: 30px;
    line-height: 1.15;
  }

  .error-404__inner {
    width: min(100% - 40px, 1160px);
    padding-top: 40px;
    padding-bottom: 56px;
  }

  .error-404__code {
    font-size: 96px;
  }

  .error-404 h1 {
    font-size: 30px;
    line-height: 1.15;
  }

  .hero p,
  .not-found p,
  .error-404 p {
    font-size: 17px;
  }

  .section {
    padding: 44px 0;
  }

  .section h2,
  .section-head h2 {
    font-size: 26px;
  }

  .advantages-grid,
  .process,
  .operator-grid {
    grid-template-columns: 1fr;
  }

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