:root {
  --header-width: 1828px;
  --header-height: 76px;
  --header-shell-width: var(--section-shell-width);
  --header-shell-inline: 40px;
  --header-shell-radius: 30px;
  --section-shell-width: 1908px;
  --section-panel-width: 1828px;
  --hero-stage-width: var(--section-shell-width);
  --hero-card-width: var(--section-panel-width);
  --hero-card-height: 893px;
  --hero-radius: 40px;
  --problem-card-width: var(--section-panel-width);
  --problem-card-height: 1035px;
  --subscription-card-width: var(--section-panel-width);
  --subscription-card-height: 1256px;
  --section-side-copy-width: 560px;
  --visibility-cta-width: var(--section-panel-width);
  --cases-section-width: var(--section-panel-width);
  --surface: #efeff1;
  --text: #1b1b1b;
  --button: #1b1b1b;
  --button-icon: #2d2d2d;
  --white: #ffffff;
  --accent: #0575ff;
  --accent-strong: #2f8bff;
  --scroll-lock-offset: 0px;
  --scrollbar-size: 18px;
  --scrollbar-track: rgba(5, 117, 255, 0.14);
  --scrollbar-thumb-shadow: rgba(5, 117, 255, 0.18);
  --desktop-gap: 8px;
  --section-gap: 40px;
  --header-edge-gap: 12px;
  --mobile-shadow: 0 24px 56px rgba(27, 27, 27, 0.16);
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./assets/manrope-500.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./assets/manrope-700.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./assets/manrope-600.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./assets/inter-400.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("./assets/manrope-800.ttf") format("truetype");
}

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

html,
body {
  margin: 0;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}

html.is-scroll-locked {
  scrollbar-gutter: auto;
  scrollbar-width: none;
}

body {
  background: var(--surface);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  text-rendering: geometricPrecision;
  overflow-x: clip;
}

html::-webkit-scrollbar {
  width: var(--scrollbar-size);
  height: var(--scrollbar-size);
}

html.is-scroll-locked::-webkit-scrollbar {
  width: 0;
  height: 0;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  min-height: 84px;
  border: 4px solid var(--surface);
  border-radius: 999px;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(180deg, var(--accent-strong) 0%, var(--accent) 100%) border-box;
  box-shadow: 0 10px 24px var(--scrollbar-thumb-shadow);
}

html::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(180deg, #54a4ff 0%, var(--accent) 100%) border-box;
}

html::-webkit-scrollbar-thumb:active {
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(180deg, var(--accent) 0%, #035fce 100%) border-box;
}

html::-webkit-scrollbar-corner {
  background: transparent;
}

body.is-scroll-locked {
  overflow: hidden;
  padding-right: var(--scroll-lock-offset);
}

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

[hidden] {
  display: none !important;
}

.hero-header {
  position: sticky;
  top: 0;
  z-index: 80;
  width: 100%;
  background: transparent;
  padding: 0 0 12px;
}

.page-content {
  width: 100%;
  display: grid;
  gap: var(--section-gap);
  padding: 0;
}

.page-content > * {
  min-width: 0;
}

.header-shell {
  width: min(100%, var(--header-shell-width));
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 0 var(--header-shell-inline);
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  align-items: center;
  column-gap: 36px;
  position: relative;
  border-radius: var(--header-shell-radius);
  border: 1px solid rgba(255, 255, 255, 0.46);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.24) 100%);
  box-shadow:
    0 18px 42px rgba(27, 27, 27, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  isolation: isolate;
}

.header-shell::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(132deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.08) 42%, rgba(255, 255, 255, 0.18) 100%);
  opacity: 0.95;
  pointer-events: none;
  z-index: -1;
}

.brand {
  width: 160px;
  min-width: 160px;
  height: 56px;
  display: flex;
  align-items: center;
}

.brand img {
  width: 146px;
  height: 56px;
  object-fit: contain;
}

.menu-toggle {
  display: none;
}

.header-panel {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 28px;
}

.site-nav {
  min-width: 0;
  display: flex;
  justify-content: center;
}

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

.site-nav a {
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  letter-spacing: -0.4px;
  white-space: nowrap;
}

.site-nav a {
  transition: opacity 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.social-link:hover,
.social-link:focus-visible {
  opacity: 0.72;
}

.header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-links {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 18px;
  border-left: 1px solid rgba(27, 27, 27, 0.08);
}

.social-link {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.social-link img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta-button {
  position: relative;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 2px 2px 2px 18px;
  border-radius: 999px;
  background: var(--button);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, filter 0.2s ease, background-color 0.24s ease, box-shadow 0.24s ease, color 0.24s ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  filter: brightness(1.08);
}

.cta-button--demo {
  min-width: 206px;
  border: 1px solid rgba(27, 27, 27, 0.14);
  background: rgba(255, 255, 255, 0.34);
  color: var(--text);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 8px 24px rgba(27, 27, 27, 0.04);
  backdrop-filter: blur(14px);
}

.cta-button--project {
  min-width: 226px;
}

.cta-button--demo:hover,
.cta-button--demo:focus-visible {
  filter: none;
  background: rgba(255, 255, 255, 0.48);
  border-color: rgba(5, 117, 255, 0.2);
}

.cta-button__label {
  position: relative;
  z-index: 2;
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: 0.42px;
  text-transform: uppercase;
  white-space: nowrap;
}

.cta-button__icon-wrap {
  position: relative;
  z-index: 2;
  width: 50px;
  min-width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-button__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--button-icon);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-45deg);
  transition: transform 0.24s ease, background-color 0.24s ease;
}

.cta-button--demo .cta-button__icon {
  background: rgba(27, 27, 27, 0.9);
}

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

.cta-button:not(.cta-button--demo):hover,
.cta-button:not(.cta-button--demo):focus-visible {
  background: var(--accent);
  filter: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 28px rgba(5, 117, 255, 0.22);
}

.cta-button:not(.cta-button--demo):hover .cta-button__icon,
.cta-button:not(.cta-button--demo):focus-visible .cta-button__icon {
  transform: rotate(0deg);
  background: rgba(2, 21, 46, 0.2);
}

.cta-button--demo::before {
  content: "";
  position: absolute;
  top: -36%;
  left: -22%;
  width: 42%;
  height: 172%;
  z-index: 1;
  border-radius: inherit;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(118, 188, 255, 0.18) 24%,
      rgba(255, 255, 255, 0.92) 50%,
      rgba(164, 222, 255, 0.28) 74%,
      rgba(255, 255, 255, 0) 100%
    );
  mix-blend-mode: screen;
  filter: blur(1.4px);
  box-shadow: 0 0 18px rgba(154, 217, 255, 0.2);
  transform: translateX(-240%) rotate(14deg);
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
  animation: demo-glass-sheen 10s ease-in-out infinite;
}

.cta-button--demo::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.04) 46%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

@keyframes demo-glass-sheen {
  0%,
  79% {
    transform: translateX(-240%) rotate(14deg);
    opacity: 0;
  }

  82% {
    opacity: 0.96;
  }

  90% {
    transform: translateX(335%) rotate(14deg);
    opacity: 0.96;
  }

  100% {
    transform: translateX(335%) rotate(14deg);
    opacity: 0;
  }
}

.hero-intro {
  width: min(100%, var(--hero-stage-width));
  margin: 0 auto;
  padding: 0 40px;
}

.hero-intro__card {
  position: relative;
  width: min(100%, var(--hero-card-width));
  min-height: var(--hero-card-height);
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--hero-radius);
  background-color: #1b1b1b;
  background-image:
    radial-gradient(circle at 16% 78%, rgba(102, 90, 176, 0.34) 0%, rgba(102, 90, 176, 0.18) 24%, rgba(27, 27, 27, 0) 56%),
    radial-gradient(circle at 88% 14%, rgba(35, 86, 255, 0.16) 0%, rgba(35, 86, 255, 0) 34%),
    url("./assets/hero-surface-bg.webp");
  background-position: 0 0, 0 0, center;
  background-repeat: no-repeat;
  background-size: 100% 100%, 100% 100%, cover;
  isolation: isolate;
}

.hero-intro__visual {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero-intro__visual img {
  display: block;
  max-width: none;
}

.hero-intro__visual--figma {
  top: -205px;
  right: -866px;
  width: 2100px;
}

.hero-intro__visual--figma img {
  width: 100%;
  height: auto;
  transform: rotate(90deg);
  transform-origin: center center;
}

.hero-intro__visual--adaptive {
  top: -205px;
  right: -866px;
  width: 2100px;
  display: none;
}

.hero-intro__visual--adaptive img {
  width: 100%;
  height: auto;
  transform: rotate(90deg);
  transform-origin: center center;
}

.hero-intro__content {
  position: relative;
  z-index: 2;
  min-height: var(--hero-card-height);
  padding: 48px 40px 47px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-intro__title {
  margin: 0;
  width: 1540px;
  max-width: none;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 110px;
  line-height: 108px;
  letter-spacing: -7.2px;
  font-weight: 600;
  text-wrap: balance;
}

.hero-intro__title span {
  color: var(--accent);
}

.hero-intro__description {
  max-width: 705px;
  margin: 0;
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 17.6px;
  line-height: 29.04px;
  letter-spacing: -0.4366px;
}

.problem-panel {
  width: min(100%, var(--section-shell-width));
  margin: 0 auto;
  padding: 0 40px;
}

.problem-panel__card {
  width: min(100%, var(--problem-card-width));
  min-height: var(--problem-card-height);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 40px;
  background: var(--white);
}

.problem-panel__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, var(--section-side-copy-width));
  align-items: start;
  min-height: 358.164px;
  padding: 55.995px 79.994px 54.992px;
  border-bottom: 1.203px solid #efeff1;
}

.problem-panel__heading {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.problem-panel__eyebrow {
  width: fit-content;
  min-height: 39.992px;
  display: inline-flex;
  align-items: center;
  gap: 9.998px;
  padding: 0 19.996px;
  border-radius: 40px;
  background: #efeff1;
  color: #1b1b1b;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  line-height: 19.5px;
  letter-spacing: 1.3px;
  font-weight: 600;
  text-transform: uppercase;
}

.problem-panel__eyebrow-mark {
  width: 15.993px;
  height: 1.992px;
  border-radius: 2px;
  background: #1b1b1b;
}

.problem-panel__title {
  margin: 0;
  max-width: 100%;
  color: #1b1b1b;
  font-family: "Manrope", sans-serif;
  font-size: 60px;
  line-height: 63px;
  letter-spacing: -2.1px;
  font-weight: 800;
  text-wrap: balance;
}

.problem-panel__title span {
  color: var(--accent);
}

.problem-panel__lede {
  margin: 7.997px 0 0;
  width: 100%;
  max-width: var(--section-side-copy-width);
  max-width: 100%;
  color: rgba(27, 27, 27, 0.55);
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 33px;
  letter-spacing: 0;
  font-weight: 500;
}

.problem-panel__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.problem-panel__carousel {
  position: relative;
}

.problem-panel__pagination {
  display: none;
}

.problem-panel__pagination-button {
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.problem-panel__item {
  display: grid;
  grid-template-columns: 260px 340px 1px minmax(0, 1fr);
  align-items: center;
  min-height: 169.197px;
  padding: 0 79.99px;
  border-bottom: 1.203px solid #efeff1;
  background: var(--white);
}

.problem-panel__item:last-child {
  min-height: 167.994px;
  border-bottom: 0;
}

.problem-panel__item-meta {
  display: flex;
  align-items: center;
  gap: 19.996px;
}

.problem-panel__number {
  color: #efeff1;
  font-family: "Manrope", sans-serif;
  font-size: 80px;
  line-height: 80px;
  letter-spacing: -3.2px;
  font-weight: 800;
}

.problem-panel__icon-box {
  width: 51.992px;
  height: 51.992px;
  flex: 0 0 51.992px;
  border: 1.203px solid #efeff1;
  border-radius: 14px;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-panel__icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #0a0a0a;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem-panel__icon--pin {
  fill: #f15f56;
  stroke: none;
}

.problem-panel__icon--pin circle {
  fill: var(--white);
}

.problem-panel__icon--star {
  fill: #f7be38;
  stroke: #e3a71f;
  stroke-width: 1;
}

.problem-panel__icon--link {
  stroke: #5f6573;
}

.problem-panel__item-title {
  margin: 0;
  color: #1b1b1b;
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  line-height: 32.5px;
  letter-spacing: -0.78px;
  font-weight: 700;
}

.problem-panel__divider {
  width: 0.996px;
  height: 55.995px;
  background: #efeff1;
}

.problem-panel__item-copy {
  margin: 0;
  padding-left: 39.992px;
  color: rgba(27, 27, 27, 0.5);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 27.2px;
  letter-spacing: 0;
  font-weight: 500;
}

.subscription-panel {
  position: relative;
  z-index: 0;
  width: min(100%, var(--section-shell-width));
  margin: 0 auto;
  padding: 0 40px;
}

.subscription-panel__bg-object {
  position: absolute;
  top: -132px;
  left: -412px;
  z-index: 0;
  width: 548px;
  pointer-events: none;
}

.subscription-panel__bg-object img {
  display: block;
  width: 100%;
  height: auto;
}

.subscription-panel__card {
  position: relative;
  z-index: 1;
  width: min(100%, var(--subscription-card-width));
  min-height: var(--subscription-card-height);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 40px;
  background: var(--white);
}

.subscription-panel__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, var(--section-side-copy-width));
  align-items: start;
  min-height: 393.796px;
  padding: 55.995px 79.994px 53px;
  border-bottom: 1.203px solid #efeff1;
}

