:root {
  --page-max: 1440px;
  --container: 1200px;
  --gutter: clamp(32px, 8vw, 120px);
  --bg-soft: #f3f4f6;
  --text: #111827;
  --text-muted: #5b5b5b;
  --text-subtle: #475569;
  --blue: #3b6fff;
  --yellow: #ffdd2d;
  --black: #101010;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

html {
  overflow-x: hidden;
  scrollbar-gutter: stable;
}

body {
  min-width: 320px;
  overflow-x: hidden;
}

a,
button,
input,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}

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

.main-nav a,
.blog-card h3,
.footer-messengers a,
.footer-links a,
.site-footer__bottom a {
  transition:
    color 180ms ease,
    opacity 180ms ease,
    text-decoration-color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.blog-card h3:hover,
.footer-messengers a:hover,
.footer-messengers a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible {
  color: var(--blue);
}

.footer-links a:hover,
.footer-links a:focus-visible,
.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

.page-shell {
  width: 100%;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.js-motion .reveal-target {
  opacity: 0;
}

body.js-motion .reveal-target.reveal-active {
  opacity: 1;
}

body.modal-open {
  overflow: hidden;
}

body.is-scroll-locked {
  position: fixed;
  left: 0;
  width: 100%;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  body.js-motion .reveal-target,
  body.js-motion .reveal-target.reveal-active {
    opacity: 1;
  }

  .button,
  .main-nav a,
  .blog-card h3,
  .footer-messengers a,
  .footer-links a,
  .site-footer__bottom a,
  .faq__list summary,
  .feature__media img,
  .benefit-card img,
  .small-card img,
  .blog-card img {
    transition: none;
  }

  .button:hover,
  .button:focus-visible,
  .button:active,
  .feature__media:hover img,
  .benefit-card:hover img,
  .small-card:hover img,
  .blog-card:hover img {
    transform: none;
  }
}

.page-scale {
  width: 100%;
  margin: 0 auto;
}

.page-preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  opacity: 1;
  transition: opacity 560ms ease, visibility 560ms ease;
}

.page-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.page-preloader__spinner {
  width: 40px;
  height: 40px;
  border: 2px solid #d9e2ff;
  border-top-color: #3b6fff;
  border-radius: 50%;
  animation: preloader-spin 1.2s linear infinite;
}

.page-preloader__text {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #475569;
}

@keyframes preloader-spin {
  to {
    transform: rotate(360deg);
  }
}

.page-canvas {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 19px var(--gutter) 0;
  transition: filter 220ms ease;
}

.site-header,
.hero__actions,
.main-nav,
.feature,
.cards--benefits,
.cards--small,
.pricing-grid,
.blog,
.site-footer__top,
.site-footer__bottom,
.footer-links,
.footer-messengers,
.faq__actions {
  display: flex;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
}

.menu-backdrop {
  display: none;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(16, 16, 16, 0.64);
}

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

.lead-modal {
  position: relative;
  width: min(560px, 100%);
  padding: 32px;
  border-radius: 24px;
  background: #fff;
}

.lead-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: #f3f4f6;
  color: #111827;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.lead-modal__eyebrow {
  display: none;
}

.lead-modal__eyebrow--neutral {
  color: #4b5563;
}

.lead-modal__head h2 {
  margin: 10px 0 0;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.15;
}

.lead-modal__head p {
  margin: 14px 0 0;
  color: var(--text-subtle);
  font-size: 16px;
  line-height: 24px;
}

.lead-form {
  margin-top: 28px;
}

.lead-form__field {
  display: block;
  margin-bottom: 16px;
}

.lead-form__field span {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
}

.lead-form__field input {
  width: 100%;
  height: 56px;
  padding: 0 18px;
  border: 1px solid #d8dce5;
  border-radius: 12px;
  background: #fff;
  color: #111827;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.lead-form__field textarea {
  width: 100%;
  min-height: 128px;
  padding: 16px 18px;
  border: 1px solid #d8dce5;
  border-radius: 12px;
  background: #fff;
  color: #111827;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  resize: vertical;
}

.lead-form__field input:focus {
  border-color: #111827;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.08);
  outline: none;
}

.lead-form__field textarea:focus {
  border-color: #111827;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.08);
  outline: none;
}

.lead-form__field input.is-invalid,
.lead-form__field textarea.is-invalid {
  border-color: #dc2626;
  background: #fff7f7;
}

