:root {
  --page-bg: #ffffff;
  --panel-bg: #f4f4f4;
  --text: #0f0f0f;
  --muted: #8d8d8d;
  --soft: #6f6f6f;
  --accent: #ff6a2a;
  --line: #dddddd;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: #ffffff;
  overflow-x: clip;
}

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

.page {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  background: var(--page-bg);
  min-height: 100vh;
  padding: 48px 168px 0;
  overflow-x: visible;
}

.header {
  height: 56px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid #e7e7e7;
  box-sizing: border-box;
  flex-shrink: 0;
  transition: height 0.2s ease, min-height 0.2s ease, box-shadow 0.2s ease;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: 168px;
  padding-right: 168px;
}

.header.header-scrolled {
  height: 72px;
  min-height: 72px;
  box-shadow: 0 6px 20px rgba(15, 15, 15, 0.06);
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  width: 124px;
  height: auto;
  display: block;
}

.nav {
  margin-left: 86px;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

.nav a {
  font-size: 14px;
  line-height: 1;
  color: #808080;
  transition: color 0.18s ease;
}

.nav a:hover {
  color: #3f3f3f;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  border-radius: 3px;
  border: 1px solid transparent;
  transition: opacity 0.18s ease, transform 0.18s ease, background-color 0.18s ease;
}

.btn:hover {
  opacity: 0.9;
}

.btn:active {
  transform: translateY(1px);
}

.btn-dark {
  background: #0a0a0a;
  color: #fff;
}

.btn-light {
  background: #ececec;
  color: #111;
}

.header .header-actions .btn-light {
  background: var(--accent);
  color: #ffffff;
}

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

.hero {
  margin-top: 80px;
}

.hero-top {
  display: grid;
  grid-template-columns: 882px 600px;
  column-gap: 94px;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 34px;
  color: var(--accent);
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
}

.hero-label-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  display: block;
}

.hero-title {
  margin: 0;
  font-size: 56px;
  line-height: 1.03;
  letter-spacing: -0.02em;
  font-weight: 700;
  max-width: 882px;
}

.hero-title span {
  color: var(--muted);
  font-weight: 600;
}

.hero-right {
  padding-top: 66px;
  width: 600px;
  justify-self: end;
  margin-left: -34px;
}

.hero-right p {
  margin: 0 0 16px;
  color: var(--soft);
  font-size: 16px;
  line-height: 1.35;
  max-width: 600px;
}

.hero-right p strong {
  color: #1f1f1f;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 26px;
}

.hero-actions .btn {
  height: 56px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 700;
}

.hero-showcase {
  margin-top: 54px;
  position: relative;
  height: 560px;
  border-radius: 8px;
  overflow: hidden;
  border: none;
  background: #ffffff;
  z-index: 1;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2320px;
  height: 1320px;
  transform: translateX(-50%);
  background: #f4cdb3;
  border-radius: 50%;
  filter: blur(36px);
  opacity: 0.95;
  z-index: -1;
}

.hero-showcase-image {
  width: calc(100% - 180px);
  margin: 0 auto;
  height: auto;
  display: block;
  transform-origin: top center;
  will-change: transform;
}

.hero-showcase-note {
  margin: 10px 0 0;
  color: #9a9a9a;
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
  display: none;
}

