:root {
  --green: #008f1a;
  --green-soft: #e5f4e8;
  --green-line: #cce9d1;
  --green-overlay: rgba(0, 143, 26, 0.1);
  --ink: #101828;
  --muted: #667085;
  --line: #e3e3e3;
  --panel: #f6f6f6;
  --blue-tint: #eaf4ff;
  --dark: #101828;
  --desktop-gutter: max(40px, calc(50vw - 600px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 1200px;
  overflow-x: hidden;
  background: #fff;
  color: var(--ink);
  font-family: Inter, sans-serif;
}

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

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

.page-shell {
  width: 100%;
  overflow: hidden;
  background: #fff;
}

.announcement {
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8f6e6;
  color: #041527;
  font-size: 14px;
  font-weight: 700;
}

.page-shell #header-placeholder {
  min-height: 78px;
}

.page-shell #header-placeholder:not(:has(.navigation-section)) {
  display: none;
  min-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.page-shell #header-placeholder.active {
  min-height: calc(78px + 60px);
}

.page-shell #header-placeholder.active .navigation-section {
  top: 60px !important;
}

.page-shell #header-placeholder.active ~ .site-nav {
  top: calc(78px + 60px);
}

.site-nav {
  position: sticky;
  top: 78px;
  z-index: 30;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #eaecf0;
  background: #fff;
  box-shadow: 0 1px 0 rgba(16, 24, 40, 0.02);
}