.subscription-panel__heading {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.subscription-panel__eyebrow {
  width: fit-content;
  min-height: 39.992px;
  display: inline-flex;
  align-items: center;
  gap: 9.998px;
  padding: 0 20px 0 19.996px;
  border-radius: 40px;
  background: #efeff1;
  color: #1b1b1b;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  line-height: 19.5px;
  letter-spacing: 1.3px;
  font-weight: 600;
  text-transform: uppercase;
}

.subscription-panel__eyebrow-mark {
  width: 15.993px;
  height: 1.992px;
  border-radius: 2px;
  background: #1b1b1b;
}

.subscription-panel__title {
  margin: 0;
  max-width: 900px;
  color: #1b1b1b;
  font-family: "Manrope", sans-serif;
  font-size: 60px;
  line-height: 56.16px;
  letter-spacing: -1.82px;
  font-weight: 800;
  text-wrap: balance;
}

.subscription-panel__title span {
  color: var(--accent);
}

.subscription-panel__lede {
  width: 100%;
  max-width: var(--section-side-copy-width);
  margin: 8px 0 0;
  color: rgba(27, 27, 27, 0.55);
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 33px;
  font-weight: 500;
}

.subscription-panel__grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.subscription-panel__carousel {
  position: relative;
}

.subscription-panel__pagination {
  display: none;
}

.subscription-panel__pagination-button {
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.subscription-card {
  min-height: 443.42px;
  padding: 43.995px 48px 48px;
  background: var(--white);
  border-right: 1.203px solid #efeff1;
  border-bottom: 1.203px solid #efeff1;
}

.subscription-card:nth-child(3n) {
  border-right: 0;
}

.subscription-card:nth-last-child(-n + 3) {
  min-height: 417.927px;
  border-bottom: 0;
}

.subscription-card__top {
  min-height: 71.997px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.subscription-card__number {
  color: #efeff1;
  font-family: "Manrope", sans-serif;
  font-size: 72px;
  line-height: 72px;
  letter-spacing: -2.88px;
  font-weight: 800;
}

.subscription-card__tag {
  min-height: 27.701px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 0.601px solid #e5e7eb;
  border-radius: 6px;
  background: #f3f4f6;
  color: #9ca3af;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  line-height: 16.5px;
  letter-spacing: 1.1px;
  font-weight: 600;
  text-transform: uppercase;
}

.subscription-card__title {
  margin: 19.996px 0 0;
  color: #1b1b1b;
  font-family: "Manrope", sans-serif;
  font-size: 30px;
  line-height: 27.5px;
  letter-spacing: -0.66px;
  font-weight: 800;
}

.subscription-card__rule {
  width: 100%;
  height: 1.494px;
  margin-top: 19.996px;
  background: #efeff1;
}

.subscription-card__copy {
  margin-top: 19.996px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.subscription-card__copy p {
  margin: 0;
  color: rgba(27, 27, 27, 0.5);
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  line-height: 25.5px;
  font-weight: 500;
}

.visibility-cta {
  width: min(100%, var(--section-shell-width));
  margin: 0 auto;
  margin-bottom: calc(var(--section-gap) * -0.5);
  padding: 0 40px;
  transform: translateY(calc(var(--section-gap) * -0.5));
}

.visibility-cta__card {
  width: min(100%, var(--visibility-cta-width));
  min-height: 145px;
  margin: 0 auto;
  padding: 40px 79.994px;
  border-radius: 40px;
  background: #1b1b1b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.visibility-cta__content {
  width: 854.544px;
  display: flex;
  flex-direction: column;
  gap: 9.998px;
}

.visibility-cta__title {
  margin: 0;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  line-height: 30.8px;
  letter-spacing: -0.66px;
  font-weight: 700;
}

.visibility-cta__text {
  margin: 0;
  color: rgba(239, 239, 241, 0.45);
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
}

.visibility-cta__button {
  width: 322.306px;
  min-width: 322.306px;
  height: 59.998px;
  padding: 0 32px 0 31.996px;
  border-radius: 40px;
  background: #0575ff;
  display: inline-flex;
  align-items: center;
  gap: 13.992px;
  color: var(--white);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.visibility-cta__button:hover,
.visibility-cta__button:focus-visible {
  filter: brightness(1.08);
}

.visibility-cta__button-label {
  flex: 1 1 auto;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 1.12px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.visibility-cta__button-icon-wrap {
  width: 56.569px;
  min-width: 56.569px;
  height: 56.569px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.visibility-cta__button-icon {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: #1b1b1b;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-45deg);
}

.visibility-cta__button-icon img {
  width: 20px;
  height: 20px;
}

.cases-section {
  width: min(100%, var(--section-shell-width));
  margin: 0 auto;
  padding: 0 40px;
}

.cases-section__shell {
  width: min(100%, var(--cases-section-width));
  margin: 0 auto;
  position: relative;
  --cases-sticky-bottom-gap: 60px;
  padding: 20px 40px 60px;
  border-radius: 40px;
  background: #1b1b1b;
}

.cases-section__sticky-wrapper {
  position: static;
}

.cases-section__header {
  position: relative;
  z-index: 20;
  background: #1b1b1b;
  padding-top: 40px;
}

.cases-section__header.is-fixed,
.cases-section__header.is-stuck-end {
  z-index: 30;
}

.cases-section__header.is-fixed {
  position: fixed;
}

.cases-section__header.is-stuck-end {
  position: absolute;
}

.cases-section__eyebrow {
  width: 106px;
  height: 48px;
  padding: 0 11px;
  border-radius: 40px;
  background: #2d2d2d;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  line-height: 28px;
  letter-spacing: -0.6px;
  font-weight: 600;
  text-transform: uppercase;
}

.cases-section__eyebrow-mark {
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  flex: 0 0 auto;
}

.cases-section__header-row {
  margin-top: 20px;
  padding-bottom: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.cases-section__title {
  margin: 0;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 90px;
  line-height: 81px;
  letter-spacing: -5.4px;
  font-weight: 600;
}

.cases-section__title span,
.case-row__visual-title span {
  color: var(--accent);
}

.cases-section__button {
  width: 200px;
  min-width: 200px;
  height: 80px;
  padding: 0 12px 0 30px;
  border-radius: 40px;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--white);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.cases-section__button:hover,
.cases-section__button:focus-visible,
.case-row__link:hover,
.case-row__link:focus-visible {
  filter: brightness(1.08);
}

.cases-section__button-label {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.cases-section__button-icon-wrap {
  width: 56.569px;
  min-width: 56.569px;
  height: 56.569px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cases-section__button-icon {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: #1b1b1b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cases-section__button-icon img {
  width: 20px;
  height: 20px;
  transform: rotate(-45deg);
}

.cases-section__list {
  margin-top: 0;
  display: grid;
  grid-template-columns: 100%;
  gap: 150px;
}

.case-row {
  height: 797px;
  max-height: calc(100vh - 300px);
  display: grid;
  grid-template-columns: 620.63px minmax(0, 1fr);
  gap: 40px;
  align-items: stretch;
  position: sticky;
  top: 230px;
  overflow: hidden;
}

.case-row__info,
.case-row__visual {
  min-height: 100%;
  border-radius: 40px;
}

.case-row__info {
  padding: 40px;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.case-row__brand {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.case-row__logo {
  width: 100px;
  height: 100px;
  flex: 0 0 100px;
  object-fit: contain;
}

.case-row__client {
  margin: 10px 0 0;
  color: #1b1b1b;
  font-family: "Manrope", sans-serif;
  font-size: 36px;
  line-height: 36px;
  letter-spacing: -1.08px;
  font-weight: 600;
}

.case-row__task {
  max-width: 518px;
  margin: 40px 0 0;
  color: rgba(27, 27, 27, 0.7);
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.6px;
  font-weight: 500;
}

.case-row__task strong {
  color: #1b1b1b;
  font-weight: 700;
}

.case-metrics--simple {
  margin-top: 31px;
}

.case-metrics__line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 27px;
}

.case-metrics__line:last-child {
  padding-bottom: 0;
}

.case-metrics__name,
.case-metrics__value,
.case-metrics__group-title,
.case-metrics__cell-value {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.6px;
}

.case-metrics__name,
.case-metrics__group-title {
  color: #1b1b1b;
  font-weight: 500;
}

.case-metrics__value,
.case-metrics__cell-value {
  font-weight: 700;
}

.case-metrics__value {
  color: var(--accent);
  text-align: right;
}

.case-metrics__rule {
  width: 100%;
  height: 1px;
  margin: 0 0 27px;
  background: rgba(191, 191, 193, 0.7);
}

.case-metrics--detailed {
  margin-top: 24px;
}

.case-metrics__group + .case-metrics__rule {
  margin-top: 18px;
}

.case-metrics__triple {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.case-metrics__cell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.case-metrics__cell--result .case-metrics__cell-value {
  color: var(--accent);
}

.case-metrics__cell-value {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1b1b1b;
}

.case-metrics__cell-value img {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

.case-metrics__cell-arrow--down {
  transform: rotate(180deg);
}

.case-metrics__cell-note {
  margin-top: -2px;
  color: rgba(27, 27, 27, 0.7);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.48px;
  font-weight: 500;
}

.case-row__link {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: transform 0.2s ease;
}

.case-row__link-label {
  color: #1b1b1b;
  font-family: "Manrope", sans-serif;
  font-size: 36px;
  line-height: 36px;
  letter-spacing: -1.08px;
  font-weight: 600;
}

.case-row__link-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 60px;
  background: #1b1b1b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.24s ease, box-shadow 0.24s ease;
}

.case-row__link-icon img {
  width: 20px;
  height: 20px;
  transform: rotate(-45deg);
  transition: transform 0.24s ease;
}

.case-row__link:hover,
.case-row__link:focus-visible {
  filter: none;
}

.case-row__link:hover .case-row__link-icon,
.case-row__link:focus-visible .case-row__link-icon {
  background: var(--accent);
  box-shadow: 0 12px 28px rgba(5, 117, 255, 0.22);
}

.case-row__link:hover .case-row__link-icon img,
.case-row__link:focus-visible .case-row__link-icon img {
  transform: rotate(0deg);
}

.case-row__visual {
  background: #2d2d2d;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.case-row__visual-title {
  padding: 26px 40px 31px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 60px;
  line-height: 54px;
  letter-spacing: -3.6px;
  font-weight: 600;
}

.case-row__headline-break {
  display: block;
}

.case-row__ticker {
  height: 60px;
  background: #1b1b1b;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.case-row__ticker-track {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding-right: 32px;
  color: #efeff1;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  white-space: nowrap;
}

.case-row__ticker-dot {
  opacity: 0.9;
}

.case-row__image-wrap {
  min-height: 549px;
  flex: 1 1 auto;
  overflow: hidden;
  background: #dbe8f0;
}

.case-row__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  transform: scale(1.03);
}

.comparison-section {
  width: min(100%, var(--section-shell-width));
  margin: 0 auto;
  padding: 0 40px;
}

.comparison-section__stack {
  display: flex;
  flex-direction: column;
  gap: calc(var(--section-gap) * 0.5);
}

.comparison-main {
  overflow: hidden;
  border-radius: 40px;
  background: var(--white);
}

.comparison-main__header {
  min-height: 346px;
  padding: 56px 80px 54px;
  border-bottom: 1.203px solid #efeff1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, var(--section-side-copy-width));
  align-items: start;
}

.comparison-main__heading {
  flex: 1 1 auto;
  max-width: 930px;
}

.comparison-main__eyebrow {
  min-width: 154px;
  width: fit-content;
  min-height: 40px;
  padding: 0 20px;
  border-radius: 40px;
  background: #efeff1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1b1b1b;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  line-height: 19.5px;
  letter-spacing: 1.3px;
  font-weight: 600;
  text-transform: uppercase;
}

.comparison-main__eyebrow-mark {
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: #1b1b1b;
  flex: 0 0 auto;
}

.comparison-main__title {
  margin: 60px 0 0;
  color: #1b1b1b;
  font-family: "Manrope", sans-serif;
  font-size: 60px;
  line-height: 58.8px;
  letter-spacing: -1.96px;
  font-weight: 800;
}

.comparison-main__title span {
  color: var(--accent);
}

.comparison-main__lede {
  width: 100%;
  max-width: var(--section-side-copy-width);
  margin: 37px 0 0;
  color: rgba(27, 27, 27, 0.55);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 29.7px;
  font-weight: 500;
}

.comparison-main__body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 924px;
}

.comparison-mobile-table {
  display: none;
}

.comparison-mobile-table__hint {
  display: none;
}

.comparison-mobile-table__frame {
  position: relative;
}

.comparison-mobile-table__frame::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 64px;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.96) 18%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.comparison-mobile-table__edge-indicator {
  display: none;
}

.comparison-mobile-table__scroller {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.comparison-mobile-table__scroller::-webkit-scrollbar {
  display: none;
}

.comparison-mobile-table__table {
  width: 100%;
  min-width: 640px;
  border-collapse: separate;
  border-spacing: 0;
}

.comparison-mobile-table__table thead th {
  padding: 0 16px 16px;
  border-bottom: 1.203px solid #efeff1;
  background: var(--white);
  text-align: left;
  vertical-align: bottom;
}

.comparison-mobile-table__table thead th:first-child {
  position: sticky;
  left: 0;
  z-index: 3;
  min-width: 120px;
}

.comparison-mobile-table__table tbody th,
.comparison-mobile-table__table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid #efeff1;
  vertical-align: top;
}

.comparison-mobile-table__table tbody th {
  position: sticky;
  left: 0;
  z-index: 2;
  min-width: 120px;
  background: var(--white);
  color: #1b1b1b;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.14px;
  font-weight: 700;
}

.comparison-mobile-table__column-title {
  min-height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.72px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.comparison-mobile-table__column-title--legacy {
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #9ca3af;
}

.comparison-mobile-table__column-title--plan {
  background: #1b1b1b;
  color: var(--white);
}

.comparison-mobile-table__cell {
  min-width: 216px;
  border-radius: 16px;
}

.comparison-mobile-table__cell strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.16px;
}

.comparison-mobile-table__cell span {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
}

.comparison-mobile-table__cell--legacy strong {
  color: #1b1b1b;
}

.comparison-mobile-table__cell--legacy {
  background: rgba(255, 100, 103, 0.04);
}

.comparison-mobile-table__cell--legacy span {
  color: #9ca3af;
}

.comparison-mobile-table__cell--plan {
  background: rgba(0, 212, 146, 0.08);
}

.comparison-mobile-table__cell--plan strong {
  color: #0e8d64;
}

.comparison-mobile-table__cell--plan span {
  color: #3a4a45;
}

.comparison-legacy {
  min-height: 924px;
  padding: 48px 80px 28px;
  border-right: 1.203px solid #efeff1;
  display: flex;
  flex-direction: column;
}

.comparison-legacy__head,
.comparison-plan__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.comparison-legacy__head-icon {
  width: 26px;
  height: 26px;
  border: 1.203px solid #d1d5dc;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  line-height: 12px;
  font-weight: 700;
  flex: 0 0 auto;
}

.comparison-legacy__head-label,
.comparison-plan__eyebrow {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  line-height: 19.5px;
  letter-spacing: 1.04px;
  font-weight: 600;
  text-transform: uppercase;
}

.comparison-legacy__head-label {
  color: #9ca3af;
}

.comparison-legacy__title,
.comparison-plan__title {
  margin: 32px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  line-height: 31.2px;
  letter-spacing: -0.78px;
  font-weight: 700;
}

.comparison-legacy__title {
  color: #1b1b1b;
}

.comparison-legacy__rule,
.comparison-plan__rule {
  width: 100%;
  height: 1.494px;
  margin-top: 28px;
}

.comparison-legacy__rule {
  background: #efeff1;
}

.comparison-legacy__list,
.comparison-plan__list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.comparison-legacy__item {
  min-height: 81px;
  padding: 18px 0 19px;
  border-bottom: 1.203px solid #f3f4f6;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.comparison-legacy__item-name {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: #1e2939;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.16px;
  font-weight: 600;
}

.comparison-legacy__item-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border: 1.203px solid #e5e7eb;
  border-radius: 8px;
  background: #fafafa;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.comparison-legacy__item-icon img {
  width: 14px;
  height: 14px;
}

.comparison-legacy__item-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  text-align: right;
  white-space: nowrap;
}

.comparison-legacy__amount {
  color: #101828;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

.comparison-legacy__period {
  color: #9ca3af;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
}

.comparison-legacy__period--once {
  color: #ff6467;
}

.comparison-legacy__footer {
  margin-top: auto;
  padding-top: 29px;
  border-top: 1px solid #efeff1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comparison-legacy__totals {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.comparison-legacy__total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.comparison-legacy__total-label,
.comparison-plan__stat-label,
.comparison-summary__eyebrow,
.comparison-summary__savings-label {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  line-height: 16.5px;
  letter-spacing: 1.1px;
  font-weight: 600;
  text-transform: uppercase;
}

.comparison-legacy__total-label {
  color: #9ca3af;
}

.comparison-legacy__total-value,
.comparison-plan__stat-value {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  line-height: 33px;
  letter-spacing: -0.66px;
  font-weight: 800;
}

.comparison-legacy__total-value {
  color: #1b1b1b;
}

.comparison-legacy__note {
  min-height: 41px;
  padding: 10.6px 16.6px;
  border-radius: 12px;
  background: rgba(255, 100, 103, 0.08);
  border: 0.601px solid rgba(255, 100, 103, 0.16);
  display: flex;
  align-items: center;
  gap: 10px;
}

.comparison-legacy__note-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1.203px solid rgba(255, 100, 103, 0.35);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ff6467;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  line-height: 12px;
  font-weight: 700;
}

.comparison-legacy__note-text,
.comparison-plan__note-text {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  line-height: 19.5px;
  font-weight: 500;
}

.comparison-legacy__note-text {
  color: #ff6467;
}

.comparison-plan {
  min-height: 924px;
  padding: 48px 80px 29px;
  background: #1b1b1b;
  display: flex;
  flex-direction: column;
}

.comparison-plan__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.comparison-plan__eyebrow {
  color: rgba(255, 255, 255, 0.35);
}

.comparison-plan__eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00d492;
  flex: 0 0 auto;
}

.comparison-plan__badge {
  min-height: 32px;
  padding: 0 14px;
  border-radius: 16px;
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1b1b1b;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  line-height: 16.5px;
  letter-spacing: 1.1px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.comparison-plan__title {
  color: var(--white);
}

.comparison-plan__rule {
  background: rgba(255, 255, 255, 0.1);
}

.comparison-plan__item {
  min-height: 61px;
  padding: 16px 0;
  border-bottom: 0.601px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 16px;
}

.comparison-plan__item-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 14px;
  background: #00d492;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.comparison-plan__item-icon img {
  width: 11px;
  height: 11px;
}

.comparison-plan__item-label {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.16px;
  font-weight: 500;
}

.comparison-plan__footer {
  margin-top: auto;
  padding-top: 28.6px;
  border-top: 0.601px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.comparison-plan__stat {
  min-height: 88px;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.comparison-plan__stat-label {
  color: rgba(255, 255, 255, 0.4);
}

.comparison-plan__stat-value {
  color: var(--white);
}

.comparison-plan__note {
  min-height: 41px;
  padding: 10.6px 16.6px;
  border-radius: 12px;
  background: rgba(0, 212, 146, 0.1);
  border: 0.601px solid rgba(0, 212, 146, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
}

.comparison-plan__note-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1.203px solid rgba(0, 212, 146, 0.5);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.comparison-plan__note-icon img {
  width: 10px;
  height: 10px;
}

.comparison-plan__note-text {
  color: #00d492;
}

.comparison-summary {
  min-height: 223px;
  padding: 41px 81px;
  border: 1.203px solid #2a2a2a;
  border-radius: 40px;
  background: #1b1b1b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.comparison-summary__content {
  max-width: 740px;
}

.comparison-summary__eyebrow {
  color: rgba(255, 255, 255, 0.35);
}

.comparison-summary__text {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 32px;
  font-weight: 500;
}

.comparison-summary__text strong {
  color: var(--white);
  font-weight: 800;
}

.comparison-summary__savings {
  width: 251px;
  min-width: 251px;
  min-height: 141px;
  padding: 24px 16px;
  border-radius: 24px;
  background: #0575ff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.comparison-summary__savings-label {
  color: rgba(255, 255, 255, 0.6);
}

.comparison-summary__savings-value {
  margin-top: 8px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 30px;
  line-height: 45px;
  letter-spacing: -1.2px;
  font-weight: 800;
}

.comparison-summary__savings-note {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.65);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  line-height: 19.5px;
  font-weight: 500;
}

.proof-pricing-section {
  width: min(100%, var(--section-shell-width));
  margin: 0 auto;
  padding: 0 40px;
}

.proof-pricing-section__stack {
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
}

.testimonials-panel,
.plans-panel {
  overflow: hidden;
  border-radius: 40px;
  background: var(--white);
}

.testimonials-panel__header,
.plans-panel__header {
  border-bottom: 1.203px solid #efeff1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.testimonials-panel__header {
  min-height: 287px;
  padding: 56px 80px 53px;
}

.testimonials-panel__heading,
.plans-panel__heading {
  max-width: 1000px;
}

.testimonials-panel__eyebrow,
.plans-panel__eyebrow {
  min-height: 40px;
  width: fit-content;
  padding: 0 20px;
  border-radius: 40px;
  background: #efeff1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1b1b1b;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  line-height: 19.5px;
  letter-spacing: 1.3px;
  font-weight: 600;
  text-transform: uppercase;
}

.testimonials-panel__eyebrow-mark,
.plans-panel__eyebrow-mark {
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: #1b1b1b;
  flex: 0 0 auto;
}

.testimonials-panel__title,
.plans-panel__title {
  margin: 60px 0 0;
  color: #1b1b1b;
  font-family: "Manrope", sans-serif;
  font-size: 60px;
  line-height: 58.8px;
  letter-spacing: -1.96px;
  font-weight: 800;
}

.testimonials-panel__title span,
.plans-panel__title span {
  color: var(--accent);
}

.testimonials-panel__stats {
  width: 386px;
  display: grid;
  grid-template-columns: 1fr 167px;
  gap: 16px;
  padding-bottom: 4px;
}

.testimonials-panel__stat {
  min-height: 115px;
  padding: 21px 29px 20px;
  border: 1.203px solid #efeff1;
  border-radius: 20px;
  background: #f9fafb;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  text-align: center;
}

.testimonials-panel__stat-value {
  color: #1b1b1b;
  font-family: "Manrope", sans-serif;
  font-size: 32px;
  line-height: 48px;
  letter-spacing: -1.28px;
  font-weight: 800;
}

.testimonials-panel__stat-label {
  color: #9ca3af;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
}

.video-reviews-grid {
  padding: 48px 80px 56px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.video-reviews-carousel {
  position: relative;
}

.video-reviews-carousel__pagination {
  display: none;
}

.video-reviews-carousel__pagination-button {
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.video-review-card {
  min-height: 499px;
  border: 1.203px solid #efeff1;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.video-review-card__media {
  position: relative;
  height: 224px;
  overflow: hidden;
  background: linear-gradient(180deg, #242424 0%, #1b1b1b 100%);
}

.video-review-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 28% 26%, rgba(147, 115, 234, 0.18) 0%, rgba(74, 58, 117, 0.09) 24%, rgba(0, 0, 0, 0) 54%);
}

.video-review-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.14;
}

.video-review-card__media--dmitry {
  background: linear-gradient(180deg, #2a2a2a 0%, #242424 100%);
}

.video-review-card__media--elena {
  background: linear-gradient(180deg, #202020 0%, #171717 100%);
}

.video-review-card__media--igor {
  background: linear-gradient(180deg, #262626 0%, #1f1f1f 100%);
}

.video-review-card__play {
  position: absolute;
  top: 82px;
  left: 50%;
  z-index: 1;
  width: 60px;
  height: 60px;
  margin-left: -30px;
  border: 1.804px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.video-review-card__play img {
  width: 18px;
  height: 20px;
}

.video-review-card__badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  width: 40px;
  height: 40px;
  border: 1.203px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
}

.video-review-card__duration {
  position: absolute;
  right: 16px;
  bottom: 20px;
  z-index: 1;
  min-width: 41px;
  height: 30px;
  padding: 6px 8px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.65);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.24px;
  font-weight: 600;
}

.video-review-card__content {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.video-review-card__stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.video-review-card__stars img {
  width: 14px;
  height: 14px;
}

.video-review-card__quote {
  min-height: 96px;
  margin: 0;
  color: #1b1b1b;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: -0.15px;
  font-weight: 600;
}

.video-review-card__divider {
  width: 100%;
  height: 1px;
  background: #efeff1;
}

.video-review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.video-review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: #efeff1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0575ff;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 21px;
  font-weight: 800;
  flex: 0 0 auto;
}

.video-review-card__author-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.video-review-card__name {
  color: #1b1b1b;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  line-height: 22.5px;
  letter-spacing: -0.3px;
  font-weight: 700;
}

.video-review-card__role {
  color: #9ca3af;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  line-height: 19.5px;
  font-weight: 500;
}

.plans-panel__header {
  min-height: 346px;
  padding: 56px 80px 54px;
}

.pricing-grid {
  padding: 48px 80px 56px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.pricing-carousel {
  position: relative;
}

.pricing-scroll-stage {
  position: relative;
}

.pricing-card {
  position: relative;
  min-height: 715px;
  border: 1.203px solid #efeff1;
  border-radius: 28px;
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pricing-card--featured {
  background: #1b1b1b;
  border-color: #1b1b1b;
}

.pricing-card__badge {
  position: absolute;
  top: 0;
  left: 50%;
  width: 125px;
  height: 34px;
  margin-left: -62.5px;
  border-radius: 0 0 10px 10px;
  background: #0575ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  line-height: 16.5px;
  letter-spacing: 1.1px;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-card__head {
  min-height: 252px;
  padding: 36px;
  border-bottom: 1.203px solid #efeff1;
}

.pricing-card--featured .pricing-card__head {
  min-height: 260px;
  padding-top: 44px;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.pricing-card__name {
  margin: 0;
  color: #1b1b1b;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.4px;
  font-weight: 700;
}

.pricing-card--featured .pricing-card__name {
  color: var(--white);
}

.pricing-card__offer-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pricing-card__old-price {
  color: #9ca3af;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  line-height: 22px;
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(156, 163, 175, 0.85);
}

.pricing-card__discount {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e8f1ff;
  color: #0575ff;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.48px;
  font-weight: 800;
  text-transform: uppercase;
}

.plans-panel__note {
  margin: 18px 0 0;
  max-width: 880px;
  color: #6a7282;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: -0.2px;
  font-weight: 500;
}

.pricing-card__price-row {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-top: 14px;
}

.pricing-card__price {
  color: #1b1b1b;
  font-family: "Manrope", sans-serif;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: -1.92px;
  font-weight: 800;
}

.pricing-card__period {
  margin-bottom: 4px;
  color: #9ca3af;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  line-height: 22.5px;
  letter-spacing: -0.15px;
  font-weight: 500;
}

.pricing-card--featured .pricing-card__price,
.pricing-card--featured .pricing-card__period,
.pricing-card--featured .pricing-card__old-price {
  color: var(--white);
}

.pricing-card--featured .pricing-card__period {
  color: rgba(255, 255, 255, 0.45);
}

.pricing-card--featured .pricing-card__old-price {
  text-decoration-color: rgba(255, 255, 255, 0.55);
}

.pricing-card--featured .pricing-card__discount {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.pricing-card__description {
  margin: 16px 0 0;
  color: #6a7282;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 23.1px;
  font-weight: 500;
}

.pricing-card--featured .pricing-card__description {
  color: rgba(255, 255, 255, 0.45);
}

.pricing-card__features {
  margin: 0;
  padding: 24px 36px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-card__feature-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pricing-card__feature-icon--active {
  border: 1.203px solid #0575ff;
  background: #e0efff;
}

.pricing-card__feature-icon--featured-active {
  border: 1.203px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.pricing-card__feature-icon--muted,
.pricing-card__feature-icon--featured-muted {
  border: 1.203px solid rgba(156, 163, 175, 0.22);
  background: transparent;
}

.pricing-card__feature-icon--featured-muted {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.pricing-card__feature-icon img {
  width: 10px;
  height: 10px;
}

.pricing-card__dash {
  width: 8px;
  height: 1px;
  border-radius: 1px;
  background: #9ca3af;
}

.pricing-card__feature-icon--featured-muted .pricing-card__dash {
  background: rgba(255, 255, 255, 0.2);
}

.pricing-card__feature > span:last-child {
  color: #364153;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
}

.pricing-card__feature--muted > span:last-child {
  color: rgba(54, 65, 83, 0.28);
}

.pricing-card__feature--featured-active > span:last-child {
  color: rgba(255, 255, 255, 0.88);
}

.pricing-card__feature--featured-muted > span:last-child {
  color: rgba(255, 255, 255, 0.2);
}

.pricing-card__footer {
  margin-top: auto;
  padding: 0 36px 36px;
}

.pricing-card__divider {
  width: 100%;
  height: 1px;
  background: #efeff1;
}

.pricing-card__divider--featured {
  background: rgba(255, 255, 255, 0.08);
}

.pricing-card__button {
  width: 100%;
  height: 52px;
  margin-top: 24px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 1.12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background-color 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
}

.pricing-card__button--dark {
  background: #1b1b1b;
  color: var(--white);
}

.pricing-card__button--dark:hover,
.pricing-card__button--dark:focus-visible {
  background: var(--accent);
  box-shadow: 0 12px 28px rgba(5, 117, 255, 0.2);
}

.pricing-card__button--light {
  background: var(--white);
  color: #1b1b1b;
}

.start-steps-section {
  width: min(100%, var(--section-shell-width));
  margin: 0 auto;
  padding: 0 40px;
}

.start-steps-panel {
  overflow: hidden;
  border-radius: 40px;
  background: var(--white);
}

.start-steps-panel__header {
  min-height: 287px;
  padding: 56px 80px 53px;
  border-bottom: 1.203px solid #efeff1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, var(--section-side-copy-width));
  align-items: end;
}

.start-steps-panel__heading {
  max-width: 1000px;
}

.start-steps-panel__eyebrow {
  min-height: 40px;
  width: fit-content;
  padding: 0 20px;
  border-radius: 40px;
  background: #efeff1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1b1b1b;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  line-height: 19.5px;
  letter-spacing: 1.3px;
  font-weight: 600;
  text-transform: uppercase;
}

.start-steps-panel__eyebrow-mark {
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: #1b1b1b;
  flex: 0 0 auto;
}

.start-steps-panel__title {
  margin: 60px 0 0;
  color: #1b1b1b;
  font-family: "Manrope", sans-serif;
  font-size: 60px;
  line-height: 58.8px;
  letter-spacing: -1.96px;
  font-weight: 800;
}

.start-steps-panel__title span {
  color: var(--accent);
}

.start-steps-panel__intro {
  width: 100%;
  max-width: var(--section-side-copy-width);
  margin: 0;
  padding-bottom: 18px;
  color: rgba(27, 27, 27, 0.55);
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 33px;
  font-weight: 500;
}

.start-steps-grid {
  padding: 48px 80px 56px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.start-step-card {
  min-height: 403px;
  border: 1.203px solid #efeff1;
  border-radius: 28px;
  background: var(--white);
  padding: 31px 36px 36px;
  display: flex;
  flex-direction: column;
}

.start-step-card--dark {
  border-color: #2a2a2a;
  background: #1b1b1b;
}

.start-step-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.start-step-card__label {
  padding-top: 11px;
  color: #9ca3af;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  line-height: 19.5px;
  letter-spacing: 1.3px;
  font-weight: 800;
  text-transform: uppercase;
}

.start-step-card--dark .start-step-card__label {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
}

.start-step-card__icon-badge {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

.start-step-card__icon-badge--accent {
  border: 1.203px solid #0575ff;
  background: #0575ff;
}

.start-step-card__icon-badge--dark {
  border: 1.203px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.start-step-card__copy {
  padding-top: 20px;
}

.start-step-card__title {
  margin: 0;
  color: #1b1b1b;
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  line-height: 31.2px;
  letter-spacing: -0.78px;
  font-weight: 800;
}

.start-step-card--dark .start-step-card__title {
  color: var(--white);
}

.start-step-card__text {
  margin: 14px 0 0;
  color: #6a7282;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  line-height: 24.75px;
  font-weight: 500;
}

.start-step-card--dark .start-step-card__text {
  color: rgba(255, 255, 255, 0.5);
}

.start-step-card__footer,
.start-step-card__meeting,
.start-step-card__agreement {
  margin-top: auto;
  padding-top: 28px;
}

.start-step-card__cta {
  width: 100%;
  min-height: 50px;
  border-radius: 14px;
  background: #1b1b1b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  line-height: 19.5px;
  letter-spacing: 1.04px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  transition: background-color 0.24s ease, box-shadow 0.24s ease;
}

.start-step-card__cta:hover,
.start-step-card__cta:focus-visible {
  background: var(--accent);
  box-shadow: 0 12px 28px rgba(5, 117, 255, 0.18);
}

.start-step-card__divider-row {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.start-step-card__divider-line {
  flex: 1 1 auto;
  height: 1px;
  background: #efeff1;
}

.start-step-card__divider-text {
  color: #d1d5dc;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
}

.start-step-card__messengers {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.start-step-card__messenger {
  min-height: 46px;
  border: 1.203px solid #efeff1;
  border-radius: 12px;
  background: #f9fafb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  color: #1b1b1b;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  line-height: 19.5px;
  font-weight: 600;
}

.start-step-card__messenger img {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  object-fit: contain;
}

.start-step-card__meeting {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.start-step-card__duration {
  min-height: 35px;
  width: fit-content;
  max-width: 100%;
  padding: 8px 14px 9px;
  border: 0.601px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.48px;
  font-weight: 600;
}

.start-step-card__status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00ff00;
  flex: 0 0 auto;
}

.start-step-card__meeting-card {
  min-height: 69px;
  border: 0.601px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}

.start-step-card__meeting-icon-wrap {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
}

.start-step-card__meeting-icon-wrap img {
  width: 40px;
  height: 40px;
}

.start-step-card__meeting-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.start-step-card__meeting-title {
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 21px;
  font-weight: 700;
}

.start-step-card__meeting-subtitle {
  color: rgba(255, 255, 255, 0.4);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
}

.start-step-card__agreement {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.start-step-card__launch-card {
  width: 156px;
  min-width: 156px;
  min-height: 68px;
  padding: 11px 15px 12px;
  border: 1.203px solid #efeff1;
  border-radius: 12px;
  background: #f9fafb;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.start-step-card__launch-label {
  color: #9ca3af;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  line-height: 16.5px;
  letter-spacing: 0.66px;
  font-weight: 600;
  text-transform: uppercase;
}

.start-step-card__launch-value {
  color: #1b1b1b;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: -0.54px;
  font-weight: 800;
}

.start-step-card__document {
  width: 120px;
  height: 90px;
  flex: 0 0 120px;
  padding: 10px 12px 12px;
  border: 1.203px solid #efeff1;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.start-step-card__document-title {
  width: 66px;
  height: 4px;
  border-radius: 3px;
  background: #1b1b1b;
}

.start-step-card__document-line {
  height: 2px;
  margin-top: 6px;
  border-radius: 2px;
  background: #efeff1;
}

.start-step-card__document-line--long {
  width: 84px;
}

.start-step-card__document-line--medium {
  width: 75px;
}

.start-step-card__document-line--wide {
  width: 80px;
}

.start-step-card__document-line--short {
  width: 56px;
}

.start-step-card__document-divider {
  width: 94px;
  height: 1px;
  margin-top: 10px;
  background: #efeff1;
}

.start-step-card__document-actions {
  width: 94px;
  margin-top: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.start-step-card__document-action {
  height: 14px;
  border-radius: 4px;
}

.start-step-card__document-action--muted {
  width: 28px;
  background: #d1d5dc;
}

.start-step-card__document-action--accent {
  width: 28px;
  background: #0575ff;
}

.faq-section {
  width: min(100%, var(--section-shell-width));
  margin: 0 auto;
  padding: 0 40px;
}

.faq-panel {
  overflow: hidden;
  border-radius: 40px;
  background: var(--white);
}

.faq-panel__header {
  min-height: 251px;
  padding: 56px 80px 54px;
  border-bottom: 1.203px solid #efeff1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, var(--section-side-copy-width));
  align-items: end;
}

.faq-panel__heading {
  max-width: 700px;
}

.faq-panel__eyebrow {
  min-height: 40px;
  width: fit-content;
  padding: 0 20px;
  border-radius: 40px;
  background: #efeff1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1b1b1b;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  line-height: 19.5px;
  letter-spacing: 1.3px;
  font-weight: 600;
  text-transform: uppercase;
}

.faq-panel__eyebrow-mark {
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: #1b1b1b;
  flex: 0 0 auto;
}

.faq-panel__title {
  margin: 60px 0 0;
  color: #1b1b1b;
  font-family: "Manrope", sans-serif;
  font-size: 60px;
  line-height: 58.8px;
  letter-spacing: -1.96px;
  font-weight: 800;
}

.faq-panel__aside {
  width: 100%;
  max-width: var(--section-side-copy-width);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.faq-panel__intro {
  margin: 0;
  color: rgba(27, 27, 27, 0.55);
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 33px;
  font-weight: 500;
}

.faq-panel__button {
  width: 211px;
  min-height: 52px;
  padding: 0 12px 0 24px;
  border-radius: 14px;
  background: #1b1b1b;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--white);
  transition: filter 0.2s ease, background-color 0.24s ease, box-shadow 0.24s ease;
}

.faq-panel__button:hover,
.faq-panel__button:focus-visible {
  filter: none;
  background: var(--accent);
  box-shadow: 0 12px 28px rgba(5, 117, 255, 0.2);
}

.faq-panel__button-label {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  line-height: 19.5px;
  letter-spacing: 1.04px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.faq-panel__button-icon-wrap {
  width: 28px;
  min-width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.faq-panel__button-icon {
  width: 28px;
  height: 28px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.24s ease;
}

.faq-panel__button-icon img {
  width: 16px;
  height: 16px;
  transform: rotate(-45deg);
  transition: transform 0.24s ease;
}

.faq-panel__button:hover .faq-panel__button-icon,
.faq-panel__button:focus-visible .faq-panel__button-icon {
  background: rgba(2, 21, 46, 0.2);
}

.faq-panel__button:hover .faq-panel__button-icon img,
.faq-panel__button:focus-visible .faq-panel__button-icon img {
  transform: rotate(0deg);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1.203px solid #efeff1;
  background: var(--white);
}

.faq-item.is-open {
  background: #faf9ff;
}

.faq-item__button {
  width: 100%;
  min-height: 92px;
  padding: 28px 80px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.faq-item__button-main {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.faq-item__number {
  flex: 0 0 auto;
  color: var(--accent);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  line-height: 19.5px;
  letter-spacing: 0.78px;
  font-weight: 800;
}

.faq-item.is-open .faq-item__number {
  color: var(--accent);
}

.faq-item__question {
  min-width: 0;
  color: #1b1b1b;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 24.3px;
  letter-spacing: -0.36px;
  font-weight: 700;
}

.faq-item__control {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border: 1.203px solid #e5e7eb;
  border-radius: 10px;
  background: #f3f4f6;
  position: relative;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.faq-item.is-open .faq-item__control {
  border-color: #0575ff;
  background: #0575ff;
}

.faq-item__control-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  border-radius: 2px;
  background: #1b1b1b;
  transform-origin: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.faq-item__control-line--horizontal {
  transform: translate(-50%, -50%);
}

.faq-item__control-line--vertical {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-item__control-line {
  background: var(--white);
}

.faq-item.is-open .faq-item__control-line--horizontal {
  transform: translate(-50%, -50%) rotate(45deg);
}

.faq-item.is-open .faq-item__control-line--vertical {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.faq-item__panel {
  padding: 0 80px 28px 136px;
}

.faq-item__answer {
  max-width: 1607px;
  margin: 0;
  color: #4a5565;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 27.2px;
  font-weight: 500;
}

.blog-section {
  width: min(100%, var(--section-shell-width));
  margin: 0 auto;
  padding: 0 40px;
}

.blog-panel {
  border-radius: 40px;
  background: var(--white);
  padding: 52px 40px 40px;
}

.blog-panel__eyebrow {
  min-height: 40px;
  width: fit-content;
  padding: 0 21px 0 20px;
  border-radius: 40px;
  background: #efeff1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1b1b1b;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.6px;
  font-weight: 500;
}

.blog-panel__eyebrow-mark {
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: #1b1b1b;
  flex: 0 0 auto;
}

.blog-panel__title {
  margin: 37px 0 0;
  color: #1b1b1b;
  font-family: "Manrope", sans-serif;
  font-size: 60px;
  line-height: 81px;
  letter-spacing: -5.4px;
  font-weight: 600;
}

.blog-panel__title span {
  color: var(--accent);
}

.blog-panel__featured-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.blog-card,
.blog-more-card,
.blog-social-card {
  transition: filter 0.2s ease, transform 0.2s ease;
}

.blog-card:hover,
.blog-card:focus-visible,
.blog-more-card:hover,
.blog-more-card:focus-visible,
.blog-social-card:hover,
.blog-social-card:focus-visible {
  filter: brightness(1.02);
}

.blog-card {
  min-height: 654px;
  border-radius: 40px;
  overflow: hidden;
  background: #efeff1;
  display: flex;
  flex-direction: column;
}

.blog-card__media {
  height: 365px;
  overflow: hidden;
  background: #d8ecf7;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__content {
  flex: 1 1 auto;
  padding: 22px 35px 35px;
  display: flex;
  flex-direction: column;
}

.blog-card__date {
  color: rgba(27, 27, 27, 0.5);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

.blog-card__title {
  margin: 15px 0 0;
  color: #1b1b1b;
  font-family: "Manrope", sans-serif;
  font-size: 36px;
  line-height: 36px;
  letter-spacing: -1.08px;
  font-weight: 600;
}

.blog-card__meta {
  margin-top: auto;
  padding-top: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.blog-card__meta-group {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.blog-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(27, 27, 27, 0.5);
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.6px;
  font-weight: 500;
}

.blog-card__meta-item img {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.blog-more-card {
  position: relative;
  min-height: 654px;
  border-radius: 40px;
  overflow: hidden;
  background: #efeff1;
  display: block;
}

.blog-more-card__copy {
  position: relative;
  z-index: 2;
  padding: 40px 39px;
}

.blog-more-card__title {
  max-width: 280px;
  margin: 0;
  color: #1b1b1b;
  font-family: "Manrope", sans-serif;
  font-size: 36px;
  line-height: 36px;
  letter-spacing: -1.08px;
  font-weight: 600;
}

.blog-more-card__arrow {
  position: absolute;
  top: 35px;
  right: 38px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #1b1b1b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.24s ease, box-shadow 0.24s ease;
}

.blog-more-card__arrow img {
  width: 21px;
  height: 21px;
  transform: rotate(-45deg);
  transition: transform 0.24s ease;
}

.blog-more-card:hover .blog-more-card__arrow,
.blog-more-card:focus-visible .blog-more-card__arrow {
  background: var(--accent);
  box-shadow: 0 12px 28px rgba(5, 117, 255, 0.22);
}

.blog-more-card:hover .blog-more-card__arrow img,
.blog-more-card:focus-visible .blog-more-card__arrow img {
  transform: rotate(0deg);
}

.blog-more-card__visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.blog-more-card__visual img {
  position: absolute;
  right: -388px;
  bottom: -201px;
  width: 1265px;
  max-width: none;
  transform: rotate(-0.42deg);
}

.blog-social-grid {
  margin-top: 23px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
}

.blog-social-card {
  min-height: 242px;
  border-radius: 40px;
  background: #efeff1;
  padding: 29px 40px 31px;
  display: flex;
  flex-direction: column;
}

.blog-social-card__title {
  color: #1b1b1b;
  font-family: "Manrope", sans-serif;
  font-size: 60px;
  line-height: 54px;
  letter-spacing: -3.6px;
  font-weight: 600;
}

.blog-social-card__legal {
  max-width: 297px;
  margin-top: 18px;
  color: rgba(45, 45, 45, 0.5);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  line-height: 16.8px;
  letter-spacing: -0.36px;
  font-weight: 500;
}

.blog-social-card__name {
  margin-top: auto;
  color: rgba(27, 27, 27, 0.7);
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.6px;
  font-weight: 500;
}

.services-footer-section {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #1b1b1b;
}

.services-footer-panel {
  background: #1b1b1b;
  overflow: hidden;
}

.services-footer__shell {
  width: min(100%, var(--section-shell-width));
  margin: 0 auto;
  padding: 48px 40px 36px;
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 36px 56px;
  align-items: start;
}

.services-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.services-footer__brand-link {
  display: inline-flex;
  width: max-content;
}

.services-footer__brand-link img {
  width: 146px;
  height: 56px;
}

.services-footer__brand-copy {
  margin: 0;
  max-width: 292px;
  color: rgba(239, 239, 241, 0.72);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3px;
  font-weight: 500;
}

.services-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.services-footer__social-link {
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.services-footer__social-link:hover,
.services-footer__social-link:focus-visible {
  opacity: 0.72;
  transform: translateY(-1px);
}

.services-footer__social-link img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.services-footer__email {
  width: max-content;
  color: rgba(239, 239, 241, 0.84);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.4px;
  font-weight: 600;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.services-footer__email:hover,
.services-footer__email:focus-visible {
  color: #efeff1;
  opacity: 0.72;
}

.services-footer__services {
  width: 100%;
  max-width: none;
}

.services-footer__content {
  margin-top: 18px;
}

.services-footer__menu {
  width: 100%;
}

.services-footer__menu-block {
  width: 100%;
}

.services-footer__title {
  margin: 0;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.9px;
  font-weight: 700;
}

.services-footer__list {
  width: 100%;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, max-content);
  justify-content: space-between;
  gap: 12px 18px;
}

.services-footer__item {
  min-width: 0;
}

.services-footer__menu-link {
  color: rgba(239, 239, 241, 0.8);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.4px;
  font-weight: 500;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.services-footer__menu-link:hover,
.services-footer__menu-link:focus-visible {
  color: #efeff1;
  opacity: 0.72;
}

.services-footer__legal {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.services-footer__legal-link {
  color: rgba(239, 239, 241, 0.8);
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  line-height: 24px;
  letter-spacing: -0.34px;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.services-footer__legal-link:hover,
.services-footer__legal-link:focus-visible {
  opacity: 0.72;
}

@media (max-width: 1620px) {
  .hero-header {
    padding-inline: 24px;
  }

  .header-shell {
    width: 100%;
    padding: 0 24px;
    column-gap: 28px;
    border-radius: 28px;
  }

  .header-panel {
    column-gap: 22px;
  }

  .site-nav {
    max-width: none;
    padding: 0;
  }

  .site-nav__list {
    gap: 32px;
  }

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

  .header-actions {
    gap: 14px;
  }

  .contact-links {
    gap: 10px;
    padding-left: 14px;
  }

  .social-link,
  .social-link img {
    width: 36px;
    height: 36px;
  }

  .cta-group {
    gap: 10px;
  }

  .cta-button {
    gap: 12px;
    min-height: 50px;
    padding-left: 16px;
  }

  .cta-button--demo {
    min-width: 188px;
  }

  .cta-button--project {
    min-width: 206px;
  }

  .cta-button__label {
    font-size: 13px;
    letter-spacing: 0.48px;
  }

  .cta-button__icon-wrap {
    width: 46px;
    min-width: 46px;
    height: 46px;
  }

  .cta-button__icon {
    width: 34px;
    height: 34px;
  }

  .hero-intro {
    padding: 0 24px;
  }

  .hero-intro__card,
  .hero-intro__content {
    min-height: 780px;
  }

  .hero-intro__visual--figma {
    display: none;
  }

  .hero-intro__visual--adaptive {
    display: block;
    top: -168px;
    right: -705px;
    width: 1715px;
  }

  .hero-intro__title {
    width: 1260px;
    font-size: 92px;
    line-height: 92px;
    letter-spacing: -5.2px;
  }

  .problem-panel {
    padding: 0 24px;
  }

  .problem-panel__card {
    width: 100%;
  }

  .problem-panel__header {
    grid-template-columns: minmax(0, 1fr) 520px;
    padding: 48px 48px 44px;
  }

  .problem-panel__title {
    font-size: 52px;
    line-height: 56px;
  }

  .problem-panel__item {
    grid-template-columns: 220px 300px 1px minmax(0, 1fr);
    padding: 0 48px;
  }

  .problem-panel__item-title {
    font-size: 24px;
  }

  .subscription-panel {
    padding: 0 24px;
  }

  .subscription-panel__bg-object {
    top: -122px;
    left: -364px;
    width: 488px;
  }

  .subscription-panel__card {
    width: 100%;
  }

  .subscription-panel__header {
    grid-template-columns: minmax(0, 1fr) 500px;
    padding: 48px;
  }

  .subscription-panel__title {
    font-size: 54px;
    line-height: 52px;
  }

  .subscription-card {
    padding: 40px 32px;
  }

  .subscription-card__title {
    font-size: 28px;
  }
}

@media (max-width: 1520px) {
  :root {
    --section-gap: 24px;
  }

  .header-shell {
    display: flex;
    width: 100%;
    height: auto;
    min-height: 88px;
    padding: 16px 24px;
    align-items: center;
  }

  .brand {
    min-width: 146px;
    width: 146px;
    height: 56px;
  }

  .brand img {
    margin-left: 0;
  }

  .menu-toggle {
    width: 60px;
    height: 60px;
    margin-left: auto;
    border: 0;
    border-radius: 50%;
    background: var(--button);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .menu-toggle span:not(.visually-hidden) {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--white);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

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

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

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

  .header-panel {
    grid-template-columns: 1fr;
    position: absolute;
    top: calc(100% + 8px);
    left: 24px;
    right: 24px;
    z-index: 10;
    padding: 24px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(22px);
    display: grid;
    gap: 24px;
    box-shadow: var(--mobile-shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .header-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav {
    max-width: none;
    padding: 0;
    justify-content: flex-start;
  }

  .site-nav__list {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .site-nav a {
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -0.72px;
  }

  .header-actions,
  .contact-links,
  .cta-group {
    width: 100%;
  }

  .header-actions {
    display: grid;
    gap: 24px;
  }

  .contact-links {
    flex-wrap: wrap;
    gap: 12px;
    padding-left: 0;
    border-left: 0;
  }

  .cta-group {
    display: grid;
    gap: 12px;
    margin-left: 0;
  }

  .cta-button,
  .cta-button--demo,
  .cta-button--project {
    width: 100%;
  }

  .page-content {
    padding-top: 0;
  }

  .hero-intro {
    padding: 0 24px;
  }

  .hero-intro__card,
  .hero-intro__content {
    min-height: 690px;
  }

  .hero-intro__content {
    padding: 42px 32px 36px;
  }

  .hero-intro__visual--adaptive {
    top: -165px;
    right: -574px;
    width: 1690px;
  }

  .hero-intro__title {
    width: 980px;
    font-size: 78px;
    line-height: 78px;
    letter-spacing: -4.2px;
  }

  .hero-intro__description {
    max-width: 620px;
    font-size: 17px;
    line-height: 28px;
  }

  .problem-panel__header {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
  }

  .problem-panel__lede {
    width: 100%;
    max-width: 680px;
    margin-left: 0;
    margin-top: 0;
  }

  .problem-panel__item {
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: start;
    gap: 0 28px;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .problem-panel__item-meta {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .problem-panel__item-title {
    grid-column: 2;
  }

  .problem-panel__divider {
    display: none;
  }

  .problem-panel__item-copy {
    grid-column: 2;
    padding-left: 0;
    padding-top: 18px;
  }

  .subscription-panel__header {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
  }

  .subscription-panel__lede {
    width: 100%;
    max-width: 720px;
    margin-top: 0;
  }

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

  .subscription-panel__bg-object {
    top: -108px;
    left: -304px;
    width: 404px;
  }

  .subscription-card {
    min-height: 0;
  }

  .subscription-card:nth-child(3n) {
    border-right: 1.203px solid #efeff1;
  }

  .subscription-card:nth-child(2n) {
    border-right: 0;
  }

  .subscription-card:nth-last-child(-n + 3) {
    min-height: 0;
    border-bottom: 1.203px solid #efeff1;
  }

  .subscription-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 1100px) {
  .hero-intro {
    padding: 0 20px;
  }

  .hero-intro__card,
  .hero-intro__content {
    min-height: 620px;
  }

  .hero-intro__content {
    padding: 34px 24px 30px;
  }

  .hero-intro__visual--adaptive {
    top: -119px;
    right: -414px;
    width: 1218px;
  }

  .hero-intro__title {
    width: 760px;
    font-size: 62px;
    line-height: 62px;
    letter-spacing: -3.2px;
  }

  .hero-intro__description {
    max-width: 520px;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: -0.32px;
  }

  .problem-panel {
    padding: 0 20px;
  }

  .subscription-panel__bg-object {
    top: -148px;
    left: -6px;
    width: 320px;
    opacity: 0.24;
  }

  .problem-panel__header {
    padding: 36px 24px 32px;
  }

  .problem-panel__title {
    font-size: 42px;
    line-height: 46px;
    letter-spacing: -1.7px;
  }

  .problem-panel__lede {
    max-width: none;
    margin-left: 0;
    font-size: 18px;
    line-height: 30px;
  }

  .problem-panel__item {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 24px;
  }

  .problem-panel__item-meta {
    grid-row: auto;
  }

  .problem-panel__item-title,
  .problem-panel__item-copy {
    grid-column: 1;
  }

  .subscription-panel {
    padding: 0 20px;
  }

  .subscription-panel__header {
    padding: 36px 24px 32px;
  }

  .subscription-panel__title {
    font-size: 42px;
    line-height: 42px;
    letter-spacing: -1.3px;
  }

  .subscription-panel__lede {
    max-width: none;
    font-size: 18px;
    line-height: 30px;
  }

  .subscription-panel__grid {
    grid-template-columns: 1fr;
  }

  .subscription-card,
  .subscription-card:nth-last-child(-n + 3) {
    min-height: 0;
    padding: 32px 24px;
    border-right: 0;
    border-bottom: 1.203px solid #efeff1;
  }

  .subscription-card:last-child {
    border-bottom: 0;
  }

  .subscription-card__title {
    font-size: 26px;
    line-height: 28px;
  }

  .subscription-card__copy p {
    font-size: 16px;
    line-height: 26px;
  }
}

@media (max-width: 767px) {
  .hero-header {
    padding-inline: 12px;
  }

  .header-shell {
    min-height: 76px;
    padding: 10px 12px;
    border-radius: 24px;
  }

  .brand {
    width: 124px;
    min-width: 124px;
    height: 48px;
  }

  .brand img {
    width: 124px;
    height: 48px;
  }

  .menu-toggle {
    width: 52px;
    height: 52px;
  }

  .header-panel {
    left: 12px;
    right: 12px;
    padding: 20px;
    border-radius: 28px;
  }

  .site-nav a {
    font-size: 20px;
    letter-spacing: -0.6px;
  }

  .cta-button {
    min-height: 56px;
    padding-left: 18px;
  }

  .page-content {
    padding: 0 0 36px;
  }

  .hero-intro__title br,
  .problem-panel__title br,
  .subscription-panel__title br,
  .comparison-main__title br,
  .testimonials-panel__title br,
  .plans-panel__title br,
  .start-steps-panel__title br,
  .subscription-card__title br {
    display: none;
  }

  .hero-intro__title,
  .problem-panel__title,
  .subscription-panel__title,
  .comparison-main__title,
  .testimonials-panel__title,
  .plans-panel__title,
  .start-steps-panel__title {
    text-wrap: balance;
  }

  .hero-intro {
    padding: 0 12px;
  }

  .hero-intro__card,
  .hero-intro__content {
    min-height: 720px;
  }

  .hero-intro__card {
    border-radius: 32px;
  }

  .hero-intro__content {
    padding: 24px 20px 24px;
  }

  .hero-intro__visual--adaptive {
    top: 180px;
    right: -378px;
    width: 1100px;
  }

  .hero-intro__visual--adaptive img {
    transform: rotate(90deg);
    transform-origin: center center;
  }

  .hero-intro__title {
    width: min(100%, 304px);
    max-width: 100%;
    font-size: 44px;
    line-height: 44px;
    letter-spacing: -1.8px;
  }

  .hero-intro__description {
    max-width: 100%;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: -0.26px;
  }

  .problem-panel {
    padding: 0 12px;
  }

  .problem-panel__card {
    border-radius: 32px;
    min-height: 0;
  }

  .problem-panel__header {
    padding: 24px 20px 28px;
    gap: 24px;
  }

  .problem-panel__eyebrow {
    min-height: 36px;
    padding: 0 16px;
    font-size: 12px;
    letter-spacing: 1.2px;
  }

  .problem-panel__title {
    font-size: 34px;
    line-height: 36px;
    letter-spacing: -1.4px;
  }

  .problem-panel__lede {
    font-size: 16px;
    line-height: 27px;
  }

  .problem-panel__carousel {
    padding: 0 20px 12px;
  }

  .problem-panel__list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overscroll-behavior-x: contain;
  }

  .problem-panel__list::-webkit-scrollbar {
    display: none;
  }

  .problem-panel__item,
  .problem-panel__item:last-child {
    flex: 0 0 100%;
    min-width: 100%;
    min-height: 0;
    padding: 24px 20px;
    scroll-snap-align: start;
    border: 1.203px solid #efeff1;
    border-radius: 24px;
  }

  .problem-panel__item-meta {
    gap: 14px;
  }

  .problem-panel__number {
    font-size: 58px;
    line-height: 58px;
    letter-spacing: -2px;
  }

  .problem-panel__icon-box {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 12px;
  }

  .problem-panel__icon {
    width: 20px;
    height: 20px;
  }

  .problem-panel__item-title {
    font-size: 24px;
    line-height: 29px;
    letter-spacing: -0.6px;
  }

  .problem-panel__item-copy {
    font-size: 16px;
    line-height: 25px;
  }

  .problem-panel__pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
  }

  .problem-panel__pagination-button {
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    border-radius: 999px;
    background: rgba(5, 117, 255, 0.18);
    transition: width 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
  }

  .problem-panel__pagination-button.is-active {
    width: 28px;
    background: var(--accent);
  }

  .subscription-panel {
    padding: 0 12px;
  }

  .subscription-panel__bg-object {
    top: -104px;
    left: -76px;
    width: 252px;
  }

  .subscription-panel__card {
    border-radius: 32px;
    min-height: 0;
  }

  .subscription-panel__header {
    padding: 24px 20px 28px;
    gap: 24px;
  }

  .subscription-panel__eyebrow {
    min-height: 36px;
    padding: 0 16px;
    font-size: 12px;
    letter-spacing: 1.2px;
  }

  .subscription-panel__title {
    font-size: 34px;
    line-height: 34px;
    letter-spacing: -1px;
  }

  .subscription-panel__lede {
    font-size: 16px;
    line-height: 27px;
  }

  .subscription-panel__carousel {
    padding: 0 20px 12px;
  }

  .subscription-panel__grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overscroll-behavior-x: contain;
  }

  .subscription-panel__grid::-webkit-scrollbar {
    display: none;
  }

  .subscription-card,
  .subscription-card:nth-last-child(-n + 3) {
    flex: 0 0 100%;
    min-width: 100%;
    min-height: 0;
    padding: 24px 20px;
    scroll-snap-align: start;
    border: 1.203px solid #efeff1;
    border-radius: 24px;
  }

  .subscription-card:last-child {
    border-bottom: 1.203px solid #efeff1;
  }

  .subscription-card__top {
    min-height: 58px;
  }

  .subscription-card__number {
    font-size: 54px;
    line-height: 54px;
    letter-spacing: -2px;
  }

  .subscription-card__tag {
    min-height: 24px;
    font-size: 10px;
    letter-spacing: 1px;
  }

  .subscription-card__title {
    margin-top: 16px;
    font-size: 24px;
    line-height: 26px;
  }

  .subscription-card__rule,
  .subscription-card__copy {
    margin-top: 16px;
  }

  .subscription-card__copy p {
    font-size: 15px;
    line-height: 24px;
  }

  .subscription-panel__pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
  }

  .subscription-panel__pagination-button {
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    border-radius: 999px;
    background: rgba(5, 117, 255, 0.18);
    transition: width 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
  }

  .subscription-panel__pagination-button.is-active {
    width: 28px;
    background: var(--accent);
  }
}

@media (max-width: 479px) {
  .subscription-panel__bg-object {
    top: -92px;
    left: -66px;
    width: 220px;
  }

  .hero-intro__card,
  .hero-intro__content {
    min-height: 660px;
  }

  .hero-intro__visual--adaptive {
    top: 178px;
    right: -284px;
    width: 920px;
  }

  .hero-intro__title {
    width: min(100%, 260px);
    font-size: 36px;
    line-height: 36px;
    letter-spacing: -1.5px;
  }

  .hero-intro__description {
    font-size: 14px;
    line-height: 22px;
  }

  .problem-panel__title,
  .subscription-panel__title,
  .comparison-main__title,
  .testimonials-panel__title,
  .plans-panel__title,
  .start-steps-panel__title,
  .blog-panel__title,
  .faq-panel__title {
    text-wrap: balance;
  }
}

@media (max-width: 1620px) {
  .visibility-cta {
    padding: 0 24px;
  }

  .visibility-cta__card {
    width: 100%;
    padding: 32px 48px;
  }

  .visibility-cta__content {
    width: auto;
    max-width: 760px;
  }
}

@media (max-width: 1100px) {
  .visibility-cta {
    padding: 0 20px;
  }

  .visibility-cta__card {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 24px;
  }

  .visibility-cta__content {
    max-width: 100%;
  }

  .visibility-cta__title {
    font-size: 20px;
    line-height: 28px;
  }
}

@media (max-width: 767px) {
  .visibility-cta {
    padding: 0 12px;
  }

  .visibility-cta__card {
    padding: 24px 20px;
    border-radius: 32px;
    gap: 20px;
  }

  .visibility-cta__title {
    font-size: 18px;
    line-height: 25px;
    letter-spacing: -0.4px;
  }

  .visibility-cta__text {
    font-size: 14px;
    line-height: 22px;
  }

  .visibility-cta__button {
    width: 100%;
    min-width: 0;
    justify-content: space-between;
    padding: 0 20px;
  }

  .visibility-cta__button-label {
    text-align: left;
    font-size: 13px;
    letter-spacing: 1px;
  }
}

@media (max-width: 479px) {
  .visibility-cta__button {
    gap: 8px;
  }

  .visibility-cta__button-label {
    font-size: 12px;
  }
}

@media (max-width: 1620px) {
  .cases-section {
    padding: 0 24px;
  }

  .cases-section__shell {
    width: 100%;
    padding: 20px 40px 60px;
  }

  .cases-section__header-row {
    margin-top: 20px;
    padding-bottom: 40px;
  }

  .cases-section__title {
    font-size: 70px;
    line-height: 63px;
    letter-spacing: -4.2px;
  }

  .cases-section__button {
    width: 188px;
    min-width: 188px;
    height: 72px;
    padding-left: 30px;
  }

  .cases-section__list {
    gap: 150px;
  }

  .case-row {
    height: 642px;
    max-height: calc(100vh - 220px);
    grid-template-columns: 496fr 744fr;
    gap: 40px;
    top: 205px;
  }

  .case-row__info,
  .case-row__visual {
    min-height: 100%;
  }

  .case-row__client {
    font-size: 32px;
    line-height: 32px;
  }

  .case-row__task {
    margin-top: 32px;
    font-size: 18px;
    line-height: 26px;
  }

  .case-row__visual-title {
    font-size: 52px;
    line-height: 48px;
    letter-spacing: -2.6px;
  }

  .case-row__ticker-track {
    font-size: 15px;
  }

  .case-row__image-wrap {
    min-height: 472px;
  }

  .case-metrics__name,
  .case-metrics__value,
  .case-metrics__group-title,
  .case-metrics__cell-value {
    font-size: 18px;
    line-height: 26px;
  }
}

@media (max-width: 1100px) {
  .cases-section__header,
  .case-row {
    position: relative;
    top: auto;
    z-index: auto;
  }

  .cases-section {
    padding: 0 20px;
  }

  .cases-section__shell {
    padding: 24px 24px 20px;
  }

  .cases-section__header {
    width: auto !important;
    left: auto !important;
    bottom: auto !important;
    padding-top: 0;
  }

  .cases-section__header-row {
    margin-top: 32px;
    padding-bottom: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .cases-section__title {
    font-size: 60px;
    line-height: 56px;
    letter-spacing: -3px;
  }

  .cases-section__button {
    width: auto;
    min-width: 196px;
  }

  .cases-section__list {
    margin-top: 32px;
    gap: 56px;
  }

  .case-row {
    height: auto;
    max-height: none;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .case-row__info,
  .case-row__visual {
    min-height: 0;
  }

  .case-row__info {
    padding: 32px 28px;
  }

  .case-row__visual-title {
    padding: 26px 28px 24px;
    font-size: 44px;
    line-height: 42px;
    letter-spacing: -2px;
  }

  .case-row__ticker {
    height: 52px;
  }

  .case-row__image-wrap {
    min-height: 460px;
  }
}

@media (max-width: 767px) {
  .cases-section {
    padding: 0 12px;
  }

  .cases-section__shell {
    padding: 20px 12px 12px;
    border-radius: 32px;
  }

  .cases-section__header {
    padding-top: 0;
  }

  .cases-section__eyebrow {
    width: 92px;
    height: 40px;
    font-size: 12px;
  }

  .cases-section__header-row {
    margin-top: 24px;
    padding-bottom: 0;
    gap: 20px;
  }

  .cases-section__title {
    font-size: 48px;
    line-height: 44px;
    letter-spacing: -2.6px;
  }

  .cases-section__button {
    width: 100%;
    min-width: 0;
    height: 64px;
    padding: 0 12px 0 20px;
  }

  .cases-section__button-label {
    font-size: 14px;
  }

  .cases-section__list {
    margin-top: 28px;
    gap: 36px;
  }

  .case-row {
    gap: 12px;
  }

  .case-row__info,
  .case-row__visual {
    border-radius: 32px;
  }

  .case-row__info {
    padding: 24px 20px;
  }

  .case-row__brand {
    gap: 16px;
  }

  .case-row__logo {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
  }

  .case-row__client {
    margin-top: 4px;
    font-size: 24px;
    line-height: 24px;
    letter-spacing: -0.72px;
  }

  .case-row__task {
    margin-top: 24px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.48px;
  }

  .case-metrics--simple {
    margin-top: 24px;
  }

  .case-metrics__line {
    flex-direction: column;
    gap: 8px;
    padding-bottom: 20px;
  }

  .case-metrics__value {
    text-align: left;
  }

  .case-row__link {
    padding-top: 28px;
  }

  .case-row__link-label {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -0.72px;
  }

  .case-row__link-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }

  .case-row__visual-title {
    padding: 24px 20px 20px;
    font-size: 36px;
    line-height: 34px;
    letter-spacing: -1.6px;
  }

  .case-row__headline-break {
    display: none;
  }

  .case-row__ticker {
    height: 48px;
  }

  .case-row__ticker-track {
    gap: 18px;
    font-size: 14px;
  }

  .case-row__image-wrap {
    min-height: 320px;
  }

  .case-metrics__name,
  .case-metrics__value,
  .case-metrics__group-title,
  .case-metrics__cell-value {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.48px;
  }

  .case-metrics__cell-note {
    font-size: 14px;
    line-height: 18px;
  }

  .case-metrics__triple {
    gap: 12px;
  }

  .case-metrics__cell-value img {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }
}

@media (max-width: 479px) {
  .cases-section__title {
    font-size: 38px;
    line-height: 36px;
    letter-spacing: -1.8px;
  }

  .cases-section__button-label {
    font-size: 13px;
  }

  .case-row__client {
    font-size: 22px;
    line-height: 22px;
  }

  .case-row__task {
    font-size: 15px;
    line-height: 22px;
  }

  .case-row__visual-title {
    font-size: 30px;
    line-height: 30px;
    letter-spacing: -1.2px;
  }

  .case-row__image-wrap {
    min-height: 260px;
  }

  .case-metrics__triple {
    gap: 8px;
  }

  .case-metrics__cell-value {
    font-size: 15px;
    line-height: 20px;
    letter-spacing: -0.3px;
  }

  .case-metrics__cell-note {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.24px;
  }
}

@media (max-width: 1620px) {
  .comparison-section {
    padding: 0 24px;
  }

  .comparison-main__header {
    padding: 48px 56px 44px;
    gap: 40px;
  }

  .comparison-main__title {
    margin-top: 44px;
    font-size: 52px;
    line-height: 52px;
    letter-spacing: -1.6px;
  }

  .comparison-main__lede {
    width: 400px;
    margin-top: 24px;
    font-size: 16px;
    line-height: 27px;
  }

  .comparison-legacy,
  .comparison-plan {
    padding: 40px 56px 28px;
  }

  .comparison-summary {
    padding: 32px 56px;
  }

  .comparison-summary__text {
    font-size: 18px;
    line-height: 30px;
  }
}

@media (max-width: 1100px) {
  .comparison-section {
    padding: 0 20px;
  }

  .comparison-main__header {
    min-height: 0;
    padding: 40px 24px 36px;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .comparison-main__heading,
  .comparison-main__lede {
    max-width: 100%;
    width: 100%;
  }

  .comparison-main__title {
    margin-top: 36px;
    font-size: 48px;
    line-height: 48px;
  }

  .comparison-main__lede {
    margin-top: 0;
  }

  .comparison-main__body {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .comparison-legacy,
  .comparison-plan {
    min-height: 0;
    padding: 36px 24px 28px;
  }

  .comparison-legacy {
    border-right: 0;
    border-bottom: 1.203px solid #efeff1;
  }

  .comparison-summary {
    min-height: 0;
    padding: 32px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .comparison-summary__content {
    max-width: 100%;
  }

  .comparison-summary__savings {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 767px) {
  .comparison-section {
    padding: 0 12px;
  }

  .comparison-main,
  .comparison-summary {
    border-radius: 32px;
  }

  .comparison-main__header {
    padding: 24px 20px 28px;
  }

  .comparison-main__eyebrow {
    min-width: 132px;
    min-height: 36px;
    padding: 0 16px;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1px;
  }

  .comparison-main__title {
    margin-top: 28px;
    font-size: 40px;
    line-height: 40px;
    letter-spacing: -1.2px;
  }

  .comparison-main__lede {
    font-size: 16px;
    line-height: 25px;
  }

  .comparison-mobile-table {
    display: none;
  }

  .comparison-mobile-table__hint {
    margin-bottom: 12px;
    min-height: 42px;
    padding: 0 14px 0 16px;
    border: 1px solid rgba(30, 108, 255, 0.14);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(30, 108, 255, 0.06);
    color: #1e6cff;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.36px;
    font-weight: 800;
    text-transform: uppercase;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .comparison-mobile-table__hint-arrow {
    font-size: 18px;
    line-height: 1;
  }

  .comparison-mobile-table__frame::after {
    width: 72px;
  }

  .comparison-mobile-table__edge-indicator {
    position: absolute;
    top: 18px;
    right: 10px;
    z-index: 4;
    width: 36px;
    height: 88px;
    border-radius: 999px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 24px rgba(27, 27, 27, 0.08);
    color: #1e6cff;
    opacity: 0;
    transform: translateX(8px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .comparison-mobile-table__edge-indicator-line {
    width: 2px;
    height: 28px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(30, 108, 255, 0.15) 0%, #1e6cff 100%);
  }

  .comparison-mobile-table__edge-indicator-arrow {
    font-size: 18px;
    line-height: 1;
    font-weight: 800;
  }

  .comparison-mobile-table.is-scrollable:not(.is-scroll-end) .comparison-mobile-table__frame::after,
  .comparison-mobile-table.is-scrollable:not(.is-scroll-end) .comparison-mobile-table__edge-indicator {
    opacity: 1;
    transform: translateX(0);
  }

  .comparison-mobile-table.is-scrolled .comparison-mobile-table__hint,
  .comparison-mobile-table.is-scroll-end .comparison-mobile-table__hint {
    opacity: 0;
    transform: translateY(-4px);
  }

  .comparison-mobile-table.is-hinting .comparison-mobile-table__hint-arrow,
  .comparison-mobile-table.is-hinting .comparison-mobile-table__edge-indicator-arrow {
    animation: comparison-mobile-table-swipe 850ms ease-in-out 1;
  }

  .comparison-mobile-table__table {
    min-width: 620px;
  }

  .comparison-main__body {
    display: grid;
  }

  .comparison-legacy__title,
  .comparison-plan__title {
    margin-top: 24px;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -0.6px;
  }

  .comparison-legacy__rule,
  .comparison-plan__rule {
    margin-top: 20px;
  }

  .comparison-legacy__list,
  .comparison-plan__list {
    margin-top: 20px;
  }

  .comparison-legacy__item {
    min-height: 72px;
    padding: 14px 0;
  }

  .comparison-legacy__item-name,
  .comparison-plan__item-label,
  .comparison-legacy__amount {
    font-size: 15px;
    line-height: 22px;
  }

  .comparison-legacy__period {
    font-size: 11px;
    line-height: 16px;
  }

  .comparison-plan__header {
    flex-wrap: wrap;
    gap: 16px;
  }

  .comparison-plan__badge {
    min-height: 30px;
    font-size: 10px;
  }

  .comparison-plan__item {
    min-height: 56px;
    padding: 14px 0;
    gap: 14px;
  }

  .comparison-plan__stats {
    gap: 12px;
  }

  .comparison-plan__stat {
    min-height: 80px;
    padding: 14px 16px;
  }

  .comparison-legacy__total-value,
  .comparison-plan__stat-value {
    font-size: 20px;
    line-height: 28px;
  }

  .comparison-legacy__note,
  .comparison-plan__note {
    padding: 10px 14px;
  }

  .comparison-summary {
    padding: 24px 20px;
  }

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

  .comparison-summary__savings {
    min-height: 128px;
    border-radius: 20px;
  }

  .comparison-summary__savings-value {
    font-size: 28px;
    line-height: 36px;
  }
}

@keyframes comparison-mobile-table-swipe {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(6px);
  }
}

@media (max-width: 479px) {
  .comparison-main__title {
    font-size: 34px;
    line-height: 34px;
    letter-spacing: -1px;
  }

  .comparison-main__lede {
    font-size: 15px;
    line-height: 23px;
  }

  .comparison-legacy__item {
    flex-direction: column;
    gap: 8px;
  }

  .comparison-legacy__item-price {
    align-items: flex-start;
    text-align: left;
  }

  .comparison-legacy__total-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .comparison-plan__stats {
    grid-template-columns: 1fr;
  }

  .comparison-summary__text {
    font-size: 16px;
    line-height: 26px;
  }

  .comparison-summary__savings-value {
    font-size: 26px;
    line-height: 34px;
  }
}

@media (max-width: 1620px) {
  .proof-pricing-section {
    padding: 0 24px;
  }

  .testimonials-panel__header,
  .plans-panel__header {
    padding-left: 56px;
    padding-right: 56px;
  }

  .video-reviews-grid,
  .pricing-grid {
    padding-left: 56px;
    padding-right: 56px;
  }

  .testimonials-panel__title,
  .plans-panel__title {
    font-size: 52px;
    line-height: 52px;
    letter-spacing: -1.6px;
  }
}

@media (max-width: 1400px) {
  .testimonials-panel__header,
  .plans-panel__header {
    padding-left: 32px;
    padding-right: 32px;
    gap: 32px;
  }

  .video-reviews-grid {
    padding: 40px 32px 48px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plans-panel__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-grid {
    padding: 40px 32px 48px;
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: 0;
  }
}

@media (max-width: 1100px) {
  .proof-pricing-section {
    padding: 0 20px;
  }

  .testimonials-panel__header,
  .plans-panel__header {
    min-height: 0;
    padding: 40px 24px 32px;
  }

  .testimonials-panel__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonials-panel__stats {
    width: 100%;
    max-width: 420px;
  }

  .video-reviews-grid,
  .pricing-grid {
    padding: 32px 24px 40px;
  }

  .testimonials-panel__title,
  .plans-panel__title {
    margin-top: 40px;
    font-size: 44px;
    line-height: 44px;
    letter-spacing: -1.2px;
  }

}

@media (max-width: 767px) {
  .proof-pricing-section {
    padding: 0 12px;
  }

  .proof-pricing-section__stack {
    gap: var(--section-gap);
  }

  .testimonials-panel,
  .plans-panel {
    border-radius: 32px;
  }

  .testimonials-panel__header,
  .plans-panel__header {
    padding: 24px 20px 24px;
  }

  .testimonials-panel__eyebrow,
  .plans-panel__eyebrow {
    min-height: 36px;
    padding: 0 16px;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1px;
  }

  .testimonials-panel__title,
  .plans-panel__title {
    margin-top: 28px;
    font-size: 38px;
    line-height: 38px;
    letter-spacing: -1px;
  }

  .testimonials-panel__stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .testimonials-panel__stat {
    min-height: 100px;
    padding: 18px 16px;
  }

  .testimonials-panel__stat-value {
    font-size: 28px;
    line-height: 38px;
  }

  .testimonials-panel__stat-label {
    font-size: 13px;
    line-height: 18px;
  }

  .video-reviews-grid,
  .pricing-grid {
    padding: 24px 20px 24px;
  }

  .video-reviews-carousel {
    padding: 24px 20px 24px;
  }

  .video-reviews-grid {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    padding: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overscroll-behavior-x: contain;
  }

  .video-reviews-grid::-webkit-scrollbar {
    display: none;
  }

  .video-review-card {
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: start;
  }

  .video-reviews-carousel__pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }

  .video-reviews-carousel__pagination-button {
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    border-radius: 999px;
    background: rgba(5, 117, 255, 0.18);
    transition: width 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
  }

  .video-reviews-carousel__pagination-button.is-active {
    width: 28px;
    background: var(--accent);
  }

  .video-review-card__content {
    padding: 20px;
  }

  .video-review-card__quote {
    min-height: 0;
    font-size: 14px;
    line-height: 22px;
  }

  .video-review-card__role {
    font-size: 12px;
    line-height: 18px;
  }

  .pricing-card {
    border-radius: 24px;
  }

  .pricing-card__head,
  .pricing-card--featured .pricing-card__head {
    min-height: 0;
    padding: 28px 20px 24px;
  }

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

  .pricing-card__offer-row {
    margin-top: 14px;
    gap: 8px;
  }

  .pricing-card__old-price {
    font-size: 14px;
    line-height: 20px;
  }

  .pricing-card__discount {
    min-height: 26px;
    padding: 4px 9px;
    font-size: 11px;
    line-height: 16px;
  }

  .pricing-card__price {
    font-size: 40px;
    line-height: 40px;
    letter-spacing: -1.4px;
  }

  .pricing-card__period {
    font-size: 14px;
    line-height: 21px;
  }

  .pricing-card__description {
    font-size: 13px;
    line-height: 21px;
  }

  .pricing-card__features {
    padding: 20px;
    gap: 10px;
  }

  .pricing-card__feature {
    align-items: flex-start;
  }

  .pricing-card__feature > span:last-child {
    font-size: 13px;
    line-height: 20px;
  }

  .pricing-card__footer {
    padding: 0 20px 20px;
  }

  .pricing-card__button {
    margin-top: 20px;
  }
}

@media (max-width: 479px) {
  .testimonials-panel__title,
  .plans-panel__title {
    font-size: 32px;
    line-height: 32px;
  }

  .testimonials-panel__stats {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .video-review-card__media {
    height: 208px;
  }

  .pricing-card__price-row {
    flex-wrap: wrap;
    gap: 4px 8px;
  }

  .pricing-card__price {
    font-size: 34px;
    line-height: 34px;
  }

  .pricing-card__offer-row {
    gap: 6px;
  }

  .pricing-card__old-price {
    font-size: 13px;
  }

  .pricing-card__discount {
    min-height: 24px;
    padding: 3px 8px;
    font-size: 10px;
    line-height: 14px;
  }

  .pricing-card__badge {
    width: 112px;
    margin-left: -56px;
    font-size: 10px;
  }
}

@media (max-width: 1400px) {
  .start-steps-section {
    padding: 0 20px;
  }

  .start-steps-panel__header {
    padding: 56px 32px 48px;
    gap: 32px;
  }

  .start-steps-grid {
    padding: 40px 32px 48px;
  }

  .start-steps-panel__title {
    font-size: 52px;
    line-height: 52px;
    letter-spacing: -1.6px;
  }

  .start-step-card {
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media (max-width: 1100px) {
  .start-steps-panel__header {
    min-height: 0;
    padding: 40px 24px 32px;
    grid-template-columns: minmax(0, 1fr);
    align-items: flex-start;
  }

  .start-steps-panel__intro {
    width: 100%;
    max-width: 460px;
    padding-bottom: 0;
    font-size: 18px;
    line-height: 30px;
  }

  .start-steps-grid {
    padding: 32px 24px 40px;
    grid-template-columns: 1fr;
  }

  .start-step-card {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .start-steps-section {
    padding: 0 12px;
  }

  .start-steps-panel {
    border-radius: 32px;
  }

  .start-steps-panel__header {
    padding: 24px 20px 24px;
  }

  .start-steps-panel__eyebrow {
    min-height: 36px;
    padding: 0 16px;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1px;
  }

  .start-steps-panel__title {
    margin-top: 28px;
    font-size: 38px;
    line-height: 38px;
    letter-spacing: -1px;
  }

  .start-steps-panel__intro {
    font-size: 16px;
    line-height: 26px;
  }

  .start-steps-grid {
    padding: 24px 20px 24px;
    gap: 16px;
  }

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

  .start-step-card__label {
    padding-top: 8px;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1px;
  }

  .start-step-card__icon-badge {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 12px;
    font-size: 16px;
  }

  .start-step-card__copy {
    padding-top: 18px;
  }

  .start-step-card__title {
    font-size: 22px;
    line-height: 28px;
    letter-spacing: -0.6px;
  }

  .start-step-card__text {
    margin-top: 12px;
    font-size: 14px;
    line-height: 22px;
  }

  .start-step-card__footer,
  .start-step-card__meeting,
  .start-step-card__agreement {
    padding-top: 24px;
  }

  .start-step-card__messengers {
    grid-template-columns: 1fr;
  }

  .start-step-card__meeting-card {
    align-items: flex-start;
  }

  .start-step-card__agreement {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 479px) {
  .start-steps-panel__title {
    font-size: 32px;
    line-height: 32px;
  }

  .start-step-card__title {
    font-size: 20px;
    line-height: 26px;
  }

  .start-step-card__duration {
    padding-right: 12px;
    padding-left: 12px;
    font-size: 11px;
    letter-spacing: 0.3px;
  }

  .start-step-card__launch-card {
    width: 100%;
    min-width: 0;
    max-width: 156px;
  }

  .start-step-card__document {
    width: 112px;
    height: 84px;
    flex-basis: 112px;
    padding: 9px 11px 11px;
  }

  .start-step-card__document-title {
    width: 60px;
  }

  .start-step-card__document-line--long {
    width: 78px;
  }

  .start-step-card__document-line--medium {
    width: 68px;
  }

  .start-step-card__document-line--wide {
    width: 74px;
  }

  .start-step-card__document-line--short {
    width: 52px;
  }

  .start-step-card__document-divider,
  .start-step-card__document-actions {
    width: 88px;
  }
}

@media (max-width: 1400px) {
  .faq-section {
    padding: 0 20px;
  }

  .faq-panel__header {
    padding: 56px 32px 48px;
    gap: 32px;
  }

  .faq-panel__title {
    font-size: 52px;
    line-height: 52px;
    letter-spacing: -1.6px;
  }

  .faq-item__button {
    padding-right: 32px;
    padding-left: 32px;
  }

  .faq-item__panel {
    padding-right: 32px;
    padding-left: 88px;
  }
}

@media (max-width: 1100px) {
  .faq-panel__header {
    min-height: 0;
    padding: 40px 24px 32px;
    grid-template-columns: minmax(0, 1fr);
    align-items: flex-start;
  }

  .faq-panel__aside {
    width: 100%;
    gap: 18px;
  }

  .faq-panel__intro {
    font-size: 18px;
    line-height: 30px;
  }

  .faq-item__button {
    padding: 24px;
  }

  .faq-item__button-main {
    gap: 20px;
  }

  .faq-item__panel {
    padding: 0 24px 24px 68px;
  }
}

@media (max-width: 767px) {
  .faq-section {
    padding: 0 12px;
  }

  .faq-panel {
    border-radius: 32px;
  }

  .faq-panel__header {
    padding: 24px 20px 24px;
  }

  .faq-panel__eyebrow {
    min-height: 36px;
    padding: 0 16px;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1px;
  }

  .faq-panel__title {
    margin-top: 28px;
    font-size: 38px;
    line-height: 38px;
    letter-spacing: -1px;
  }

  .faq-panel__intro {
    font-size: 16px;
    line-height: 26px;
  }

  .faq-panel__button {
    width: auto;
    min-width: 200px;
    min-height: 48px;
    padding-right: 10px;
    padding-left: 20px;
    border-radius: 12px;
  }

  .faq-item__button {
    min-height: 80px;
    padding: 20px;
    align-items: flex-start;
  }

  .faq-item__button-main {
    gap: 16px;
    align-items: flex-start;
  }

  .faq-item__number {
    padding-top: 2px;
    font-size: 12px;
    line-height: 18px;
  }

  .faq-item__question {
    font-size: 16px;
    line-height: 22px;
  }

  .faq-item__control {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 10px;
  }

  .faq-item__control-line {
    width: 12px;
  }

  .faq-item__panel {
    padding: 0 20px 20px 48px;
  }

  .faq-item__answer {
    font-size: 14px;
    line-height: 24px;
  }
}

@media (max-width: 479px) {
  .faq-panel__title {
    font-size: 32px;
    line-height: 32px;
  }

  .faq-panel__button {
    min-width: 184px;
    padding-left: 18px;
  }

  .faq-item__button {
    padding: 18px 16px;
  }

  .faq-item__button-main {
    gap: 14px;
  }

  .faq-item__question {
    font-size: 15px;
    line-height: 21px;
  }

  .faq-item__panel {
    padding: 0 16px 18px 44px;
  }

  .faq-item__answer {
    font-size: 13px;
    line-height: 22px;
  }
}

@media (max-width: 1400px) {
  .blog-section {
    padding: 0 20px;
  }

  .blog-panel {
    padding: 44px 32px 32px;
  }

  .blog-panel__title {
    font-size: 52px;
    line-height: 68px;
    letter-spacing: -4px;
  }

  .blog-panel__featured-grid,
  .blog-social-grid {
    gap: 32px;
  }

  .blog-card__title,
  .blog-more-card__title {
    font-size: 32px;
    line-height: 32px;
    letter-spacing: -0.9px;
  }

  .blog-social-card {
    padding-right: 32px;
    padding-left: 32px;
  }

  .blog-social-card__title {
    font-size: 54px;
  }
}

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

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

  .blog-card,
  .blog-more-card {
    min-height: 0;
  }

  .blog-more-card {
    min-height: 520px;
  }

  .blog-more-card__visual img {
    right: -320px;
    bottom: -210px;
    width: 1080px;
  }
}

@media (max-width: 767px) {
  .blog-section {
    padding: 0 12px;
  }

  .blog-panel {
    border-radius: 32px;
    padding: 24px 20px;
  }

  .blog-panel__eyebrow {
    min-height: 36px;
    padding: 0 16px;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.4px;
  }

  .blog-panel__title {
    margin-top: 28px;
    font-size: 38px;
    line-height: 42px;
    letter-spacing: -1.8px;
  }

  .blog-panel__featured-grid {
    margin-top: 24px;
    gap: 16px;
  }

  .blog-card,
  .blog-more-card,
  .blog-social-card {
    border-radius: 28px;
  }

  .blog-card__media {
    height: 240px;
  }

  .blog-card__content {
    padding: 18px 20px 20px;
  }

  .blog-card__date {
    font-size: 14px;
    line-height: 18px;
  }

  .blog-card__title,
  .blog-more-card__title {
    margin-top: 12px;
    font-size: 28px;
    line-height: 28px;
    letter-spacing: -0.7px;
  }

  .blog-card__meta {
    padding-top: 24px;
    flex-wrap: wrap;
  }

  .blog-card__meta-item {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.4px;
  }

  .blog-card__meta-item img {
    width: 18px;
    height: 18px;
  }

  .blog-more-card {
    min-height: 420px;
  }

  .blog-more-card__copy {
    padding: 24px 20px;
  }

  .blog-more-card__arrow {
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
  }

  .blog-more-card__arrow img {
    width: 18px;
    height: 18px;
  }

  .blog-more-card__visual img {
    right: -270px;
    bottom: -180px;
    width: 900px;
  }

  .blog-social-grid {
    margin-top: 16px;
    gap: 16px;
  }

  .blog-social-card {
    min-height: 180px;
    padding: 24px 20px;
  }

  .blog-social-card__title {
    font-size: 44px;
    line-height: 42px;
    letter-spacing: -2px;
  }

  .blog-social-card__legal {
    margin-top: 14px;
    font-size: 11px;
    line-height: 15px;
  }

  .blog-social-card__name {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.4px;
  }
}

@media (max-width: 479px) {
  .blog-panel__title {
    font-size: 32px;
    line-height: 36px;
    letter-spacing: -1.4px;
  }

  .blog-card__title,
  .blog-more-card__title {
    font-size: 24px;
    line-height: 24px;
  }

  .blog-card__meta {
    gap: 12px;
  }

  .blog-card__meta-group {
    gap: 10px;
  }

  .blog-more-card {
    min-height: 360px;
  }

  .blog-more-card__visual img {
    right: -244px;
    bottom: -146px;
    width: 760px;
  }

  .blog-social-grid {
    grid-template-columns: 1fr;
  }

  .blog-social-card__title {
    font-size: 40px;
    line-height: 38px;
  }
}

@media (max-width: 1500px) {
  .services-footer__shell {
    padding: 42px 32px 32px;
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
    gap: 32px 36px;
  }

  .services-footer__list {
    grid-template-columns: repeat(5, max-content);
  }
}

@media (max-width: 1100px) {
  .services-footer__shell {
    padding: 32px 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .services-footer__brand-copy {
    max-width: 420px;
    font-size: 17px;
    line-height: 25px;
  }

  .services-footer__content {
    margin-top: 14px;
  }

  .services-footer__title {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.8px;
  }

  .services-footer__list {
    margin-top: 14px;
    grid-template-columns: repeat(3, max-content);
    gap: 10px 24px;
    justify-content: start;
  }

  .services-footer__menu-link,
  .services-footer__legal-link,
  .services-footer__email {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.4px;
  }

  .services-footer__legal {
    margin-top: 18px;
  }
}

@media (max-width: 767px) {
  .services-footer-section {
    padding-bottom: max(20px, env(safe-area-inset-bottom));
  }

  .services-footer__shell {
    padding: 22px 20px 18px;
    gap: 22px;
  }

  .services-footer__brand {
    gap: 20px;
  }

  .services-footer__brand-copy {
    max-width: 100%;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.3px;
  }

  .services-footer__social-link {
    width: auto;
    height: auto;
  }

  .services-footer__social-link img {
    width: 32px;
    height: 32px;
  }

  .services-footer__title {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.6px;
  }

  .services-footer__list {
    margin-top: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
    justify-content: initial;
  }

  .services-footer__menu-link,
  .services-footer__legal-link,
  .services-footer__email {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.3px;
  }

  .services-footer__legal {
    margin-top: 16px;
    padding-top: 16px;
  }
}

@media (max-width: 479px) {
  .services-footer__list {
    grid-template-columns: 1fr;
  }

  .services-footer__title {
    font-size: 24px;
    line-height: 32px;
  }

  .services-footer__menu-link,
  .services-footer__legal-link,
  .services-footer__email {
    font-size: 15px;
    line-height: 22px;
  }
}

.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 130;
  width: min(calc(100% - 32px), 693px);
  min-height: 96px;
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150.81px;
  align-items: center;
  column-gap: 20px;
  border-radius: 20px;
  background: #ffffff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.cookie-consent.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.cookie-consent__text {
  margin: 0;
  color: #606060;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0;
  font-weight: 500;
}

.cookie-consent__text a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-underline-offset: 2px;
}

.cookie-consent__button {
  width: 150.81px;
  min-height: 56px;
  border: 0;
  border-radius: 40px;
  background: #1b1b1b;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.cookie-consent__button:hover,
.cookie-consent__button:focus-visible {
  background: var(--accent);
}

.cookie-consent__button:active {
  transform: scale(0.98);
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  padding: 24px;
  display: grid;
  place-items: center;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.lead-modal::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.lead-modal.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 13, 21, 0.42);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lead-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  border-radius: 36px;
  overflow: hidden;
  background: #ffffff;
  box-shadow:
    0 40px 100px rgba(11, 17, 28, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  transform: translateY(18px) scale(0.985);
  transition: transform 0.28s ease;
}

.lead-modal.is-visible .lead-modal__dialog {
  transform: translateY(0) scale(1);
}

.lead-modal__close {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 23, 35, 0.88);
  box-shadow: 0 10px 28px rgba(10, 13, 21, 0.18);
  cursor: pointer;
  transition: background-color 0.24s ease, transform 0.2s ease;
}

.lead-modal__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

.lead-modal__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.lead-modal__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.lead-modal__close:hover,
.lead-modal__close:focus-visible {
  background: var(--accent);
  transform: scale(1.04);
}

.lead-modal__title {
  margin: 0;
  color: #1b1b1b;
  font-size: 42px;
  line-height: 0.95;
  letter-spacing: -1.9px;
  font-weight: 700;
}

.lead-modal__body {
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 248, 252, 0.98) 100%);
}

.lead-form {
  display: grid;
  gap: 20px;
}

.lead-form__head {
  padding-right: 52px;
}

.lead-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.lead-form__label {
  color: #606060;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.48px;
  font-weight: 700;
  text-transform: uppercase;
}

.lead-form__field {
  display: grid;
  gap: 9px;
}

.lead-form__control {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(12, 24, 44, 0.1);
  border-radius: 18px;
  background: #f5f8fc;
  color: #1b1b1b;
  font: inherit;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  padding: 16px 18px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.lead-form__control::placeholder {
  color: rgba(96, 96, 96, 0.68);
  font-weight: 500;
}

.lead-form__control:hover {
  border-color: rgba(5, 117, 255, 0.18);
}

.lead-form__control:focus {
  outline: none;
  border-color: rgba(5, 117, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(5, 117, 255, 0.12);
  background: #ffffff;
}

.lead-form__footer {
  display: grid;
  gap: 16px;
}

.lead-form__consent {
  position: relative;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  column-gap: 12px;
  cursor: pointer;
}

.lead-form__checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.lead-form__checkbox-mark {
  position: relative;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border: 1px solid rgba(12, 24, 44, 0.18);
  border-radius: 6px;
  background: #f5f8fc;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form__checkbox-mark::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 7px;
  width: 5px;
  height: 10px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.lead-form__checkbox:focus-visible + .lead-form__checkbox-mark {
  border-color: rgba(5, 117, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(5, 117, 255, 0.12);
}

.lead-form__checkbox:checked + .lead-form__checkbox-mark {
  border-color: var(--accent);
  background: var(--accent);
}

.lead-form__checkbox:checked + .lead-form__checkbox-mark::after {
  transform: rotate(45deg) scale(1);
}

.lead-form__consent-copy {
  color: rgba(96, 96, 96, 0.9);
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
}

.lead-form__consent-copy a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lead-form__submit {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 18px;
  padding: 2px 2px 2px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #1b1b1b;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.24s ease, box-shadow 0.24s ease;
}

.lead-form__submit:hover,
.lead-form__submit:focus-visible {
  background: var(--accent);
  box-shadow: 0 14px 32px rgba(5, 117, 255, 0.2);
}

.lead-form__submit:disabled {
  opacity: 0.72;
  cursor: wait;
  box-shadow: none;
}

.lead-form__submit-label {
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 1.12px;
  font-weight: 700;
  text-transform: uppercase;
}

.lead-form__submit-icon {
  width: 54px;
  min-width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lead-form__submit-icon img {
  width: 20px;
  height: 20px;
  transform: rotate(-45deg);
  transition: transform 0.24s ease;
}

.lead-form__submit:hover .lead-form__submit-icon img,
.lead-form__submit:focus-visible .lead-form__submit-icon img {
  transform: rotate(0deg);
}

.lead-form__success {
  min-height: 100%;
  display: grid;
  align-content: center;
  gap: 18px;
}

.lead-form__success-badge {
  display: inline-flex;
  justify-self: flex-start;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(5, 117, 255, 0.08);
  color: var(--accent);
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.52px;
  font-weight: 700;
  text-transform: uppercase;
}

.lead-form__success-title {
  margin: 0;
  color: #1b1b1b;
  font-size: 40px;
  line-height: 0.98;
  letter-spacing: -1.8px;
  font-weight: 700;
}

.lead-form__success-text {
  margin: 0;
  color: rgba(96, 96, 96, 0.9);
  font-size: 17px;
  line-height: 28px;
  font-weight: 500;
}

.lead-form__success-button {
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 18px;
  background: #1b1b1b;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 1.12px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.24s ease, box-shadow 0.24s ease;
}

.lead-form__success-button:hover,
.lead-form__success-button:focus-visible {
  background: var(--accent);
  box-shadow: 0 14px 32px rgba(5, 117, 255, 0.2);
}

.page-content--legal {
  gap: 24px;
  padding-bottom: 72px;
}

.legal-hero,
.legal-article-section {
  width: min(100%, var(--section-shell-width));
  margin: 0 auto;
  padding: 0 40px;
}

.legal-hero__card,
.legal-article-panel {
  width: min(100%, var(--section-panel-width));
  margin: 0 auto;
  border-radius: 40px;
}

.legal-hero__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  padding: 44px 48px 48px;
  background:
    radial-gradient(circle at 85% 12%, rgba(5, 117, 255, 0.16), transparent 28%),
    linear-gradient(106deg, #1b1b1b 0%, #2f2943 100%);
  color: #ffffff;
}

.legal-hero__content {
  min-width: 0;
}

.legal-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: -0.36px;
  text-transform: uppercase;
}

.legal-hero__eyebrow-mark {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

.legal-hero__title {
  margin: 28px 0 20px;
  font-size: 64px;
  line-height: 0.94;
  letter-spacing: -3.2px;
  font-weight: 800;
}

.legal-hero__title span {
  color: var(--accent);
}

.legal-hero__lead {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 30px;
  letter-spacing: -0.36px;
  font-weight: 500;
}

.legal-hero__meta {
  align-self: end;
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-hero__meta-item {
  display: grid;
  gap: 6px;
}

.legal-hero__meta-label {
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28px;
}

.legal-hero__meta-value {
  color: #ffffff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: -0.36px;
}

.legal-article-panel {
  background: #ffffff;
  padding: 48px;
}

.legal-article {
  max-width: 1180px;
}

.legal-article__intro {
  margin: 0 0 28px;
  color: #606060;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: -0.4px;
  font-weight: 500;
}

.legal-article__section + .legal-article__section {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid rgba(27, 27, 27, 0.08);
}

.legal-article__section h2 {
  margin: 0 0 14px;
  color: #1b1b1b;
  font-size: 28px;
  line-height: 34px;
  letter-spacing: -0.84px;
  font-weight: 700;
}

.legal-article__section p,
.legal-article__section li {
  margin: 0;
  color: #606060;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: -0.36px;
  font-weight: 500;
}

.legal-article__section p + p {
  margin-top: 12px;
}

.legal-article__section ul {
  margin: 14px 0 0;
  padding-left: 24px;
  display: grid;
  gap: 10px;
}

.legal-article__link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-article__note {
  margin-top: 16px;
  color: rgba(96, 96, 96, 0.84);
  font-size: 16px;
  line-height: 26px;
}

@media (max-width: 1620px) {
  .legal-hero,
  .legal-article-section {
    padding: 0 24px;
  }

  .legal-hero__card {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 28px;
    padding: 40px;
  }

  .legal-hero__title {
    font-size: 56px;
    letter-spacing: -2.8px;
  }

  .legal-article-panel {
    padding: 40px;
  }
}

@media (max-width: 1100px) {
  .lead-modal {
    padding: 20px;
  }

  .lead-modal__dialog {
    width: min(100%, 560px);
  }

  .lead-modal__body {
    padding: 28px;
  }

  .lead-modal__title {
    font-size: 38px;
    letter-spacing: -1.5px;
  }

  .legal-hero,
  .legal-article-section {
    padding: 0 20px;
  }

  .legal-hero__card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    border-radius: 32px;
  }

  .legal-hero__title {
    margin-top: 24px;
    font-size: 44px;
    line-height: 0.98;
    letter-spacing: -1.8px;
  }

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

  .legal-article-panel {
    border-radius: 32px;
    padding: 32px 24px;
  }

  .legal-article__intro {
    font-size: 18px;
    line-height: 30px;
  }

  .legal-article__section h2 {
    font-size: 24px;
    line-height: 30px;
  }

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

@media (max-width: 767px) {
  .cookie-consent {
    bottom: max(12px, env(safe-area-inset-bottom));
    width: calc(100% - 24px);
    min-height: 0;
    padding: 16px;
    grid-template-columns: 1fr;
    row-gap: 14px;
    border-radius: 18px;
  }

  .cookie-consent__text {
    font-size: 15px;
    line-height: 20px;
  }

  .cookie-consent__button {
    width: 100%;
    min-height: 52px;
  }

  .lead-modal {
    padding: 12px;
    place-items: start center;
  }

  .lead-modal__dialog {
    width: 100%;
    border-radius: 24px;
    margin: auto 0;
  }

  .lead-modal__close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
  }

  .lead-modal__body {
    padding: 22px 18px;
  }

  .lead-modal__title {
    font-size: 32px;
    line-height: 0.98;
    letter-spacing: -1.2px;
  }

  .lead-form__success-text {
    font-size: 15px;
    line-height: 24px;
  }

  .lead-form {
    gap: 18px;
  }

  .lead-form__control {
    min-height: 54px;
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 15px;
    line-height: 22px;
  }

  .lead-form__submit {
    min-height: 54px;
    padding-left: 18px;
    border-radius: 16px;
  }

  .lead-form__submit-icon {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 14px;
  }

  .lead-form__consent-copy {
    font-size: 13px;
    line-height: 20px;
  }

  .lead-form__success-title {
    font-size: 30px;
    line-height: 1;
    letter-spacing: -1px;
  }

  .lead-form__success-button {
    min-height: 52px;
    border-radius: 16px;
  }

  .page-content--legal {
    padding-bottom: 52px;
  }

  .legal-hero,
  .legal-article-section {
    padding: 0 12px;
  }

  .legal-hero__eyebrow {
    padding: 12px 18px;
    font-size: 15px;
  }

  .legal-hero__title {
    font-size: 36px;
    letter-spacing: -1.2px;
  }

  .legal-hero__lead,
  .legal-hero__meta-value,
  .legal-article__section p,
  .legal-article__section li {
    font-size: 16px;
    line-height: 26px;
  }

  .legal-article-panel {
    padding: 24px 20px;
  }

  .legal-article__intro {
    font-size: 17px;
    line-height: 28px;
  }

  .legal-article__section + .legal-article__section {
    margin-top: 28px;
    padding-top: 28px;
  }
}