@media (max-width: 1919px) and (min-width: 1441px) {
  .page {
    padding-left: 96px;
    padding-right: 96px;
  }

  .header {
    padding-left: 96px;
    padding-right: 96px;
  }

  .hero-top {
    grid-template-columns: minmax(0, 1fr) clamp(420px, 32vw, 560px);
    column-gap: 52px;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(46px, 3.1vw, 56px);
  }

  .hero-right {
    width: 100%;
    max-width: 560px;
    margin-left: 0;
    padding-top: 58px;
  }

  .hero-right p {
    max-width: 100%;
  }

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

  .pain-card {
    width: 100%;
    min-width: 0;
  }

  .reviews-card {
    width: 100%;
    max-width: 100%;
    height: 598px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .reviews-content {
    width: min(840px, calc(100% - 220px));
    max-width: 100%;
  }

  .reviews-content p {
    font-size: clamp(24px, 1.55vw, 28px);
  }

  .reviews-quote-mark {
    right: 36px;
  }

  .reviews-footer {
    left: 30px;
    right: 30px;
  }

  .workflow {
    grid-template-columns: minmax(0, 1fr) minmax(620px, 48%);
    column-gap: 42px;
  }

  .workflow-left {
    min-width: 0;
  }

  .workflow-title {
    white-space: normal;
    max-width: 85%;
    overflow-wrap: break-word;
    word-break: break-word;
    font-size: clamp(30px, 2.1vw, 38px);
    line-height: 1.25;
    padding-right: 20px;
  }

  .workflow-break {
    display: inline;
  }

  .workflow-list {
    width: 100%;
    max-width: 100%;
    margin-top: 96px;
    gap: 24px;
  }

  .workflow-list li {
    font-size: clamp(17px, 1.2vw, 20px);
    gap: 14px;
    max-width: 100%;
  }

  .workflow-list li span:last-child {
    display: block;
    max-width: 100%;
  }

  .workflow-list li.is-active::after {
    right: -18px;
    width: 34px;
  }

  .workflow-right {
    min-width: 0;
    justify-content: flex-end;
  }

  .workflow-photo {
    width: 100%;
    max-width: 860px;
    height: auto;
    max-height: 650px;
    object-fit: contain;
  }

  .final-cta-frame {
    width: 100%;
    max-width: 100%;
    padding: 30px 28px 0;
  }

  .final-cta-frame::before {
    left: 82px;
    right: 28px;
    height: 30px;
  }

  .final-cta-card {
    min-height: 680px;
    padding: 38px 44px 28px;
    grid-template-columns: minmax(0, 560px) 1fr;
    column-gap: 24px;
  }

  .final-cta-right {
    min-width: 0;
  }

  .final-cta-symbol {
    width: min(430px, 100%);
    right: clamp(12px, 2vw, 36px);
    top: 172px;
  }
}

.team {
  margin-top: 42px;
  padding-top: 12px;
  text-align: center;
}

.team-label {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
}

.team-label-dot {
  width: 12px;
  height: 12px;
  background: var(--accent);
  display: block;
}

.team-title {
  margin: 34px 0 0;
  font-size: 40px;
  line-height: 1.06;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.team-logos {
  margin-top: 54px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 30px;
}

.team-logos img {
  display: block;
  height: 56px;
  width: auto;
  opacity: 0.58;
  filter: grayscale(1);
}

.pains {
  margin-top: 110px;
}

.pains-top {
  display: grid;
  grid-template-columns: 1fr 560px;
  column-gap: 86px;
  align-items: end;
}

.pains-label {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
}

.pains-label-dot {
  width: 12px;
  height: 12px;
  background: var(--accent);
  display: block;
}

.pains-title {
  margin: 18px 0 0;
  font-size: 40px;
  line-height: 1.04;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.pains-text {
  margin: 0 0 4px -62px;
  color: #6f6f6f;
  font-size: 16px;
  line-height: 1.38;
}

.pains-text strong {
  color: #161616;
}

.pains-accent {
  color: var(--accent);
}

.pains-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  border: none;
  background: transparent;
}

.pain-card {
  width: 100%;
  max-width: 385px;
  height: 500px;
  padding: 30px 28px 0;
  border: 2px solid #e7e7e7;
  display: flex;
  flex-direction: column;
  background: #f8f8f8;
}

.pain-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.pain-card-head h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.pain-card-head span {
  color: #777;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
}

.pain-card p {
  margin: 12px 0 0;
  color: #727272;
  font-size: 16px;
  line-height: 1.35;
  max-width: 320px;
}

.pain-preview {
  margin-top: auto;
  width: calc(100% + 28px);
  margin-left: auto;
  margin-right: -28px;
  height: 266px;
  border-radius: 2px 2px 0 0;
  border: none;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.pain-preview-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: right top;
  cursor: zoom-in;
}

.doc-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.86);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 40px;
}

.doc-lightbox.is-open {
  display: flex;
}

.doc-lightbox-image {
  max-width: min(92vw, 1300px);
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  background: #fff;
}

.doc-lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.reviews {
  margin-top: 86px;
  padding-bottom: 24px;
}

.reviews-card {
  position: relative;
  width: 1582px;
  height: 598px;
  margin: 0 auto;
  background: #f5f5f5;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 48px 36px 30px;
}

.reviews-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #4d6470;
  color: #fff;
  font-size: 21px;
  line-height: 40px;
  text-align: center;
  border: 3px solid #f5f5f5;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.reviews-label {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
}