.page-shell:not(:has(#header-placeholder .navigation-section)) .site-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}

.page-shell:not(:has(#header-placeholder .navigation-section)) main {
  padding-top: 58px;
}

.brand {
  width: 1440px;
  height: 58px;
  display: flex;
  align-items: center;
  padding-left: 120px;
}

.brand img {
  width: 147px;
  height: 40px;
  object-fit: contain;
}

.nav-start-button {
  position: absolute;
  top: 50%;
  right: var(--desktop-gutter);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 18px;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50%);
  transition: background-color 180ms ease, transform 180ms ease;
}

.nav-start-button:hover {
  background: #007b17;
  transform: translateY(calc(-50% - 1px));
}

.nav-start-button:focus-visible {
  outline: 3px solid rgba(0, 143, 26, 0.32);
  outline-offset: 3px;
}

.section-frame {
  position: relative;
  width: 1440px;
  margin: 0 auto;
  padding: 120px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  margin: 0;
  padding: 8px 16px;
  border: 0;
  border-radius: 24px;
  background: var(--green-overlay);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 13px 22px;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 16px 32px rgba(0, 143, 26, 0.24);
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.primary-button img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.section-heading {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.section-heading h2,
.hero h1,
.final-cta h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.18;
}

.section-heading h2 {
  width: 800px;
  font-size: 48px;
}

.section-heading > p:not(.eyebrow),
.faq-intro > p:last-child {
  width: min(800px, calc(100vw - 48px));
}

.section-heading h2 span,
.hero h1 span,
.final-cta h2 span,
.closing em {
  color: var(--green);
  font-style: normal;
}

.section-heading h2 .text-ink {
  color: var(--ink);
  white-space: nowrap;
}

.with-spark .spark {
  position: absolute;
  left: calc(50% + 214px);
  top: 30px;
}

.spark {
  width: 46.03px;
  height: 55.04px;
  pointer-events: none;
}

.spark span {
  position: absolute;
  display: block;
  height: 6px;
  border-radius: 52.54px;
  background: #99d2a3;
}

.spark span:nth-child(1) {
  left: 0;
  top: 0;
  width: 28.83px;
  transform: rotate(-55.5deg);
}

.spark span:nth-child(2) {
  left: 10.29px;
  top: 13.64px;
  width: 39.29px;
  transform: rotate(-34.86deg);
}

.spark span:nth-child(3) {
  left: 16.84px;
  top: 46.96px;
  width: 28.83px;
  transform: rotate(-4.18deg);
}

.hero {
  height: 717px;
  padding-top: 16px;
  padding-bottom: 0;
  overflow: visible;
}

.hero-copy {
  position: absolute;
  z-index: 11;
  left: 120px;
  top: 123px;
  width: 510px;
}

.hero h1 {
  width: 510px;
  margin-top: 24px;
  font-size: 48px;
  letter-spacing: -2.16px;
  line-height: normal;
}

.hero .eyebrow {
  background: var(--green-overlay);
  color: var(--green);
  font-weight: 700;
}

.hero-subtitle {
  width: 510px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.hero-title-spark {
  position: absolute;
  left: 493px;
  top: 38px;
}

.hero-button {
  margin-top: 24px;
  width: 180px;
  box-shadow: none;
  transition: box-shadow 160ms ease;
}

.hero-button:hover {
  box-shadow: 0 16px 32px rgba(0, 143, 26, 0.24);
}

.hero-visual {
  position: absolute;
  inset: 0;
}

.hero-banner {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  width: 1920px;
  max-width: none;
  height: 717px;
  transform: translateX(-50%);
}

.hero-blur {
  display: none;
}

.hero-device-blur {
  display: none;
}

.hero-social {
  position: absolute;
  z-index: 8;
  object-fit: cover;
  border-radius: 16px;
  filter: drop-shadow(0 8px 10px rgba(0, 143, 26, 0.2));
}

.hero-social-instagram {
  width: 75px;
  height: 75px;
  right: 308px;
  top: 43px;
}

.hero-social-whatsapp {
  width: 60px;
  height: 60px;
  right: 114px;
  top: 70px;
}

.hero-social-facebook {
  width: 60px;
  height: 60px;
  right: 84px;
  top: 271px;
}

.floating-product {
  position: absolute;
  z-index: 9;
  left: 708px;
  top: 139px;
  width: 208.05px;
  height: 125.89px;
  padding: 12.8px;
  border-radius: 11px;
  background: #fff;
  box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.16);
}

.floating-product strong {
  display: block;
  margin-bottom: 8.54px;
  font-size: 11px;
  line-height: 1;
}

.floating-product div {
  display: flex;
  gap: 10.67px;
}

.floating-product img {
  width: 76.82px;
  height: 76.82px;
  border-radius: 6px;
  object-fit: cover;
  object-position: 52% 72%;
  transform: scale(0.92);
}

.floating-product i {
  width: 94.95px;
  height: 70.42px;
  display: flex;
  flex-direction: column;
  gap: 9.6px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.floating-product i span {
  display: block;
  height: 6.4px;
  border-radius: 4px;
  background: #cce9d1;
}

.floating-product i span:nth-child(1) {
  width: 94.95px;
}

.floating-product i span:nth-child(2) {
  width: 81.08px;
}

.floating-product i span:nth-child(3) {
  width: 89.62px;
}

.floating-product i span:nth-child(4) {
  width: 72.55px;
}

.floating-product i span:nth-child(5) {
  width: 57.61px;
}

.laptop {
  position: absolute;
  z-index: 6;
  left: 0;
  top: 0;
  width: 1440px;
  height: 717px;
}

.laptop-device,
.laptop-shadow,
.laptop-screen,
.laptop-logo {
  position: absolute;
}

.laptop-device {
  left: 386.72px;
  top: 192.23px;
  width: 879.61px;
  height: 452.75px;
}

.laptop-shadow {
  left: 312.76px;
  top: 579.27px;
  width: 1009.67px;
  height: 69.05px;
  opacity: 1;
  mix-blend-mode: multiply;
}

.laptop-screen {
  left: 708.49px;
  top: 201.74px;
  width: 544.73px;
  height: 359.93px;
  object-fit: fill;
  transform: none;
  border-radius: 0;
}

.laptop-logo {
  left: 916.17px;
  top: 573.38px;
  width: 31.39px;
  height: 12.16px;
}

.phones {
  position: absolute;
  z-index: 10;
  left: 0;
  top: 0;
  width: 1440px;
  height: 717px;
}

.phone-shadow-back,
.phone-back,
.phone-shadow-front,
.phone-front,
.phone-screen-clip,
.phone-screen {
  position: absolute;
}

.phone-shadow-back {
  left: 1112.09px;
  top: 568.26px;
  width: 392.37px;
  height: 150.04px;
  z-index: 1;
  mix-blend-mode: multiply;
}

.phone-back {
  left: 1146.63px;
  top: 331.4px;
  width: 173.94px;
  height: 330.03px;
  z-index: 2;
}

.phone-shadow-front {
  left: 1146.63px;
  top: 332.28px;
  width: 173.75px;
  height: 329.05px;
  z-index: 3;
  mix-blend-mode: multiply;
}

.phone-front {
  left: 1110.73px;
  top: 331.59px;
  width: 181.94px;
  height: 363.98px;
  z-index: 5;
}

.phone-screen-clip {
  left: 1114.77px;
  top: 338.72px;
  width: 164.2px;
  height: 351.86px;
  z-index: 6;
  overflow: visible;
  border-radius: 0;
  -webkit-mask-image: url("./public/assets/figma/phone-screen-mask.661f149f.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 1.99px 1.08px;
  -webkit-mask-size: 159.97px 347.44px;
  mask-image: url("./public/assets/figma/phone-screen-mask.661f149f.svg");
  mask-mode: luminance;
  mask-repeat: no-repeat;
  mask-position: 1.99px 1.08px;
  mask-size: 159.97px 347.44px;
}

.phone-screen {
  left: 0;
  top: 0;
  width: 164.2px;
  height: 351.86px;
  object-fit: fill;
  border-radius: 0;
}

.problems {
  min-height: 1009px;
  padding-top: 116px;
}

.problem-blur {
  position: absolute;
  left: -22px;
  top: 254px;
  width: 205px;
  height: 205px;
  border-radius: 50%;
  background: rgba(0, 143, 26, 0.12);
  filter: blur(38px);
}

.heading-social {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  filter: drop-shadow(0 8px 10px rgba(0, 143, 26, 0.18));
}

.heading-instagram {
  left: 356px;
  top: -10px;
}

.heading-whatsapp {
  left: 314px;
  top: 88px;
}

.heading-facebook {
  left: 791px;
  right: auto;
  top: -10px;
}

#problems-title {
  width: 800px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.problem-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.problem-card {
  min-height: 439px;
  overflow: hidden;
  border: 1px solid rgba(107, 114, 128, 0.2);
  border-radius: 12px;
  background: #fff;
}

.problem-card > img {
  width: 100%;
  height: 243px;
  object-fit: cover;
}

.problem-card div {
  padding: 24px 16px;
}

.problem-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.38;
}

.problem-card p {
  margin: 15px 0 0;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.5;
}

/* Keep desktop sections centered without clipping at 1200–1439px widths. */
@media (max-width: 1439px) {
  .brand {
    width: 100%;
    padding-left: var(--desktop-gutter);
  }

  .nav-start-button {
    right: var(--desktop-gutter);
  }

  .section-frame {
    width: 100%;
    padding-right: var(--desktop-gutter);
    padding-left: var(--desktop-gutter);
  }

  .hero-copy {
    left: var(--desktop-gutter);
  }

  .audience .section-heading h2 {
    width: 100%;
    max-width: 1200px;
  }

  .audience .spark {
    display: none;
  }

  .audience .industry-strip,
  .audience .capability-grid {
    width: 100%;
  }

  .closing {
    width: 100%;
  }
}

.closing {
  position: relative;
  z-index: 1;
  width: 1200px;
  margin: 16px auto 0;
  text-align: center;
}

.closing-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.closing-divider span {
  flex: 0 0 552px;
  border-top: 1px dashed #c0c6ca;
}

.closing-divider i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #d8f0e0;
}

.closing-divider img {
  width: 18px;
  height: 18px;
}

.closing p {
  position: relative;
  width: 296px;
  margin: 18px auto 0;
  color: #647b99;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.96px;
}

.closing .faster {
  position: relative;
}

.closing .faster::after {
  content: "";
  position: absolute;
  left: -14px;
  right: -16px;
  bottom: -15px;
  height: 14px;
  background: url("./public/assets/figma/problem-underline.11abfdd8.svg") center / contain no-repeat;
}

.features {
  min-height: 1043px;
  padding-top: 120px;
  background: #fff;
}

.features .with-spark .spark {
  left: calc(50% + 206px);
  top: 13px;
}

#features-title {
  width: 800px;
  line-height: 1.2;
  letter-spacing: -1.6px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.feature-card {
  position: relative;
  height: 177px;
  overflow: hidden;
  padding: 16px;
  border-radius: 20px;
  background: var(--panel);
}

.feature-copy {
  position: relative;
  z-index: 2;
  width: 340px;
  margin-top: 4px;
}

.feature-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-meta i,
.audience-grid i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
}

.audience-grid i {
  background: var(--green-overlay);
}

.feature-meta img,
.audience-grid i img,
.audience-grid i svg {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.audience-grid i svg {
  display: block;
}

.feature-meta span {
  padding: 8px 16px;
  border-radius: 24px;
  background: rgba(0, 149, 52, 0.1);
  color: var(--green);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.feature-card h3 {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.25;
}

.feature-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.feature-image {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 206px;
  height: 145px;
  object-fit: cover;
  border-radius: 10px;
}

.coming-soon {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 16px 0;
}

.coming-soon span {
  flex: 1;
  border-top: 1px dashed #c0c6ca;
}

.coming-soon em {
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: #98a2b3;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.affiliate-card {
  width: 592px;
  margin: 0 auto;
}

.steps {
  min-height: 965px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--dark);
  box-shadow: 0 0 0 100vmax var(--dark);
  clip-path: inset(0 -100vmax);
}

.section-heading.dark h2 {
  color: #fff;
}

.section-heading.dark .eyebrow {
  height: 32px;
  padding: 8px 16px;
  border: 0;
  background: var(--green-overlay);
  color: var(--green);
  font-size: 12px;
  letter-spacing: 1.2px;
}

.section-heading.dark p:last-of-type {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.25;
}

.steps .spark {
  left: calc(50% + 144px);
  top: 13px;
  transform: none;
}

.step-track {
  width: 1200px;
  display: grid;
  grid-template-columns: 176px 48px 176px 48px 176px 48px 176px 48px 176px;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}

.step-track > span {
  height: 2px;
  border-top: 0;
  background: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.72) 0 8px, transparent 8px 16px);
}

.step-track > span.complete {
  background: repeating-linear-gradient(to right, var(--green) 0 8px, transparent 8px 16px);
}

.step-track .outer-line {
  opacity: 0;
}

.step-track button {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  background: #fff;
  box-shadow: none;
  color: #597394;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  isolation: isolate;
  transition: background 160ms ease, color 160ms ease;
}

.step-track button::before {
  display: none;
}

.step-track button::after {
  display: none;
}

.step-track button > span {
  position: relative;
  z-index: 2;
}

.step-track button.active {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

#steps-title {
  width: 800px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1.6px;
  white-space: nowrap;
}

.step-copy {
  margin-top: 16px;
  color: #fff;
  text-align: center;
  transition: opacity 260ms ease, transform 260ms ease;
  will-change: opacity, transform;
}

.step-copy h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 36px;
  line-height: 1.2;
}

