@font-face {
  font-family: "SF-Pro-Regular-Text";
  src: url("../assets/fonts/SF-PRO-Text/SF-Pro-Text-Regular.otf") format("opentype");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF-Pro-Semi-Bold-Text";
  src: url("../assets/fonts/SF-PRO-Text/SF-Pro-Text-Semibold.otf") format("opentype");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF-Pro-Bold-Text";
  src: url("../assets/fonts/SF-PRO-Text/SF-Pro-Text-Bold.otf") format("opentype");
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #fb5650;
  --primary-dark: #d23d37;
  --text-main: #111116;
  --text-muted: #6b6c7e;
  --surface: #f7f8f9;
  --surface-2: #eef1f6;
  --white: #ffffff;
  --dark: #0c0e1b;
  --border: #d9dde5;
  --container-desktop: 1216px;
  --container-tablet: 616px;
  --container-mobile: 344px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-pill: 1000px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "SF-Pro-Regular-Text", sans-serif;
  color: var(--text-main);
  background: #fff;
  overflow-x: hidden;
}

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

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

.container {
  width: min(var(--container-desktop), calc(100vw - 32px));
  margin: 0 auto;
  padding: 0 16px;
}

.top-header {
  display: none;
}

.promo-bar {
  background: #f7f8f9;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 30px;
  gap: 16px;
}

.promo-inner p {
  margin: 0;
  color: #66717f;
  font-size: 12px;
  font-family: "SF-Pro-Bold-Text";
  line-height: 1.2;
}

.promo-inner p span {
  color: #2e5aac;
  font-family: "SF-Pro-Semi-Bold-Text";
}

.promo-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.promo-contact a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #2e5aac;
  font-size: 12px;
  font-family: "SF-Pro-Semi-Bold-Text";
}

.nav-shell {
  background: rgba(12, 14, 27, 0.95);
  backdrop-filter: blur(8px);
}

.nav-inner {
  position: relative;
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand img {
  width: 190px;
  max-width: 190px;
}

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

.main-nav a {
  color: #e0e4ec;
  font-size: 18px;
  font-family: "SF-Pro-Semi-Bold-Text";
  transition: color 0.25s ease;
}

.main-nav a:hover {
  color: var(--primary);
}

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

.nav-btn {
  height: 48px;
  min-width: 132px;
}

.nav-btn img {
  width: 18px;
  height: 18px;
}

.btn-primary-shared,
.btn-outline-shared {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.btn-primary-shared span,
.btn-outline-shared span,
.btn-primary-shared img,
.btn-outline-shared img {
  position: relative;
  z-index: 2;
}

.btn-primary-shared {
  color: #fff;
  border-color: var(--primary);
  background: var(--primary);
}

.btn-primary-shared::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  background: var(--primary-dark);
  border-radius: var(--radius-pill);
  transition: width 0.35s ease;
  z-index: 1;
}

.btn-primary-shared:hover::after {
  width: 100%;
}

.btn-primary-shared:hover {
  transform: translateY(-1px);
}

.btn-outline-shared {
  color: var(--text-main);
  border-color: #7f889d;
  background: #fff;
}

.btn-outline-shared::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  background: rgba(251, 86, 80, 0.14);
  border-radius: var(--radius-pill);
  transition: width 0.35s ease;
  z-index: 1;
}

.btn-outline-shared:hover {
  border-color: var(--primary);
  color: var(--text-main);
  transform: translateY(-1px);
}

.btn-outline-shared:hover::after {
  width: 100%;
}

.nav-btn.btn-outline-shared,
.hero-cta .btn-outline-shared,
.final-cta-card .btn-outline-shared {
  color: #fff;
  border-color: #8f95a6;
  background: rgba(255, 255, 255, 0.02);
}

.btn-primary-shared.compact,
.btn-outline-shared.compact {
  height: 38px;
  padding: 8px 14px;
  font-size: 14px;
}

.mobile-menu-btn {
  display: none;
}

main {
  padding-top: 0;
}

.hero-section {
  position: relative;
  min-height: 1330px;
  overflow: hidden;
  background: radial-gradient(
    79.911px 51.576px at 50% 45.98%,
    #333333 0%,
    #1e1e1f 50%,
    #131414 75%,
    #08090a 100%
  );
}

