html {
  scroll-behavior: smooth;
}

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Roboto Flex', sans-serif;
      background-color: #fff;
      color: #222;
      line-height: 1.6;
      font-size: 16px;
    }

    footer {
      background: #f2f2f2;
      color: #222;
      padding: 2rem;
    }

.nav-wrapper {
  position: sticky;
  top: 0;
  background: #222;
  z-index: 999;
  width: 100%;
}

nav {
  background: #222;
  color: white;
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
}

    nav a {
      color: #fff !important;
    }

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  flex-wrap: nowrap;
}

    .nav-button {
      background-color: #fff;
      color: #222 !important;
      font-weight: 800;
      padding: 1rem .5rem;
      border-radius: .5rem;
    }

    .logo {
      height: 40px;
    }

.menu-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: block;
}

.nav-links {
  display: none;
  flex-direction: column;
  width: 100%;
  background-color: #222;
  text-align: center;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 0rem 1rem 1rem 1rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  padding: 1rem;
  display: block;
}

.nav-wrapper.open .nav-links {
  display: flex;
}

    .hero {
      background-image: url('sp-hero-image.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      position: relative;
    }

    .hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.0);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 4rem;
    }

    .hero p {
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
    }

    h1 {
      font-family: ResolveSansExtraboldWd;
      font-size: 4rem;
      text-transform: uppercase;
      line-height: 4.5rem;
    }

    h2 {
      font-family: ResolveSansExtraboldWd;
      font-size: 2.75rem;
      text-transform: uppercase;
      line-height: 2.75rem;
    }

    h3 {
      font-family: ResolveSansExtraboldWd;
      font-size: 1.75rem;
      line-height: 1.75rem;
      text-transform: uppercase;
    }

    h4 {
      font-family: ResolveSansExtraboldWd;
      font-size: 1.3125rem;
      text-transform: uppercase;
    }

    h5 {
      font-size: 1.75rem;
      line-height: 2.25rem;
      font-weight: 700;
    }

    h6 {
      font-size: 1.25rem;
      line-height: 1.5rem;
    }

    li {
      line-height:1.5rem;
      margin-bottom:.75rem;
    }

    .text-padding {
      padding: 1rem 0;
    }

    .hero-highlight {
      background-color: #fff;
      color: #222;
      padding: 0 .25rem;
      font-weight: 900;
    }

    .introducing-text {
      font-family: 'Roboto Flex', sans-serif;
      text-transform: uppercase;
      letter-spacing: .5rem;
      font-size: .75rem;
      font-weight: 400;
      padding-bottom: .5rem;
    }

    .subtitle-text {
      font-size: .875rem;
      letter-spacing: 0.25em;
      color: #9B9B9B;
      text-transform: uppercase;
    }

    .gradient-text {
      background: linear-gradient(90deg, #F5404D, #FFAD85);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
    }

    .dark-section-text {
      color: #fff;
      text-align: center;
    }

    .benefits-text {
      color: #fff;
    }


    .feature-row {
      display: flex;
      flex-direction: column;
      width: 100%;
    }

    .feature-block {
      flex: none;
      width: 100%;
      padding: 2rem;
      text-align: left;
      color: #222;
    }

    .feature-block.block-2 {
      padding: 0;
      width: auto;
    }

    .feature-block.block-2 img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .cta-section {
      background-color: #262626;
      color: white;
      padding: 2rem 0rem;
      text-align: center;
    }

.final-section {
      background-color: #222;
      color: white;
      padding: 1rem 2rem;
      text-align: center;
    }

  .how-it-works {
  background: #f2f2f2;
  padding: 2rem 1rem;
  text-align: center;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
}

.carousel {
  display: flex;
  transition: transform 0.3s ease-in-out;
  width: 100%;
}

.footer-text {
  text-align: center;
  font-size:.75rem;
  line-height: 1rem;
}

.card {
  flex: 0 0 33.33%;
  padding: 1rem;
  box-sizing: border-box;
  text-align: center;
  position: relative;
}

.card img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: auto;
  display: block;
}

.image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 300px;
  margin: auto;
}

.image-wrapper img {
  width: 100%;
  display: block;
}