.step-copy p {
  margin: 0;
  color: #fff;
  font-size: 14px;
}

.step-visual {
  position: relative;
  width: 664px;
  height: 331px;
  margin-top: 16px;
  transition: opacity 260ms ease, transform 260ms ease;
  will-change: opacity, transform;
}

.steps.is-step-switching .step-copy {
  opacity: 0;
  transform: translateY(8px);
}

.steps.is-step-switching .step-visual {
  opacity: 0;
  transform: translateY(10px);
}

.step-screen-frame {
  position: absolute;
  inset: 0;
  width: 664px;
  height: 331px;
  overflow: hidden;
  border: 1px solid #e3e3e3;
  border-radius: 20px;
  box-shadow: 8px 8px 35px rgba(0, 143, 26, 0.2);
}

.step-screen {
  position: absolute;
  inset: 0;
  width: 664px;
  height: 331px;
  object-fit: cover;
}

.step-screen.is-build-screen {
  top: -7.95%;
  height: 107.94%;
}

.step-extra-wrap {
  position: absolute;
  pointer-events: none;
}

.step-extra {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.step-person-wrap {
  left: 473px;
  top: 2px;
  width: 343px;
  height: 329px;
  overflow: hidden;
  transform: scaleX(-1);
}

.step-person-wrap .step-extra {
  left: -50px;
  top: 0;
  width: 512px;
  height: 329px;
  object-fit: fill;
}

.step-extra-wrap.is-boxes {
  left: 515px;
  top: 100px;
  width: 297px;
  height: 297px;
}

.step-extra-wrap.is-social {
  left: 516px;
  top: 172px;
  width: 271px;
  height: 271px;
}

.step-extra-wrap.is-chart {
  left: 550px;
  top: 164px;
  width: 251px;
  height: 251px;
}

.steps-button {
  margin-top: 38px;
  min-width: 210px;
}

.audience {
  min-height: 1011px;
  padding-top: 120px;
  background: #fff;
}

.audience .section-heading h2 {
  width: 1200px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1.6px;
}

.audience .spark {
  left: calc(50% + 620px);
  top: 40px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.audience-grid article {
  min-height: 174px;
  padding: 16px;
  border-radius: 20px;
  background: var(--panel);
}

.audience-grid header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.audience-grid h3 {
  margin: 0;
  max-width: 100%;
  font-size: 16px;
  line-height: 1.25;
}

.audience-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.3;
}

@media (hover: hover) and (pointer: fine) {
  .problem-card,
  .feature-card,
  .audience-grid article {
    transition: box-shadow 180ms ease;
  }

  .problem-card > img,
  .feature-card .feature-image,
  .industry-strip article > img {
    transform-origin: center;
    transition: transform 240ms ease;
  }

  .problem-card:hover,
  .feature-card:hover,
  .audience-grid article:hover {
    box-shadow: 0 12px 24px rgba(16, 24, 40, 0.12);
  }

  .problem-card:hover > img,
  .feature-card:hover .feature-image,
  .industry-strip article:hover > img {
    transform: scale(1.06);
  }
}

.industry-strip {
  width: 1200px;
  height: 320px;
  margin: 56px auto 0;
  overflow: hidden;
}

.industry-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: industry-scroll 48s linear infinite;
}