.lead-form__field input.is-invalid:focus,
.lead-form__field textarea.is-invalid:focus {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.lead-form__submit {
  width: 100%;
  margin-top: 8px;
  border: 0;
  box-shadow: none;
  border-radius: 8px;
  background: #111827;
  color: #fff;
}

.lead-form__submit:hover,
.lead-form__submit:focus-visible {
  background: #1f2937;
}

.lead-form__success {
  margin-top: 14px;
  color: #256d1b;
  font-size: 15px;
  line-height: 22px;
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 110;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 8px;
  background: #111827;
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dev-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 140;
  min-width: 260px;
  max-width: calc(100vw - 32px);
  padding: 14px 18px;
  border-radius: 14px;
  background: #111827;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  text-align: center;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
}

.dev-toast.is-visible {
  opacity: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand__mark {
  width: 40px;
  height: 37px;
}

.brand__name {
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.05em;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #f3f4f6;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.main-nav {
  justify-content: center;
  gap: clamp(14px, 1.6vw, 20px);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  flex-wrap: wrap;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.main-nav__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  opacity: 0.75;
}

.main-nav__icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
}

.header-login {
  width: 173px;
  height: 48px;
  justify-self: end;
}

.main-nav .main-nav__login {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  padding: 10px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.button--primary {
  background: var(--blue);
  color: #fff;
}

.button--ghost {
  background: var(--bg-soft);
  color: var(--text);
}

.button--dark {
  background: #3B6FFF;
  color: #fff;
}

.button--warning {
  background: var(--yellow);
  color: var(--text);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #315fe0;
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: #e9ebf1;
}

.button--dark:hover,
.button--dark:focus-visible {
  background: #315FE0;
}

.button--warning:hover,
.button--warning:focus-visible {
  background: #f4d11e;
}

.button:active {
  transform: translateY(0);
}

.feature__button {
  align-self: flex-start;
  height: 55px;
  padding: 10px 30px;
  border-radius: 10px;
  line-height: 32px;
}

.hero {
  position: relative;
  padding-top: 64px;
  text-align: center;
}

.hero__content {
  width: min(703px, 100%);
  margin: 55px auto 0;
}

.hero h1 {
  margin: 0;
  font-size: 50px;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero__break {
  display: block;
}

.hero__icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  vertical-align: middle;
  margin: 0 3px;
}

.hero__lead {
  width: min(632px, 100%);
  margin: 25px auto 0;
  color: var(--text-muted);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0;
}

@media (min-width: 1280px) {
  .hero__content {
    width: min(860px, 100%);
  }

  .hero h1 {
    font-size: 58px;
    line-height: 66px;
  }

  .hero__lead {
    width: min(860px, 100%);
  }
}

.hero__actions {
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}

.hero__actions .button {
  width: 217px;
  padding-inline: 0;
}

.hero__note {
  margin: 25px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
}

.hero__image {
  width: min(800px, 100%);
  height: 500px;
  margin: 57px auto 0;
  object-fit: contain;
  object-position: center;
  display: block;
}

.feature {
  width: 100%;
  margin: 50px auto 0;
  gap: clamp(32px, 5vw, 64px);
  padding: 40px 32px;
  border-radius: 30px;
  background: var(--bg-soft);
  align-items: stretch;
}

.hero + .feature {
  margin-top: 120px;
}

.feature__text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
  min-width: 0;
}

.feature__text h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: -0.35px;
}

.feature__text p {
  margin: 12px 0 0;
  color: var(--text-subtle);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0;
}

.feature__text .feature__button {
  margin-top: 24px;
}

.feature__media {
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 24px;
}