.reviews-label-dot {
  width: 12px;
  height: 12px;
  background: var(--accent);
  display: block;
}

.reviews-quote-mark {
  position: absolute;
  top: 24px;
  right: 52px;
  color: #bebebe;
  font-size: 112px;
  line-height: 0.72;
  font-weight: 700;
}

.reviews-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -56%);
  width: 840px;
  max-width: 840px;
}

.reviews-content p {
  margin: 0;
  color: #161616;
  font-size: 28px;
  line-height: 1.34;
}

.reviews-content p + p {
  margin-top: 30px;
}

.reviews-footer {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 30px;
  height: 52px;
}

.reviews-arrows {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.reviews-arrow {
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 4px;
  background: #ececec;
  color: #111;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.reviews-arrow img {
  width: 24px;
  height: 24px;
  display: block;
  margin: 0 auto;
}

.reviews-progress-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 20px;
  pointer-events: none;
}

.reviews-progress {
  width: 278px;
  height: 4px;
  background: #d8d8d8;
  position: relative;
  overflow: hidden;
}

.reviews-progress-value {
  position: absolute;
  inset: 0 auto 0 0;
  width: 66%;
  background: var(--accent);
}

.reviews-progress-text {
  color: #737373;
  font-size: 16px;
  line-height: 1;
}

.reviews-author {
  margin: 0;
  color: #7b7b7b;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
  position: absolute;
  right: 34px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.workflow {
  margin-top: 86px;
  display: grid;
  grid-template-columns: 520px 1fr;
  column-gap: 54px;
  align-items: start;
}

.workflow-label {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
}

.workflow-label-dot {
  width: 12px;
  height: 12px;
  background: var(--accent);
  display: block;
}

.workflow-title {
  margin: 24px 0 0;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0;
  display: inline-block;
  white-space: nowrap;
}

.workflow-break {
  display: block;
}

.workflow-underline {
  margin-top: 8px;
  width: 318px;
  height: 24px;
  position: relative;
}

.workflow-underline::before,
.workflow-underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-top: 2px solid var(--accent);
  border-radius: 90% 75% 0 0;
}

.workflow-underline::before {
  top: 0;
  transform: rotate(-0.8deg);
}

.workflow-underline::after {
  top: 10px;
  left: 14px;
  right: 8px;
  opacity: 0.95;
  transform: rotate(-1.2deg);
}

.workflow-list {
  margin: 128px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 30px;
  width: 540px;
}

.workflow-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding-left: 0;
  color: #707070;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 400;
  cursor: pointer;
  user-select: none;
  transition: color 0.18s ease;
}

.workflow-bullet {
  color: #818181;
  font-size: 28px;
  line-height: 1;
  display: block;
  width: 22px;
  min-width: 22px;
  text-align: center;
  transform: translateY(3px);
}

.workflow-list li.is-active {
  color: #101010;
  font-weight: 500;
}

.workflow-list li:hover {
  color: #2b2b2b;
}

.workflow-list li.is-active .workflow-bullet {
  color: var(--accent);
}

.workflow-list li.is-active::after {
  content: "";
  position: absolute;
  right: -34px;
  top: 50%;
  width: 52px;
  height: 3px;
  transform: translateY(-50%);
  background: var(--accent);
}

.workflow-right {
  min-width: 0;
  display: flex;
  justify-content: flex-end;
}

.workflow-photo {
  width: 940px;
  height: 650px;
  display: block;
  border-radius: 10px;
  border: none;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}

.final-cta {
  margin-top: 84px;
}

.final-cta-frame {
  width: 1582px;
  margin: 0 auto;
  background: #fb7b45;
  border-radius: 8px 8px 0 0;
  padding: 34px 34px 0;
  position: relative;
  overflow: hidden;
}

.final-cta-frame::before {
  content: "";
  position: absolute;
  left: 94px;
  right: 34px;
  top: 0;
  height: 34px;
  background:
    repeating-linear-gradient(
      to right,
      rgba(255, 255, 255, 0.28) 0 1px,
      rgba(255, 255, 255, 0) 1px 60px
    );
  pointer-events: none;
}

.final-cta-card {
  min-height: 736px;
  border-radius: 10px 10px 0 0;
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
  padding: 44px 72px 34px;
  display: grid;
  grid-template-columns: 620px 1fr;
}