.industry-strip:hover .industry-track {
  animation-play-state: paused;
}

.industry-strip article {
  position: relative;
  flex: 0 0 226px;
  width: 226px;
  height: 320px;
  overflow: hidden;
  border-radius: 20px;
  color: #fff;
  background: #101828;
}

.industry-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-strip article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.82) 100%);
}

.industry-strip article > div {
  position: absolute;
  z-index: 1;
  left: 14px;
  right: 14px;
  bottom: 24px;
}

.industry-strip h3 {
  margin: 0 0 11px;
  font-size: 18px;
  line-height: 1.2;
}

.industry-strip p {
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
}

.capability-intro {
  margin-top: 160px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: 1200px;
  margin: 56px auto 0;
}

.capability-card {
  display: flex;
  flex-direction: column;
  min-height: 488px;
  padding: 48px 32px;
  border-radius: 24px;
  overflow: hidden;
}

.capability-card--pos {
  background: #ecf9ef;
}

.capability-card--booking {
  background: #edf6ff;
}

.capability-category {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 143, 26, 0.1);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.capability-card--booking .capability-category {
  background: rgba(45, 132, 235, 0.12);
  color: #2576cf;
}

.capability-copy .capability-category + h3 {
  margin-top: 20px;
}

.capability-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.6px;
  white-space: nowrap;
}

