:root {
  --ft-green: #00694a;
  --ft-green-dk: #004d37;
  --ft-mint: #4fd1a5;
  --ft-dark: #0a1f1a;
  --ft-light: #f4faf8;
  --ft-border: #dfe9e5;
  --ft-text: #1f2937;
  --ft-muted: #5b6b66;
}

.ft-jumpnav {
  position: sticky;
  top: 0;
  z-index: 500;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin: 0 -15px 20px;
  padding: 12px 20px;
  background: #fff;
  border-bottom: 1px solid var(--ft-border);
  box-shadow: 0 2px 10px rgba(10, 31, 26, 0.05);
}

.ft-jumpnav a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ft-green);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.ft-jumpnav a:hover,
.ft-jumpnav a:focus-visible {
  background: var(--ft-light);
  color: var(--ft-green-dk);
  text-decoration: none;
}

.ft-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 380px;
  overflow: hidden;
  padding: 50px 60px;
  background: var(--ft-light);
  scroll-margin-top: 80px;
}

.ft-hero-left {
  text-align: left;
}

.ft-hero-left h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 800 !important;
  line-height: 1.15;
  color: var(--ft-dark);
  letter-spacing: -0.5px;
  margin-top: 0;
}

.ft-hero-left p {
  font-size: clamp(14px, 1rem, 1.05rem);
  color: #181a18;
  line-height: 1.7;
  max-width: 460px;
}

.ft-hero-left .ft-hero-chart {
  max-width: 360px;
  margin-top: 24px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--ft-border);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(10, 31, 26, 0.08);
}

.ft-hero-right {
  text-align: center;
}

.ft-hero-right img {
  max-width: 100%;
  height: auto;
}

.ft-hero-right .wistia_responsive_padding {
  border-radius: 16px;
  overflow: hidden;
}

.btn-theme {
  display: inline-block;
  background-color: var(--ft-green) !important;
  color: #fff !important;
  margin-top: 20px;
  min-width: 0;
  max-width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  padding: 9px 20px;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0, 105, 74, 0.25);
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.btn-theme:hover {
  background-color: var(--ft-green-dk) !important;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 105, 74, 0.32);
  transform: translateY(-1px);
}

.btn-theme:focus-visible,
.ft-card .btn-link:focus-visible {
  outline: 2px solid var(--ft-mint);
  outline-offset: 2px;
}

.ft-features {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  padding: 10px 60px 30px;
  background: #fff;
  scroll-margin-top: 80px;
}

.ft-features > [class*='col-'] {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.ft-features > .text-center {
  margin-bottom: 10px;
}

.ft-features > .text-center p {
  color: #181a18;
  max-width: 620px;
  margin: 0 auto;
}

.card-feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  background: #fff;
  border: 1px solid var(--ft-border);
  border-radius: 10px;
  padding: 30px 26px;
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card-feat:hover {
  box-shadow: 0 8px 26px rgba(0, 105, 74, 0.12);
  transform: translateY(-3px);
}

.card-feat .img-wrapper {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
  background: var(--ft-light);
}

.card-feat .img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.card-feat h3 {
  font-weight: 700;
  color: var(--ft-dark);
  margin-top: 0;
}

.card-feat p {
  color: #181a18;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 0;
}

.card-feat .btn-theme {
  margin-top: auto;
}

.ft-platform {
  margin: 0 -15px;
  padding: 60px 60px;
  background: var(--ft-light);
  text-align: center;
  scroll-margin-top: 80px;
}

.ft-platform h2 {
  font-weight: 800 !important;
  color: var(--ft-dark);
}

.ft-platform p {
  color: #181a18;
  max-width: 640px;
  margin: 0 auto;
}

.ft-platform img {
  margin-top: 30px;
  max-width: 760px;
}

.ft-solutions {
  margin: 0 -15px;
  padding: 30px 60px;
  background: #fff;
  scroll-margin-top: 80px;
}

.ft-section-heading {
  font-weight: 800 !important;
  color: var(--ft-dark);
  display: inline-block;
  position: relative;
  padding-bottom: 14px;
}

.ft-section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 3px;
  background: var(--ft-green);
  border-radius: 2px;
}