.feature__media--fit {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature__media--crop {
  width: min(590px, 48%);
  height: 339px;
}

.feature__media--crop img {
  width: 591px;
  height: 443px;
  object-fit: cover;
  object-position: top center;
}

.feature__media--fit img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.feature--reverse .feature__media--tall {
  width: min(486px, 42%);
  height: 350px;
}

.feature__media--tall img,
.feature__media--dark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature__media--fit.feature__media--crop img,
.feature__media--fit.feature__media--tall img,
.feature__media--fit.feature__media--dark img {
  object-fit: contain;
  object-position: center;
}

.feature__media img,
.benefit-card img,
.small-card img,
.blog-card img {
  transition: transform 260ms ease;
  transform-origin: center center;
}

.feature__media:hover img,
.blog-card:hover img {
  transform: scale(1.03);
}

.benefit-card:hover img,
.small-card:hover img {
  transform: translateX(-50%) scale(1.03);
}

.feature--dark {
  background: #1b1d25;
  color: #fff;
}

.feature--dark .feature__text p {
  color: rgba(255, 255, 255, 0.72);
}

.feature__media--dark {
  width: min(486px, 42%);
  height: 310px;
}

.cards {
  width: 100%;
  margin: 50px auto 0;
}

.cards--benefits {
  gap: 30px;
  align-items: stretch;
}

.benefit-card {
  width: calc((100% - 60px) / 3);
  height: 380px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  padding-top: 25px;
}

.benefit-card--light {
  background: var(--bg-soft);
  color: #19191c;
}

.benefit-card--blue {
  background: var(--blue);
  color: #fff;
}

.benefit-card h3 {
  margin: 0 auto;
  width: calc(100% - 40px);
  font-family: "Manrope", sans-serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.25px;
  text-align: center;
}

.benefit-card img {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 320px;
  max-height: 272px;
  object-fit: contain;
}

.cards--small {
  gap: 30px;
  margin-top: 50px;
  align-items: stretch;
}

.small-card {
  width: calc((100% - 60px) / 3);
  height: 340px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  padding: 22px 24px 0;
}

.small-card--light {
  background: var(--bg-soft);
  color: #22252d;
}

.small-card--dark {
  background: #1f1f23;
  color: #fff;
}

.small-card img {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  object-fit: contain;
}

.small-card h3 {
  margin: 0;
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0;
  text-align: center;
}

.small-card--light img {
  width: 286px;
  height: 214px;
}

.small-card--dark img {
  width: 248px;
  height: 214px;
  bottom: 0;
}

.small-card:first-child img {
  width: 304px;
  height: 227px;
  left: 44%;
}

.feature__button--demo {
  width: 210px;
}

.launch {
  width: 100%;
  margin: 120px auto 0;
}

.launch__head {
  width: min(793px, 100%);
  margin: 0 auto 45px;
  text-align: center;
}

.launch__head h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: -0.35px;
}

.launch__head p {
  width: min(652px, 100%);
  margin: 25px auto 0;
  color: var(--text-muted);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0;
}

.pricing-grid {
  gap: 28px;
  align-items: stretch;
}

.price-card {
  flex: 1 1 0;
  min-height: 616px;
  padding: 34px 36px 36px;
  border-radius: 26px;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.price-card--soft {
  background: #f5f6fa;
}

.price-card__label--title {
  color: var(--text);
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0;
}

.price-card__label {
  color: var(--text);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.35;
}

.price-card__price {
  margin-top: 24px;
  color: #22252d;
  font-size: 50px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.price-card__price span {
  color: #6b7280;
  font-size: 19px;
  font-weight: 400;
}

.price-card__meta {
  color: #6b7280;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
}

.price-card__meta--top {
  margin-top: 4px;
}

.price-card__list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: #30333b;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
}

.price-card__list li {
  margin-bottom: 8px;
}

.price-card__button {
  width: 100%;
  margin-top: auto;
  height: 51px;
  border-radius: 10px;
  padding-inline: 0;
}

.installment-banner {
  display: none;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  margin-bottom: 13px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #ffd530;
}

.installment-banner__icons {
  display: flex;
  align-items: center;
}

.installment-banner__icons span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-right: -4px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #fff5cb;
  font-size: 14px;
  font-weight: 600;
}

.installment-banner__text {
  display: flex;
  flex-direction: column;
  color: #22252d;
}

.installment-banner__text strong {
  font-size: 14px;
  line-height: 1.2;
}

.installment-banner__text small {
  font-size: 13px;
  line-height: 1.2;
}

.faq {
  width: min(1057px, 100%);
  margin: 110px auto 0;
}

.faq h2 {
  margin: 0 0 55px;
  font-size: 40px;
  font-weight: 500;
  line-height: 60px;
  letter-spacing: 0;
}

.faq__list {
  display: block;
}

.faq__list details {
  border-bottom: 1px solid #d1d5db;
  padding: 0 0 20px;
  margin: 0;
  overflow: hidden;
}

.faq__list details + details {
  margin-top: 20px;
}