.capability-card p {
  max-width: 492px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.capability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}

.capability-tags span {
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(16, 24, 40, 0.06);
  color: #475467;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.capability-image {
  display: block;
  width: 100%;
  height: 192px;
  margin-top: auto;
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
}

.capability-image--device {
  position: relative;
  z-index: 2;
  width: calc(100% + 72px);
  height: 264px;
  margin: 0 -36px -32px;
  border-radius: 0;
  object-fit: contain;
  object-position: center bottom;
}

.capability-visual--pos .capability-image--device {
  width: calc(100% + 136px);
  height: 316px;
  margin: 0 -68px -88px;
}

.capability-visual {
  position: relative;
  z-index: 1;
  height: 256px;
  display: flex;
  align-items: end;
  justify-content: center;
  margin: auto -32px -32px;
  isolation: isolate;
}

.capability-visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 12px;
  width: 58%;
  height: 32px;
  border-radius: 50%;
  background: rgba(16, 24, 40, 0.16);
  filter: blur(14px);
}

.capability-float-card {
  position: absolute;
  z-index: 3;
  width: 128px;
  height: 72px;
  display: grid;
  grid-template-columns: 24px 1fr;
  grid-template-rows: 16px 12px;
  column-gap: 10px;
  row-gap: 7px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 28px rgba(16, 24, 40, 0.16);
  backdrop-filter: blur(8px);
}

.capability-float-stack {
  position: absolute;
  z-index: 3;
  top: 22px;
  right: 42px;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 10px;
}

.capability-visual--pos .capability-float-stack {
  inset: 0;
  display: block;
  transform: translateY(40px);
}

.capability-tool {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 108px;
  height: 34px;
  padding: 0 11px 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 22px rgba(16, 24, 40, 0.14);
  color: #344054;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.capability-visual--pos .capability-tool {
  position: absolute;
  min-width: 126px;
  height: 42px;
  padding: 0 12px 0 6px;
  border-radius: 12px;
  gap: 8px;
}

.capability-visual--pos .capability-tool--products {
  top: 26px;
  left: 74px;
}

.capability-visual--pos .capability-tool--inventory {
  top: 28px;
  right: 66px;
}

.capability-visual--pos .capability-tool--orders {
  bottom: 58px;
  left: 50px;
}

.capability-visual--pos .capability-tool--customers {
  right: 50px;
  bottom: 62px;
}

.capability-tool svg {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  padding: 8px;
  overflow: visible;
  border-radius: 50%;
  fill: currentColor;
}

.capability-tool--products {
  color: #7f56d9;
}

.capability-tool--products svg {
  background: rgba(127, 86, 217, 0.14);
}

.capability-tool--products span,
.capability-tool--inventory span,
.capability-tool--orders span,
.capability-tool--customers span {
  color: #344054;
}

.capability-tool--inventory {
  color: #f79009;
}

.capability-tool--inventory svg {
  background: rgba(247, 144, 9, 0.14);
}

.capability-tool--orders {
  color: #12b76a;
}

.capability-tool--orders svg {
  background: rgba(18, 183, 106, 0.14);
}

.capability-tool--customers {
  color: #2e90fa;
}

.capability-tool--customers svg {
  background: rgba(46, 144, 250, 0.14);
}

.capability-float-card b {
  grid-row: 1 / span 2;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: var(--green-soft);
}

.capability-float-card i {
  display: block;
  align-self: center;
  height: 6px;
  border-radius: 999px;
  background: #d0d5dd;
}

.capability-float-card i:last-child {
  width: 68%;
  background: #b4e3bd;
}

