@font-face {
  font-family: "Poppins";
  src: url("/assets/poppins-semibold.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/poppins-bold.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Roboto";
  src: url("/assets/roboto.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

:root {
  color-scheme: light;
  --navy: #001251;
  --navy-soft: #17348c;
  --cream: #fffff6;
  --gray: #f1f1f1;
  --purple: #8652ff;
  --blue: #3c66fc;
  --green: #32bb00;
  --red: #e72145;
  --yellow: #ffb800;
  --pink: #f73386;
  --gradient: linear-gradient(
    63deg,
    #8652ff 0%,
    #7856ff 34%,
    #625cff 62%,
    #4e62fd 80%,
    #3c66fc 100%
  );
  --container: 940px;
  --heading: "Poppins", sans-serif;
  --body: "Roboto", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--navy);
  background: var(--navy);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.25;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
.desktop-nav,
.mobile-menu {
  font-family: var(--heading);
  font-weight: 600;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.dark-section {
  color: #fff;
  background: var(--navy);
}

.light-section {
  background: var(--cream);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: #fff;
  background: #000;
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 16px;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.nav-shell {
  position: relative;
  display: flex;
  width: min(var(--container), calc(100% - 48px));
  height: 64px;
  margin-inline: auto;
  padding: 8px;
  align-items: center;
  color: #fff;
  background: #11297a;
  border-radius: 100px;
  box-shadow: 0 2px 4px rgba(0, 11, 48, 0.1), 0 4px 12px rgba(0, 11, 48, 0.25);
  pointer-events: auto;
  transition: height 260ms ease, border-radius 260ms ease, box-shadow 260ms ease;
}

.site-header.scrolled .nav-shell {
  box-shadow: 0 2px 4px rgba(0, 11, 48, 0.1), 0 4px 12px rgba(0, 11, 48, 0.25);
}

.brand {
  position: relative;
  display: block;
  width: 156px;
  height: 32px;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-mark {
  position: absolute;
  top: 0.046875px;
  left: 0;
  width: 32px;
  height: 31.890625px;
}

.brand-word {
  position: absolute;
  top: 6.28125px;
  left: 41.125px;
  width: 114.875px;
  height: 24.578125px;
  object-fit: fill;
}

.desktop-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 24px;
  font-family: var(--body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.desktop-nav a {
  text-decoration: none;
  transition: opacity 250ms ease-out;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 28px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--gradient);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(60, 102, 252, 0.2);
  cursor: pointer;
  font-family: var(--body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1;
  text-align: center;
  transition: transform 250ms ease-out;
}

.button:hover,
.button:focus-visible {
  transform: scale(1.03);
}

.button:active {
  transform: scale(0.99);
}

.button-large {
  min-width: 268px;
  min-height: 72px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.nav-cta {
  width: 166px;
  margin-left: auto;
  padding: 0;
  background: linear-gradient(63.0302deg, #8652ff 35.605%, #3c66fc 85.605%);
  border-radius: 100px;
  box-shadow: none;
  font-family: var(--body);
  font-weight: 700;
  line-height: 1.2;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  box-shadow: none;
  transform: scale(1.05);
}

.nav-cta:active {
  transform: scale(0.99);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.menu-backdrop {
  position: fixed;
  z-index: 90;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 220ms ease;
}

.menu-backdrop.visible {
  opacity: 1;
}

.hero {
  height: auto;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  height: auto;
  padding: 160px 0 80px;
  align-items: center;
  flex-direction: column;
}

.hero-title {
  width: 100%;
  margin: 0;
  font-size: 56px;
  line-height: 1.1;
  text-align: center;
}

.hero-title span {
  display: block;
}

.hero-title > .hero-title-mobile {
  display: none;
}

.hero-comparison {
  position: relative;
  width: 100%;
  margin-top: 40px;
}

.hero-tabs {
  position: absolute;
  z-index: 2;
  top: -24px;
  left: 50%;
  display: flex;
  height: 48px;
  padding: 3px;
  align-items: center;
  background: var(--navy);
  border: 2px solid var(--red);
  border-radius: 999px;
  transform: translateX(-50%);
  transition: border-color 260ms ease;
}

.hero-comparison.with-mode .hero-tabs {
  border-color: var(--green);
}

.hero-tab {
  height: 38px;
  padding: 0 20px;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--body);
  font-weight: 700;
  white-space: nowrap;
  transition: color 250ms ease-out, background-color 250ms ease-out, opacity 250ms ease-out;
}

.hero-tab.active[data-mode="without"] {
  background: var(--red);
}

.hero-tab.active[data-mode="with"] {
  background: var(--green);
}

.hero-tab:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.hero-panel {
  display: grid;
  width: 100%;
  height: 470px;
  padding: 56px 38px 40px;
  place-items: center;
  overflow: hidden;
  background: rgba(231, 33, 69, 0.2);
  border: 2px solid var(--red);
  border-radius: 24px;
  transition: background-color 260ms ease, border-color 260ms ease;
}

.hero-comparison.with-mode .hero-panel {
  background: rgba(50, 187, 0, 0.2);
  border-color: var(--green);
}

.hero-art {
  width: 100%;
  opacity: 1;
  transform: scale(1);
  transition: opacity 180ms ease, transform 240ms ease;
}

.hero-picture {
  display: block;
  width: 100%;
}

.hero-art.switching {
  opacity: 0;
  transform: scale(0.985);
}

.hero-cta {
  margin-top: 40px;
}

.section-title {
  margin: 0;
  font-size: 48px;
  line-height: 1.2;
  text-align: center;
}

.problem {
  height: auto;
}

.problem-inner {
  padding: 80px 0;
}

.study-card {
  width: 823px;
  height: 167.2px;
  margin: 40px auto 0;
  padding: 25px 36px 31px;
  border: 4px solid var(--red);
  border-radius: 24px;
  text-align: center;
}

.study-card p {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-family: var(--heading);
  font-size: 28px;
  line-height: 1.2;
}

.study-card b {
  font-weight: 600;
}

.study-card p:first-child {
  color: var(--red);
}

.study-card strong {
  color: var(--red);
  font-size: 30px;
}

.study-card p:nth-child(2) {
  margin-bottom: 11px;
  color: var(--navy);
  font-family: var(--body);
  font-size: 24px;
  font-weight: 600;
}

.study-card p:nth-child(2) strong {
  color: var(--navy);
  font-family: var(--heading);
  font-size: 26px;
  font-weight: 600;
}

.study-card small {
  color: var(--navy);
  font-size: 16px;
  line-height: 20px;
}

.problem-copy {
  width: 560px;
  margin: 40px auto 0;
  font-size: 24px;
  line-height: 1.2;
  text-align: center;
}

.problem-copy p {
  margin-bottom: 16px;
}

.imagine-card {
  display: grid;
  width: 100%;
  height: 646px;
  margin-top: 40px;
  padding-left: 40px;
  align-items: center;
  grid-template-columns: 1fr 406px;
  overflow: hidden;
  color: #fff;
  background: var(--blue);
  border-radius: 24px;
}

.imagine-copy {
  position: relative;
  z-index: 1;
  margin: 0;
  width: 460px;
  margin-top: 64px;
  align-self: start;
  font-family: var(--body);
  font-size: 48px;
  line-height: 1.2;
}

.imagine-copy strong {
  color: #ffb700;
  font-weight: 600;
}

.imagine-lead {
  font-weight: 700;
}

.imagine-mobile {
  display: none;
}

.imagine-card img {
  width: 406px;
  align-self: end;
  transform: translate(11px, -4px);
}

.workflow {
  height: auto;
}

.workflow-inner {
  padding: 80px 0;
}

.video-wrap {
  position: relative;
  width: 100%;
  margin-top: 40px;
  padding-top: 56.25%;
  overflow: hidden;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.workflow-desktop {
  width: 100%;
  height: 601px;
  margin-top: 40px;
  object-fit: contain;
}

.workflow-mobile {
  display: none;
}

.benefits {
  height: auto;
}

.benefits-inner {
  padding: 80px 0;
}

.benefit-grid {
  display: grid;
  margin-top: 40px;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}

.benefit-card {
  min-height: 334px;
  padding: 24px;
  border-radius: 24px;
}

.benefit-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.card-heading {
  display: flex;
  align-items: center;
  gap: 16px;
}

.benefit-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 10px;
}

.benefit-icon img {
  width: auto;
  height: 28px;
  max-width: 30px;
  object-fit: contain;
}

.benefit-card ul {
  margin: 24px 0 0;
  padding: 0;
  font-size: 16px;
  list-style: none;
}

.benefit-card li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 32px;
}

.benefit-card li::before {
  position: absolute;
  top: 0.32em;
  left: 0;
  width: 10px;
  height: 10px;
  content: "";
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

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

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

.yellow-card {
  background: #fff0bd;
}

.yellow-card .benefit-icon {
  background: var(--yellow);
}

.pink-card {
  background: #fbd2df;
}

.pink-card .benefit-icon {
  background: var(--pink);
}

.wide-card {
  min-height: 216px;
  grid-column: 1 / -1;
}

.wide-card ul {
  display: grid;
  gap: 0 48px;
  grid-template-columns: repeat(2, 1fr);
}

.yellow-card li::before {
  background: #cbc5ae;
}

.pink-card li::before {
  background: #c5aebe;
}

.pricing {
  height: auto;
  background: var(--gray);
}

.pricing-inner {
  padding: 80px 0;
}

.pricing-grid {
  display: grid;
  margin-top: 40px;
  align-items: start;
  gap: 36px;
  grid-template-columns: repeat(2, 1fr);
}

.price-card {
  display: flex;
  min-height: 0;
  padding: 24px;
  justify-content: space-between;
  flex-direction: column;
  background: #fff;
  border: 1px solid #dbe0ee;
  border-radius: 24px;
}

.price-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.price-description {
  min-height: 40px;
  margin: 8px 0 25px;
  color: #7781a2;
}

.price-line {
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-line strong {
  color: #26bd00;
  font-family: var(--heading);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
}

.price-line sup {
  margin-right: 0;
  font-size: 48px;
  vertical-align: baseline;
}

.price-line span {
  color: #7781a2;
  line-height: 1.2;
}

.check-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  content: "";
  background: url("/assets/check.svg") center / contain no-repeat;
}

.price-card > .button {
  width: 100%;
  margin-top: 40px;
}

.revenue-card {
  position: relative;
  min-height: 100px;
  margin: 14px 0 24px;
  padding: 13px 16px;
  overflow: hidden;
  background: #edf0ff;
  border: 2px solid #c2d0ff;
  border-radius: 16px;
}

.revenue-card > img {
  position: absolute;
  right: -9px;
  bottom: -37px;
  width: 132px;
  height: 132px;
  opacity: 0.24;
}

.revenue-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.revenue-top strong {
  color: var(--blue);
  font-family: var(--heading);
  font-size: 32px;
}

.revenue-top span {
  color: #7781a2;
  line-height: 1;
}

.revenue-card p,
.revenue-card small {
  position: relative;
  z-index: 1;
  margin: 0;
}

.trust {
  height: auto;
}

.trust-inner {
  padding: 80px 0;
}

.trust-grid {
  display: grid;
  margin-top: 40px;
  gap: 40px;
  grid-template-columns: repeat(3, 1fr);
}

.trust-card {
  text-align: center;
}

.trust-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  place-items: center;
  background: var(--gradient);
  border-radius: 10px;
}

.trust-icon img {
  width: auto;
  height: 28px;
  max-width: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.56;
}

.trust-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.2;
}

.trust-card p {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.25;
}

.trust-card small {
  color: #7781a2;
}

.team {
  height: auto;
  background: var(--gray);
}

.team-inner {
  padding: 80px 0;
}

.team .section-title span {
  display: block;
}

.team-grid {
  display: grid;
  margin-top: 40px;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}

.team-card {
  position: relative;
  height: auto;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--navy);
  border: 0;
  border-radius: 24px;
}

.team-card > img {
  position: absolute;
  height: auto;
  max-width: none;
  object-fit: cover;
}

.team-card:nth-child(1) > img {
  top: -3.84%;
  left: -9.98%;
  width: 119.75%;
}

.team-card:nth-child(2) > img {
  inset: 0;
  width: 100%;
  height: 100%;
}

.team-card:nth-child(3) > img {
  top: -21.48%;
  left: -19.08%;
  width: 138.21%;
}

.team-overlay {
  position: absolute;
  inset: auto 0 0;
  min-height: 160px;
  padding: 24px;
  color: #fff;
  background: linear-gradient(
    to bottom,
    rgba(0, 18, 81, 0) 0%,
    rgba(0, 18, 81, 0.3) 18%,
    rgba(0, 18, 81, 0.72) 48%,
    var(--navy) 100%
  );
}

.team-overlay > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.team-overlay h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.team-overlay span {
  padding: 4px 9px;
  background: var(--gradient);
  border-radius: 999px;
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 700;
}

.team-overlay p {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.25;
}

.final-cta {
  height: auto;
  padding: 80px 0;
}

.final-card {
  display: flex;
  height: auto;
  min-height: 355px;
  padding: 54px 24px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  background: var(--navy);
  border-radius: 24px;
}

.final-card h2 {
  margin: 0 0 40px;
  font-size: 48px;
  line-height: 1.2;
  text-align: center;
}

.final-card h2 em {
  color: var(--purple);
  background: var(--gradient);
  background-clip: text;
  font-style: normal;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.final-mobile {
  display: none;
}

.site-footer {
  min-height: 215px;
  padding: 32px 0 26px;
}

.footer-top {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr auto 220px;
}

.footer-brand p {
  margin: 10px 0 0;
  font-weight: 700;
}

.footer-top .button {
  margin-top: 0;
}

.contact {
  margin: 4px 0 0;
  color: #7781a2;
  text-align: right;
}

.contact a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  margin-top: 30px;
  align-items: center;
  justify-content: space-between;
  color: #7781a2;
}

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

.footer-bottom a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.mobile-menu a:hover,
.mobile-menu a:focus-visible,
.hero-tab:hover,
.footer-bottom a:hover,
.footer-bottom a:focus-visible,
.contact a:hover,
.contact a:focus-visible {
  opacity: 0.8;
  text-decoration: none;
}

.footer-top .button {
  padding-inline: 40px;
}

.footer-bottom p {
  margin: 0;
}

.scroll-top {
  position: fixed;
  z-index: 80;
  right: 16px;
  bottom: 16px;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(0, 18, 81, 0.28);
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 200ms ease, transform 200ms ease;
}

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

.scroll-top span,
.scroll-top span::after {
  display: block;
  width: 14px;
  height: 14px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: rotate(45deg);
}

.scroll-top span::after {
  margin: 4px 0 0 -3px;
  content: "";
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.js .button.reveal {
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 250ms ease-out;
}

.js .button.reveal.visible:hover,
.js .button.reveal.visible:focus-visible {
  transform: scale(1.03);
}

.js .button.reveal.visible:active {
  transform: scale(0.99);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@media (min-width: 900px) {
  .nav-shell {
    display: grid;
    padding: 8px 8px 8px 24px;
    grid-template-columns: 200px 1fr 216px;
  }

  .desktop-nav {
    margin-left: 0;
    justify-content: center;
  }

  .nav-cta {
    margin-left: 0;
    justify-self: end;
  }

  .hero-art {
    position: relative;
    top: -2px;
  }
}

@media (max-width: 599px) {
  :root {
    --container: 100%;
  }

  html {
    scroll-padding-top: 80px;
  }

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

  .site-header {
    top: 16px;
  }

  .nav-shell {
    width: calc(100% - 48px);
    height: 64px;
    padding: 8px 8px 8px 16px;
    border-radius: 32px;
    box-shadow: none;
  }

  .brand-mark {
    width: 32px;
    height: 31.890625px;
  }

  .brand-word {
    width: 114.875px;
    height: 24.578125px;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 48px;
    height: 48px;
    margin-left: auto;
    padding: 18px;
    place-content: center;
    gap: 3px;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 12px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .site-header.menu-open .nav-shell {
    height: 296px;
    align-items: flex-start;
    border-radius: 24px;
  }

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

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

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

  .mobile-menu {
    position: absolute;
    top: 72px;
    right: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 26px;
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    color: #fff;
    text-decoration: none;
  }

  .mobile-menu .button {
    width: 100%;
    margin-top: 2px;
  }

  .hero {
    height: auto;
    min-height: 788px;
  }

  .hero-inner {
    min-height: 788px;
    padding-top: 112px;
    padding-bottom: 48px;
  }

  .hero-title {
    font-size: 44px;
    line-height: 1.1;
    text-align: left;
  }

  .hero-title i {
    display: block;
  }

  .hero-comparison {
    margin-top: 64px;
  }

  .hero-tabs {
    top: -21px;
    height: 42px;
  }

  .hero-tab {
    height: 32px;
    padding: 0 16px;
    font-size: 16px;
  }

  .hero-panel {
    height: auto;
    min-height: 216px;
    padding: 48px 40px 34px;
    border-radius: 18px;
  }

  .hero-cta {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    margin-top: 40px;
    font-size: 18px;
  }

  .section-title {
    font-size: 36px;
    line-height: 1.2;
    text-align: left;
  }

  .problem {
    height: auto;
  }

  .problem-inner {
    padding-top: 56px;
    padding-bottom: 48px;
  }

  .study-card {
    width: 100%;
    margin-top: 28px;
    padding: 16px;
    border-color: var(--red);
    border-radius: 14px;
    text-align: left;
  }

  .study-card p {
    display: block;
    margin: 0 0 8px;
    font-family: var(--body);
    font-size: 16px;
  }

  .study-card p:first-child span:first-of-type,
  .study-card p:nth-child(2) span {
    width: auto;
    text-align: inherit;
  }

  .study-card strong {
    display: block;
    font-family: var(--heading);
    font-size: 36px;
  }

  .study-card small {
    font-size: 14px;
  }

  .problem-copy {
    width: 100%;
    margin-top: 24px;
    font-size: 18px;
    text-align: left;
  }

  .problem-copy p {
    margin-bottom: 20px;
  }

  .imagine-card {
    display: block;
    height: auto;
    margin-top: 24px;
    padding: 20px 20px 0;
    border-radius: 14px;
  }

  .imagine-copy {
    font-size: 32px;
    line-height: 1.2;
  }

  .imagine-card img {
    width: 145%;
    max-width: none;
    margin: 22px 0 0 -22.5%;
    transform: none;
  }

  .workflow {
    height: auto;
  }

  .workflow-inner {
    padding-top: 56px;
    padding-bottom: 48px;
  }

  .video-wrap,
  .workflow-desktop {
    display: none;
  }

  .workflow-mobile {
    display: block;
    margin-top: 280px;
    padding: 16px;
    background: #17348c;
    border-radius: 20px;
  }

  .flow-group {
    margin-bottom: 40px;
  }

  .flow-group:last-child {
    margin-bottom: 0;
  }

  .flow-right {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 8px;
  }

  .flow-role {
    display: flex;
    margin-bottom: 6px;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 13px;
  }

  .flow-role img {
    width: 26px;
    height: 26px;
  }

  .flow-step {
    display: flex;
    width: 88%;
    min-height: 48px;
    padding: 8px 10px;
    align-items: center;
    gap: 8px;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
  }

  .flow-step span:first-child {
    display: grid;
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    place-items: center;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
  }

  .flow-step.compact {
    width: auto;
    min-width: 180px;
  }

  .flow-step.purple {
    background: var(--purple);
  }

  .flow-step.blue {
    background: var(--blue);
  }

  .flow-step.decision > span:last-child {
    display: flex;
    flex-direction: column;
  }

  .flow-step b {
    margin-top: 3px;
    padding: 2px 5px;
    color: var(--blue);
    background: #fff;
    border-radius: 5px;
    font-size: 11px;
  }

  .benefits {
    height: auto;
  }

  .benefits-inner {
    padding-top: 56px;
    padding-bottom: 48px;
  }

  .benefit-grid {
    margin-top: 36px;
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .wide-card {
    min-height: 0;
    padding: 24px;
    grid-column: auto;
  }

  .wide-card ul {
    display: block;
  }

  .pricing {
    height: auto;
  }

  .pricing-inner {
    padding-top: 56px;
    padding-bottom: 48px;
  }

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

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

  .price-card .button {
    margin-top: 24px;
  }

  .trust {
    height: auto;
  }

  .trust-inner {
    padding-top: 56px;
    padding-bottom: 48px;
  }

  .trust-grid {
    margin-top: 36px;
    gap: 32px;
    grid-template-columns: 1fr;
  }

  .trust-card {
    text-align: left;
  }

  .trust-icon {
    float: left;
    width: 48px;
    height: 48px;
    margin: 0 12px 0 0;
  }

  .trust-card h3 {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .trust-card p {
    clear: both;
    padding-top: 4px;
  }

  .team {
    height: auto;
  }

  .team-inner {
    padding-top: 56px;
    padding-bottom: 48px;
  }

  .team-grid {
    margin-top: 36px;
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .team-card {
    height: min(720px, calc(100vw - 48px));
    min-height: 342px;
    border-radius: 14px;
  }

  .team-overlay {
    min-height: 140px;
  }

  .final-cta {
    height: auto;
    padding: 48px 0;
  }

  .final-card {
    height: auto;
    min-height: 300px;
    padding: 40px 20px;
    border-radius: 14px;
  }

  .final-card h2 {
    margin-bottom: 32px;
    font-size: 48px;
  }

  .final-desktop {
    display: none;
  }

  .final-mobile {
    display: inline;
  }

  .final-card .button {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    font-size: 18px;
  }

  .site-footer {
    min-height: 348px;
    padding: 32px 0;
  }

  .footer-top {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .footer-brand .brand {
    justify-content: center;
  }

  .footer-brand p {
    max-width: 300px;
    margin-inline: auto;
  }

  .footer-top .button {
    order: 2;
    width: 100%;
    margin-top: 28px;
  }

  .contact {
    order: 3;
    margin-top: 22px;
    text-align: center;
  }

  .footer-bottom {
    margin-top: 24px;
    flex-direction: column;
    gap: 20px;
  }

  .scroll-top {
    width: 56px;
    height: 56px;
  }
}

@media (min-width: 600px) and (max-width: 899px) {
  .hero,
  .hero-inner {
    height: 855px;
    min-height: 855px;
  }

  .hero-panel {
    height: 374px;
    min-height: 374px;
    padding-right: 38px;
    padding-bottom: 48px;
    padding-left: 38px;
  }

  .hero-art {
    position: relative;
    top: 6px;
  }

  .problem {
    height: 2158px;
    overflow: hidden;
  }

  .problem-inner,
  .workflow-inner,
  .benefits-inner,
  .pricing-inner,
  .trust-inner,
  .team-inner {
    padding-top: 48px;
  }

  .problem-inner {
    padding-bottom: 48px;
  }

  .study-card {
    height: 210px;
    margin-top: 24px;
  }

  .problem-copy {
    width: 560px;
    margin: 24px 0 0;
    font-size: 20px;
    line-height: 24px;
  }

  .problem-copy p {
    margin-bottom: 16px;
  }

  .problem .section-title,
  .benefits .section-title,
  .trust .section-title {
    max-width: 342px;
  }

  .imagine-card {
    position: relative;
    height: 1581px;
    margin-top: 24px;
    padding: 20px;
    overflow: hidden;
  }

  .imagine-copy {
    position: relative;
    z-index: 2;
    width: auto;
    margin-top: 0;
    font-size: 30px;
  }

  .imagine-card img {
    position: absolute;
    top: 80px;
    left: -22.5%;
    width: 137%;
    max-width: none;
    margin: 0;
  }

  .workflow {
    height: 1477px;
    overflow: hidden;
  }

  .workflow-inner {
    padding-bottom: 48px;
  }

  .workflow-mobile {
    margin-top: 528px;
    padding: 14px;
  }

  .flow-group {
    margin-bottom: 32px;
  }

  .benefits {
    height: 1206px;
    overflow: hidden;
  }

  .benefits-inner {
    padding-bottom: 48px;
  }

  .benefit-grid {
    margin-top: 24px;
    gap: 12px;
  }

  .benefit-card,
  .wide-card {
    min-height: 0;
    padding: 24px;
  }

  .benefit-card h3 {
    font-size: 24px;
  }

  .benefit-card ul {
    font-size: 16px;
  }

  .benefit-card h3 {
    font-size: 22px;
  }

  .benefit-card:nth-child(1) {
    height: 260px;
  }

  .benefit-card:nth-child(2) {
    height: 240px;
  }

  .benefit-card:nth-child(3) {
    height: 252px;
  }

  .benefit-card:nth-child(4) {
    height: 212px;
  }

  .benefit-card ul {
    padding-left: 26px;
    font-size: 14px;
  }

  .pricing {
    height: 957px;
    overflow: hidden;
  }

  .pricing-inner {
    padding-bottom: 48px;
  }

  .pricing-grid {
    margin-top: 25px;
    gap: 11px;
  }

  .price-card {
    height: 334px;
    min-height: 0;
    padding: 20px;
  }

  .price-card.specialist-price {
    height: 449px;
  }

  .price-card h3 {
    font-size: 20px;
  }

  .price-description {
    min-height: 0;
    margin-bottom: 17px;
  }

  .price-line strong {
    font-size: 36px;
  }

  .check-list {
    margin-top: 20px;
    font-size: 14px;
  }

  .price-card .button {
    margin-top: 12px;
  }

  .revenue-top strong {
    font-size: 28px;
  }

  .trust {
    height: 605px;
    overflow: hidden;
  }

  .trust-inner {
    padding-bottom: 48px;
  }

  .trust-grid {
    margin-top: 24px;
    gap: 24px;
  }

  .trust-card p {
    font-size: 14px;
  }

  .team {
    height: 2390px;
    overflow: hidden;
  }

  .team-inner {
    padding-bottom: 48px;
  }

  .team-grid {
    margin-top: 24px;
  }

  .team-card {
    height: 720px;
  }

  .final-cta {
    height: 413px;
    padding: 48px 0;
  }

  .final-card {
    height: 317px;
    min-height: 317px;
  }

  .final-card h2 {
    margin-bottom: 24px;
    font-size: 36px;
  }

  .final-card .button {
    min-height: 72px;
    font-size: 24px;
  }

  .site-footer {
    min-height: 380px;
  }
}

@media (max-width: 599px) {
  .problem {
    height: 1689.8125px;
    overflow-x: clip;
  }

  .hero-comparison {
    margin-top: 64px;
  }

  .hero-tabs {
    height: 36px;
  }

  .hero-tab {
    height: 28px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero-panel {
    min-height: 210px;
    padding: 50px 38px 34px;
  }

  .hero-art {
    width: 100%;
  }

  .hero-cta {
    min-height: 72px;
    font-size: 24px;
  }

  .section-title {
    font-size: 36px;
  }

  .problem-inner,
  .workflow-inner,
  .benefits-inner,
  .pricing-inner,
  .trust-inner,
  .team-inner {
    padding-top: 48px;
  }

  .problem-inner {
    padding-bottom: 48px;
  }

  .study-card {
    height: 254px;
    margin-top: 24px;
    border-width: 4px;
  }

  .study-card p {
    margin-bottom: 12px;
  }

  .study-card p:first-child {
    color: var(--red);
    font-size: 20px;
    line-height: 24px;
  }

  .study-card p:first-child strong {
    font-size: 44px;
    line-height: 48.4px;
  }

  .study-card p:first-child b {
    display: block;
  }

  .study-card p:nth-child(2) {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 20px;
  }

  .study-card p:nth-child(2) strong {
    color: var(--navy);
    font-size: 28px;
    line-height: 33.6px;
  }

  .study-card small {
    font-size: 16px;
    line-height: 20px;
  }

  .problem-copy {
    height: 184px;
    font-size: 20px;
    line-height: 24px;
  }

  .problem-copy p {
    margin-bottom: 16px;
  }

  .imagine-copy {
    width: auto;
    margin-top: 0;
    font-size: 30px;
  }

  .imagine-desktop {
    display: none;
  }

  .imagine-mobile {
    display: inline;
  }

  .imagine-card {
    height: 998px;
    overflow: visible;
  }

  .imagine-card img {
    width: 145%;
    margin-top: -24px;
    margin-left: -26.78%;
  }

  .workflow-mobile {
    height: 842px;
    margin-top: 276px;
    padding: 16px;
    background: #11297a;
    border-radius: 14px;
  }

  .flow-group {
    margin-bottom: 24px;
  }

  .flow-right {
    gap: 4px;
  }

  .flow-role {
    height: 32px;
    margin-bottom: 8px;
    font-size: 16px;
  }

  .flow-right .flow-role {
    margin-bottom: 4px;
  }

  .flow-role img {
    width: 32px;
    height: 32px;
  }

  .flow-step {
    width: 270px;
    max-width: 87.1%;
    min-height: 56px;
    padding: 8px 12px 8px 8px;
    font-size: 16px;
    line-height: 20px;
  }

  .flow-step span:first-child {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .flow-step.compact {
    width: auto;
    min-width: 0;
    min-height: 48px;
  }

  .flow-step.decision {
    min-height: 66px;
  }

  .benefit-card,
  .wide-card {
    padding: 20px;
    border-radius: 14px;
  }

  .benefit-card h3 {
    font-size: 22px;
  }

  .benefit-card:nth-child(1) {
    height: 460px;
    min-height: 0;
  }

  .benefit-card:nth-child(2) {
    height: 400px;
    min-height: 0;
  }

  .benefit-card:nth-child(3) {
    height: 392px;
    min-height: 0;
  }

  .benefit-card:nth-child(4) {
    height: 332px;
    min-height: 0;
  }

  .workflow-inner {
    padding-bottom: 48px;
  }

  .benefits-inner {
    padding-bottom: 48px;
  }

  .benefit-grid {
    margin-top: 24px;
  }

  .benefit-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .benefit-card ul {
    margin-top: 20px;
    padding-left: 32px;
    font-size: 16px;
  }

  .benefit-card li {
    margin-bottom: 8px;
  }

  .benefit-card:first-child li {
    padding-right: 16px;
  }

  .price-card {
    height: 329px;
    padding: 20px;
    border: 0;
    border-radius: 14px;
  }

  .price-card.specialist-price {
    height: 469px;
  }

  .pricing-grid {
    margin-top: 24px;
  }

  .price-card h3 {
    font-size: 20px;
  }

  .price-description {
    min-height: 0;
    margin-bottom: 17px;
  }

  .price-line strong {
    font-size: 36px;
  }

  .check-list {
    margin-top: 20px;
    font-size: 16px;
  }

  .price-card .button {
    margin-top: 12px;
  }

  .revenue-top strong {
    font-size: 28px;
  }

  .trust-card h3 {
    font-size: 20px;
  }

  .trust-inner {
    padding-bottom: 46px;
  }

  .trust-grid {
    margin-top: 24px;
    gap: 24px;
  }

  .trust-card p {
    padding-top: 0;
    font-size: 16px;
    line-height: 20px;
  }

  .team .section-title {
    font-size: 36px;
  }

  .team-grid {
    margin-top: 24px;
  }

  .team-overlay {
    min-height: 132px;
    padding: 20px;
  }

  .team-overlay h3 {
    font-size: 20px;
  }

  .final-cta {
    height: 412px;
    padding: 48px 0;
  }

  .final-card {
    height: 316px;
    min-height: 316px;
  }

  .site-footer {
    min-height: 380px;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .team-overlay p {
    font-size: 16px;
    line-height: 20px;
  }

  .final-card h2 {
    margin-bottom: 24px;
    font-size: 36px;
  }

  .final-card .button {
    min-height: 72px;
    font-size: 24px;
  }

  .team-card {
    border: 0;
  }

  .team-card:nth-child(1) > img {
    position: absolute;
    top: -3.84%;
    left: -9.98%;
    width: 119.75%;
    height: auto;
    max-width: none;
  }

  .team-card:nth-child(2) > img {
    width: 100%;
    height: 100%;
  }

  .team-card:nth-child(3) > img {
    position: absolute;
    top: -21.48%;
    left: -19.08%;
    width: 138.21%;
    height: auto;
    max-width: none;
  }

  .footer-brand p {
    max-width: none;
    margin-top: 7px;
    font-size: 16px;
    line-height: 20px;
  }

  .footer-top .button {
    margin-top: 24px;
  }

  .footer-top,
  .footer-bottom {
    font-size: 14px;
  }
}

.legal-page {
  min-height: 100vh;
  background: var(--cream);
}

.legal-header {
  padding: 32px 0;
  background: var(--navy);
}

.legal-header .brand {
  width: max-content;
}

.legal-main {
  max-width: 760px;
  padding: 80px 0 120px;
}

.legal-main h1 {
  margin-bottom: 16px;
  font-size: 48px;
}

.legal-main h2 {
  margin: 42px 0 12px;
  font-size: 24px;
}

.legal-main p,
.legal-main li {
  line-height: 1.65;
}

.legal-main .effective {
  color: #7781a2;
}

.legal-footer {
  padding: 32px 0;
  color: #fff;
  background: var(--navy);
}

@media (max-width: 599px) {
  .legal-main {
    padding: 56px 0 80px;
  }

  .legal-main h1 {
    font-size: 36px;
  }
}

/* Final responsive corrections from the approved landing-page review. */
.scroll-top span {
  position: relative;
  width: 16px;
  height: 16px;
  margin-top: 8px;
}

.scroll-top span::after {
  position: absolute;
  top: 3px;
  left: 5px;
  width: 3px;
  height: 20px;
  margin: 0;
  content: "";
  background: #fff;
  border: 0;
  transform: rotate(-45deg);
  transform-origin: top center;
}

.legal-page {
  display: flex;
  flex-direction: column;
}

.legal-main {
  width: min(760px, calc(100% - 48px));
  flex: 1;
}

@media (min-width: 600px) and (max-width: 899px) {
  .container {
    width: calc(100% - 48px);
  }

  .nav-shell {
    display: grid;
    width: calc(100% - 48px);
    height: 64px;
    padding: 8px 8px 8px 24px;
    align-items: center;
    grid-template-columns: 156px 1fr 166px;
    border-radius: 100px;
  }

  .desktop-nav {
    display: flex;
    margin-left: 0;
    justify-content: center;
    gap: 16px;
    font-size: 14px;
  }

  .nav-cta {
    display: inline-flex;
    width: 166px;
    margin-left: 0;
    justify-self: end;
  }

  .menu-toggle,
  .mobile-menu {
    display: none;
  }

  .hero,
  .hero-inner,
  .problem,
  .workflow,
  .benefits,
  .pricing,
  .trust,
  .team,
  .final-cta {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .hero-inner {
    padding: 160px 0 80px;
  }

  .hero-title {
    font-size: 56px;
    line-height: 1.1;
    text-align: center;
  }

  .hero-title > .hero-title-desktop {
    display: block;
  }

  .hero-title > .hero-title-mobile {
    display: none;
  }

  .hero-comparison,
  .study-card,
  .problem-copy,
  .imagine-card,
  .video-wrap,
  .workflow-desktop,
  .benefit-grid,
  .pricing-grid,
  .trust-grid,
  .team-grid {
    margin-top: 40px;
  }

  .hero-panel {
    height: auto;
    min-height: 0;
    padding: 56px 38px 40px;
  }

  .hero-cta {
    width: auto;
    min-width: 268px;
    min-height: 72px;
    margin-top: 40px;
    font-size: 24px;
  }

  .section-title,
  .problem .section-title,
  .benefits .section-title,
  .trust .section-title {
    max-width: none;
    font-size: 48px;
    line-height: 1.2;
    text-align: center;
  }

  .problem-inner,
  .workflow-inner,
  .benefits-inner,
  .pricing-inner,
  .trust-inner,
  .team-inner {
    padding: 80px 0;
  }

  .study-card {
    width: min(823px, 100%);
    height: auto;
  }

  .problem-copy {
    width: 560px;
    margin-inline: auto;
    font-size: 24px;
    line-height: 1.2;
    text-align: center;
  }

  .imagine-card {
    display: grid;
    height: 646px;
    padding: 0 0 0 40px;
    grid-template-columns: 1fr 42%;
    overflow: hidden;
  }

  .imagine-copy {
    width: auto;
    margin-top: 64px;
    font-size: 40px;
  }

  .imagine-card img {
    position: static;
    width: 100%;
    max-width: none;
    margin: 0;
    align-self: end;
    transform: translate(11px, -4px);
  }

  .video-wrap,
  .workflow-desktop {
    display: block;
  }

  .workflow-desktop {
    width: 100%;
    height: auto;
  }

  .workflow-mobile {
    display: none;
  }

  .benefit-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-card,
  .wide-card,
  .benefit-card:nth-child(1),
  .benefit-card:nth-child(2),
  .benefit-card:nth-child(3),
  .benefit-card:nth-child(4) {
    height: auto;
    min-height: 0;
  }

  .wide-card {
    grid-column: 1 / -1;
  }

  .wide-card ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card,
  .price-card.specialist-price {
    height: auto;
    min-height: 0;
  }

  .price-card h3 {
    font-size: 24px;
  }

  .price-line strong,
  .price-line sup {
    font-size: 48px;
  }

  .check-list {
    font-size: 16px;
  }

  .revenue-top strong {
    font-size: 32px;
  }

  .price-card .button {
    width: 100%;
    margin-top: 40px;
  }

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

  .trust-card {
    text-align: center;
  }

  .trust-icon {
    float: none;
    margin: 0 auto 16px;
  }

  .trust-card h3 {
    display: block;
    min-height: 0;
  }

  .trust-card p {
    clear: none;
    padding-top: 0;
    font-size: 16px;
  }

  .team .section-title {
    font-size: 48px;
  }

  .team-grid {
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
  }

  .team-card {
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    overflow: visible;
    background: transparent;
    border-radius: 0;
  }

  .team-card:nth-child(1) > img,
  .team-card:nth-child(2) > img,
  .team-card:nth-child(3) > img {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    max-width: 100%;
    object-fit: cover;
    border-radius: 24px;
  }

  .team-card:nth-child(1) > img {
    object-position: 50% 22%;
  }

  .team-card:nth-child(3) > img {
    object-position: 50% 33%;
  }

  .team-overlay {
    position: static;
    min-height: 0;
    padding: 20px 0 0;
    color: var(--navy);
    background: transparent;
    text-align: center;
  }

  .team-overlay > div {
    justify-content: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .team-overlay p {
    margin-top: 12px;
    font-size: 16px;
  }

  .final-cta {
    padding: 80px 0;
  }

  .final-card {
    height: auto;
    min-height: 355px;
  }

  .final-desktop {
    display: inline;
  }

  .final-mobile {
    display: none;
  }

  .final-card .button {
    width: auto;
    min-width: 268px;
    min-height: 72px;
    font-size: 24px;
  }

  .site-footer {
    min-height: 215px;
    padding: 32px 0 26px;
  }

  .footer-top {
    display: grid;
    align-items: start;
    grid-template-columns: 1fr auto 220px;
    text-align: left;
  }

  .footer-top .button {
    order: initial;
    width: auto;
    margin-top: 0;
  }

  .contact {
    order: initial;
    margin-top: 4px;
    text-align: right;
  }

  .footer-bottom {
    margin-top: 30px;
    align-items: center;
    flex-direction: row;
    gap: 0;
  }
}

@media (max-width: 599px) {
  .nav-shell {
    position: relative;
    height: 64px;
    padding: 8px 16px;
    align-items: flex-start;
    overflow: hidden;
    transition: height 260ms ease, border-radius 260ms ease;
  }

  .nav-shell > .brand {
    position: absolute;
    top: 16px;
    left: 16px;
  }

  .menu-toggle {
    position: absolute;
    top: 8px;
    right: 8px;
  }

  .site-header.menu-open .nav-shell {
    height: 280px;
    align-items: flex-start;
  }

  .mobile-menu {
    top: 72px;
    gap: 22px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 220ms ease, transform 260ms ease;
  }

  .site-header.menu-open .mobile-menu {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu .button {
    margin-top: 0;
  }

  .hero,
  .hero-inner,
  .problem,
  .workflow,
  .benefits,
  .pricing,
  .trust,
  .team,
  .final-cta {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .hero {
    overflow: hidden;
  }

  .hero-inner {
    padding: 112px 0 48px;
  }

  .hero-title {
    font-size: 44px;
    line-height: 1.1;
    text-align: left;
  }

  .hero-title > .hero-title-desktop {
    display: none;
  }

  .hero-title > .hero-title-mobile {
    display: block;
  }

  .hero-comparison {
    margin-top: 40px;
  }

  .hero-panel {
    height: auto;
    min-height: 0;
    padding: 50px 16px 20px;
  }

  .hero-art {
    position: static;
    width: 100%;
  }

  .hero-cta {
    min-height: 72px;
    margin-top: 24px;
    font-size: 24px;
  }

  .problem-inner,
  .workflow-inner,
  .benefits-inner,
  .pricing-inner,
  .trust-inner,
  .team-inner {
    padding: 48px 0;
  }

  .study-card,
  .problem-copy,
  .imagine-card,
  .video-wrap,
  .workflow-mobile,
  .benefit-grid,
  .pricing-grid,
  .trust-grid,
  .team-grid {
    margin-top: 24px;
  }

  .study-card {
    height: auto;
    padding: 20px;
  }

  .problem-copy {
    height: auto;
  }

  .imagine-card {
    height: auto;
    overflow: hidden;
  }

  .video-wrap {
    display: block;
  }

  .workflow-desktop {
    display: none;
  }

  .workflow-mobile {
    height: auto;
    padding: 16px;
  }

  .benefit-card,
  .wide-card,
  .benefit-card:nth-child(1),
  .benefit-card:nth-child(2),
  .benefit-card:nth-child(3),
  .benefit-card:nth-child(4) {
    height: auto;
    min-height: 0;
  }

  .benefit-card ul {
    padding-left: 0;
  }

  .price-card,
  .price-card.specialist-price {
    height: auto;
    min-height: 0;
  }

  .price-card .button {
    margin-top: 24px;
  }

  .trust-card p {
    padding-top: 0;
  }

  .team-card {
    height: auto;
    min-height: 0;
    aspect-ratio: 1;
  }

  .final-cta {
    padding: 48px 0;
  }

  .final-card {
    height: auto;
    min-height: 316px;
  }

  .site-footer {
    height: auto;
  }

  .legal-main {
    padding: 48px 0;
  }
}

/* Alexandra's 13-item visual and responsive review. */
.hero-comparison {
  /* The switch overlaps the panel by 24px, leaving the same 40px visual gap used elsewhere. */
  margin-top: 64px;
}

.hero-panel,
.study-card,
.imagine-card,
.workflow-mobile,
.benefit-card,
.price-card,
.revenue-card,
.team-card,
.final-card {
  border-radius: 24px;
}

@media (min-width: 600px) {
  .study-card {
    height: auto;
    min-height: 167px;
    padding: 25px 36px 32px;
  }

  .study-card p,
  .study-card p:nth-child(2) {
    margin-bottom: 8px;
    font-family: var(--heading);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
  }

  .study-card strong,
  .study-card p:nth-child(2) strong {
    font-family: var(--heading);
    font-size: 30px;
    font-weight: 600;
  }
}

.benefit-icon img,
.trust-icon img {
  width: 24px;
  height: 24px;
  max-width: none;
  object-fit: contain;
  opacity: 1;
}

.trust-icon img {
  filter: none;
}

.purple-card li::before,
.blue-card li::before {
  background: rgba(255, 255, 255, 0.4);
}

.yellow-card li::before {
  background: rgba(255, 184, 0, 0.4);
}

.pink-card li::before {
  background: rgba(247, 51, 134, 0.4);
}

.price-line span,
.revenue-top span {
  font-size: 12px;
  line-height: 1.2;
}

.revenue-card {
  isolation: isolate;
}

.revenue-card > img {
  z-index: 0;
  right: 0;
  bottom: 0;
  width: 166px;
  height: 163px;
  max-width: none;
  opacity: 1;
  object-fit: none;
}

.revenue-top,
.revenue-card p,
.revenue-card small {
  z-index: 1;
}

.desktop-nav a,
.mobile-menu a,
.hero-tab,
.footer-legal a,
.contact a {
  transition: opacity 250ms ease-out;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  opacity: 0.8;
}

.site-footer {
  height: 215px;
  min-height: 215px;
  padding: 32px 0 16px;
}

.footer-layout {
  display: grid;
  align-items: start;
  grid-template-areas:
    "brand button"
    "legal contact"
    "copyright contact";
  grid-template-columns: 1fr auto;
}

.footer-brand {
  grid-area: brand;
}

.footer-brand p {
  margin: 10px 0 0;
  font-weight: 700;
  line-height: 20px;
}

.footer-layout > .button {
  width: 166px;
  min-height: 48px;
  margin: 0;
  padding: 0;
  justify-self: end;
  grid-area: button;
}

.footer-layout > .contact {
  margin: 57px 0 0;
  align-self: start;
  grid-area: contact;
  font-size: 16px;
  line-height: 24px;
  text-align: right;
}

.footer-legal {
  display: flex;
  margin-top: 42px;
  gap: 24px;
  grid-area: legal;
}

.footer-legal a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.footer-copyright {
  margin: 16px 0 0;
  color: #7781a2;
  grid-area: copyright;
}

.scroll-top img {
  width: 24px;
  height: 24px;
  max-width: none;
}

.legal-header .brand {
  width: 156px;
  height: 32px;
}

@media (min-width: 600px) and (max-width: 899px) {
  .team-overlay span {
    color: #fff;
  }
}

@media (max-width: 599px) {
  .site-header.menu-open .nav-shell {
    height: 264px;
  }

  .hero-comparison {
    /* The full-size 48px switch overlaps by 24px, leaving the mobile 24px section gap. */
    margin-top: 48px;
  }

  .hero-tabs {
    top: -24px;
    height: 48px;
    padding: 3px;
  }

  .hero-tab {
    height: 38px;
    padding: 0 20px;
    font-size: 16px;
  }

  .hero-panel,
  .study-card,
  .imagine-card,
  .workflow-mobile,
  .benefit-card,
  .price-card,
  .revenue-card,
  .team-card,
  .final-card {
    border-radius: 20px;
  }

  .study-card {
    padding: 20px;
  }

  .site-footer {
    height: auto;
    min-height: 380px;
    padding: 32px 0 20px;
  }

  .footer-layout {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .footer-brand .brand {
    margin-inline: auto;
  }

  .footer-brand p {
    max-width: 300px;
    margin: 10px auto 0;
  }

  .footer-layout > .button {
    width: 100%;
    margin-top: 26px;
  }

  .footer-layout > .contact {
    margin-top: 28px;
    align-self: center;
    font-size: 16px;
    line-height: 24px;
    order: initial;
    text-align: center;
  }

  .footer-legal {
    margin-top: 34px;
    gap: 24px;
    order: initial;
  }

  .footer-copyright {
    margin-top: 21px;
    order: initial;
  }

  .footer-layout > .button {
    order: initial;
  }
}

/* Alexandra's 10-item release follow-up. */
.benefit-icon img,
.trust-icon img {
  width: 32px;
  height: 32px;
}

.price-line sup {
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  vertical-align: baseline;
}

.price-line span {
  font-size: 16px;
  line-height: 24px;
}

.revenue-top {
  gap: 6px;
}

.revenue-top span {
  font-size: 12px;
  line-height: 1.2;
}

.price-card > .button,
.mobile-menu .button {
  height: 48px;
  min-height: 48px;
}

.revenue-card > img {
  right: -14px;
  bottom: -16px;
}

@media (min-width: 600px) {
  .study-card {
    padding: 32px 36px;
  }
}

@media (min-width: 600px) and (max-width: 899px) {
  .imagine-card {
    position: relative;
    display: block;
    height: calc((100vw - 48px) * 0.7847222);
    padding: 0;
    overflow: hidden;
  }

  .imagine-copy {
    position: absolute;
    top: calc((100vw - 48px) * 0.0833333);
    left: calc((100vw - 48px) * 0.0555556);
    width: calc((100vw - 48px) * 0.4694444);
    margin: 0;
    font-size: calc((100vw - 48px) * 0.05);
    line-height: 1.2;
  }

  .imagine-card img {
    position: absolute;
    left: auto;
    right: calc((100vw - 48px) * -0.0097222);
    bottom: 0;
    width: calc((100vw - 48px) * 0.4861111);
    max-width: none;
    margin: 0;
    transform: none;
  }

  .final-card {
    min-height: 355px;
    padding: 54px 24px;
  }

  .final-card h2 {
    margin: 0 0 40px;
    font-size: 48px;
    line-height: 1.2;
  }

  .final-card .button {
    width: auto;
    min-width: 268px;
    min-height: 72px;
    font-size: 24px;
  }

  .site-footer {
    height: 303px;
    min-height: 303px;
    padding: 32px 0 104px;
  }
}

@media (max-width: 599px) {
  .price-card {
    justify-content: flex-start;
    gap: 20px;
  }

  .price-card > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .price-card h3,
  .price-description,
  .price-line,
  .check-list,
  .specialist-price .revenue-card,
  .price-card > .button {
    margin: 0;
  }
}

/* Alexandra's six-item visual follow-up. */
.final-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.final-card::before,
.final-card::after {
  position: absolute;
  z-index: 0;
  width: 1000px;
  height: 1000px;
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  will-change: transform;
}

.final-card::before {
  --orbit-radius: 56px;

  top: -630px;
  right: -360px;
  background-image: url("/assets/icon-7b613.svg");
  animation: final-orbit-clockwise 32s linear infinite;
}

.final-card::after {
  --orbit-radius: 68px;

  bottom: -650px;
  left: -380px;
  background-image: url("/assets/icon-5e5c9.svg");
  animation: final-orbit-counterclockwise 38s linear infinite;
}

.final-card > * {
  position: relative;
  z-index: 1;
}

@keyframes final-orbit-clockwise {
  from {
    transform: rotate(0deg) translate3d(var(--orbit-radius), 0, 0) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translate3d(var(--orbit-radius), 0, 0) rotate(-360deg);
  }
}

@keyframes final-orbit-counterclockwise {
  from {
    transform: rotate(0deg) translate3d(var(--orbit-radius), 0, 0) rotate(0deg);
  }

  to {
    transform: rotate(-360deg) translate3d(var(--orbit-radius), 0, 0) rotate(360deg);
  }
}

.legal-page .legal-main {
  padding-top: 144px;
}

@media (min-width: 600px) {
  .price-card > .button {
    margin-top: 24px;
  }

  .specialist-price .revenue-card {
    margin-bottom: 0;
  }
}

@media (min-width: 600px) and (max-width: 899px) {
  .desktop-nav {
    font-size: 16px;
  }

  .final-card::before,
  .final-card::after {
    width: 760px;
    height: 760px;
  }

  .final-card::before {
    --orbit-radius: 44px;

    top: -470px;
    right: -270px;
  }

  .final-card::after {
    --orbit-radius: 54px;

    bottom: -480px;
    left: -270px;
  }
}

@media (max-width: 599px) {
  .flow-step.decision {
    width: 270px;
    max-width: 100%;
  }

  .flow-step .clinic-badge {
    display: inline-flex;
    width: 194px;
    height: 26px;
    margin-top: 4px;
    padding: 3px 10px;
    box-sizing: border-box;
    align-items: center;
    align-self: flex-start;
    gap: 6px;
    color: var(--blue);
    background: #fff;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
  }

  .flow-step .clinic-badge .clinic-badge-icon {
    display: block;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    background: var(--blue);
    -webkit-mask: url("/assets/message-check.svg") center / contain no-repeat;
    mask: url("/assets/message-check.svg") center / contain no-repeat;
  }

  .final-card::before,
  .final-card::after {
    width: 560px;
    height: 560px;
  }

  .final-card::before {
    --orbit-radius: 28px;

    top: -340px;
    right: -240px;
  }

  .final-card::after {
    --orbit-radius: 34px;

    bottom: -350px;
    left: -210px;
  }

  .legal-page .legal-main {
    padding-top: 112px;
  }
}

@media (max-width: 339px) {
  .flow-step.decision {
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .final-card::before,
  .final-card::after {
    animation: none;
  }
}