.ft-solutions > p {
  color: #181a18;
  max-width: 620px;
  margin: 0 auto;
}

.ft-solutions-visual {
  max-width: 320px;
  margin: 30px auto 0;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--ft-border);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(10, 31, 26, 0.08);
}

.ft-solutions .row {
  display: flex;
  flex-wrap: wrap;
}

.ft-solutions .row > [class*='col-'] {
  display: flex;
  margin-top: 30px;
}

.ft-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--ft-light);
  border: 1px solid var(--ft-border);
  border-radius: 10px;
  padding: 30px 26px;
  box-shadow: 0 4px 16px rgba(10, 31, 26, 0.06);
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.ft-card:hover {
  box-shadow: 0 10px 28px rgba(0, 105, 74, 0.16);
  transform: translateY(-3px);
}

.ft-card .img-wrapper {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 18px;
}

.ft-card .img-wrapper img {
  max-height: 64px;
  width: auto;
  transition: transform 0.3s ease;
}

.ft-card:hover .img-wrapper img {
  transform: scale(1.18);
}

.ft-card h3 {
  font-weight: 700;
  color: var(--ft-dark);
  margin-top: 0;
}

.ft-card p {
  color: #181a18;
  font-size: 14px;
  line-height: 1.65;
}

.ft-card .btn-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 4px;
  font-weight: 700;
  color: var(--ft-green);
  margin-top: auto;
  align-self: center;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.ft-card .btn-link i {
  transition: transform 0.2s ease;
}

.ft-card .btn-link:hover {
  color: var(--ft-green-dk);
  text-decoration: none;
  gap: 12px;
}

.ft-card .btn-link:hover i {
  transform: translateX(3px);
}

.ft-why {
  position: relative;
  margin: 0 -15px;
  padding: 64px 60px;
  background: var(--ft-dark) url('/images/fortra/platform-page-background.webp') center bottom / cover no-repeat;
  color: #fff;
  text-align: center;
  scroll-margin-top: 80px;
}

.ft-why::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 31, 26, 0.55) 0%, rgba(10, 31, 26, 0.85) 100%);
  pointer-events: none;
}

.ft-why > * {
  position: relative;
  z-index: 1;
}

.ft-why h2 {
  font-weight: 800 !important;
  color: #fff;
}

.ft-why > p {
  color: #fff;
  max-width: 620px;
  margin: 0 auto;
}

.ft-why-card {
  margin-top: 30px;
  padding: 0 16px;
}

.ft-why-card .img-wrapper {
  width: 92px;
  height: 92px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(79, 209, 165, 0.12);
  border: 1px solid rgba(79, 209, 165, 0.3);
  box-shadow: 0 0 24px rgba(79, 209, 165, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ft-why-card:hover .img-wrapper {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(79, 209, 165, 0.3);
}

.ft-why-card .img-wrapper img {
  max-width: 48px;
  max-height: 48px;
}

.ft-why-card h3 {
  font-weight: 700;
  color: #fff;
}

.ft-why-card p {
  color: #fff;
  font-size: 14px;
  line-height: 1.65;
}

.ft-proof {
  margin: 0 -15px;
  padding: 26px 30px;
  background: var(--ft-green);
  text-align: center;
}

.ft-proof-stat {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-right: 10px;
}

.ft-proof-label {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 767px) {
  .ft-hero {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    text-align: center;
  }
  .ft-hero-left p {
    max-width: none;
  }
  .btn-theme {
    margin-left: auto;
    margin-right: auto;
  }
  .ft-proof-stat,
  .ft-proof-label {
    display: block;
    margin: 4px 0;
  }
}

html {
  scroll-behavior: smooth;
}