.capability-visual--pos .capability-float-card {
  top: 26px;
  right: 52px;
}

.capability-visual--booking .capability-float-card {
  top: 34px;
  left: 52px;
}

.capability-visual--booking {
  align-items: flex-end;
  justify-content: center;
}

.booking-laptop {
  position: relative;
  z-index: 2;
  display: block;
  width: 500px;
  height: 282px;
  margin: 0 auto -78px;
  object-fit: contain;
  object-position: center bottom;
}

.booking-laptop__screen {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 184px;
  overflow: hidden;
  border: 7px solid #252b36;
  border-bottom-width: 9px;
  border-radius: 14px 14px 5px 5px;
  background: #fff;
  box-shadow: 0 18px 28px rgba(16, 24, 40, 0.2);
}

.booking-laptop__base {
  position: absolute;
  z-index: 0;
  right: -24px;
  bottom: 0;
  left: -24px;
  height: 22px;
  border-radius: 0 0 50% 50%;
  background: linear-gradient(180deg, #dce1e8 0%, #aeb7c5 100%);
  box-shadow: 0 10px 12px rgba(16, 24, 40, 0.22);
}

.booking-laptop__base::after {
  position: absolute;
  top: 0;
  left: 50%;
  width: 68px;
  height: 4px;
  border-radius: 0 0 6px 6px;
  background: #929cab;
  content: "";
  transform: translateX(-50%);
}

.booking-laptop__topbar {
  display: flex;
  align-items: center;
  height: 24px;
  gap: 4px;
  padding: 0 10px;
  border-bottom: 1px solid #edf0f4;
  background: #fbfcfd;
}

.booking-laptop__topbar i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #cbd5e1;
}

.booking-laptop__topbar strong {
  margin-left: 7px;
  color: #344054;
  font-size: 7px;
  font-weight: 700;
}

.booking-laptop__body {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  height: calc(100% - 24px);
}

.booking-laptop__sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-right: 1px solid #edf0f4;
  background: #fafbfc;
}

.booking-laptop__sidebar i {
  width: 16px;
  height: 5px;
  border-radius: 999px;
  background: #e4e7ec;
}

.booking-laptop__sidebar i:first-child {
  background: #85d8a0;
}

.booking-laptop__calendar {
  padding: 12px 14px;
}

.booking-laptop__calendar > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.booking-laptop__calendar > div strong {
  color: #344054;
  font-size: 8px;
  font-weight: 700;
}

.booking-laptop__calendar > div span {
  padding: 3px 6px;
  border-radius: 4px;
  color: #15803d;
  background: #e9f9ed;
  font-size: 6px;
  font-weight: 700;
}

.booking-laptop__calendar ul,
.booking-laptop__calendar ol {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.booking-laptop__calendar ul li {
  color: #98a2b3;
  font-size: 5px;
  line-height: 1;
  text-align: center;
}

.booking-laptop__calendar ol {
  margin-top: 6px;
}

.booking-laptop__calendar ol li {
  display: grid;
  place-items: center;
  height: 15px;
  border-radius: 4px;
  color: #667085;
  font-size: 6px;
}

.booking-laptop__calendar ol .is-selected {
  color: #fff;
  background: var(--green);
}

.booking-laptop__calendar p {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 12px 0 0;
  padding: 6px 7px;
  border-radius: 5px;
  color: #344054;
  background: #eff8ff;
  font-size: 6px;
  font-weight: 700;
}

.booking-laptop__calendar p i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2e90fa;
}

.booking-form-card {
  position: absolute;
  z-index: 3;
  top: 84px;
  left: 44px;
  display: flex;
  flex-direction: column;
  width: 156px;
  gap: 7px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 28px rgba(16, 24, 40, 0.17);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transform: scale(1.12);
  transform-origin: top left;
}