.hero-desktop-wrap {
  width: 1184px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-desktop-nav {
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-desktop-brand img {
  width: 121px;
  height: 38px;
  object-fit: contain;
}

.hero-desktop-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.hero-desktop-menu a {
  color: rgba(255, 255, 255, 0.92);
  font-family: "SF-Pro-Regular-Text";
  font-size: 11px;
  line-height: 1.2;
  position: relative;
}

.hero-desktop-menu a:hover {
  color: #fff;
}

.hero-desktop-menu a:first-child::after {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  bottom: -12px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.hero-desktop-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-profile-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.hero-profile-btn img {
  width: 14px;
  height: 14px;
}

.hero-get-demo-btn {
  min-width: 108px;
  height: 34px;
  border-radius: 1000px;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 12px;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 14px;
}

.hero-get-demo-btn img {
  width: 12px;
  height: 12px;
}

.hero-desktop-content {
  margin-top: 72px;
  width: 1184px;
}

.hero-desktop-title {
  margin: 0;
  color: #fff;
  font-family: "SF-Pro-Bold-Text";
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -2.4px;
  text-transform: capitalize;
}

.hero-desktop-title span {
  color: #fb5650;
}

.hero-desktop-intro {
  width: 987px;
  margin: 16px 0 0;
  color: #fff;
  font-family: "SF-Pro-Bold-Text";
  font-size: 24px;
  line-height: 1.25;
}

.hero-desktop-points {
  width: 1184px;
  margin: 12px 0 0;
  padding-left: 24px;
  color: rgba(244, 244, 244, 0.7);
  font-family: "SF-Pro-Regular-Text";
  font-size: 16px;
  line-height: 1.25;
}

.hero-desktop-points li {
  margin-bottom: 0;
}

.hero-desktop-cta {
  margin-top: 32px;
  width: 1013px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-desktop-btn-primary,
.hero-desktop-btn-outline {
  width: 240px;
  height: 66px;
  border-radius: 1000px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "SF-Pro-Regular-Text";
  font-size: 20px;
  line-height: 1.25;
}

.hero-desktop-btn-primary {
  background: var(--primary);
  color: #fff;
}

.hero-desktop-btn-outline {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}

.hero-desktop-image-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1290px;
  height: 905px;
  top: 463px;
  pointer-events: none;
}

.hero-desktop-image {
  width: 1290px;
  height: 905px;
  object-fit: cover;
}

.hero-mobile-frame {
  display: none;
}

.hero-mobile-navbar,
.hero-mobile-nav-panel,
.hero-mobile-title,
.hero-mobile-subtitle,
.hero-mobile-image-wrap,
.hero-mobile-cta,
.hero-mobile-points {
  display: none;
}

.clients-section {
  background: #08090a;
  min-height: 220px;
  display: flex;
  align-items: center;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.clients-inner p {
  margin: 0;
  text-align: center;
  color: #d3d6e0;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 16px;
  line-height: 1.25;
}

.clients-logo-mask {
  margin-top: 33px;
  height: 40px;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.clients-logo-mask::before,
.clients-logo-mask::after {
  content: "";
  position: absolute;
  top: 0;
  width: 160px;
  height: 40px;
  z-index: 3;
  pointer-events: none;
}

.clients-logo-mask::before {
  left: 0;
  background: linear-gradient(90deg, #08090a 0%, rgba(8, 9, 10, 0) 100%);
}

.clients-logo-mask::after {
  right: 0;
  background: linear-gradient(270deg, #08090a 0%, rgba(8, 9, 10, 0) 100%);
}

.clients-logo-row {
  display: flex;
  align-items: center;
  width: calc(1358.34px * 2);
  height: 40px;
  animation: clientsLogoCarousel 28s linear infinite;
  will-change: transform;
}

.clients-logo-group {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 1358.34px;
  height: 40px;
  flex: 0 0 1358.34px;
}

.client-logo-item {
  width: 129.59px;
  height: 40px;
  padding: 5px 9.8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 129.59px;
}

.client-logo-item img {
  display: block;
  max-height: 30px;
  object-fit: contain;
}

.logo-cbiz img,
.logo-wipfli img,
.logo-berrydunn img {
  width: 110px;
}

.logo-cri img {
  width: 84.73px;
}

.logo-wa img {
  width: 102.13px;
}

.logo-holbrook img {
  width: 75.28px;
}

.logo-weaver img {
  width: 107.14px;
}

.logo-lbmc img {
  width: 110px;
  height: 24.13px;
}

.logo-aprio img {
  width: 79.59px;
}

.clients-logo-mask:hover .clients-logo-row {
  animation-play-state: paused;
}

@keyframes clientsLogoCarousel {
  0% {
    transform: translateX(-87.17px);
  }

  100% {
    transform: translateX(-1445.51px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .clients-logo-row {
    animation: none;
    transform: translateX(-87.17px);
  }
}

.positioning-section {
  background: #08090a;
  position: relative;
  min-height: 958px;
  overflow: hidden;
}

.positioning-container {
  position: relative;
  z-index: 6;
  padding-top: 48px;
}

.positioning-divider {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background-image: linear-gradient(90deg, #f51102 0%, #a4675a 32.81%, #9766ff 66%, #ff5bb4 95.5%);
}

.positioning-header {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 760px 400px;
  gap: 24px;
  align-items: start;
}

.positioning-header h2 {
  margin: 0;
  color: #fff;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 48px;
  line-height: 1.25;
  letter-spacing: -0.2px;
}

.positioning-header h2 span {
  color: #f6544e;
}

.positioning-header p {
  margin: 0;
  color: rgba(244, 244, 244, 0.7);
  font-size: 16px;
  font-family: "SF-Pro-Regular-Text";
  line-height: 1.25;
}

.positioning-image-wrap {
  position: absolute;
  left: 50%;
  top: 320.75px;
  width: 1188.62px;
  height: 586.82px;
  transform: translateX(-50%) rotate(-0.5deg);
  transform-origin: center center;
  z-index: 2;
}

.positioning-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.positioning-image-fade {
  position: absolute;
  left: 50%;
  top: 278px;
  width: min(1216px, calc(100vw - 32px));
  height: 723px;
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
  background-image: linear-gradient(180deg, rgba(8, 9, 10, 0) 4.5103%, rgba(8, 9, 10, 0.05) 16.995%, rgba(8, 9, 10, 0.2) 25.815%, rgba(8, 9, 10, 0.4) 34.409%, rgba(8, 9, 10, 0.7) 47.977%, #08090a 69.461%);
}

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

.section-head {
  max-width: 1100px;
}

.eyebrow {
  margin: 0;
  color: var(--primary);
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 30px;
  line-height: 1.2;
}

.section-head h2 {
  margin: 12px 0 0;
  font-family: "SF-Pro-Bold-Text";
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.1;
}

.section-head > p {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 20px;
  line-height: 1.4;
}

.benefits-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefits-eyebrow {
  margin: 0;
  font-family: "SF-Pro-Regular-Text";
  color: #fb5650;
  font-size: 32px;
  line-height: 1.25;
}

.benefits-title {
  margin: 0;
  font-family: "SF-Pro-Semi-Bold-Text";
  color: #111116;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -2.4px;
}

.benefit-cards {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: start;
}

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

.benefit-image {
  width: 100%;
  height: 213px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-image img {
  width: 272px;
  height: 213px;
  object-fit: contain;
}

.benefit-image-step1 img {
  width: 244px;
}

.benefit-image-step3 img {
  width: 223px;
}

.benefit-image-step4 img {
  width: 230px;
}

.benefit-card h3 {
  margin: 16px 0 8px;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 24px;
  color: #111116;
  line-height: 1.25;
}

.benefit-card p {
  margin: 0;
  color: #393a4a;
  font-size: 14px;
  line-height: 1.25;
}

.feature-clusters-section {
  padding: 80px 0 72px;
}

.features-heading {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.features-heading h2 {
  margin: 0;
  font-family: "SF-Pro-Bold-Text";
  color: #111116;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -2.4px;
}

.features-heading h2 span {
  color: #fb5650;
}

.features-heading p {
  margin: 0;
  font-family: "SF-Pro-Regular-Text";
  color: #111116;
  font-size: 24px;
  line-height: 1.25;
}

.feature-box {
  margin-top: 32px;
  border-radius: 16px;
  background: #f7f7f7;
  padding: 24px 16px;
  display: grid;
  grid-template-columns: 500px 620px;
  gap: 32px;
  align-items: stretch;
}

.feature-box.reverse {
  grid-template-columns: 620px 500px;
}

.feature-box-copy h3 {
  margin: 0;
  font-family: "SF-Pro-Semi-Bold-Text";
  color: #111116;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -1.6px;
}

.feature-box-copy > p {
  margin: 8px 0 0;
  font-family: "SF-Pro-Regular-Text";
  color: #111116;
  font-size: 16px;
  line-height: 1.25;
}

.feature-list {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.feature-item {
  min-height: 69px;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: flex-start;
  gap: 4px;
  padding: 14px 16px;
}

.feature-item img {
  width: 25px;
  height: 25px;
  margin-top: 1px;
}

.feature-item h4 {
  margin: 0;
  font-family: "SF-Pro-Bold-Text";
  color: #111116;
  font-size: 16px;
  line-height: 1.15;
  letter-spacing: -0.8px;
}

.feature-item p {
  margin: 4px 0 0;
  font-family: "SF-Pro-Regular-Text";
  color: #464646;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: -0.7px;
}

.feature-item-active {
  border: 1.2px solid #fb5650;
}

.feature-item-title-red h4 {
  color: #fb5650;
}

.feature-box-media {
  border-radius: 12px;
  background: rgba(251, 86, 80, 0.1);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-box-media img {
  width: 572px;
  max-width: 100%;
  height: 321.75px;
  border-radius: 8px;
  object-fit: cover;
}

.feature-box-tall {
  grid-template-columns: 500px 620px;
}

.feature-cta {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.feature-cta-btn {
  height: 60px;
  border: 1px solid #6b6c7e;
  border-radius: 1000px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 24px;
  color: #111116;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 20px;
  line-height: 1.25;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.feature-cta-btn:first-child {
  width: 240px;
}

.feature-cta-btn:last-child {
  width: 220px;
}

.feature-cta-btn:hover {
  border-color: #fb5650;
  background: #fff1f0;
  transform: translateY(-1px);
}

.feature-cta-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.feature-cta-icon img {
  width: 24px;
  height: 24px;
}

.feature-cta-icon-arrow img {
  position: absolute;
  width: 10px;
  height: 10px;
}

.feature-cta-icon-arrow img:first-child {
  top: 7px;
  left: 7px;
}

.feature-cta-icon-arrow img:last-child {
  top: 7px;
  left: 7px;
}

.workflow-section {
  background: #070809;
  padding: 48px 0;
}

.workflow-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.workflow-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.workflow-eyebrow {
  margin: 0;
  font-family: "SF-Pro-Semi-Bold-Text";
  color: #fb5650;
  font-size: 24px;
  line-height: 1.25;
}

.workflow-title-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.workflow-title-block h2 {
  margin: 0;
  font-family: "SF-Pro-Semi-Bold-Text";
  color: #fff;
  font-size: 40px;
  line-height: 1.25;
}

.workflow-title-block p {
  margin: 0;
  font-family: "SF-Pro-Regular-Text";
  color: #d3d6e0;
  font-size: 16px;
  line-height: 1.25;
}

.workflow-divider-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.workflow-divider {
  flex: 1 1 auto;
  height: 4px;
  border-radius: 2px;
  background-image: linear-gradient(90deg, #f51102 0%, #a4675a 32.81%, #9766ff 66%, #ff5bb4 95.5%);
}

.workflow-switchers {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.workflow-arrow-btn {
  position: relative;
  width: 28px;
  height: 28px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.workflow-arrow-btn .workflow-arrow-bg {
  width: 28px;
  height: 28px;
}

.workflow-arrow-btn .workflow-arrow-stroke {
  position: absolute;
  top: 9px;
  left: 8px;
  width: 13px;
  height: 10px;
}

.workflow-arrow-btn.is-left .workflow-arrow-stroke {
  transform: rotate(180deg);
}

.workflow-arrow-btn.is-disabled {
  pointer-events: none;
}

.workflow-carousel-shell {
  width: 100%;
  overflow: hidden;
}

.workflow-carousel-track {
  display: flex;
  gap: 16px;
  transform: translateX(0);
  transition: transform 0.35s ease;
  will-change: transform;
}

.workflow-card-item {
  position: relative;
  width: 284px;
  min-width: 284px;
  height: 411px;
  border: 1px solid #393a4a;
  border-radius: 16px;
  background: #1c1c24;
  overflow: hidden;
  padding: 24px;
}

.workflow-card-glow {
  position: absolute;
  width: 203px;
  height: 203px;
  left: 167px;
  top: 196px;
  pointer-events: none;
  opacity: 1;
}

.workflow-card-item h3 {
  margin: 0;
  font-family: "SF-Pro-Bold-Text";
  color: #fff;
  font-size: 24px;
  line-height: 1.25;
  position: relative;
  z-index: 1;
}

.workflow-subtitle {
  margin: 6px 0 0;
  font-family: "SF-Pro-Semi-Bold-Text";
  color: #e2e4ea;
  font-size: 16px;
  line-height: 1.25;
  position: relative;
  z-index: 1;
}

.workflow-copy {
  margin: 4px 0 0;
  font-family: "SF-Pro-Regular-Text";
  color: #a7a9bc;
  font-size: 14px;
  line-height: 1.25;
  position: relative;
  z-index: 1;
}

.workflow-card-visual {
  position: absolute;
  width: 240px;
  height: 240px;
  left: 21px;
  top: 118px;
  object-fit: contain;
  z-index: 1;
}

.workflow-pill {
  position: absolute;
  left: 24px;
  bottom: 14px;
  min-width: 118px;
  height: 24px;
  border-radius: 32px;
  background: #fb5650;
  color: #fff;
  font-family: "SF-Pro-Regular-Text";
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  padding: 0 10px;
  z-index: 1;
}

.workflow-card-item:hover {
  border-color: #515268;
  transform: translateY(-1px);
}

.workflow-card-item.with-badge .workflow-subtitle {
  font-family: "SF-Pro-Regular-Text";
}

.workflow-card-item[data-workflow-popup] {
  cursor: pointer;
}

.workflow-card-item[data-workflow-popup]:focus-visible {
  outline: 2px solid #fb5650;
  outline-offset: 2px;
}

body.workflow-popup-open {
  overflow: hidden;
}

.workflow-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(7, 8, 9, 0.82);
  backdrop-filter: blur(3px);
}

.workflow-popup-overlay[hidden] {
  display: none;
}

.workflow-popup-dialog {
  position: relative;
  width: min(1184px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  border-radius: 32px;
  border: 1px solid #393a4a;
  background: #1c1c24;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.42);
  scrollbar-width: thin;
  scrollbar-color: #4f5064 #232431;
}

.workflow-popup-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 24px;
  height: 24px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.92;
  transition: opacity 0.2s ease;
  z-index: 2;
}

.workflow-popup-close:hover {
  opacity: 1;
}

.workflow-popup-close img {
  width: 100%;
  height: 100%;
  display: block;
}

.workflow-popup-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px clamp(20px, 10.81vw, 128px) 26px;
}

.workflow-popup-visual,
.workflow-popup-copy {
  width: min(880px, 100%);
  margin: 0 auto;
}

.workflow-popup-step {
  margin: 0;
  color: #fb5650;
  font-family: "SF-Pro-Bold-Text";
  font-size: 24px;
  line-height: 1.25;
}

.workflow-popup-media {
  margin-top: 16px;
  border-radius: 16px;
  overflow: hidden;
  background: #12131f;
}

.workflow-popup-media img {
  width: 100%;
  height: auto;
  display: block;
}

.workflow-popup-divider {
  margin-top: 16px;
  height: 4px;
  border-radius: 2px;
  background-image: linear-gradient(90deg, #f51102 0%, rgba(164, 103, 90, 0.5) 32.81%, rgba(151, 102, 255, 0.25) 66%, rgba(255, 91, 180, 0.01) 95.5%);
}

.workflow-popup-copy h3 {
  margin: 0;
  color: #fff;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 48px;
  line-height: 1.25;
}

.workflow-popup-lead {
  margin: 16px 0 0;
  color: #d3d6e0;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 20px;
  line-height: 1.25;
}

.workflow-popup-intro,
.workflow-popup-list-label,
.workflow-popup-outcome {
  margin: 16px 0 0;
  color: #d3d6e0;
  font-family: "SF-Pro-Regular-Text";
  font-size: 16px;
  line-height: 1.25;
}

.workflow-popup-list-label {
  margin-top: 20px;
}

#workflowPopupList {
  margin: 4px 0 0;
  padding-left: 22px;
  color: #d3d6e0;
  font-family: "SF-Pro-Regular-Text";
  font-size: 16px;
  line-height: 1.25;
}

#workflowPopupList li + li {
  margin-top: 2px;
}

.workflow-popup-outcome-label {
  margin: 20px 0 0;
  color: #d3d6e0;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 20px;
  line-height: 1.25;
}

.workflow-popup-outcome {
  margin-top: 8px;
}

.testimonials-section {
  background: #f7f8f9;
  padding: 100px 0;
}

.testimonials-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.testimonials-eyebrow {
  margin: 0;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 24px;
  line-height: 1.25;
  color: #fb5650;
}

.testimonials-content {
  display: flex;
  align-items: center;
  gap: 48px;
}

.testimonials-copy {
  width: 292px;
  min-width: 292px;
}

.testimonials-copy h2 {
  margin: 0;
  color: #111116;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 40px;
  line-height: 1.25;
}

.testimonials-copy p {
  margin: 12px 0 0;
  color: #393a4a;
  font-family: "SF-Pro-Regular-Text";
  font-size: 16px;
  line-height: 1.25;
}

.testimonials-rail-wrap {
  width: 844px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.testimonials-rail-shell {
  width: 844px;
  overflow: hidden;
}

.testimonials-rail-track {
  display: flex;
  gap: 16px;
  transform: translateX(0);
  transition: transform 0.35s ease;
  will-change: transform;
}

.testimonial-card {
  width: 387px;
  min-width: 387px;
  height: 267px;
  border-radius: 24px;
  background: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card-top p {
  margin: 0;
  color: #6b6c7e;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 16px;
  line-height: 1.25;
}

.testimonial-brand-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.testimonial-brand-row span {
  color: #111116;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 18px;
  line-height: 1.25;
}

.testimonial-brand-logo {
  display: block;
}

.testimonial-brand-logo-imaginarium {
  width: 134px;
  height: 45px;
  object-fit: contain;
}

.testimonial-brand-logo-makenica {
  width: 45px;
  height: 45px;
  object-fit: cover;
}

.testimonial-brand-logo-third {
  width: 130px;
  height: 23px;
  object-fit: contain;
}

.testimonial-card-footer {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.testimonial-avatar {
  width: 49px;
  height: 49px;
  border-radius: 8px;
  object-fit: cover;
}

.testimonial-card-footer h3 {
  margin: 0;
  color: #111116;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 16px;
  line-height: 1.25;
}

.testimonial-stars {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.testimonial-stars img {
  width: 14.63px;
  height: 14.63px;
  display: block;
}

.testimonials-divider-row {
  width: 844px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.testimonials-divider {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background-image: linear-gradient(90deg, #f51102 0%, #a4675a 32.81%, #9766ff 66%, #ff5bb4 95.5%);
}

.testimonials-switchers {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.testimonials-mobile-list {
  display: none;
}

.testimonial-mobile-card {
  background: #fff;
  border-radius: 25px;
  padding: 25px;
}

.testimonial-mobile-card h3 {
  margin: 0;
  color: #111116;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 24px;
  line-height: 1.25;
}

.testimonial-mobile-card p {
  margin: 12px 0 0;
  color: #272833;
  font-family: "SF-Pro-Regular-Text";
  font-size: 14px;
  line-height: 1.25;
}

.testimonial-mobile-card h4 {
  margin: 12px 0 0;
  color: #393a4a;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 16px;
  line-height: 1.5;
}

.advantages-section {
  background: #070809;
  padding: 48px 0 100px;
}

.advantages-head {
  padding: 0 16px;
}

.advantages-eyebrow {
  margin: 0;
  font-family: "SF-Pro-Semi-Bold-Text";
  color: #fb5650;
  font-size: 24px;
  line-height: 1.25;
}

.advantages-head h2 {
  margin: 16px 0 0;
  font-family: "SF-Pro-Semi-Bold-Text";
  color: #fff;
  font-size: 40px;
  line-height: 1.25;
}

.advantages-head p {
  margin: 8px 0 0;
  font-family: "SF-Pro-Regular-Text";
  color: #d3d6e0;
  font-size: 16px;
  line-height: 1.25;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.advantages-tabs {
  margin: 24px 16px 0;
  padding: 2px;
  display: flex;
  gap: 2px;
  border-radius: 30px;
  background: #1c1c24;
  overflow: hidden;
}

.advantages-tab {
  flex: 1 1 0;
  min-height: 50px;
  border: 0;
  border-radius: 60px;
  background: transparent;
  color: #6b6c7e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 16px;
  line-height: 1.25;
  cursor: pointer;
  padding: 12px 20px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.advantages-tab-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.advantages-tab-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.advantages-tab.active {
  background: #fb5650;
  color: #fff;
}

.advantages-tab:not(.active):hover {
  background: #272833;
  color: #a7a9bc;
  transform: translateY(-1px);
}

.advantages-tab.active:hover {
  background: #ff635d;
  transform: translateY(-1px);
}

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

.advantage-card {
  position: relative;
  min-height: 585px;
  border-radius: 16px;
  border: 1px solid #393a4a;
  background: #1c1c24;
  padding: 40px;
  overflow: hidden;
}

.advantage-card-glow {
  position: absolute;
  width: 100px;
  height: 100px;
  left: 131px;
  top: 82px;
  pointer-events: none;
}

.advantage-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 15px;
  background: #272833;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.advantage-card-icon img {
  width: 32px;
  height: 32px;
}

.advantage-card h3 {
  margin: 24px 0 0;
  color: #fff;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 24px;
  line-height: 1.25;
}

.advantage-card-list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  color: #a7a9bc;
  font-family: "SF-Pro-Regular-Text";
  font-size: 16px;
  line-height: 1.25;
}

.advantage-card-list li + li {
  margin-top: 2px;
}

.pricing-section {
  background: #fff;
  padding: 60px 0;
}

.pricing-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pricing-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-eyebrow {
  margin: 0;
  color: #fb5650;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 24px;
  line-height: 1.25;
}

.pricing-head h2 {
  margin: 0;
  color: #111116;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 40px;
  line-height: 1.25;
}

.pricing-head p {
  margin: 0;
  color: #393a4a;
  font-family: "SF-Pro-Regular-Text";
  font-size: 16px;
  line-height: 1.25;
}

.pricing-divider {
  height: 4px;
  border-radius: 2px;
  background-image: linear-gradient(90deg, #f51102 0%, #a4675a 32.81%, #9766ff 66%, #ff5bb4 95.5%);
}

.pricing-controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 16px;
}

.pricing-controls-row h3 {
  margin: 0;
  color: #111116;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 36px;
  line-height: 1.25;
}

.pricing-switcher {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 43px;
  padding: 4px;
  border-radius: 12px;
  border: 0.5px solid #d9dbe9;
  background: #f1f2f9;
  backdrop-filter: blur(10px);
}

.pricing-switch-btn {
  border: 0;
  background: transparent;
  color: #170f49;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 14px;
  line-height: 1.15;
  border-radius: 8px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.pricing-switch-btn.active {
  background: #fff;
  box-shadow: inset 0 -2px 2px rgba(10, 16, 50, 0.07), 0 3px 6px rgba(7, 0, 110, 0.03);
}

.pricing-switch-btn:not(.active):hover {
  background: #e5e8f3;
  transform: translateY(-1px);
}

.pricing-save-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #5aca75;
  color: #fff;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 10px;
  line-height: 1.15;
  padding: 7px 6px;
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0 16px;
}

.plan-card {
  display: flex;
  flex-direction: column;
  border-radius: 32px;
  box-shadow: 0 2px 15px rgba(25, 33, 61, 0.1);
  overflow: hidden;
}

.plan-card-top,
.plan-card-bottom {
  background: #fff;
  border: 1px solid #f1f2f9;
}

.plan-card-top {
  padding: 24px;
  border-bottom: 0;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
}

.plan-card-featured .plan-card-top {
  background-image: linear-gradient(47.3518deg, #fff 1.5376%, #ffdfde 96.699%);
}

.plan-title-row {
  min-height: 30px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.plan-title-row h4 {
  margin: 0;
  color: #111116;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 24px;
  line-height: 1.25;
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 21px;
  border-radius: 100px;
  border: 1px solid #ffb46e;
  background: #fff4ec;
  color: #ff8306;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 10px;
  line-height: 1.25;
  padding: 4px 8px;
  text-transform: capitalize;
}

.plan-price-block {
  margin-top: 16px;
}

.plan-price {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 0;
}

.plan-price-old {
  color: #6b6c7e;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 16px;
  line-height: 1.25;
  text-decoration: line-through;
  text-decoration-skip-ink: none;
}

.plan-price-current {
  color: #2e5aac;
  font-family: "SF-Pro-Bold-Text";
  font-size: 36px;
  line-height: 1.25;
}

.plan-billed {
  margin: 4px 0 0;
  color: #a7a9bc;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 14px;
  line-height: 1.25;
}

.plan-actions {
  margin-top: 16px;
  min-height: 86px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.plan-btn-primary {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  background: #fb5650;
  color: #fff;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 16px;
  line-height: 1.25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.plan-btn-primary:hover {
  background: #ff635d;
  transform: translateY(-1px);
}

.plan-btn-link {
  border-bottom: 1px solid #111116;
  color: #111116;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 16px;
  line-height: 1.25;
  padding-bottom: 2px;
}

.plan-btn-link:hover {
  opacity: 0.8;
}

.plan-icon-external,
.plan-icon-chevron {
  position: relative;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.plan-icon-external img,
.plan-icon-chevron img {
  position: absolute;
  width: 10px;
  height: 10px;
  top: 7px;
  left: 7px;
}

.plan-card-bottom {
  border-top: 1px solid #f1f2f9;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 396px;
}

.plan-choose {
  margin: 0;
  color: #170f49;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 18px;
  line-height: 1.15;
}

.plan-choose strong {
  font-family: "SF-Pro-Bold-Text";
}

.plan-desc {
  margin: 12px 0 0;
  color: #6b6c7e;
  font-family: "SF-Pro-Regular-Text";
  font-size: 16px;
  line-height: 1.25;
}

.plan-features {
  margin-top: auto;
}

.plan-features-title {
  margin: 0;
  color: #170f49;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 18px;
  line-height: 1.15;
}

.plan-features ul {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b6c7e;
  font-family: "SF-Pro-Regular-Text";
  font-size: 14px;
  line-height: 1.25;
}

.plan-features li img {
  width: 20px;
  height: 20px;
}

.plan-view-features {
  margin-top: 16px;
  border: 0;
  border-bottom: 1px solid #111116;
  background: transparent;
  color: #111116;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 16px;
  line-height: 1.25;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 0 2px;
  cursor: pointer;
}

.plan-view-features:hover {
  opacity: 0.82;
}

.faq-section {
  background: #fff;
  padding: 48px 0 52px;
}

.faq-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 16px;
}

.faq-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-eyebrow {
  margin: 0;
  color: #fb5650;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 24px;
  line-height: 1.25;
}

.faq-head h2 {
  margin: 0;
  color: #111116;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 40px;
  line-height: 1.25;
}

.faq-content-shell {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-tabs-desktop {
  display: flex;
  align-items: center;
  width: 100%;
  background: #f1f2f5;
  border-radius: 30px;
  padding: 2px;
  overflow: hidden;
}

.faq-tab {
  flex: 1 1 0;
  min-width: 0;
  height: 50px;
  border: 0;
  border-radius: 60px;
  background: transparent;
  color: #6b6c7e;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 16px;
  line-height: 1.25;
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-tab.active {
  background: #fb5650;
  color: #fff;
}

.faq-tab:not(.active):hover {
  background: #e8eaf0;
  color: #4f5264;
}

.faq-tabs-mobile {
  display: none;
}

.faq-mobile-trigger {
  width: 100%;
  height: 52px;
  border: 0;
  border-radius: 62.5px;
  background: #fb5650;
  color: #fff;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 16px;
  line-height: 1.25;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  cursor: pointer;
}

.faq-mobile-trigger img {
  width: 12.5px;
  height: 12.5px;
  transition: transform 0.2s ease;
}

.faq-mobile-trigger[aria-expanded="false"] img {
  transform: rotate(-90deg);
}

.faq-mobile-menu {
  margin-top: 8px;
  width: 100%;
  background: #f1f2f5;
  border-radius: 27.083px;
  padding: 2.083px 2.083px 6.25px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.faq-mobile-option {
  width: 100%;
  min-height: 52.083px;
  border: 0;
  border-radius: 62.5px;
  background: transparent;
  color: #6b6c7e;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 16px;
  line-height: 1.25;
  text-align: left;
  padding: 13.542px 25px;
  cursor: pointer;
}

.faq-mobile-option.active {
  background: #fb5650;
  color: #fff;
}

.faq-mobile-option:hover {
  background: #e6e8ef;
}

.faq-mobile-option.active:hover {
  background: #f64b45;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 16px;
}

.faq-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  padding-bottom: 24px;
}

.faq-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: center/cover no-repeat url("../assets/images/faq-divider-desktop.svg");
}

.faq-question {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.faq-question-text {
  flex: 1 1 auto;
  color: #111116;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 20px;
  line-height: 1.25;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: center/contain no-repeat url("../assets/images/faq-icon-plus-desktop.svg");
}

.faq-item.open .faq-icon {
  background-image: url("../assets/images/faq-icon-minus-desktop.svg");
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  margin: 0;
  color: #393a4a;
  font-family: "SF-Pro-Regular-Text";
  font-size: 16px;
  line-height: 1.25;
}

.faq-learn-more {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fb5650;
  border-bottom: 1px solid #fb5650;
  padding-bottom: 2px;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 16px;
  line-height: 1.25;
}

.faq-learn-more-icon {
  position: relative;
  width: 24px;
  height: 24px;
  background: center/contain no-repeat url("../assets/images/faq-link-icon-b.svg");
}

.faq-learn-more-icon img {
  position: absolute;
  top: 7px;
  left: 7px;
  width: 10px;
  height: 10px;
}

.final-cta-section {
  background: #000;
  padding: 40px 0 36px;
}

.final-cta-wrap {
  padding: 0 16px;
}

.final-cta-card {
  border-radius: 10px;
  background: #1c1c24;
  color: #fff;
  padding: 22px 42px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  min-height: 144px;
}

.final-cta-card h2 {
  margin: 0;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 40px;
  line-height: 1.25;
  letter-spacing: 0;
}

.final-cta-card .txt-white {
  color: #fff;
}

.final-cta-card .txt-red {
  color: #fb5650;
}

.final-cta-actions {
  display: flex;
  gap: 12px;
  width: 380px;
  justify-content: flex-end;
}

.final-cta-btn {
  height: 60px;
  border-radius: 1000px;
  padding: 18px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 16px;
  line-height: 1.25;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.final-cta-btn span,
.final-cta-btn img {
  position: relative;
  z-index: 2;
}

.final-cta-btn img {
  width: 20px;
  height: 20px;
}

.final-cta-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  z-index: 1;
  transition: width 0.35s ease;
}

.final-cta-btn:hover::after {
  width: 100%;
}

.final-cta-btn:hover {
  transform: translateY(-1px);
}

.final-cta-btn-outline {
  width: 160px;
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.final-cta-btn-outline::after {
  background: rgba(255, 255, 255, 0.14);
}

.final-cta-btn-primary {
  width: 210px;
  color: #fff;
  background: #fb5650;
}

.final-cta-btn-primary::after {
  background: #ea4540;
}

.vendor-footer {
  background: #000;
  color: #fff;
  padding: 24px 0 40px;
}

.footer-shell {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding: 16px 0;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  width: 457px;
  max-width: 100%;
}

.footer-brand img {
  width: 178px;
  height: 55px;
  object-fit: contain;
}

.footer-brand p {
  margin: 0;
  color: #fff;
  font-family: "SF-Pro-Regular-Text";
  font-size: 16px;
  line-height: 1.25;
}

.footer-subscribe {
  display: flex;
  flex-direction: column;
  width: 403px;
  max-width: 100%;
}

.footer-subscribe label {
  display: block;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 14px;
  line-height: 1.25;
  margin-bottom: 12px;
  color: #f1f2f5;
}

.footer-subscribe-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-subscribe-row input {
  width: 288px;
  max-width: 100%;
  height: 36px;
  border-radius: 40px;
  border: 1px solid #393a4a;
  background: #30313f;
  color: #a7a9bc;
  padding: 8px 16px;
  font-family: "SF-Pro-Regular-Text";
  font-size: 16px;
  line-height: 1.25;
}

.footer-subscribe-row input::placeholder {
  color: #a7a9bc;
}

.footer-signup-btn {
  width: 103px;
  min-width: 103px;
  height: 36px;
  border-radius: 1000px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 14px;
  line-height: 1.25;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.footer-signup-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  background: rgba(255, 255, 255, 0.14);
  transition: width 0.35s ease;
}

.footer-signup-btn:hover::after {
  width: 100%;
}

.footer-signup-btn:hover {
  transform: translateY(-1px);
}

.subscribe-error {
  margin: 8px 0 0;
  color: #ff7c78;
  font-size: 13px;
  display: none;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  min-height: 382px;
}

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

.footer-col h3,
.footer-sub-col h3 {
  margin: 0 0 8px;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 16px;
  line-height: 1.25;
  color: #fff;
}

.footer-col a,
.footer-sub-col a {
  color: #cdced9;
  font-family: "SF-Pro-Regular-Text";
  font-size: 14px;
  line-height: 1.25;
  display: inline-flex;
  width: fit-content;
}

.footer-col a:hover,
.footer-sub-col a:hover {
  color: var(--primary);
}

.footer-col-stack {
  gap: 74px;
}

.footer-sub-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-bottom {
  border-top: 1px solid #d3d6e0;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  color: #8f9bb7;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.footer-social span {
  color: #fff;
  font-family: "SF-Pro-Semi-Bold-Text";
  font-size: 16px;
  line-height: 1.25;
}

.social-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-links a {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-links img {
  width: 24px;
  height: 24px;
}

.social-links a:hover {
  transform: translateY(-1px);
  opacity: 0.85;
}

@media (max-width: 1250px) {
  .container {
    width: min(var(--container-tablet), calc(100vw - 32px));
  }

  .hero-section {
    min-height: 980px;
  }

  .hero-desktop-wrap {
    width: 616px;
  }

  .hero-desktop-nav {
    height: 76px;
  }

  .hero-desktop-menu {
    gap: 12px;
  }

  .hero-desktop-menu a {
    font-size: 10px;
  }

  .hero-desktop-actions {
    gap: 6px;
  }

  .hero-desktop-content {
    margin-top: 50px;
    width: 616px;
  }

  .hero-desktop-title {
    font-size: 64px;
    line-height: 1.08;
    letter-spacing: -2px;
  }

  .hero-desktop-intro {
    width: 616px;
    font-size: 20px;
  }

  .hero-desktop-points {
    width: 616px;
    font-size: 14px;
  }

  .hero-desktop-cta {
    width: 616px;
    gap: 14px;
  }

  .hero-desktop-btn-primary,
  .hero-desktop-btn-outline {
    width: 220px;
    height: 58px;
    font-size: 18px;
  }

  .hero-desktop-image-wrap {
    width: 760px;
    height: 532px;
    top: 448px;
  }

  .hero-desktop-image {
    width: 760px;
    height: 532px;
  }

  .clients-section {
    min-height: 204px;
  }

  .clients-inner p {
    font-size: 14px;
  }

  .clients-logo-mask::before,
  .clients-logo-mask::after {
    width: 96px;
  }

  .clients-logo-row {
    animation-duration: 24s;
  }

  .positioning-section {
    min-height: 910px;
  }

  .positioning-container {
    padding-top: 40px;
  }

  .positioning-header {
    margin-top: 28px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .positioning-header h2 {
    font-size: 58px;
    line-height: 1.12;
    max-width: 616px;
  }

  .positioning-header p {
    font-size: 15px;
    max-width: 520px;
  }

  .positioning-image-wrap {
    top: 392px;
    width: min(980px, calc(100vw - 44px));
    aspect-ratio: 1188.62 / 586.82;
    height: auto;
  }

  .positioning-image-fade {
    top: 342px;
    width: min(var(--container-tablet), calc(100vw - 32px));
    height: 560px;
  }

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

  .pricing-controls-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
  }

  .pricing-controls-row h3 {
    font-size: 34px;
  }

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

  .plan-card-bottom {
    min-height: 360px;
  }

  .workflow-title-block h2 {
    font-size: 34px;
  }

  .workflow-title-block p {
    font-size: 14px;
  }

  .workflow-carousel-shell {
    max-width: 100%;
  }

  .workflow-popup-overlay {
    padding: 16px;
  }

  .workflow-popup-dialog {
    width: min(1000px, calc(100vw - 32px));
    max-height: calc(100vh - 32px);
  }

  .workflow-popup-body {
    padding: 20px clamp(18px, 6vw, 72px) 22px;
  }

  .workflow-popup-copy h3 {
    font-size: 40px;
  }

  .testimonials-section {
    padding: 72px 0;
  }

  .testimonials-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .testimonials-copy {
    width: 100%;
    min-width: 0;
    max-width: 820px;
  }

  .testimonials-copy h2 {
    font-size: 34px;
  }

  .testimonials-copy p {
    max-width: 520px;
    font-size: 15px;
  }

  .testimonials-rail-wrap,
  .testimonials-rail-shell,
  .testimonials-divider-row {
    width: 100%;
  }

  .faq-head h2 {
    font-size: 34px;
  }

  .faq-tab {
    font-size: 14px;
  }

  .faq-question-text {
    font-size: 18px;
  }

  .faq-answer p {
    font-size: 15px;
  }

  .advantages-head h2 {
    font-size: 34px;
  }

  .advantages-head p {
    font-size: 14px;
  }

  .advantages-tab {
    min-height: 46px;
    font-size: 15px;
    padding: 10px 16px;
  }

  .advantages-tab-icon {
    width: 26px;
    height: 26px;
  }

  .advantage-card {
    min-height: 520px;
    padding: 30px;
  }

  .advantage-card h3 {
    margin-top: 20px;
    font-size: 22px;
  }

  .advantage-card-list {
    font-size: 14px;
  }

  .benefits-eyebrow {
    font-size: 26px;
  }

  .benefits-title {
    font-size: 42px;
    letter-spacing: -1.8px;
  }

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

  .feature-clusters-section {
    padding: 72px 0 64px;
  }

  .features-heading {
    padding: 12px 0;
  }

  .features-heading h2 {
    font-size: 42px;
    letter-spacing: -1.8px;
  }

  .features-heading p {
    font-size: 20px;
  }

  .feature-box,
  .feature-box.reverse,
  .feature-box-tall {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-box-copy h3 {
    font-size: 34px;
    width: 100%;
  }

  .feature-box-copy > p {
    width: 100%;
  }

  .feature-item {
    width: 100%;
  }

  .feature-box-media img {
    height: auto;
  }

  .feature-cta-btn {
    font-size: 18px;
  }

  .feature-cta-btn:first-child,
  .feature-cta-btn:last-child {
    width: 210px;
  }

  .final-cta-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 28px;
  }

  .final-cta-card h2 {
    font-size: 34px;
  }

  .final-cta-actions {
    width: 100%;
    justify-content: flex-start;
  }

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

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

  .footer-col-stack {
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 650px) {
  .container {
    width: min(var(--container-mobile), calc(100vw - 24px));
    padding: 0 12px;
  }

  .promo-contact a {
    font-size: 11px;
  }

  .promo-inner p {
    font-size: 11px;
  }

  .hero-section {
    padding: 0;
    background: radial-gradient(circle at center, #333333 0%, #1e1e1f 50%, #131414 75%, #08090a 100%);
    overflow: hidden;
  }

  .hero-desktop-wrap {
    display: none;
  }

  .hero-mobile-frame {
    width: 375px;
    max-width: 100%;
    min-height: 812px;
    margin: 0 auto;
    padding: 0 12px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
  }

  .hero-mobile-navbar {
    display: block;
    width: calc(100% + 24px);
    margin-left: -12px;
    background: rgba(8, 9, 10, 0.9);
    height: 78px;
  }

  .hero-mobile-navbar-inner {
    height: 100%;
    padding: 20px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .hero-mobile-brand {
    width: 115px;
    min-width: 115px;
    height: 36px;
    display: inline-flex;
    align-items: center;
  }

  .hero-mobile-brand img {
    width: 115px;
    height: 36px;
    object-fit: contain;
  }

  .hero-mobile-nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .hero-mobile-request-btn {
    height: 32px;
    border-radius: 1000px;
    background: #fb5650;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #fff;
    font-family: "SF-Pro-Semi-Bold-Text";
    font-size: 12px;
    line-height: 1.25;
  }

  .hero-mobile-request-btn img {
    width: 12px;
    height: 12px;
  }

  .hero-mobile-menu-btn {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid #fff;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3px;
    padding: 0;
  }

  .hero-mobile-menu-btn span {
    width: 12px;
    height: 1.6px;
    background: #fff;
    border-radius: 2px;
  }

  .hero-mobile-nav-panel {
    display: none;
    position: absolute;
    top: 84px;
    left: 12px;
    right: 12px;
    border-radius: 14px;
    border: 1px solid #2f3240;
    background: rgba(8, 9, 10, 0.96);
    padding: 12px;
    z-index: 20;
    flex-direction: column;
    gap: 10px;
  }

  .hero-mobile-nav-panel.open {
    display: flex;
  }

  .hero-mobile-nav-panel a {
    color: #fff;
    font-family: "SF-Pro-Semi-Bold-Text";
    font-size: 14px;
    line-height: 1.25;
    padding: 6px 2px;
  }

  .hero-mobile-title {
    display: block;
    width: 313px;
    margin: -2px 0 0 19px;
    color: #fff;
    font-family: "SF-Pro-Bold-Text";
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -1.6px;
  }

  .hero-mobile-title span {
    color: #fb5650;
  }

  .hero-mobile-subtitle {
    display: block;
    width: 307px;
    margin: 0 0 0 22px;
    color: #fff;
    font-family: "SF-Pro-Regular-Text";
    font-size: 20px;
    line-height: 1.25;
  }

  .hero-mobile-image-wrap {
    display: block;
    width: 370px;
    height: 218px;
    margin-left: -10px;
  }

  .hero-mobile-image {
    width: 370px;
    height: 218px;
    object-fit: cover;
    object-position: center;
  }

  .hero-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 312px;
    margin: 0 auto;
  }

  .hero-mobile-btn-primary,
  .hero-mobile-btn-outline {
    width: 312px;
    border-radius: 1000px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "SF-Pro-Semi-Bold-Text";
    font-size: 16px;
    line-height: 1.25;
  }

  .hero-mobile-btn-primary {
    min-height: 48px;
    max-height: 48px;
    background: #fb5650;
    color: #fff;
  }

  .hero-mobile-btn-outline {
    min-height: 50px;
    max-height: 50px;
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
  }

  .hero-mobile-points {
    display: block;
    width: 307px;
    margin: 6px auto 0;
    color: rgba(244, 244, 244, 0.7);
    font-family: "SF-Pro-Regular-Text";
    font-size: 12px;
    line-height: 1.25;
    padding-left: 18px;
  }

  .hero-mobile-points li {
    margin-bottom: 3px;
  }

  .clients-inner p {
    font-size: 13px;
    line-height: 1.25;
  }

  .clients-section {
    min-height: 156px;
  }

  .clients-logo-mask {
    margin-top: 18px;
    height: 34px;
  }

  .clients-logo-mask::before,
  .clients-logo-mask::after {
    width: 56px;
    height: 34px;
  }

  .clients-logo-row {
    animation-duration: 22s;
  }

  .positioning-section {
    min-height: 716px;
  }

  .positioning-container {
    padding-top: 28px;
  }

  .positioning-header {
    margin-top: 24px;
    gap: 12px;
  }

  .positioning-header h2 {
    font-size: 42px;
    line-height: 1.18;
    max-width: 100%;
  }

  .positioning-header p {
    font-size: 14px;
    line-height: 1.35;
    max-width: 100%;
  }

  .positioning-image-wrap {
    top: 382px;
    width: calc(100vw - 24px);
    aspect-ratio: 1188.62 / 586.82;
    height: auto;
  }

  .positioning-image-fade {
    top: 344px;
    width: calc(100vw - 24px);
    height: 372px;
  }

  .eyebrow {
    font-size: 22px;
  }

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

  .section-head > p {
    font-size: 16px;
  }

  .benefits-section {
    padding: 56px 0 0;
  }

  .benefits-eyebrow {
    font-size: 22px;
  }

  .benefits-title {
    font-size: 36px;
    letter-spacing: -1.4px;
    line-height: 1.1;
  }

  .benefit-cards,
  .advantages-grid,
  .footer-links-grid {
    grid-template-columns: 1fr;
  }

  .pricing-section {
    padding: 40px 0 56px;
  }

  .pricing-layout {
    gap: 16px;
  }

  .pricing-eyebrow {
    font-size: 20px;
  }

  .pricing-head h2 {
    font-size: 32px;
  }

  .pricing-head p {
    font-size: 14px;
  }

  .pricing-controls-row {
    padding: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .pricing-controls-row h3 {
    font-size: 32px;
  }

  .pricing-switcher {
    width: 100%;
    justify-content: space-between;
    gap: 6px;
    border-radius: 10px;
  }

  .pricing-switch-btn {
    font-size: 12px;
    padding: 8px 10px;
  }

  .pricing-save-pill {
    font-size: 9px;
    padding: 6px 5px;
  }

  .pricing-cards-grid {
    padding: 0;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .plan-card-top {
    padding: 18px;
  }

  .plan-title-row h4 {
    font-size: 22px;
  }

  .plan-price-current {
    font-size: 34px;
  }

  .plan-card-bottom {
    min-height: auto;
    padding: 24px 16px;
    gap: 20px;
  }

  .plan-choose,
  .plan-features-title {
    font-size: 17px;
  }

  .plan-desc {
    font-size: 14px;
  }

  .faq-section {
    padding: 25px 0 24px;
  }

  .faq-layout {
    width: 311px;
    margin: 0 auto;
    padding: 0;
    gap: 25px;
  }

  .faq-head {
    gap: 12.5px;
  }

  .faq-eyebrow {
    font-family: "SF-Pro-Regular-Text";
    font-size: 20px;
  }

  .faq-head h2 {
    font-size: 32px;
  }

  .faq-content-shell {
    width: 311px;
    gap: 12.5px;
  }

  .faq-tabs-desktop {
    display: none;
  }

  .faq-tabs-mobile {
    display: block;
  }

  .faq-list {
    padding: 24px 16.667px;
    gap: 12.5px;
  }

  .faq-item {
    gap: 25px;
    padding-bottom: 25px;
  }

  .faq-item::after {
    background-image: url("../assets/images/faq-divider-mobile.svg");
  }

  .faq-question-text {
    font-size: 20px;
    max-width: 270px;
  }

  .faq-icon {
    width: 16px;
    height: 16px;
    background-image: url("../assets/images/faq-icon-plus-mobile.svg");
  }

  .faq-item.open .faq-icon {
    background-image: url("../assets/images/faq-icon-minus-mobile.svg");
  }

  .faq-answer p {
    font-size: 16px;
  }

  .faq-learn-more {
    font-size: 16px;
  }

  .advantages-section {
    padding: 40px 0 64px;
  }

  .advantages-head {
    padding: 0;
  }

  .advantages-eyebrow {
    font-size: 20px;
  }

  .advantages-head h2 {
    margin-top: 12px;
    font-size: 32px;
  }

  .advantages-head p {
    font-size: 13px;
  }

  .advantages-tabs {
    margin: 16px 0 0;
    flex-direction: column;
    border-radius: 16px;
    gap: 8px;
    padding: 8px;
  }

  .advantages-tab {
    width: 100%;
    min-height: 46px;
    border-radius: 12px;
    justify-content: flex-start;
    padding: 10px 14px;
    font-size: 14px;
  }

  .advantage-card {
    min-height: auto;
    padding: 24px;
  }

  .advantages-grid {
    margin: 12px 0 0;
    gap: 12px;
  }

  .advantage-card-glow {
    width: 84px;
    height: 84px;
    left: 96px;
    top: 68px;
  }

  .advantage-card h3 {
    font-size: 22px;
    margin-top: 18px;
  }

  .advantage-card-list {
    font-size: 15px;
  }

  .workflow-section {
    padding: 40px 0;
  }

  .workflow-inner {
    gap: 24px;
  }

  .workflow-eyebrow {
    font-size: 20px;
  }

  .workflow-title-block h2 {
    font-size: 32px;
  }

  .workflow-title-block p {
    font-size: 13px;
  }

  .workflow-divider-row {
    gap: 12px;
  }

  .workflow-switchers {
    display: none;
  }

  .workflow-carousel-shell {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
  }

  .workflow-carousel-track {
    transform: none !important;
    width: max-content;
  }

  .workflow-card-item {
    scroll-snap-align: start;
  }

  .workflow-popup-overlay {
    padding: 8px;
    align-items: flex-end;
  }

  .workflow-popup-dialog {
    width: calc(100vw - 16px);
    max-height: calc(100vh - 16px);
    border-radius: 20px;
  }

  .workflow-popup-close {
    top: 16px;
    right: 16px;
    width: 22px;
    height: 22px;
  }

  .workflow-popup-body {
    gap: 18px;
    padding: 16px 14px 18px;
  }

  .workflow-popup-step {
    font-size: 22px;
  }

  .workflow-popup-media {
    margin-top: 12px;
    border-radius: 12px;
  }

  .workflow-popup-divider {
    margin-top: 12px;
  }

  .workflow-popup-copy h3 {
    font-size: 34px;
  }

  .workflow-popup-lead {
    margin-top: 12px;
    font-size: 18px;
  }

  .workflow-popup-intro,
  .workflow-popup-list-label,
  .workflow-popup-outcome,
  #workflowPopupList {
    margin-top: 12px;
    font-size: 15px;
  }

  .workflow-popup-list-label,
  .workflow-popup-outcome-label {
    margin-top: 16px;
  }

  .workflow-popup-outcome-label {
    font-size: 18px;
  }

  .testimonials-section {
    padding: 24px 0 36px;
  }

  .testimonials-inner {
    width: 311px;
    margin: 0 auto;
    padding: 0;
    gap: 16px;
  }

  .testimonials-eyebrow {
    font-family: "SF-Pro-Regular-Text";
    font-size: 20px;
  }

  .testimonials-content {
    display: block;
  }

  .testimonials-copy {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .testimonials-copy h2 {
    font-size: 32px;
  }

  .testimonials-copy p {
    margin-top: 16px;
    color: #272833;
    font-size: 14px;
  }

  .testimonials-rail-wrap {
    margin-top: 16px;
    gap: 0;
  }

  .testimonials-rail-shell,
  .testimonials-switchers {
    display: none;
  }

  .testimonials-divider-row {
    width: 100%;
    gap: 0;
  }

  .testimonials-divider {
    height: 4.1667px;
    border-radius: 2.0833px;
  }

  .testimonials-mobile-list {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .testimonial-mobile-card .testimonial-stars img {
    width: 15.24px;
    height: 15.24px;
  }

  .benefit-card h3,
  .feature-box-copy h3 {
    font-size: 30px;
  }

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

  .benefit-image {
    height: 184px;
  }

  .benefit-image img {
    width: min(272px, 86vw);
    height: 184px;
  }

  .feature-clusters-section {
    padding: 56px 0 48px;
  }

  .features-heading {
    padding: 8px 0;
    gap: 10px;
  }

  .features-heading h2 {
    font-size: 36px;
    line-height: 1.15;
    letter-spacing: -1.2px;
  }

  .features-heading p {
    font-size: 16px;
    line-height: 1.3;
  }

  .feature-box,
  .feature-box.reverse,
  .feature-box-tall {
    margin-top: 20px;
    gap: 16px;
    padding: 16px 12px;
  }

  .feature-box-copy h3 {
    font-size: 30px;
    letter-spacing: -1px;
  }

  .feature-box-copy > p {
    font-size: 14px;
  }

  .feature-list {
    margin-top: 16px;
    gap: 8px;
  }

  .feature-item {
    min-height: 62px;
    padding: 12px;
  }

  .feature-item h4 {
    font-size: 15px;
  }

  .feature-item p {
    font-size: 13px;
  }

  .feature-box-media {
    padding: 12px;
  }

  .feature-cta {
    flex-direction: column;
    align-items: center;
  }

  .feature-cta-btn {
    width: min(320px, calc(100vw - 48px));
    font-size: 18px;
  }

  .feature-cta-btn:first-child,
  .feature-cta-btn:last-child {
    width: min(320px, calc(100vw - 48px));
  }

  .final-cta-section {
    padding: 24px 0 20px;
  }

  .final-cta-wrap {
    padding: 0;
  }

  .final-cta-card {
    min-height: unset;
    padding: 22px 20px;
  }

  .final-cta-card h2 {
    font-size: 32px;
  }

  .final-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .final-cta-btn {
    width: 100%;
    height: 52px;
    padding: 14px 20px;
  }

  .vendor-footer {
    padding: 18px 0 28px;
  }

  .footer-shell {
    gap: 28px;
  }

  .footer-brand img {
    width: 160px;
    height: auto;
  }

  .footer-brand p {
    margin-top: 6px;
    font-size: 14px;
  }

  .footer-subscribe {
    width: 100%;
  }

  .footer-subscribe label {
    margin-bottom: 10px;
  }

  .footer-subscribe-row {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .footer-subscribe-row input {
    width: 100%;
  }

  .footer-signup-btn {
    width: 100%;
    min-width: 0;
    height: 40px;
  }

  .footer-links-grid {
    gap: 20px;
    min-height: unset;
  }

  .footer-col h3,
  .footer-sub-col h3 {
    margin-bottom: 2px;
  }

  .footer-col-stack {
    gap: 20px;
  }

  .footer-bottom {
    gap: 12px;
    padding-top: 14px;
  }

  .footer-bottom p {
    font-size: 12px;
    line-height: 1.4;
  }

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

  .footer-social span {
    font-size: 14px;
  }

  .social-links {
    gap: 12px;
  }
}