.final-cta-label {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
}

.final-cta-label-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  display: block;
}

.final-cta-title {
  margin: 16px 0 0;
  font-size: 44px;
  line-height: 1.1;
  font-weight: 600;
}

.final-cta-title span {
  color: var(--accent);
}

.final-cta-subtext {
  margin: 16px 0 0;
  max-width: 470px;
  color: #707070;
  font-size: 13px;
  line-height: 1.36;
}

.final-cta-contacts {
  margin-top: 24px;
  display: flex;
  gap: 8px;
}

.final-cta-contact {
  flex: 1;
  min-height: 50px;
  border: 1px solid #dedede;
  border-radius: 4px;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 2px 4px;
}

.final-cta-contact img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.final-cta-contact span {
  display: grid;
  gap: 2px;
  color: #787878;
  font-size: 11px;
}

.final-cta-contact strong {
  color: #171717;
  font-size: 13px;
  font-weight: 600;
}

.final-cta-form {
  margin-top: 18px;
}

.final-cta-form p {
  margin: 0 0 8px;
  color: #6d6d6d;
  font-size: 13px;
  line-height: 1.2;
}

.final-cta-form input {
  width: 100%;
  height: 36px;
  border: 1px solid #dedede;
  border-radius: 4px;
  background: #ececec;
  padding: 0 14px;
  margin-bottom: 8px;
  font-size: 13px;
  color: #1a1a1a;
}

.final-cta-team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 22px;
}

.final-cta-team button {
  height: 36px;
  border: none;
  background: #efefef;
  color: #1f1f1f;
  font-size: 13px;
  cursor: pointer;
}

.final-cta-team button.is-active {
  background: #070707;
  color: #fff;
}

.final-cta-submit {
  width: 100%;
  height: 42px;
  border: none;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  cursor: pointer;
}

.final-cta-right {
  position: relative;
}

.final-cta-symbol {
  position: absolute;
  right: 92px;
  top: 168px;
  width: 430px;
  height: auto;
  opacity: 0.22;
  filter: none;
}

.footer {
  width: 100%;
  max-width: none;
  margin: 0 auto 0;
  background: #f5f5f5;
  border: 1px solid #dcdcdc;
  border-radius: 8px 8px 0 0;
  height: 432px;
  padding: 34px 0 0;
  overflow: hidden;
  position: relative;
}