.booking-form-card__label {
  color: #667085;
  font-size: 7px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.booking-form-card strong {
  color: #101828;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.booking-form-card__field {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 19px;
  padding: 0 6px;
  border: 1px solid #eaecf0;
  border-radius: 5px;
  color: #667085;
  font-size: 7px;
  font-weight: 600;
}

.booking-form-card__field i {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: #b7ebc1;
}

.booking-form-card__field:nth-of-type(3) i {
  border-radius: 50%;
  background: #b8d9ff;
}

.booking-form-card > b {
  display: grid;
  place-items: center;
  height: 20px;
  border-radius: 5px;
  color: #fff;
  background: var(--green);
  font-size: 7px;
  font-weight: 700;
}

.pricing-plans {
  width: 100%;
  min-width: 1200px;
  padding: 120px 0 128px;
  background:
    radial-gradient(circle at 16% 22%, rgba(0, 143, 26, 0.18), transparent 27%),
    radial-gradient(circle at 85% 80%, rgba(19, 112, 196, 0.16), transparent 25%),
    var(--dark);
  box-shadow: 0 0 0 100vmax var(--dark);
  clip-path: inset(0 -100vmax);
}

.pricing-plans__inner {
  width: 1200px;
  margin: 0 auto;
}

.pricing-intro h2 {
  width: 900px;
  color: #fff;
  font-size: 48px;
  letter-spacing: -1.7px;
}

.pricing-intro h2 span {
  color: var(--green);
}

.pricing-intro > p:last-child {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.5;
}

.pricing-intro .eyebrow {
  color: #75e58f;
  background: rgba(0, 143, 26, 0.18);
}

.pricing-periods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: max-content;
  margin: 40px auto 48px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.pricing-period {
  min-height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.pricing-period:hover,
.pricing-period:focus-visible {
  color: #fff;
  outline: 0;
}

.pricing-period:focus-visible {
  box-shadow: 0 0 0 3px rgba(117, 229, 143, 0.38);
}

.pricing-period.is-active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
}

.pricing-period--quarterly span,
.pricing-period--yearly span {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(94, 224, 123, 0.18);
  color: #75e58f;
  font-size: 10px;
  letter-spacing: 0.2px;
}

.pricing-period--quarterly.is-active span,
.pricing-period--yearly.is-active span {
  background: #e1f9e6;
  color: #087c22;
}

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

.pricing-card {
  position: relative;
  min-height: 588px;
  padding: 42px 40px 44px;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.14);
  color: #fff;
  isolation: isolate;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.pricing-card::before {
  position: absolute;
  z-index: 0;
  top: -180px;
  left: -180px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 143, 26, 0.4) 0%, rgba(0, 143, 26, 0.18) 32%, transparent 70%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: scale(0.76);
  transition: opacity 240ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-card--growth::before {
  background: radial-gradient(circle, rgba(46, 144, 250, 0.44) 0%, rgba(46, 144, 250, 0.2) 32%, transparent 70%);
}

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

@media (hover: hover) and (pointer: fine) {
  .pricing-card:hover::before {
    opacity: 1;
    transform: scale(1);
  }
}

.pricing-card__mark {
  width: 52px;
  height: 58px;
}

.pricing-card__mark img {
  width: 100%;
  height: 100%;
}

.pricing-card h3 {
  margin: 20px 0 0;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1.7px;
}

.pricing-card__description {
  min-height: 52px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 36px 0 0;
}

.pricing-card__price strong {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2.8px;
}

.pricing-card__original-price {
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-decoration-thickness: 1px;
}

.pricing-card__price span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 400;
}

.pricing-card__button {
  width: 100%;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 38px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  color: #fff;
  background: transparent;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.pricing-card__button:hover,
.pricing-card__button:focus-visible {
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 22px rgba(0, 143, 26, 0.22);
  transform: translateY(-2px);
}

.pricing-card__button:hover {
  border-color: transparent;
}

.pricing-card__button:focus-visible {
  outline: 3px solid rgba(117, 229, 143, 0.72);
  outline-offset: 3px;
}

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

.pricing-card__features li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.pricing-card__features li::before {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--green);
  content: "✓";
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
}

@keyframes industry-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-1250px);
  }
}

.final-cta {
  width: 1200px;
  margin-top: 80px;
  margin-bottom: 80px;
  padding: 48px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 32px;
  background: var(--green);
}

.faq {
  width: 1200px;
  min-height: 868px;
  margin-top: 80px;
  margin-bottom: 80px;
  padding-top: 88px;
  padding-right: 48px;
  padding-bottom: 88px;
  padding-left: 48px;
  border-radius: 32px;
  background: #f6f6f6;
}

.faq-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.faq-intro h2 {
  width: 800px;
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.18;
}

.faq-intro h2 span {
  color: var(--green);
}

.faq-intro > p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.faq-search {
  width: 100%;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 44px auto 32px;
  padding: 0 20px;
  border: 1px solid #d0d5dd;
  border-radius: 12px;
  background: #fff;
}

.faq-search:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 143, 26, 0.1);
}

.faq-search svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: var(--muted);
  stroke-linecap: round;
  stroke-width: 1.8;
}

.faq-search input {
  width: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 16px;
}

.faq-search input::placeholder {
  color: #98a2b3;
}

.faq-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
}

.faq-item summary {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
}

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

.faq-item summary span {
  width: 24px;
  height: 24px;
  position: relative;
  flex: 0 0 24px;
  border: 0;
  border-radius: 0;
}

.faq-item summary span::before,
.faq-item summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  border-radius: 1px;
  background: var(--green);
  transform: translate(-50%, -50%);
}

.faq-item summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] summary span {
  background: transparent;
}