.card-step {
  position: absolute;
  bottom: -1.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #F5404D, #FFAD85);
  color: white;
  border-radius: 999px;
  width: 3.5rem;
  height: 3.5rem;
  line-height: 3.5rem;
  font-family: ResolveSansExtraboldWd;
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.carousel-arrow {
  background: none;
  border: none;
  font-size: 2rem;
  padding: 0 1rem;
  color: #333;
  cursor: pointer;
  display: none;
}

.how-it-works-copy{
  padding-top: 2rem;
}

    .gradient-button {
      padding: 0.75rem 4rem;
      border: none;
      border-radius: 0.5rem;
      background: linear-gradient(90deg, #F5404D, #FFAD85);
      color: #fff;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: opacity 0.3s ease;
      margin: 1rem 0rem;
    }

    .gradient-button:hover {
      opacity: 0.85;
    }

    .logo-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start;
      gap: 1rem;
    }

    .logos {
      max-width: 120px;
      max-height:32px;
      width: 100%;
      height: auto;
      object-fit: contain;
    }

    .pill {
      border-radius: 3rem;
      padding: .25rem 1rem;
      width: auto;
      font-weight: 900;
    }

    .pill.operators {
      background-color: #F5404D;
      color: #fff;
    }

    .pill.users {
      background-color: #FFAD85;
      color: #222;
    }

    .powered-by {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-inline {
  height: 80px;
  width: auto;
}

.benefits-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.you-group{
  margin-bottom: 1rem;
}

.left-box {
  flex: 0 0 6.5rem;
  padding: 1rem;
  box-sizing: border-box;
  }

.right-box {
  flex: 1;
  padding: 1rem;
  box-sizing: border-box;
  }

.input-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.introduction-section {
  background-color: #f2f2f2;
  padding: 2rem 4rem;
  text-align: center;
  color: #222222;
}

.input-row input {
  flex: 1;
  min-width: 100px;
  padding: 1rem;
  border: 0px;
  background-color: #444;
  color: #C6C6C6;
  font-size: .875rem;
}

.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-logos img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

.labeled-input-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.labeled-input-row label {
  min-width: 120px;
  font-weight: 500;
  color: #c6c6c6;
  text-align: right;
}

.labeled-input-row input {
  flex: 1;
  min-width: 200px;
  padding: 1rem;
  border: 0;
  background-color: #444;
  color: #C6C6C6;
  font-size: 0.875rem;
}

.center-button {
  text-align: center;
}

.your-savings {
  text-align: center;
}

.image-block-instant {
  background-image: url('sp-paycard-withdrawal.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
}

.image-block-rewards {
  background-image: url('sp-paytech-image-4.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
}

.image-block-redeposits {
  background-image: url('sp-payout-card-re-deposit-flow.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.feature-row.image-block-redeposits {
  padding: .5rem 0rem;
}

    @media (min-width: 800px) {
   .menu-toggle {
    display: none;
  }

    .nav-wrapper {
    display: flex;
    align-items: center;
  }

.nav-container {
    flex: 1;
    max-width: none;
    padding: 1rem;
    display: flex;
    align-items: center;
  }

  .nav-links {
    position: static;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: auto;
    margin-left: auto;
    background: transparent;
    text-align: right;
    padding: 1rem;
  }

  .nav-links a {
    display: inline-block;
    padding: 0.5rem 1rem;
  }

      .feature-row {
        flex-direction: row;
        gap: 1rem;
      }


      .feature-block {
        flex: 1 1 33.33%;
        width: auto;
        padding: 2rem 2rem 4rem 2rem;
      }

      .feature-block.block-2 img {
        height: auto;
        display: block;
      }

      .hero p {
        font-size: 1.25rem;
      }
    }

    @media (min-width: 1280px) {
      .content {
        max-width: 1200px;
        margin: 0 auto;
      }
    }

    @media (max-width: 767px) {
      h1 {
        font-size: 2.5rem;
        line-height: 2.5rem;
      }

      h2 {
        font-size: 2.25rem;
        line-height: 2.25rem;
      }

      h5 {
        font-size: 1.5rem;
        line-height: 2rem;
      }

      h6 {
        font-size: 1.25rem;
        line-height: 1.25rem;
      }

      .logo-inline {
  max-width: 100%;
  height: auto;
}

.card {
    flex: 0 0 100%;
  }

  .carousel {
    scroll-behavior: smooth;
    overflow: hidden;
  }

  .cta-section {
    padding: 2rem 0rem;
  }

  .carousel-arrow {
    display: block;
    padding: 0rem;
  }

  .hero-content {
    padding: 2rem 0.5rem;
  }

  .final-section {
    padding: .5rem 1rem;
  }

  .final-section .feature-block {
  padding: .5rem !important;
}

  .left-box,
  .right-box {
    flex: 0 0 100%;
    text-align: center;
    padding:.5rem;
  }

  .you-group .pill,
  .users-group .pill {
    display: flex;
    justify-content: center;
    margin: 0 auto 1rem auto;
    width: fit-content;
  }

  .image-block-rewards {
    height: 250px;
  }

   .image-block-redeposits {
    height: 250px;
  }

   .image-block-instant {
    height: 250px;
  }

    .gradient-button {
      padding: 0.75rem 2rem;
      width: 100%;
    }
    .see-it-in-action {
      padding:1rem 2rem;
    }
  }