.faq__list summary {
  position: relative;
  list-style: none;
  padding-right: 42px;
  margin: 0;
  font-size: 25px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0;
  cursor: pointer;
  transition: color 180ms ease;
}

.faq__list summary:hover,
.faq__list summary:focus-visible {
  color: var(--blue);
}

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

.faq__list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 24px;
  line-height: 30px;
}

.faq__list details[open] summary::after {
  content: "−";
}

.faq__list p {
  margin: 15px 0 0;
  color: var(--text-subtle);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0;
  transition: opacity 180ms ease, transform 180ms ease;
  transform-origin: top;
}

.faq__list details:not([open]) p {
  opacity: 0;
  transform: translateY(-4px);
}

.faq__list details[open] p {
  opacity: 1;
  transform: translateY(0);
}

.faq__actions {
  gap: 15px;
  margin-top: 40px;
}

.faq__actions .button {
  width: 190px;
  padding-inline: 0;
}

.blog {
  width: 100%;
  gap: 40px;
  margin: 120px auto 0;
}

.blog-card {
  width: calc((100% - 80px) / 3);
}

.blog-card img {
  width: 100%;
  height: 259.04px;
  border-radius: 13.63px;
  object-fit: cover;
}

.blog-card h3 {
  margin: 25.57px 0 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0;
}

.site-footer {
  position: relative;
  left: 50%;
  width: 100vw;
  margin: 166px 0 0 -50vw;
  padding: 98px var(--gutter) 62px;
  background: var(--black);
  color: #fff;
}

.site-footer__top {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(32px, 5vw, 72px);
}

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

.site-footer__about {
  width: 459px;
}

.site-footer__about p {
  margin: 50px 0 44px;
  color: #c7c7c7;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}

.footer-messengers {
  gap: 30px;
  flex-wrap: wrap;
}

.footer-messengers a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.footer-messengers img {
  width: 25px;
  height: 25px;
}

.footer-links {
  gap: clamp(32px, 5vw, 80px);
}

.footer-links h4 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  color: #c7c7c7;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
}

.site-footer__bottom {
  width: 100%;
  max-width: var(--container);
  margin: 56px auto 0;
  padding-top: 38px;
  border-top: 1px solid #2a2a2a;
  justify-content: space-between;
  color: #c7c7c7;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
}