.faq-item[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item p {
  width: auto;
  margin: -4px 64px 24px 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.faq-empty {
  width: 100%;
  margin: 32px auto 0;
  color: var(--muted);
  font-size: 16px;
  text-align: center;
}

.faq-more {
  min-width: 120px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 28px auto 0;
  padding: 10px 24px;
  border: 0;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.faq-more:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-1px);
}

.faq-more:focus-visible {
  outline: 3px solid rgba(0, 143, 26, 0.35);
  outline-offset: 3px;
}

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

.final-cta h2 {
  width: 800px;
  color: #fff;
  font-size: 48px;
  font-weight: 700;
}

.final-cta h2 span {
  color: #fff;
}

.final-cta .eyebrow {
  min-height: 32px;
  padding: 8px 16px;
  border: 0;
  border-radius: 24px;
  background: var(--green-overlay);
  color: rgba(255, 255, 255, 0.5);
}

.final-cta .spark {
  left: calc(50% + 360px);
  top: 24px;
  transform: none;
}

.final-cta .spark span {
  background: rgba(255, 255, 255, 0.5);
}

.offer-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 40px;
}

.offer-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.64px;
  white-space: nowrap;
}

.offer-list .offer-icon {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.offer-list .offer-icon::after {
  width: 13px;
  height: 13px;
  content: "";
  background: #fff;
  -webkit-mask: var(--offer-icon) center / contain no-repeat;
  mask: var(--offer-icon) center / contain no-repeat;
}

.offer-icon--sign-up {
  --offer-icon: url("./public/assets/figma/icon-user-add-solid.10d895d4.svg");
}

.offer-icon--trial {
  --offer-icon: url("./public/assets/figma/icon-calendar-solid.60f25de6.svg");
}

.offer-icon--offer {
  --offer-icon: url("./public/assets/figma/icon-tag-filled.44132e12.svg");
}

.offer-icon--fees {
  --offer-icon: url("./public/assets/figma/icon-wallet-filled.43a17d03.svg");
}

.offer-button {
  width: 208px;
  height: 46px;
  margin-top: 40px;
  background: #fff;
  color: var(--green);
  box-shadow: 0 16px 32px rgba(0, 70, 20, 0.22);
}

.offer-button img {
  filter: none;
}

.offer-button img path {
  fill: var(--green);
  stroke: var(--green);
}

.fine-print {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.contact-footer {
  position: relative;
  width: 100%;
  min-width: 1440px;
  height: 520px;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  color: #fff;
}

.footer-wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 696px;
  pointer-events: none;
}

.footer-wave-back {
  top: 0;
  z-index: 0;
}

.footer-wave-front {
  top: 33px;
  z-index: 1;
}

.footer-content2 {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 784px;
  margin: 0 auto;
  padding-top: 216px;
}

.footer-logo {
  width: 220px;
  height: auto;
  aspect-ratio: 220 / 60;
  object-fit: contain;
}

.footer-content2 p {
  margin: 29px 0;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: -0.32px;
}

.powered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 29px;
  width: 784px;
  min-height: 59px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.32px;
}

.powered strong {
  font-weight: 400;
  line-height: normal;
}

.powered span {
  flex: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.powered em {
  color: var(--green);
  font-style: normal;
  font-weight: 700;
}

@media (max-width: 1439px) {
  .step-track {
    width: 100%;
    max-width: 1200px;
    grid-template-columns: minmax(0, 1fr) 40px minmax(0, 1fr) 40px minmax(0, 1fr) 40px minmax(0, 1fr) 40px minmax(0, 1fr);
    gap: clamp(8px, 1.25vw, 16px);
  }

  .pricing-plans {
    min-width: 0;
    padding-right: var(--desktop-gutter);
    padding-left: var(--desktop-gutter);
  }

  .pricing-plans__inner {
    width: 100%;
    max-width: 1200px;
  }

  .pricing-intro h2,
  #steps-title,
  .faq-intro h2,
  .final-cta h2 {
    max-width: 100%;
  }

  .faq,
  .final-cta {
    width: min(1200px, calc(100% - 80px));
  }
}

html.reveal-ready .scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 480ms ease var(--reveal-delay, 0ms),
    transform 480ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    box-shadow 180ms ease;
}

html.reveal-ready .scroll-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .industry-track {
    animation: none;
  }

  .step-copy,
  .step-visual {
    transition: none;
  }

  .problem-card > img,
  .feature-card .feature-image,
  .industry-strip article > img,
  .pricing-card::before {
    transition: none;
  }

  .problem-card:hover > img,
  .feature-card:hover .feature-image,
  .industry-strip article:hover > img {
    transform: none;
  }

  html.reveal-ready .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