.footer-top {
  width: 1582px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo img {
  height: 24px;
  width: auto;
  display: block;
}

.footer-nav {
  display: flex;
  gap: 34px;
}

.footer-nav a {
  color: #777;
  font-size: 20px;
}

.footer-middle {
  width: 1582px;
  margin: 22px auto 0;
  padding-top: 22px;
  border-top: 1px solid #dddddd;
  display: flex;
  justify-content: space-between;
  color: #8a8a8a;
  font-size: 12px;
}

.footer-middle p:first-child {
  font-size: 14px;
}

.footer-middle p:last-child {
  font-size: 14px;
}

.footer-brand {
  width: 1582px;
  margin: 0 auto;
  height: 138px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.footer-brand img {
  display: block;
  width: 1579px;
  max-width: none;
  opacity: 1;
  transform: none;
  position: absolute;
  left: 0;
  bottom: 0;
}

@media (max-width: 1440px) and (min-width: 1025px) {
  .page {
    padding: 36px 52px 0;
  }

  .header {
    padding-left: 52px;
    padding-right: 52px;
  }

  .nav {
    margin-left: 44px;
    gap: 44px;
  }

  .hero {
    margin-top: 56px;
  }

  .hero-top {
    grid-template-columns: minmax(0, 1fr) 470px;
    column-gap: 48px;
  }

  .hero-title {
    font-size: 50px;
    max-width: 700px;
  }

  .hero-right {
    width: 470px;
    margin-left: 0;
    padding-top: 58px;
  }

  .hero-right p {
    max-width: 470px;
  }

  .hero-showcase {
    height: 450px;
  }

  .hero-showcase-image {
    width: calc(100% - 120px);
  }

  .hero-showcase::before {
    width: 1700px;
    height: 980px;
  }

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

  .pain-card {
    width: 100%;
  }

  .reviews-card,
  .final-cta-frame,
  .footer-top,
  .footer-middle,
  .footer-brand {
    width: 100%;
  }

  .reviews-card {
    height: 530px;
  }

  .reviews-content {
    width: 760px;
    max-width: 760px;
  }

  .reviews-content p {
    font-size: 24px;
  }

  .workflow {
    grid-template-columns: minmax(0, 1fr) minmax(520px, 52%);
    column-gap: 28px;
  }

  .workflow-left {
    min-width: 0;
  }

  .workflow-title {
    font-size: clamp(34px, 2.8vw, 38px);
    white-space: normal;
    max-width: 100%;
    overflow-wrap: break-word;
    line-height: 1.15;
  }

  .workflow-list {
    width: 100%;
    max-width: 100%;
    margin-top: 74px;
    gap: 18px;
  }

  .workflow-list li {
    font-size: 17px;
  }

  .workflow-list li.is-active::after {
    right: -14px;
    width: 28px;
  }

  .workflow-right {
    min-width: 0;
  }

  .workflow-photo {
    width: 100%;
    max-width: 760px;
    height: auto;
    max-height: 610px;
    object-fit: contain;
  }

  .final-cta-card {
    grid-template-columns: 560px 1fr;
    padding: 40px 52px 30px;
    min-height: 680px;
  }

  .final-cta-title {
    font-size: 40px;
  }

  .final-cta-symbol {
    width: 360px;
    right: 34px;
    top: 170px;
  }

  .footer {
    width: 100%;
    margin: 0;
    height: auto;
    min-height: 340px;
    padding-top: 28px;
    position: relative;
    overflow: hidden;
  }

  .footer-nav a {
    font-size: 17px;
  }

  .footer-nav {
    gap: 22px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .footer-top,
  .footer-middle,
  .footer-brand {
    width: calc(100% - 64px);
    margin-left: auto;
    margin-right: auto;
  }

  .footer-brand img {
    width: 100%;
    max-width: 100%;
  }

  .footer-brand {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 0;
    transform: none;
    margin: 0;
    height: 96px;
    width: auto;
  }

  .footer-brand img {
    position: absolute;
    left: 0;
    bottom: 0;
  }
}

@media (max-width: 1024px) and (min-width: 421px) {
  .page {
    max-width: 1024px;
    padding: 24px 24px 0;
  }

  .header {
    height: 50px;
    min-height: 50px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-left: 24px;
    padding-right: 24px;
  }

  .header.header-scrolled {
    height: 58px;
    min-height: 58px;
  }

  .logo img {
    width: 108px;
  }

  .nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-actions .btn-dark {
    display: none;
  }

  .header-actions .btn-light {
    height: 34px;
    padding: 0 12px;
    font-size: 12px;
    border-radius: 4px;
  }

  .hero {
    margin-top: 68px;
  }

  .hero-top {
    grid-template-columns: 1fr;
    row-gap: 22px;
  }

  .hero-title {
    font-size: 46px;
    max-width: 760px;
  }

  .hero-right {
    width: 100%;
    margin-left: 0;
    padding-top: 0;
    justify-self: start;
  }

  .hero-right p {
    max-width: 100%;
    font-size: 14px;
  }

  .hero-actions .btn {
    height: 46px;
    font-size: 14px;
    padding: 0 14px;
  }

  .hero-showcase {
    height: auto;
    margin-top: 34px;
  }

  .hero-showcase-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    transform: none !important;
  }

  .hero-showcase::before {
    content: none;
  }

  .team {
    margin-top: 56px;
  }

  .team-title {
    font-size: 40px;
  }

  .team-logos {
    margin-top: 30px;
    gap: 16px;
    flex-wrap: nowrap;
    overflow: hidden;
  }

  .hero-showcase-note {
    display: block;
    font-size: 11px;
    margin-top: 8px;
  }

  .team-logos img {
    height: 38px;
  }

  .pains {
    margin-top: 70px;
  }

  .pains-top {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }

  .pains-title {
    font-size: 44px;
  }

  .pains-text {
    margin: 0;
    font-size: 13px;
  }

  .pains-grid {
    margin-top: 36px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .pain-card {
    width: 100%;
    height: 330px;
    padding: 16px 14px 0;
  }

  .pain-card-head h3 {
    font-size: 28px;
  }

  .pain-card-head span,
  .pain-card p {
    font-size: 14px;
  }

  .pain-preview {
    width: 100%;
    margin-right: 0;
  height: 164px;
  }

  .reviews {
    margin-top: 70px;
  }

  .reviews-card {
    width: 100%;
    height: 420px;
    padding: 22px 18px;
  }

  .reviews-content {
    width: 92%;
    max-width: none;
    transform: translate(-50%, -56%);
  }

  .reviews-content p {
    font-size: 18px;
    line-height: 1.42;
  }

  .reviews-content p + p {
    margin-top: 20px;
  }

  .reviews-quote-mark {
    font-size: 82px;
    top: 20px;
    right: 24px;
  }

  .reviews-footer {
    left: 18px;
    right: 18px;
    bottom: 16px;
    height: 42px;
  }

  .reviews-arrow {
    width: 34px;
    height: 34px;
  }

  .reviews-arrow img {
    width: 16px;
    height: 16px;
  }

  .reviews-progress {
    width: 170px;
    height: 3px;
  }

  .reviews-progress-text,
  .reviews-author {
    font-size: 12px;
  }

  .workflow {
    margin-top: 72px;
    grid-template-columns: 1fr;
    row-gap: 20px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: visible;
  }

  .workflow-left {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    text-align: left;
    justify-self: start;
  }

  .workflow-title {
    white-space: normal;
    font-size: clamp(32px, 5.4vw, 56px);
    line-height: 1.1;
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
    display: block;
    margin: 14px 0 0;
  }

  .workflow-underline {
    width: min(420px, 100%);
    max-width: 100%;
    margin-left: 0;
    margin-top: 14px;
  }

  .workflow-break-1 {
    display: block;
  }

  .workflow-break-2 {
    display: block;
  }

  .workflow-list {
    margin-top: 64px;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 28px;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
    padding-bottom: 2px;
  }

  .workflow-list::-webkit-scrollbar {
    display: none;
  }

  .workflow-list li {
    font-size: 20px;
    line-height: 1.2;
    gap: 12px;
    flex: 0 0 auto;
    white-space: nowrap;
    max-width: 100%;
  }

  .workflow-bullet {
    font-size: 32px;
    width: 18px;
    min-width: 18px;
    transform: translateY(2px);
  }

  .workflow-list li.is-active::after {
    content: none;
  }

  .workflow-right {
    justify-content: center;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .workflow-photo {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: center center;
    display: block;
    margin: 0 auto;
  }

  .final-cta {
    margin-top: 70px;
  }

  .final-cta-frame {
    width: 100%;
    padding: 16px 16px 0;
  }

  .final-cta-frame::before {
    left: 76px;
    right: 16px;
    height: 16px;
  }

  .final-cta-card {
    min-height: auto;
    padding: 26px 22px 24px;
    grid-template-columns: 1fr;
  }

  .final-cta-title {
    font-size: 42px;
  }

  .final-cta-subtext {
    max-width: 100%;
  }

  .final-cta-right {
    display: none;
  }

  .final-cta-contact {
    min-height: 44px;
  }

  .final-cta-contact img {
    width: 22px;
    height: 22px;
  }

  .final-cta-form input,
  .final-cta-team button,
  .final-cta-submit {
    height: 38px;
  }

  .final-cta-submit {
    font-size: 16px;
  }

  .footer {
    width: 100%;
    margin-left: 0;
    height: 250px;
    padding-top: 16px;
    border-radius: 0;
  }

  .footer-top,
  .footer-middle,
  .footer-brand {
    width: calc(100% - 32px);
  }

  .footer-logo img {
    height: 18px;
  }

  .footer-nav {
    gap: 14px;
  }

  .footer-nav a {
    font-size: 12px;
  }

  .footer-middle {
    margin-top: 14px;
    padding-top: 14px;
  }

  .footer-middle p:first-child,
  .footer-middle p:last-child {
    font-size: 11px;
  }

  .footer-brand {
    height: 92px;
  }

  .footer-brand img {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .page {
    max-width: 420px;
    padding: 18px 16px 0;
  }

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

  .header {
    height: 46px;
    min-height: 46px;
    border-bottom: none;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-left: 16px;
    padding-right: 16px;
  }

  .header.header-scrolled {
    height: 52px;
    min-height: 52px;
  }

  .logo img {
    width: 102px;
  }

  .nav,
  .header-actions .btn-dark {
    display: none;
  }

  .header-actions .btn-light {
    height: 30px;
    font-size: 11px;
    padding: 0 10px;
  }

  .hero {
    margin-top: 22px;
  }

  .hero-top {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }

  .hero-label {
    font-size: 12px;
    gap: 8px;
    margin-bottom: 16px;
  }

  .hero-label-dot {
    width: 8px;
    height: 8px;
  }

  .hero-title {
    font-size: 43px;
    line-height: 1.07;
    max-width: 100%;
  }

  .hero-right {
    width: 100%;
    padding-top: 0;
    margin-left: 0;
  }

  .hero-right p {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 10px;
    max-width: 100%;
  }

  .hero-actions {
    margin-top: 14px;
    gap: 10px;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    height: 40px;
    font-size: 13px;
    padding: 0 10px;
  }

  .hero-showcase {
    height: auto;
    min-height: 0;
    margin-top: 18px;
    border-radius: 6px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-showcase-image {
    width: 100%;
    transform: none !important;
  }

  .hero-showcase::before {
    content: none;
  }

  .hero-showcase-note {
    display: block;
    font-size: 10px;
    margin-top: 8px;
  }

  .team {
    margin-top: 30px;
    padding-top: 0;
  }

  .team-label {
    font-size: 12px;
    gap: 8px;
  }

  .team-label-dot {
    width: 8px;
    height: 8px;
  }

  .team-title {
    margin-top: 14px;
    font-size: 17px;
    line-height: 1.25;
  }

  .team-logos {
    margin-top: 18px;
    gap: 10px;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .team-logos::-webkit-scrollbar {
    display: none;
  }

  .team-logos img {
    height: 34px;
    flex-shrink: 0;
  }

  .pains {
    margin-top: 34px;
  }

  .pains-top {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }

  .pains-label {
    font-size: 12px;
    gap: 8px;
  }

  .pains-label-dot {
    width: 8px;
    height: 8px;
  }

  .pains-title {
    margin-top: 10px;
    font-size: 20px;
    line-height: 1.2;
  }

  .pains-text {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
  }

  .pains-grid {
    margin-top: 16px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pain-card {
    width: 100%;
    height: auto;
    min-height: 214px;
    padding: 12px 10px 0;
  }

  .pain-card-head h3 {
    font-size: 18px;
  }

  .pain-card-head span,
  .pain-card p {
    font-size: 12px;
  }

  .pain-card p {
    margin-top: 8px;
    max-width: 100%;
  }

  .pain-preview {
    width: 100%;
    margin-right: 0;
    height: 112px;
  }

  .reviews {
    margin-top: 32px;
  }

  .reviews-card {
    width: 100%;
    height: 366px;
    padding: 14px 10px 10px;
    border-radius: 8px;
  }

  .reviews-label {
    font-size: 11px;
    gap: 8px;
  }

  .reviews-label-dot {
    width: 8px;
    height: 8px;
  }

  .reviews-quote-mark {
    font-size: 58px;
    top: 10px;
    right: 12px;
  }

  .reviews-content {
    width: 90%;
    transform: translate(-50%, -60%);
  }

  .reviews-content p {
    font-size: 12px;
    line-height: 1.32;
  }

  .reviews-content p + p {
    margin-top: 10px;
  }

  .reviews-footer {
    left: 10px;
    right: 10px;
    bottom: 10px;
    height: 126px;
  }

  .reviews-arrows {
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    transform: none;
    bottom: 2px;
    display: flex;
    justify-content: space-between;
    gap: 0;
  }

  .reviews-arrow {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }

  .reviews-arrow img {
    width: 22px;
    height: 22px;
  }

  .reviews-progress-wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 44px;
    transform: none;
    width: 100%;
    height: 78px;
    display: block;
    pointer-events: none;
  }

  .reviews-progress {
    width: 100%;
    height: 4px;
  }

  .reviews-progress-text {
    position: absolute;
    left: 50%;
    top: 52px;
    transform: translateX(-50%);
    font-size: 14px;
    line-height: 1;
    pointer-events: none;
  }

  .reviews-author {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    transform: none;
    text-align: left;
    font-size: 14px;
    line-height: 1.2;
    margin: 0;
    pointer-events: none;
  }

  .workflow {
    margin-top: 56px;
    grid-template-columns: 1fr;
    row-gap: 18px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: visible;
  }

  .workflow-left {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    text-align: left;
    justify-self: start;
  }

  .workflow-label {
    font-size: 12px;
    gap: 8px;
    display: inline-flex;
    margin: 0;
    text-align: left;
  }

  .workflow-label-dot {
    width: 8px;
    height: 8px;
  }

  .workflow-title {
    font-size: clamp(20px, 7vw, 24px);
    white-space: normal;
    line-height: 1.16;
    width: min(100%, calc(100vw - 32px));
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
    display: block;
    margin: 14px 0 0;
    text-align: left;
  }

  .workflow-underline {
    width: 275px;
    max-width: 100%;
    height: 20px;
    margin-top: 10px;
    margin-left: 0;
  }

  .workflow-break-1 {
    display: none;
  }

  .workflow-break-2 {
    display: block;
  }

  .workflow-list {
    margin-top: 34px;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
    padding: 0 0 2px;
  }

  .workflow-list::-webkit-scrollbar {
    display: none;
  }

  .workflow-list li {
    font-size: 16px;
    line-height: 1.2;
    gap: 10px;
    flex: 0 0 auto;
    white-space: nowrap;
    max-width: 100%;
  }

  .workflow-bullet {
    font-size: 26px;
    width: 14px;
    min-width: 14px;
    transform: translateY(1px);
  }

  .workflow-list li.is-active::after {
    content: none;
  }

  .workflow-right {
    justify-content: center;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .workflow-photo {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: center center;
    display: block;
    margin: 0 auto;
  }

  .final-cta {
    margin-top: 32px;
    width: calc(100% + 32px);
    margin-left: -16px;
  }

  .final-cta-frame {
    width: 100%;
    padding: 14px 0 0;
    border-radius: 6px 6px 0 0;
  }

  .final-cta-frame::before {
    left: 0;
    right: 0;
    height: 14px;
    background: repeating-linear-gradient(
      to right,
      rgba(255, 255, 255, 0.28) 0 1px,
      rgba(255, 255, 255, 0) 1px 34px
    );
  }

  .final-cta-card {
    grid-template-columns: 1fr;
    padding: 18px 14px 14px;
    min-height: auto;
    border-radius: 6px 6px 0 0;
  }

  .final-cta-label {
    font-size: 12px;
    gap: 8px;
  }

  .final-cta-label-dot {
    width: 8px;
    height: 8px;
  }

  .final-cta-title {
    margin-top: 10px;
    font-size: 28px;
    line-height: 1.15;
  }

  .final-cta-subtext {
    font-size: 12px;
    line-height: 1.35;
    max-width: 100%;
    margin-top: 10px;
  }

  .final-cta-contacts {
    margin-top: 12px;
    gap: 6px;
  }

  .final-cta-contact {
    min-height: 38px;
    padding: 2px 4px;
    gap: 6px;
  }

  .final-cta-contact img {
    width: 18px;
    height: 18px;
  }

  .final-cta-contact span {
    font-size: 9px;
  }

  .final-cta-contact strong {
    font-size: 11px;
  }

  .final-cta-form {
    margin-top: 10px;
  }

  .final-cta-form p {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .final-cta-form input {
    height: 32px;
    font-size: 12px;
    margin-bottom: 6px;
    padding: 0 10px;
  }

  .final-cta-team {
    margin-bottom: 12px;
  }

  .final-cta-team button {
    height: 32px;
    font-size: 11px;
  }

  .final-cta-submit {
    height: 36px;
    font-size: 14px;
  }

  .final-cta-right {
    display: none;
  }

  .footer {
    width: 100%;
    margin-left: 0;
    height: auto;
    min-height: 176px;
    padding-top: 14px;
    border-radius: 0;
  }

  .footer-top,
  .footer-middle,
  .footer-brand {
    width: calc(100% - 24px);
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-logo img {
    height: 16px;
  }

  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-nav a {
    font-size: 14px;
  }

  .footer-middle {
    margin-top: 14px;
    padding-top: 12px;
    flex-direction: column;
    gap: 8px;
  }

  .footer-middle p:first-child,
  .footer-middle p:last-child {
    font-size: 12px;
  }

  .footer-brand {
    position: relative;
    left: auto;
    transform: none;
    bottom: auto;
    margin: 8px auto 0;
    height: 54px;
  }

  .footer-brand img {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