@media (max-width: 1279px) {
  .page-canvas {
    max-width: 100%;
    padding-inline: 32px;
  }

  .site-header {
    gap: 24px;
  }

  .main-nav {
    justify-content: flex-start;
    gap: 16px;
    font-size: 15px;
  }

  .header-login {
    width: 164px;
  }

  .feature,
  .feature.feature--reverse,
  .feature.feature--dark {
    flex-direction: column;
  }

  .feature__media--crop,
  .feature--reverse .feature__media--tall,
  .feature__media--dark {
    width: 100%;
    max-width: 590px;
  }

  .cards--benefits,
  .cards--small,
  .pricing-grid,
  .blog,
  .site-footer__top,
  .site-footer__bottom {
    flex-direction: column;
  }

  .benefit-card,
  .small-card,
  .blog-card {
    width: 100%;
  }

  .footer-links {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 1023px) {
  .page-canvas {
    padding-inline: 24px;
  }

  .site-header {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "brand login"
      "nav nav";
    align-items: center;
    gap: 18px 24px;
  }

  .brand {
    grid-area: brand;
  }

  .main-nav {
    grid-area: nav;
    justify-content: flex-start;
    gap: 14px 18px;
    padding-left: 2px;
  }

  .header-login {
    grid-area: login;
    justify-self: end;
  }

  .hero {
    gap: 40px;
    padding-top: 56px;
  }

  .hero__content {
    max-width: 560px;
  }

  .hero h1 {
    font-size: clamp(44px, 5vw, 58px);
    line-height: 1.02;
  }

  .hero__lead {
    font-size: 24px;
    line-height: 36px;
  }

  .feature,
  .feature.feature--reverse,
  .feature.feature--dark {
    padding: 32px 28px;
    gap: 28px;
  }

  .feature__text h2 {
    font-size: clamp(34px, 4.4vw, 44px);
    line-height: 1.08;
  }

  .feature__text p {
    font-size: 22px;
    line-height: 34px;
  }

  .cards--benefits,
  .cards--small,
  .pricing-grid,
  .blog {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .benefit-card,
  .small-card,
  .blog-card {
    width: calc((100% - 30px) / 2);
  }

  .pricing-grid {
    gap: 24px;
  }

  .price-card {
    flex: 1 1 calc((100% - 24px) / 2);
    min-width: calc((100% - 24px) / 2);
  }

  .price-card:last-child {
    flex-basis: 100%;
    min-width: 100%;
  }

  .pricing-card {
    min-height: 640px;
  }

  .site-footer {
    padding: 56px 24px 32px;
  }
}

@media (max-width: 767px) {
  :root {
    --gutter: 16px;
  }

  .page-canvas {
    padding-top: 16px;
    padding-inline: 16px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-items: stretch;
    gap: 16px;
    position: relative;
  }

  .brand {
    justify-content: flex-start;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    position: relative;
    z-index: 90;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: flex;
    width: min(320px, 84vw);
    height: 100dvh;
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
    padding: 88px 24px 24px;
    border-radius: 0;
    background: #ffffff;
    text-align: left;
    box-shadow: -16px 0 40px rgba(17, 24, 39, 0.12);
    transform: translateX(100%);
    visibility: hidden;
    opacity: 1;
    transition: transform 220ms ease, visibility 220ms ease;
  }

  .site-header.is-menu-open .main-nav {
    transform: translateX(0);
    visibility: visible;
  }

  .main-nav a {
    font-size: 18px;
    line-height: 24px;
  }

  .main-nav .main-nav__login {
    display: inline-flex;
    width: 100%;
    margin-top: 8px;
    padding-inline: 16px;
  }

  .header-login {
    display: none;
  }

  .modal-backdrop {
    padding: 16px;
  }

  .lead-modal {
    padding: 24px 18px 18px;
    border-radius: 20px;
  }

  .lead-modal__head h2 {
    font-size: 28px;
  }

  .lead-modal__head p {
    font-size: 15px;
    line-height: 22px;
  }

  .menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: block;
    background: rgba(17, 24, 39, 0.5);
    opacity: 0;
    visibility: hidden;
  }

  .site-header.is-menu-open + .menu-backdrop {
    opacity: 1;
    visibility: visible;
  }

  .hero {
    padding-top: 40px;
  }

  .scroll-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }

  .hero__content {
    margin-top: 32px;
  }

  .hero h1 {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.15;
    max-width: 340px;
    margin-inline: auto;
  }

  .hero__icon {
    width: 30px;
    height: 30px;
    margin: 0 2px;
  }

  .hero__lead {
    font-size: 18px;
    line-height: 28px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 18px;
  }

  .hero__actions .button {
    width: 100%;
    height: 52px;
  }

  .hero__note {
    font-size: 15px;
    line-height: 18px;
  }

  .hero__image {
    height: auto;
    margin-top: 36px;
  }

  .feature,
  .feature.feature--reverse,
  .feature.feature--dark {
    gap: 24px;
    padding: 24px 20px;
    border-radius: 24px;
  }

  .hero + .feature {
    margin-top: 72px;
  }

  .feature__text h2 {
    font-size: 25px;
    line-height: 36px;
    letter-spacing: 0;
  }

  .feature__text p {
    margin-top: 10px;
    font-size: 18px;
    line-height: 28px;
  }

  .feature__text .feature__button,
  .feature__button,
  .feature__button--demo {
    width: 100%;
    max-width: none;
    margin-top: 20px;
    align-self: stretch;
  }

  .feature__media--crop,
  .feature--reverse .feature__media--tall,
  .feature__media--dark {
    max-width: none;
    height: auto;
  }

  .feature__media--crop img,
  .feature__media--tall img,
  .feature__media--dark img {
    width: 100%;
    height: auto;
  }

  .cards--benefits,
  .cards--small,
  .pricing-grid,
  .blog,
  .site-footer__top,
  .site-footer__bottom {
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .cards {
    margin-top: 32px;
  }

  .benefit-card,
  .small-card,
  .blog-card,
  .price-card {
    width: 100%;
    min-width: 100%;
  }

  .benefit-card,
  .small-card {
    height: 300px;
    border-radius: 24px;
  }

  .benefit-card {
    padding-top: 20px;
  }

  .benefit-card h3,
  .small-card h3 {
    width: calc(100% - 24px);
    margin-inline: auto;
    font-size: 19px;
    line-height: 25px;
  }

  .benefit-card img {
    width: 78%;
    max-height: 210px;
  }

  .small-card {
    padding: 20px 16px 0;
  }

  .small-card--light img,
  .small-card--dark img,
  .small-card:first-child img {
    width: 74%;
    height: auto;
    left: 50%;
  }

  .launch {
    margin-top: 80px;
  }

  .launch__head {
    margin-bottom: 28px;
  }

  .launch__head h2 {
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0;
  }

  .launch__head p {
    font-size: 18px;
    line-height: 28px;
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .price-card {
    min-height: auto;
    width: 100%;
    padding: 24px 20px;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
  }

  .price-card__label--title {
    font-size: 22px;
    line-height: 28px;
  }

  .price-card__price {
    display: block;
    font-size: 42px;
    line-height: 44px;
  }

  .price-card__price span {
    display: inline;
    margin-top: 0;
    font-size: 18px;
    line-height: 24px;
  }

  .price-card__list {
    margin-top: 16px;
    font-size: 15px;
    line-height: 22px;
  }

  .installment-banner {
    width: 100%;
    padding: 10px 12px;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 12px;
  }

  .installment-banner__icons span {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  .price-card__button {
    margin-top: 16px;
  }

  .faq {
    margin-top: 80px;
  }

  .faq h2 {
    margin-bottom: 32px;
    font-size: 32px;
    line-height: 40px;
  }

  .faq__list summary {
    padding-right: 30px;
    font-size: 20px;
    line-height: 26px;
  }

  .faq__list summary::after {
    font-size: 22px;
    line-height: 26px;
  }

  .faq__list p {
    margin-top: 12px;
    font-size: 17px;
    line-height: 26px;
  }

  .faq__actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
  }

  .faq__actions .button {
    width: 100%;
  }

  .blog {
    margin-top: 80px;
    gap: 24px;
  }

  .blog-card img {
    height: auto;
    aspect-ratio: 373.58 / 259.04;
  }

  .blog-card h3 {
    margin-top: 16px;
    font-size: 18px;
    line-height: 26px;
  }

  .site-footer {
    margin-top: 96px;
    padding-top: 56px;
    padding-bottom: 40px;
  }

  .site-footer__about,
  .site-footer__top,
  .site-footer__bottom {
    max-width: none;
  }

  .site-footer__about {
    width: 100%;
  }

  .site-footer__about p {
    margin: 28px 0;
    font-size: 15px;
    line-height: 24px;
  }

  .footer-messengers {
    flex-direction: column;
    gap: 16px;
  }

  .footer-messengers a {
    font-size: 18px;
    line-height: 24px;
  }

  .footer-links {
    flex-direction: column;
    gap: 24px;
  }

  .site-footer__bottom {
    gap: 16px;
    padding-top: 24px;
    font-size: 15px;
    line-height: 22px;
  }

  .site-footer__bottom a,
  .site-footer__bottom span {
    width: 100%;
    text-align: left;
  }
}

.site-footer__bottom a {
  text-decoration: underline;
}

.legal-page {
  background: #ffffff;
}

.legal-page .page-canvas {
  padding-top: 24px;
}

.legal-page .site-header {
  margin-bottom: 48px;
}

.legal-hero {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 40px 48px;
  border-radius: 28px;
  background: var(--bg-soft);
}

.legal-hero__eyebrow {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}

.legal-hero h1 {
  margin: 14px 0 0;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
}

.legal-hero p {
  width: min(720px, 100%);
  margin: 20px 0 0;
  color: var(--text-muted);
  font-size: 20px;
  line-height: 30px;
}

.legal-content {
  width: min(980px, 100%);
  margin: 32px auto 0;
  padding: 48px;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  background: #ffffff;
}

.legal-content h2 {
  margin: 0 0 18px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
}

.legal-content h3 {
  margin: 32px 0 14px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
}

.legal-content p,
.legal-content li {
  color: #374151;
  font-size: 18px;
  line-height: 30px;
}

.legal-content p {
  margin: 0 0 16px;
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 20px;
  padding-left: 24px;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.legal-meta__item {
  padding: 10px 14px;
  border-radius: 10px;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 15px;
  line-height: 22px;
}

@media (max-width: 1023px) {
  .legal-hero,
  .legal-content {
    padding: 32px 28px;
  }

  .legal-hero p,
  .legal-content p,
  .legal-content li {
    font-size: 17px;
    line-height: 28px;
  }
}

@media (max-width: 767px) {
  .legal-page .page-canvas {
    padding-top: 16px;
  }

  .legal-page .site-header {
    margin-bottom: 32px;
  }

  .legal-nav {
    justify-content: stretch;
  }

  .legal-nav .button {
    width: 100%;
  }

  .legal-hero,
  .legal-content {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .legal-hero h1 {
    font-size: 32px;
    line-height: 1.12;
  }

  .legal-hero p,
  .legal-content p,
  .legal-content li {
    font-size: 16px;
    line-height: 26px;
  }

  .legal-content h2 {
    font-size: 26px;
  }

  .legal-content h3 {
    font-size: 20px;
  }

  .legal-meta {
    flex-direction: column;
    gap: 10px;
  }
}

.knowledge-page {
  background: #ffffff;
}

.contacts-page {
  background: #ffffff;
}

.contacts-page .page-canvas {
  padding-top: 24px;
}

.contacts-page .site-header {
  margin-bottom: 48px;
}

.contacts-feature {
  margin-top: 32px;
}

.contacts-feature__text {
  gap: 24px;
}

.contacts-feature__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.contacts-feature__media {
  width: min(486px, 42%);
  height: 320px;
}

.contacts-cards {
  display: flex;
  gap: 30px;
  width: 100%;
  margin: 30px auto 0;
  align-items: stretch;
}

.contacts-card {
  flex: 1 1 0;
  min-height: 280px;
  padding: 28px 26px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
}

.contacts-card--light {
  background: var(--bg-soft);
  color: var(--text);
}

.contacts-card--dark {
  background: #1b1d25;
  color: #ffffff;
}

.contacts-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #dfe8ff;
  color: var(--blue);
}

.contacts-card__icon--dark {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.contacts-card__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contacts-card__label {
  margin-top: 28px;
  color: inherit;
  opacity: 0.7;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}

.contacts-card__value {
  margin-top: 12px;
  font-size: 29px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.contacts-card a.contacts-card__value {
  transition: color 180ms ease;
}

.contacts-card a.contacts-card__value:hover,
.contacts-card a.contacts-card__value:focus-visible {
  color: var(--blue);
}

.contacts-card p {
  margin: auto 0 0;
  padding-top: 18px;
  color: inherit;
  opacity: 0.78;
  font-size: 17px;
  line-height: 28px;
}

.contacts-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contacts-socials__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 12px;
  background: #ffffff;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.contacts-socials__link--dark {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.contacts-socials__link--dark:hover,
.contacts-socials__link--dark:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.contacts-socials__link img {
  width: 22px;
  height: 22px;
}

.contacts-feedback {
  margin-top: 30px;
  align-items: stretch;
}

.contacts-feedback__intro {
  gap: 28px;
}

.contacts-feedback__form-wrap {
  width: min(500px, 100%);
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.contact-inline-form {
  margin-top: 0;
}

.contact-inline-form .lead-form__field:last-of-type {
  margin-bottom: 0;
}

.contacts-feedback .lead-form__field span {
  color: #ffffff;
}

.contacts-feedback .lead-form__field input,
.contacts-feedback .lead-form__field textarea {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.96);
}

.contact-inline-form textarea,
.lead-form__field textarea {
  width: 100%;
  min-height: 132px;
  padding: 16px 18px;
  border: 1px solid #d8dce5;
  border-radius: 12px;
  background: #fff;
  color: #111827;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  resize: vertical;
}

.contact-inline-form textarea:focus-visible,
.lead-form__field textarea:focus-visible {
  outline: 2px solid rgba(59, 111, 255, 0.24);
  outline-offset: 0;
  border-color: #adc1ff;
}

.contact-inline-form__submit {
  width: 100%;
  margin-top: 20px;
}

.contact-inline-form__policy {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 22px;
}

@media (max-width: 1023px) {
  .contacts-feature,
  .contacts-feedback,
  .contacts-cards {
    flex-direction: column;
  }

  .contacts-feature__media,
  .contacts-feedback__form-wrap {
    width: 100%;
    max-width: none;
  }

  .contacts-card {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .contacts-page .page-canvas {
    padding-top: 16px;
  }

  .contacts-page .site-header {
    margin-bottom: 32px;
  }

  .contacts-feature {
    margin-top: 24px;
  }

  .contacts-feature__actions {
    flex-direction: column;
    gap: 12px;
  }

  .contacts-feature__actions .button {
    width: 100%;
  }

  .contacts-feature__media {
    height: 240px;
  }

  .contacts-cards,
  .contacts-feedback {
    margin-top: 24px;
    gap: 16px;
  }

  .contacts-card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .contacts-card__label {
    margin-top: 20px;
  }

  .contacts-card__value {
    font-size: 24px;
  }

  .contacts-card p {
    font-size: 16px;
    line-height: 26px;
  }

  .contacts-feedback__form-wrap {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .contacts-socials {
    flex-direction: column;
  }

  .contacts-socials__link {
    width: 100%;
    justify-content: center;
  }
}

.knowledge-page .page-canvas {
  padding-top: 24px;
}

.knowledge-page .site-header {
  margin-bottom: 32px;
}

.knowledge-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 220px;
  gap: 24px;
  align-items: start;
  margin-top: 8px;
}

.knowledge-sidebar,
.knowledge-toc,
.knowledge-content {
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  background: #ffffff;
}

.knowledge-sidebar,
.knowledge-toc {
  position: sticky;
  top: 24px;
  padding: 24px 20px;
}

.knowledge-sidebar__title,
.knowledge-toc__title {
  margin: 0 0 16px;
  color: #4b5563;
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
}

.knowledge-sidebar__section + .knowledge-sidebar__section {
  margin-top: 24px;
}

.knowledge-sidebar__section h3 {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 700;
  line-height: 22px;
}

.knowledge-sidebar__links,
.knowledge-toc ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.knowledge-sidebar__links a,
.knowledge-toc a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: #4b5563;
  font-size: 15px;
  line-height: 22px;
  transition: background-color 180ms ease, color 180ms ease;
}

.knowledge-sidebar__links a:hover,
.knowledge-sidebar__links a.is-active,
.knowledge-toc a:hover {
  background: #f3f4f6;
  color: #111827;
}

.knowledge-content {
  padding: 40px 48px;
}

.knowledge-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: #6b7280;
  font-size: 14px;
  line-height: 20px;
}

.knowledge-content h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.06;
}

.knowledge-lead {
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 20px;
  line-height: 30px;
}

.knowledge-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 32px;
}

.knowledge-meta__item {
  padding: 10px 14px;
  border-radius: 10px;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 14px;
  line-height: 20px;
}

.knowledge-card {
  padding: 28px;
  border-radius: 24px;
  background: var(--bg-soft);
}

.knowledge-card + .knowledge-card,
.knowledge-block + .knowledge-block {
  margin-top: 24px;
}

.knowledge-card h2,
.knowledge-block h2 {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
}

.knowledge-block h3 {
  margin: 28px 0 12px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
}

.knowledge-card p,
.knowledge-block p,
.knowledge-block li {
  color: #374151;
  font-size: 18px;
  line-height: 30px;
}

.knowledge-block p {
  margin: 0 0 16px;
}

.knowledge-block ul {
  margin: 0 0 20px;
  padding-left: 22px;
}

.knowledge-note {
  padding: 18px 20px;
  border-left: 4px solid #111827;
  border-radius: 12px;
  background: #f9fafb;
}

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

.knowledge-grid__item {
  padding: 20px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #ffffff;
}

.knowledge-grid__item h4 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 24px;
}

.knowledge-grid__item p {
  margin: 0;
  color: #6b7280;
  font-size: 15px;
  line-height: 24px;
}

@media (max-width: 1279px) {
  .knowledge-layout {
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .knowledge-toc {
    display: none;
  }
}

@media (max-width: 1023px) {
  .knowledge-layout {
    grid-template-columns: 1fr;
  }

  .knowledge-sidebar,
  .knowledge-toc {
    position: static;
  }

  .knowledge-content {
    padding: 32px 28px;
  }
}

@media (max-width: 767px) {
  .knowledge-page .page-canvas {
    padding-top: 16px;
  }

  .knowledge-page .site-header {
    margin-bottom: 24px;
  }

  .knowledge-content,
  .knowledge-sidebar {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .knowledge-content h1 {
    font-size: 32px;
    line-height: 1.12;
  }

  .knowledge-lead,
  .knowledge-card p,
  .knowledge-block p,
  .knowledge-block li {
    font-size: 16px;
    line-height: 26px;
  }

  .knowledge-card,
  .knowledge-grid__item {
    padding: 20px;
    border-radius: 18px;
  }

  .knowledge-grid {
    grid-template-columns: 1fr;
  }
}
