:root {
  --light-green: #5fbda7;
  --dark-green: #11272b;
  --blue: #4595cd;
  --light-blue: #b1c3ff;
  --yellow: #ffd777;
  --white: #ffffff;
  --accent: #e8edf0;

  --heading-font: "Urbanist";
  --body-font: "Didact Gothic";

  --screen-small: 768px;
}

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

body {
  font-family: var(--body-font), sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;

  background-color: #f5f5f5;
}

.no-scroll {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font), sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
}

header {
  padding: 10px 48px;
  position: fixed;
  backdrop-filter: blur(30px);
  width: calc(100vw - 96px);
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0px 4px 12px 0px rgba(95, 189, 167, 0.2);
  z-index: 999;

  @media (width <=1600px) {
    grid-template-columns: 1fr 1fr;
  }

  img {
    width: 150px;
    height: auto;
  }

  .burger-button {
    display: none;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;

    img {
      width: 30px;
      height: 30px;
    }
  }

  @media (width <=1600px) {
    .burger-button {
      display: flex;
      justify-content: flex-end;
      align-items: center;
    }

    .nav {
      display: none;
    }
  }
}

header .logo {
  margin: 0;
}

.burger-menu-container {
  position: relative;
  display: none;

  @media (width <=1600px) {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
  }

  .side-menu {
    position: fixed;
    top: 85px;
    right: -100%;
    height: 100vh;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    overflow-y: auto;
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0px 4px 12px 0px rgba(95, 189, 167, 0.2);
    backdrop-filter: blur(40px);

    &.active {
      right: 0;
    }

    .nav {
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding: 20px;

      :nth-child(5) {
        gap: 8px;
        display: flex;
        flex-direction: column;
      }

      a {
        font-weight: 600;

        &:hover {
          text-decoration: underline;
          opacity: 0.7;
        }
      }

      .pricing-options {
        display: flex;
        flex-direction: column;
        gap: 10px;

        .option {
          display: flex;
          flex-direction: row;
          gap: 10px;
          align-items: center;

          a {
            font-weight: 200;
          }

          .icon {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;

            img {
              width: 20px;
              height: 20px;
            }
          }

          &:hover {
            text-decoration: underline;
            opacity: 0.7;
          }
        }
      }

      .divider {
        width: 100%;
        height: 2px;
        background-color: rgba(17, 39, 43, 0.1);
      }

      .menu-header-buttons {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        justify-content: center;
        flex-direction: column;

        .faq-button-container {
          position: relative;

          .faq-button {
            font-family: var(--heading-font), sans-serif;
            font-weight: 600;
            font-size: 1.2rem;
            color: rgba(17, 39, 43, 0.6);
            text-decoration: underline dotted;
            position: relative;

            &:hover {
              cursor: pointer;
              color: var(--blue);
              text-decoration: underline solid;
            }

            &.active {
              color: var(--blue);
              transform: scale(1.05);
              border-radius: 20px;
              font-weight: 800;
              transition: all 0.3s ease;
            }
          }
        }

        .login-button {
          font-family: var(--heading-font), sans-serif;
          font-weight: 600;
          font-size: 1.2rem;
          color: rgba(17, 39, 43, 0.6);
          text-decoration: underline dotted;

          &:hover {
            cursor: pointer;
            color: var(--blue);
            text-decoration: underline solid;
          }
        }
      }
    }
  }
}

.faq-popup {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-radius: 10px;
  background-color: rgb(0 0 0 / 20%);
  backdrop-filter: blur(10px);

  &.active {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .faq-content {
    backdrop-filter: blur(40px);
    position: absolute;
    max-width: 500px;
    width: 80%;
    padding: 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(40px);
    font-family: var(--heading-font), sans-serif;
    box-shadow: 0px 4px 12px rgba(69, 149, 205, 0.2);

    .faq-header {
      font-weight: 600;
      font-size: 1.8rem;
      text-align: center;
    }

    .close-popup {
      font-size: 24px;
      cursor: pointer;
      float: right;
    }

    .accordion {
      margin-top: 10px;

      .accordion-header {
        background: rgba(69, 149, 205, 0.1);
        color: var(--blue);
        border: none;
        cursor: pointer;
        padding: 20px;
        text-align: left;
        outline: none;
        border-radius: 10px 10px 0px 0px;
        font-size: 1.2rem;
        font-weight: 600;
        display: flex;
        flex-direction: row;
        justify-content: space-between;

        img {
          width: 14px;
          height: 14px;
          transition-duration: 0.2s;

          &.rotate {
            transform: rotate(45deg);
          }
        }
      }

      .accordion-body {
        display: none;
        padding: 20px;
        color: var(--blue);
        background: rgba(69, 149, 205, 0.15);
        font-family: var(--body-font), sans-serif;
        font-size: 1.2rem;
        border-radius: 0px 0px 10px 10px;
      }
    }
  }
}

.nav {
  padding: 0;
  display: flex;
  justify-content: space-around;
  gap: 30px;

  .pricing-nav-header {
    position: relative;

    &:hover {
      cursor: pointer;
    }

    #pricingButton {
      display: flex;
      flex-direction: row;
      gap: 7px;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      font-weight: 100;

      img {
        width: 14px;
        height: 14px;
        transition-duration: 0.2s;
      }

      &.active {
        font-weight: 700;

        img {
          width: 14px;
          height: 14px;
          transform: rotate(180deg);
        }
      }
    }

    .pricing-popup {
      display: none;
      position: absolute;
      top: 75px;
      left: -65px;
      width: 250px;
      box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      border-radius: 10px;

      &.active {
        display: block;
      }

      .pricing-content {
        backdrop-filter: blur(40px);
        position: absolute;
        max-width: fit-content;
        width: 100%;
        padding: 20px 30px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(40px);
        font-family: var(--heading-font), sans-serif;
        box-shadow: 0px 4px 12px rgba(95, 189, 167, 0.2);

        .pricing-header {
          font-weight: 600;
          font-size: 1.4rem;
          text-align: center;
        }

        .pricing-options {
          display: flex;
          flex-direction: column;
          gap: 10px;

          .option {
            display: flex;
            flex-direction: row;
            gap: 10px;
            align-items: center;

            .icon {
              display: flex;
              flex-direction: column;
              justify-content: center;
              align-items: center;

              img {
                width: 20px;
                height: 20px;
              }
            }

            &:hover {
              text-decoration: underline;
              opacity: 0.7;
            }
          }

          .divider {
            width: 100%;
            height: 2px;
            background-color: rgba(17, 39, 43, 0.2);
          }
        }

        .close-popup {
          font-size: 24px;
          cursor: pointer;
          float: right;
        }
      }
    }
  }
}

a {
  font-family: var(--body-font), sans-serif;
  font-size: 1.1rem;
  font-weight: 100;
  color: rgba(17, 39, 43, 0.6);
  text-decoration: none;
  transition-duration: 0.2s;

  &:hover {
    color: var(--dark-green);
  }
}

a.active {
  color: var(--dark-green);
  text-decoration: underline;
  font-weight: 500;
  text-decoration-color: var(--light-green);
  text-decoration-thickness: 3px;
  line-height: 32px;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: flex-end;

  @media (width <=1600px) {
    display: none;
  }

  .faq-button-container {
    position: relative;

    .faq-button {
      font-family: var(--heading-font), sans-serif;
      font-weight: 600;
      font-size: 1.2rem;
      color: rgba(17, 39, 43, 0.6);
      text-decoration: underline dotted;
      position: relative;

      &:hover {
        cursor: pointer;
        color: var(--blue);
        text-decoration: underline solid;
      }

      &.active {
        color: var(--blue);
        transform: scale(1.05);
        border-radius: 20px;
        font-weight: 800;
        transition: all 0.3s ease;
      }
    }

    .faq-popup {
      display: none;
      position: absolute;
      top: 75px;
      left: -200px;
      width: 400px;
      box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      border-radius: 10px;

      &.active {
        display: block;
      }

      .faq-content {
        backdrop-filter: blur(40px);
        position: absolute;
        max-width: 500px;
        width: 100%;
        padding: 20px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(40px);
        font-family: var(--heading-font), sans-serif;
        box-shadow: 0px 4px 12px rgba(69, 149, 205, 0.2);

        .faq-header {
          font-weight: 500;
          font-size: 1.8rem;
          text-align: center;
        }

        .close-popup {
          font-size: 24px;
          cursor: pointer;
          float: right;
        }

        .accordion {
          margin-top: 10px;

          .accordion-header {
            background: rgba(69, 149, 205, 0.1);
            color: var(--blue);
            border: none;
            cursor: pointer;
            padding: 20px;
            text-align: left;
            outline: none;
            border-radius: 10px 10px 0px 0px;
            font-size: 1.2rem;
            font-weight: 500;
            display: flex;
            flex-direction: row;
            justify-content: space-between;

            img {
              width: 14px;
              height: 14px;
              transition-duration: 0.2s;

              &.rotate {
                transform: rotate(45deg);
              }
            }
          }

          .accordion-body {
            display: none;
            padding: 20px;
            color: var(--blue);
            background: rgba(69, 149, 205, 0.15);
            font-family: var(--body-font), sans-serif;
            font-size: 1.2rem;
            border-radius: 0px 0px 10px 10px;
          }
        }
      }
    }
  }

  .login-button {
    font-family: var(--heading-font), sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: rgba(17, 39, 43, 0.6);
    text-decoration: underline dotted;

    &:hover {
      cursor: pointer;
      color: var(--blue);
      text-decoration: underline solid;
    }
  }
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 180px;
  margin-bottom: 180px;
  overflow-y: hidden;
  overflow-x: hidden;

  @media (width <=992px) {
    gap: 90px;
    margin-bottom: 90px;
  }

  .section {
    padding: 20px;
    text-align: center;
  }
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.card {
  border: 1px solid #ccc;
  padding: 20px;
  width: 30%;
  border-radius: 5px;
}

/* HERO IMAGE */

#hero {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 102vh;
  z-index: 10;
  background: radial-gradient(
      circle at var(--x1, 25%) var(--y1, 25%),
      var(--light-green),
      transparent
    ),
    radial-gradient(
      circle at var(--x2, 75%) var(--y2, 25%),
      var(--dark-green),
      transparent
    ),
    radial-gradient(
      circle at var(--x3, 25%) var(--y3, 75%),
      var(--light-blue),
      transparent
    ),
    radial-gradient(
      circle at var(--x4, 75%) var(--y4, 75%),
      var(--yellow),
      var(--yellow)
    );
  background-size: 100%;
  background-repeat: no-repeat;

  @media (width <=390px) {
    height: 120vh;
  }

  .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background: url(https://grainy-gradients.vercel.app/noise.svg);
    background-repeat: repeat;
    background-size: 40px;
    opacity: 0.2;
  }

  .hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background-image: url("../assets/images/hero-bg.png");
    background-attachment: fixed;
    background-repeat: repeat;
    mix-blend-mode: color-dodge;
    background-size: contain;
    opacity: 1;
    z-index: 10;
  }

  .content-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 50;

    .content {
      width: fit-content;
      margin-top: 90px;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-evenly;
      box-shadow: none;
      gap: 20px;
      align-items: center;

      @media (width <=992px) {
        justify-content: flex-start;
      }

      .hero-image-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 15px;
        .big-logo {
          mix-blend-mode: soft-light;
          width: 75px;
          height: 75px;

          @media (width <=768px) {
            width: 60px;
            height: 60px;
          }
        }

        .hero-image-subtext {
          font-family: var(--heading-font), sans-serif;
          letter-spacing: 6.32px;
          color: var(--white);
          font-size: 3.5rem;
          font-weight: 200;

          @media (width <=768px) {
            font-size: 2.5rem;
          }
        }
      }

      .hero-info-container {
        display: flex;
        flex-direction: row;
        gap: 20px;

        @media (width <=992px) {
          flex-direction: column;
        }

        .hero-info {
          .text-container {
            width: 80%;
            display: flex;
            flex-direction: column;
            gap: 24px;

            @media (width <=992px) {
              width: 100%;
            }

            .heading-container {
              .hero-heading {
                font-family: var(--heading-font), sans-serif;
                font-weight: 600;
                font-size: 3.3rem;
                color: #fff;
                text-align: left;

                @media (width <=768px) {
                  font-size: 2.5rem;
                  text-align: left;
                }

                @media (width <=390px) {
                  font-size: 2rem;
                  line-height: 45px;
                }
              }
            }

            .hero-subheading {
              font-family: var(--heading-font), sans-serif;
              font-weight: 400;
              font-size: 1.5rem;
              color: rgba(255, 255, 255, 0.469);
              text-align: left;

              @media (width <=768px) {
                font-size: 1.8rem;
              }

              @media (width <=390px) {
                font-size: 1.5rem;
              }
            }
          }

          .hero-body {
            font-family: var(--heading-font), sans-serif;
            font-weight: 200;
            font-size: 1.5rem;
            color: #fff;
            text-align: left;
            line-height: 30px;

            @media (width <=768px) {
              font-size: 1.2rem;
            }
          }
        }
        .hero-mockup {
          height: 100%;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;

          @media (width <=992px) {
            height: unset;
          }

          img {
            height: 65vh;

            @media (width <=992px) {
              width: 80%;
              height: auto;
            }

            @media (992px < width <=1200px) {
              width: 50vw;
              height: auto;
            }
          }
        }
      }
    }

    .button-container {
      gap: 32px;
      justify-content: flex-start;
      width: 100%;
      display: flex;
      align-items: center;
      margin-top: 25px;

      .learn-more {
        a {
          color: var(--white);

          &:hover {
            opacity: 0.7;
          }
        }
      }

      @media (width <=768px) {
        flex-direction: column;
      }
    }
  }
}

.blob-container {
  position: absolute;
  width: 100%;
  top: 100vh;
  z-index: 1;

  @media (width <=1024px) {
    display: none;
  }

  .blue-blob {
    position: absolute;
  }

  .green-blob {
    position: absolute;
    right: 0;
  }
}

/* ABOUT STUFF */
#about {
  max-width: 100%;
  width: 100%;
  display: flex;
  justify-content: center;

  .wrapper {
    border-radius: 32px;
    background-color: var(--white);
    display: grid;
    gap: 30px;
    grid-auto-flow: column;
    grid-template-columns: 2fr 1fr;
    width: 70%;
    padding: 60px;
    align-items: center;
    justify-content: center;

    box-shadow: -30px -43px 44.6px 0px #b1c3ff32, 30px 8px 65.7px 0px #5fbda730;

    @media (width <=992px) {
      grid-auto-flow: row !important;
      grid-template-columns: none;
      padding: 32px;
      width: 80%;
    }

    .header-container {
      display: flex;
      flex-direction: column;
      gap: 20px;

      @media (width <=992px) {
        justify-self: center;
      }

      .header {
        font-family: var(--heading-font), sans-serif;
        font-weight: 600;
        font-size: 3rem;
        color: var(--dark-green);
        text-align: left;
        gap: 10px;
        line-height: 50px;

        @media (width <=768px) {
          font-size: 2.25rem;
          line-height: 3rem;
        }

        span {
          color: var(--light-green);
        }

        @media (width <=768px) {
          font-size: 2.25rem;
          line-height: 3rem;
        }
      }

      .subheading {
        text-align: left;
        font-family: var(--body-font), sans-serif;
        font-size: 1.2rem;
        color: var(--dark-green);
        line-height: 32px;
      }
    }

    .south-africa-img {
      @media (width <=768px) {
        width: 80vw;
      }
    }
  }
}

/* FEATURES */

#features {
  max-width: 80%;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 150px;

  @media (0px < width <=1100px) {
    gap: 80px;
  }

  .main-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
    z-index: 20;

    .header-container {
      display: flex;
      flex-direction: column;
      gap: 20px;
      align-items: flex-start;

      .header {
        font-family: var(--heading-font), sans-serif;
        font-weight: 600;
        font-size: 3rem;
        color: var(--dark-green);
        text-align: center;
        gap: 10px;
        line-height: 50px;

        span {
          color: var(--light-green);
        }

        @media (width <=768px) {
          font-size: 2.25rem;
          line-height: 3rem;
        }
      }

      .subheading {
        text-align: center;
        font-family: var(--body-font), sans-serif;
        font-size: 1.2rem;
        color: var(--dark-green);
        line-height: 32px;
      }
    }

    .content-container {
      display: grid;
      grid-auto-flow: column;
      grid-template-columns: 1fr 1fr;
      width: 100%;
      justify-content: space-evenly;

      @media (width <=1300px) {
        grid-auto-flow: row;
        grid-template-rows: 1fr auto;
        grid-template-columns: unset;
      }

      .image {
        background-image: url("../assets/images/USP and Features/Navitas dashboard.png");
        background-size: contain;
        height: 100%;
        width: 70%;
        background-repeat: no-repeat;
        background-position: center;

        @media (width <=1300px) {
          height: 400px;
          width: auto;
        }

        @media (width <=520px) {
          height: 300px;
        }
      }

      .items {
        display: grid;
        grid-template-columns: auto auto;
        width: 100%;
        grid-gap: 10px;

        @media (width <=768px) {
          width: 100%;
          gap: 10px;
          display: flex;
          flex-direction: column;
        }

        .item {
          display: flex;
          gap: 15px;
          background-color: var(--white);
          align-items: center;
          justify-content: start;
          padding: 12px 16px;
          border-radius: 12px;
          transition: 0.5s;
          min-height: 80px;

          &:hover {
            box-shadow: 0px 3.142px 92px 0px rgba(95, 189, 167, 0.44);
          }

          .icon {
            padding-top: 6px;
            img {
              height: 22px;
            }
          }

          .title {
            .header {
              font-family: var(--heading-font), sans-serif;
              font-weight: 600;
              font-size: 1.2rem;
              color: var(--dark-green);
              text-align: left;
              letter-spacing: 0.8px;
              display: flex;
              flex-direction: column;
              gap: 0px;
            }

            .subheading {
              font-family: var(--body-font), sans-serif;
              font-size: 1.25rem;
              color: #9ea1a0;
              text-align: left;
            }
          }

          &:last-child {
            grid-column: span 2;
          }
        }
      }

      .feature-mockup {
        position: relative;
        @media (width <=1300px) {
          display: flex;
          align-items: center;
          justify-content: center;
        }
        .left-text {
          text-align: left;
          .title {
            font-family: var(--heading-font), sans-serif;
            font-weight: 600;
            font-size: 1.4rem;
          }
          .text {
            font-family: var(--body-font), sans-serif;
            font-size: 1.2rem;
          }
        }
        .image {
          background-image: url("../assets/images/mac-mockup.png");
          width: 100%;
          position: absolute;
          /* left: -5%; */
          top: 0;

          @media (width <=1300px) {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            left: unset;
          }
        }
        /* img {
          width: 100%;
          position: absolute;
          left: -5%;
          top: 0;
          max-width: 750px;

          @media (width <=1300px) {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
          }
        } */
      }
    }
  }

  .USP {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;

    .header-container {
      display: flex;
      flex-direction: column;
      gap: 20px;

      .header {
        font-family: var(--heading-font), sans-serif;
        font-weight: 600;
        font-size: 2.5rem;
        color: var(--dark-green);
        text-align: center;
        gap: 10px;
        line-height: 50px;

        @media (width <=768px) {
          font-size: 2.25rem;
          line-height: 3rem;
        }
      }

      .subheading {
        text-align: center;
        font-family: var(--body-font), sans-serif;
        font-size: 1.2rem;
        color: var(--dark-green);
        line-height: 32px;
      }
    }

    .card-container {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 25px;

      @media (width <=768px) {
        flex-direction: column;
      }

      .USP-card {
        display: flex;
        flex-direction: column;
        border-radius: 12px;
        border: var(--white) solid 4px;
        overflow: hidden;

        @media (width <=768px) {
          width: 100%;
        }

        .USP-header {
          padding: 16px;
          display: flex;
          flex-direction: column;
          gap: 4px;
          background-color: var(--white);

          height: inherit;

          .heading {
            display: flex;
            gap: 8px;
            font-weight: 600;
            font-size: 1.2rem;
            letter-spacing: 0.8px;
            font-family: "Urbanist", sans-serif;
            font-weight: 600;
            font-size: 1.2rem;
            color: var(--dark-green);
            text-align: left;
            letter-spacing: 0.8px;

            img {
              width: 20px;
              height: auto;
            }
          }

          .subheading {
            text-align: left;
            font-family: var(--body-font), sans-serif;
            color: #9ea1a0;
            font-size: 1.2rem;
          }
        }
      }

      .USP-card:nth-child(-n + 2) {
        width: 40%;

        @media (width <=1300px) {
          width: 100%;
        }
      }

      .USP-card:nth-child(n + 3) {
        width: 30%;

        @media (width <=1300px) {
          width: 100%;
        }
      }

      .container1 {
        height: 400px;
        width: 500px;

        &:hover {
          .USP-image {
            background-image: url("../assets/images/USP and Features/Appointment scheduling-hover.png");
            background-position: center;
          }
        }

        .USP-image {
          background-image: url("../assets/images/USP and Features/Appointment scheduling.png");
          background-repeat: no-repeat;
          background-size: cover;
          width: 100%;
          height: 100%;
          transition: 1s;
          height: 1000px;
        }
      }

      .container2 {
        height: 400px;
        width: 500px;

        &:hover {
          .USP-image {
            background-image: url("../assets/images/USP and Features/Practice management-hover.png");
            background-position: center;
          }
        }

        .USP-image {
          background-image: url("../assets/images/USP and Features/Practice management.png");
          background-repeat: no-repeat;
          background-size: cover;
          width: 100%;
          height: 100%;
          transition: 1s;
          height: 1000px;
        }
      }

      .container3 {
        height: 400px;
        width: 500px;

        &:hover {
          .USP-image {
            background-image: url("../assets/images/USP and Features/Invoicing-hover.png");
            background-position: center;
          }
        }

        .USP-image {
          background-image: url("../assets/images/USP and Features/Invoicing.png");
          background-repeat: no-repeat;
          background-size: cover;
          width: 100%;
          height: 100%;
          transition: 1s;
          height: 700px;
        }
      }

      .container4 {
        height: 400px;
        width: 500px;

        &:hover {
          .USP-image {
            background-image: url("../assets/images/USP and Features/Reminders-hover.png");
            background-position: center;
          }
        }

        .USP-image {
          background-image: url("../assets/images/USP and Features/Reminders.png");
          background-repeat: no-repeat;
          background-size: cover;
          width: 100%;
          transition: 1s;
          height: 700px;
        }
      }

      .container5 {
        height: 400px;
        width: 500px;

        &:hover {
          .USP-image {
            background-image: url("../assets/images/USP and Features/Patient booking portal-hover.png");
            background-position: center;
          }
        }

        .USP-image {
          background-image: url("../assets/images/USP and Features/Patient booking portal.png");
          background-repeat: no-repeat;
          background-size: cover;
          width: 100%;
          height: 100%;
          transition: 1s;
          height: 700px;
        }
      }
    }
  }
}

/* INTEGRATIONS */

#integrations {
  width: 80%;
  background-color: var(--white);
  border-radius: 32px;
  padding: 120px 32px;
  height: fit-content;
  background-image: url("../assets/images/integrations/Blob2.png");
  background-size: cover;
  background-position: bottom;

  @media (width <=992px) {
    padding: 80px 32px;
  }

  .integrations-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    gap: 32px;
    align-items: center;

    @media (width <=768px) {
      flex-direction: column;
    }

    @media (768px < width <=992px) {
      flex-direction: column;
    }

    .header-container {
      display: flex;
      flex-direction: column;
      gap: 20px;
      align-items: flex-start;

      .header {
        font-family: var(--heading-font), sans-serif;
        font-weight: 600;
        font-size: 2rem;
        color: var(--dark-green);
        text-align: left;
        gap: 10px;
        line-height: 50px;
        font-size: 2.5rem;

        @media (width <=552px) {
          font-size: 2rem;
          line-height: 40px;
        }
      }

      .subheading {
        text-align: left;
        font-family: var(--body-font), sans-serif;
        font-size: 1.2rem;
        color: var(--dark-green);
        line-height: 32px;
      }
    }

    .integration-images {
      display: flex;
      justify-content: space-evenly;
      width: 60%;
      gap: 6px;

      @media (width <=768px) {
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
      }

      @media (430px < width <=768px) {
        width: 50%;
        background-size: 35%;
      }

      .image1 {
        background-color: var(--accent);
        border-radius: 12px;
        width: 20%;
        background-image: url("../assets/images/integrations/Google calendar.png");
        background-size: 75%;
        background-position: center;
        background-repeat: no-repeat;
        padding: 32px 24px;
        height: 80px;

        width: 15%;
        background-size: 70%;
        padding: 32px 12px;

        @media (430px < width <=768px) {
          width: 70%;
          background-size: 35%;
        }

        @media (width <=430px) {
          width: 50%;
          background-size: 70%;
        }
      }

      .image2 {
        background-color: var(--accent);
        border-radius: 12px;
        width: 20%;
        background-image: url("../assets/images/integrations/Zapper.png");
        background-size: 75%;
        background-position: center;
        background-repeat: no-repeat;
        padding: 32px 24px;
        height: 80px;

        width: 15%;
        background-size: 70%;
        padding: 32px 12px;

        @media (width <=768px) {
          width: 70%;
          background-size: 35%;
        }

        @media (width <=430px) {
          width: 50%;
          background-size: 70%;
        }
      }

      .image3 {
        background-color: var(--accent);
        border-radius: 12px;
        width: 20%;
        background-image: url("../assets/images/integrations/Xero.png");
        background-size: 75%;
        background-position: center;
        background-repeat: no-repeat;
        padding: 32px 24px;
        height: 80px;

        width: 15%;
        background-size: 70%;
        padding: 32px 12px;

        @media (width <=768px) {
          width: 70%;
          background-size: 35%;
        }

        @media (width <=430px) {
          width: 50%;
          background-size: 70%;
        }
      }

      .image4 {
        background-color: var(--accent);
        border-radius: 12px;
        width: 20%;
        background-image: url("../assets/images/integrations/Snapscan.png");
        background-size: 75%;
        background-position: center;
        background-repeat: no-repeat;
        padding: 32px 24px;
        height: 80px;

        width: 15%;
        background-size: 70%;
        padding: 32px 12px;

        @media (width <=768px) {
          width: 70%;
          background-size: 35%;
        }

        @media (width <=430px) {
          width: 50%;
          background-size: 70%;
        }
      }
    }
  }
}

/* CONTACT US */

#contact {
  max-width: 1194px;
  padding: 48px;

  @media (width <=992px) {
    padding: 30px;
  }

  .wrapper {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;

    @media (width <=992px) {
      display: flex;
      flex-direction: column;
    }

    .form-container {
      box-shadow: 0px 4px 40px rgb(95 189 167 / 0.15);
      padding: 40px;
      border-radius: 10px;
      background-color: var(--white);
      display: flex;
      flex-direction: column;
      gap: 25px;

      .form-top-text {
        display: flex;
        flex-direction: column;
        gap: 10px;

        .form-heading {
          font-family: var(--heading-font), sans-serif;
          color: var(--dark-green);
          text-align: left;
          font-weight: 600;
          font-size: 2.25rem;

          @media (width <=768px) {
            font-size: 2rem;
            line-height: 40px;
          }
        }

        .form-subtext {
          font-family: var(--body-font), sans-serif;
          font-size: 1.1rem;
          color: var(--dark-green);
          line-height: 32px;
          text-align: left;
        }
      }

      .form-fields {
        display: flex;
        flex-direction: column;
        gap: 20px;

        .validation-message {
          display: none;
          color: rgb(236, 166, 166);
          font-size: 1.1rem;
          text-align: left;

          &.active {
            display: block;
          }
        }

        input,
        textarea {
          background-color: rgb(177 195 255 / 0.15);
          font-family: var(--body-font), sans-serif;
          font-size: 1rem;
          outline: 0;
          padding: 15px;
          border: 0;
          color: var(--dark-green);
          border-radius: 10px;

          &.invalid {
            border: 1px solid rgb(236, 166, 166);
          }
        }
      }
    }

    .or-separator {
      color: var(--dark-green);
      font-family: var(--heading-font), sans-serif;
      font-weight: 300;
      font-size: 1.3rem;
    }

    .other-contact-methods {
      display: flex;
      flex-direction: column;
      gap: 22px;
      align-self: flex-start;

      .other-contact-header {
        color: var(--dark-green);
        font-family: var(--heading-font), sans-serif;
        font-weight: 600;
        font-size: 2.25rem;

        b {
          color: var(--blue);
        }

        @media (width <=768px) {
          font-size: 2rem;
          line-height: 40px;
        }
      }

      .contact-methods-container {
        display: flex;
        flex-direction: column;
        align-items: left;
        gap: 15px;

        .contact-method {
          display: flex;
          flex-direction: row;
          align-items: center;
          gap: 12px;
          padding: 10px;

          .icon {
            display: flex;
            width: 30px;
            height: 30px;
            position: relative;
            justify-content: center;
            align-items: center;

            img {
              /* width: 25px; */
              height: auto;
              position: absolute;
            }
          }

          .text {
            font-family: var(--body-font), sans-serif;
            font-size: 1.2rem;
            color: var(--dark-green);
            text-align: left;
            line-height: 32px;

            a {
              font-family: var(--body-font), sans-serif;
              font-size: 1.2rem;
              color: var(--dark-green);
              text-align: left;
              line-height: 32px;

              &:hover {
                text-decoration: underline;
                opacity: 0.7;
              }
            }
          }
        }

        .follow-us-container {
          background-color: var(--white);
          padding: 20px;
          display: flex;
          flex-direction: column;
          gap: 28px;
          border-radius: 8px;

          .follow-us-header {
            color: var(--dark-green);
            font-family: var(--heading-font), sans-serif;
            font-weight: 700;
            font-size: 1.2rem;
            text-align: left;
          }

          .follow-us-icons {
            display: flex;
            flex-direction: row;
            gap: 20px;

            .icon {
              display: flex;
              width: 30px;
              height: 30px;
              position: relative;
              justify-content: center;
              align-items: center;

              img {
                width: 27px;
                height: auto;
                position: absolute;
              }
            }
          }
        }
      }

      .line-seperator {
        background-color: rgb(17 39 43 / 0.15);
        height: 0.1em;
        width: 100%;
        border-radius: 20px;
      }
    }
  }
}

/* TEAM STUFF */

#team {
  max-width: 80%;

  .wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: center;

    @media (width <=992px) {
      grid-template-columns: none;
      grid-auto-flow: row;
      grid-template-rows: none;
      gap: 64px;
    }

    .header-container {
      height: fit-content;
      display: flex;
      flex-direction: column;
      gap: 20px;

      .header {
        margin: 0;
        padding: 0;
        text-align: left;
        color: var(--dark-green);
        line-height: 50px;
        font-size: 2.5rem;
        font-weight: 600;
        font-family: var(--heading-font);

        @media (width <=552px) {
          font-size: 2rem;
          line-height: 40px;
        }
      }

      .subtext {
        font-family: var(--body-font), sans-serif;
        font-size: 1.2rem;
        color: var(--dark-green);
        text-align: left;
        line-height: 32px;
      }
    }

    .image-grid {
      display: grid;
      grid-template-rows: repeat(2);
      grid-template-columns: 1fr 1fr;
      min-height: 400px;
      max-width: 650px;
      max-width: 80%;
      gap: 20px;
      margin: 0 auto;

      @media (width <=992px) {
        display: flex;
        flex-direction: column;
        max-width: 100%;
      }

      .image-container {
        border-radius: 5px;
        background-color: var(--white);
        padding: 15px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        transition-duration: 0.25s;

        &:hover {
          transform: scale(1.05);

          .image {
            /* height: 240px; */
            border-radius: 10px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: flex-end;

            img {
              height: 140%;
              position: absolute;
              /* box-shadow: 0px 0px 25px 0px rgba(189, 95, 95, 0.25); */
              filter: drop-shadow(-5px 5px 5px rgba(17, 39, 43, 0.3));

              @media (width < 768px) {
                height: 140%;
              }
            }
          }
        }

        .more-info {
          display: flex;

          .personal-details {
            text-align: left;
            display: flex;
            flex-direction: row;
            color: var(--dark-green);
            font-family: var(--heading-font), sans-serif;
            padding: 0px 10px;
            justify-content: space-between;
            align-items: center;
            width: 100%;

            .name {
              font-weight: 700;
            }

            .role {
              font-weight: 300;
              color: rgb(17 39 43 / 70%);
            }

            .social-media-container {
              width: fit-content;
              display: flex;
              gap: 10px;

              img {
                height: 20px;
              }
            }
          }
        }

        .description {
          font-size: 1rem;
          font-family: var(--body-font), sans-serif;
          line-height: 24px;
          font-weight: 100;
          color: var(--dark-green);
          text-align: left;
        }
      }

      /* .team-heading {
                grid-column: span 2;
                font-family: var(--heading-font), sans-serif;
                font-weight: 600;
                font-size: 1.6rem;
                color: rgba(17, 39, 43, 0.3);
                text-align: left;
                margin-top: 10px;
            } */

      .image {
        height: 240px;
        border-radius: 10px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-end;

        img {
          transition-duration: 0.2s;
          height: 135%;
          position: absolute;

          @media (768px < width <=992px) {
            height: 120%;
          }
        }
      }

      #image-1 {
        box-shadow: 0px 0px 25px 0px rgb(95 189 167 / 0.25);

        .image {
          background-image: url("../assets/images/gradients/mark-gradient.png");
          background-repeat: no-repeat;
          background-size: cover;
        }

        .more-info {
          .personal-details {
            border-left: 1px solid var(--light-green);
          }
        }
      }

      #image-2 {
        box-shadow: 0px 0px 25px 0px rgb(255 215 119 / 0.25);

        .image {
          background-image: url("../assets/images/gradients/leo-gradient.png");
          background-repeat: no-repeat;
          background-size: cover;
        }

        .more-info {
          .personal-details {
            border-left: 1px solid var(--yellow);
          }
        }
      }

      #image-3 {
        box-shadow: 0px 0px 25px 0px rgb(177 195 255 / 0.25);

        .image {
          background-color: var(--light-blue);
        }

        .more-info {
          .personal-details {
            border-left: 1px solid var(--light-blue);
          }
        }
      }

      #image-4 {
        box-shadow: 0px 0px 25px 0px rgb(69 149 205 / 0.25);

        .image {
          background-color: var(--blue);
        }

        .more-info {
          .personal-details {
            border-left: 1px solid var(--blue);
          }
        }
      }
    }
  }
}

/* BLOG */
/* #blog {

    max-width: 80%;
    background-color: var(--white);
    border-radius: 32px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 56px;
    box-shadow: -30px -43px 44.6px 0px rgba(251, 200, 82, 0.13), 30px 8px 65.7px 0px rgba(69, 149, 205, 0.20);

    @media (width <=768px) {
        gap: 32px;
        padding: 40px 24px;

    }

    .header {
        font-family: var(--heading-font), sans-serif;
        text-align: left;
        color: var(--dark-green);
        font-size: 2.5rem;
        font-weight: 600;
        line-height: 50px;

        @media (width <=768px) {
            font-size: 2rem;
            line-height: 40px;
        }
    }

    .blog-container {
        display: flex;
        justify-items: space-between;
        gap: 24px;
        width: fit-content;

        @media (width <=768px) {
            flex-direction: column;
        }

        @media (768px < width <=992px) {
            flex-direction: column;
        }

        .blog1 {
            width: 100%;

            .blog-image {
                background-image: url('../assets/images/blog/blog1.png');
                background-size: cover;
                background-position: center;
                height: 200px;
                width: 100%;
                background-repeat: no-repeat;
                border-radius: 12px;

            }
        }

        .blog2 {
            .blog-image {
                background-image: url('../assets/images/blog/blog2.png');
                background-size: cover;
                background-position: center;
                height: 200px;
                width: 100%;
                background-repeat: no-repeat;
                border-radius: 12px;
            }
        }

        .blog {
            border: var(--accent) solid 1px;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            width: 50%;
            padding: 24px;
            gap: 32px;
            transition: 0.5s linear;

            @media (width <=768px) {
                width: fit-content;
            }

            @media (768px < width <=992px) {
                width: fit-content;
            }


            &:hover {
                box-shadow: 0px 4px 23.1px 0px rgba(0, 0, 0, 0.095);
                cursor: pointer;
            }

            .header-container {
                display: flex;
                justify-content: space-between;

                .author {
                    display: flex;
                    gap: 12px;

                    .name {
                        font-family: var(--heading-font), sans-serif;
                        font-size: 1rem;
                        color: var(--dark-green);
                    }

                    img {
                        height: 50px;
                    }
                }

                .time {
                    font-family: var(--heading-font), sans-serif;
                    font-size: 1rem;
                    color: var(--dark-green);
                    opacity: 0.5;
                }
            }

            .title {
                font-family: var(--heading-font), sans-serif;
                font-size: 1.5rem;
                color: var(--dark-green);
                font-size: 800;
                text-align: left;
                line-height: 32px;

                @media (width <=552px) {
                    font-size: 1.35rem;

                }
            }

            .body {
                text-align: left;
                font-family: var(--body-font), sans-serif;
                font-size: 1.1rem;
                color: var(--dark-green);
                opacity: 0.5;
            }
        }
    }

    .vist-blog {
        background-color: var(--light-green);
        border: none;
        color: var(--white);
        padding: 15px 30px;
        border-radius: 30px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 1.1rem;
        font-family: var(--body-font), sans-serif;
        width: fit-content;
        margin: 0 auto;
    }
} */

/* MOBILE */
#mobile {
  display: flex;
  width: 100%;
  max-width: 80%;
  align-items: center;

  @media (width <=768px) {
    flex-direction: column;
  }

  @media (768px < width <=992px) {
    flex-direction: column;
  }

  .image {
    background-image: url("../assets/images/mobile/Mockup3.png");
    background-size: contain;
    background-position: center;
    height: 700px;
    width: 100%;
    background-repeat: no-repeat;

    @media (width <=768px) {
      height: 350px;
    }

    @media (768px < width <=992px) {
      height: 350px;
    }
  }

  .header-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;

    .header {
      font-family: var(--heading-font), sans-serif;
      text-align: left;
      color: var(--dark-green);
      font-size: 2.5rem;
      font-weight: 600;

      @media (width <=768px) {
        font-size: 2.25rem;
        line-height: 3rem;
      }
    }

    .subheading {
      font-family: var(--body-font), sans-serif;
      font-size: 1.3rem;
      color: var(--dark-green);
      text-align: left;
    }

    .platforms {
      display: flex;
      width: 100%;
      justify-content: flex-start;
      gap: 24px;
      font-family: var(--heading-font), sans-serif;
      font-weight: 400;

      @media (width <=600px) {
        flex-direction: column;
      }

      .platform {
        display: flex;
        align-items: center;
        width: 30%;
        gap: 12px;
        background-color: var(--white);
        border-radius: 8px;
        text-align: left;
        padding: 16px;

        @media (width <=600px) {
          width: 80%;
        }

        .icon img {
          height: 50px;
        }

        .text {
          span {
            font-weight: 600;
          }
        }
      }
    }
  }
}

#pricing {
  max-width: 80%;
  display: flex;
  flex-direction: column;
  gap: 64px;

  @media (width <=768px) {
    max-width: 100%;
  }

  .wrapper {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    padding: 1.5em;
    display: flex;
    flex-direction: column;
    gap: 136px;

    @media (width <=768px) {
      padding: 0;
      gap: 48px;
    }

    .header-container {
      display: flex;
      flex-direction: column;
      gap: 20px;

      .header {
        font-family: "Urbanist";
        margin: 0;
        padding: 0;
        /* text-align: left; */
        color: var(--dark-green);
        font-size: 3rem;
        font-weight: 600;
        line-height: 50px;

        @media (width <=552px) {
          font-size: 2rem;
          line-height: 40px;
        }
      }

      .subtext {
        font-family: var(--body-font), sans-serif;
        font-size: 1.3rem;
        color: var(--dark-green);
        /* text-align: left; */

        .green-emphasis {
          color: var(--light-green);
          text-decoration: underline;
        }

        .gold-emphasis {
          color: #e9b740;
          text-decoration: underline;
        }
      }
    }
  }

  /* ***************************** */
  .pricing-cards-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 48px;
    justify-content: center;

    .pricing-card {
      display: flex;
      border-radius: 32px;
      padding: 48px 48px;
    }

    /* GREEN */

    .green-pricing {
      border: var(--light-green) solid 1px;
      display: flex;
      flex-direction: row;
      gap: 24px;
      display: flex;
      gap: 56px;
      flex-direction: column;

      .header-container {
        .header {
          font-family: "Urbanist";
          margin: 0;
          padding: 0;
          text-align: left;
          color: var(--dark-green);
          font-size: 2rem;
          font-weight: 600;

          .green-emphasis {
            color: var(--light-green);
          }
        }

        .subtext {
          font-family: var(--body-font), sans-serif;
          font-size: 1.15rem;
          color: rgba(17, 39, 43, 0.6);
          text-align: left;

          @media (width <=520px) {
            line-height: 24px;
          }

          .green-emphasis {
            color: var(--light-green);
            text-decoration: underline;
          }

          .gold-emphasis {
            color: #e9b740;
            text-decoration: underline;
          }
        }
      }

      @media (width <=1180px) {
        flex-direction: column;
        gap: 64px;
        justify-content: center;
        align-items: center;
      }

      @media (width <=520px) {
        padding: 32px 10px;
      }

      .green-price-container {
        display: flex;
        gap: 36px;

        @media (width <=1180px) {
          flex-direction: column;
        }

        .price-card {
          border-radius: 12px;
          display: flex;
          flex-direction: column;
          gap: 0;
          width: 45%;
          box-shadow: 0px 4px 25px 0px rgba(95, 189, 167, 0.35);

          @media (width <=1180px) {
            width: 100%;
          }

          .green-header {
            background-color: var(--light-green);
            padding: 10px;
            border-radius: 12px 12px 0 0;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-family: "Urbanist";
            font-size: 1.4rem;
            font-weight: 800;
            letter-spacing: 6.32px;
            text-transform: uppercase;
          }

          .price-content {
            background-color: var(--white);
            padding: 24px;
            border-radius: 0 0 12px 12px;
            display: flex;
            flex-direction: column;
            gap: 36px;
            height: 100%;

            .pricing-heading {
              .pricing {
                font-family: "Urbanist";
                font-size: 3rem;
                font-weight: 900;
                text-align: left;

                span {
                  color: rgba(17, 39, 43, 0.5);
                  font-size: 1.2rem;
                  font-weight: 100;
                }
              }

              .coffee-disclaimer {
                font-size: 1.25rem;
                opacity: 0.35;
                text-align: left;
                font-family: var(--body-font), sans-serif;

                @media (width <=520px) {
                  font-size: 1.2rem;
                }
              }
            }

            .practitioners-container {
              display: flex;
              justify-content: center;
              align-items: center;
              gap: 24px;
              border-top: 2px solid #dadadb;
              border-bottom: 2px solid #dadadb;
              padding: 24px 0 24px;
              font-size: 1.5rem;
              font-family: "Urbanist", "sans-serif";

              @media (width <=520px) {
                padding: 16px 0 16px;
                flex-direction: column;
                gap: 8px;
                justify-content: center;
                align-items: center;

                p {
                  margin: 0;
                }
              }

              img {
                height: 60px;
              }

              .practitioners-amount {
                font-weight: 800;
              }
            }

            .card-footer {
              display: flex;
              flex-direction: column;
              gap: 8px;

              .green-disclaimer {
                font-size: 1rem;
                color: var(--dark-green);
                opacity: 0.5;
                font-family: var(--body-font), sans-serif;
                font-weight: 400;
              }
            }
          }
        }

        .features-container {
          width: 70%;
          display: flex;
          flex-direction: column;
          align-items: space-between;
          height: 100%;
          gap: 32px;

          @media (width <=1180px) {
            width: 100%;
          }

          .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-evenly;
            align-items: center;
            width: 100%;
            gap: 40px;

            @media (width <=1180px) {
              width: 100%;
            }

            @media (992px < width <=1180px) {
              gap: 40px;
            }

            @media (width <=520px) {
              gap: 0px;
            }

            .feature-item {
              display: flex;
              flex-direction: column;
              align-items: center;
              width: 20%;
              height: 200px;
              gap: 8px;
              transition: ease-in-out 0.5s;

              &:hover {
                opacity: 0.5;
              }

              @media (width <=768px) {
                width: 100%;
              }

              @media (768px < width <=992px) {
                width: 45%;
              }

              @media (992px < width <=1250px) {
                width: 30%;
              }

              .top {
                max-height: 150px;
                min-height: 60px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                width: 100%;
              }

              .feature-name {
                font-family: var(--heading-font), sans-serif;
                font-size: 1rem;
                color: var(--dark-green);
                text-align: center;
                font-weight: 600;
                line-height: 1.5em;
              }

              .feature-description {
                font-family: var(--body-font), sans-serif;
                font-size: 1rem;
                color: var(--dark-green);
                opacity: 0.5;
                text-align: center;
                line-height: 1.3em;

                .subtext {
                  font-size: 0.8rem;
                  line-height: 1.2em;
                  opacity: 0.5;
                }
              }
            }
          }
        }
      }
    }

    /* GOLD */
    .gold-pricing {
      display: flex;
      box-shadow: 0px 4px 25px 0px rgba(97, 69, 5, 0.061);
      gap: 36px;
      flex-direction: column;
      border: var(--yellow) solid 1px;
      background-color: #f6f6f6;

      @media (width <=1180px) {
        flex-direction: column;
        gap: 48px;
        justify-content: center;
      }

      @media (width <=520px) {
        padding: 32px 10px;
      }

      .header-container {
        .header {
          font-family: "Urbanist";
          margin: 0;
          padding: 0;
          text-align: left;
          color: var(--dark-green);
          font-size: 2rem;
          font-weight: 600;

          span {
            color: var(--yellow);
            background: -webkit-linear-gradient(#db9f0e, var(--yellow));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
          }
        }

        .subtext {
          font-family: var(--body-font), sans-serif;
          font-size: 1.15rem;
          color: rgba(17, 39, 43, 0.6);
          text-align: left;
        }
      }

      .gold-pricing-banner {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        letter-spacing: 6.32px;
        text-transform: uppercase;
        font-size: 1.25rem;
        font-weight: 800;
        font-family: "Urbanist";
        background-color: var(--white);
        padding: 10px;
        border-radius: 72px;
        box-shadow: 0px 4px 25px 0px rgba(251, 201, 82, 0.15);

        @media (width <=768px) {
          gap: 16px;
          padding: 24px;
          border-radius: 36px;
          gap: 4px;
          flex-direction: column;
        }

        @media (768px < width <=992px) {
          flex-direction: column;
          padding: 30px;
          border-radius: 36px;
          gap: 4px;
        }

        .gold-emphasis {
          display: flex;
          flex-direction: row;
          align-items: center;
          justify-content: center;
          gap: 10px;
          color: var(--yellow);
          background: -webkit-linear-gradient(#db9f0e, var(--yellow));
          -webkit-background-clip: text;
          background-clip: text;
          -webkit-text-fill-color: transparent;

          img {
            width: 44px;
          }
        }

        .green-emphasis {
          color: var(--light-green);
        }
      }

      .gold-price-container {
        display: flex;
        gap: 36px;

        @media (width <=1180px) {
          flex-direction: column;
          gap: 64px;
          justify-content: center;
          align-items: center;
        }

        .price-card {
          border-radius: 12px;
          display: flex;
          flex-direction: column;
          gap: 0;
          width: 45%;
          box-shadow: 0px 4px 25px 0px rgba(251, 201, 82, 0.15);

          @media (width <=1180px) {
            width: 100%;
          }

          .gold-header {
            background-color: var(--yellow);
            padding: 10px;
            border-radius: 12px 12px 0 0;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-family: "Urbanist";
            font-size: 1.4rem;
            font-weight: 800;
            letter-spacing: 6.32px;
            text-transform: uppercase;
            gap: 10px;

            img {
              width: 44px;
              mix-blend-mode: overlay;
            }
          }

          .price-content {
            background-color: var(--white);
            padding: 24px;
            border-radius: 0 0 12px 12px;
            display: flex;
            flex-direction: column;
            gap: 36px;

            .pricing-heading {
              text-align: left;
              display: flex;
              flex-direction: column;
              gap: 12px;

              #pricing-slider {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 8px;
                background-color: #f6f6f68b;
                padding: 24px;
                border-radius: 12px;

                .amount-header {
                  color: var(--dark-green);
                  font-size: 1.4rem;
                  font-weight: 600;

                  @media (width <=768px) {
                    font-size: 1.2rem;
                  }
                }

                .range-slider-container {
                  display: flex;
                  width: 100%;
                  gap: 20px;
                  font-size: 2.2rem;
                  font-family: "Urbanist";
                  font-weight: 800;
                  align-items: center;
                  justify-content: center;
                  color: var(--dark-green);

                  .slider {
                    position: relative;
                    width: 100%;
                    display: flex;
                    justify-content: center;
                    align-items: center;

                    #planSlider {
                      width: 100%;
                      -webkit-appearance: none;
                      appearance: none;
                      height: 15px;
                      background-color: transparent;
                      outline: none;
                      border-radius: 40px;
                      transition: background-color 0.2s;

                      &:hover {
                        cursor: pointer;
                      }

                      &::-webkit-slider-thumb {
                        -webkit-appearance: none;
                        appearance: none;
                        width: 20px;
                        height: 20px;
                        background-color: var(--white);
                        border: 4px solid var(--blue);
                        border-radius: 40px;
                        cursor: pointer;
                        z-index: 999;
                        box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
                      }

                      &::-webkit-slider-runnable-track {
                        width: 100%;
                        height: 20px;
                        background-color: rgba(69, 149, 205, 0.2);
                        border-radius: 40px;
                      }

                      &::-moz-range-track {
                        width: 100%;
                        height: 15px;
                        border-radius: 40px;
                      }

                      &::-moz-range-progress {
                        height: 15px;
                        background-color: var(--blue);
                        border-radius: 40px;
                      }

                      &::-ms-fill-lower {
                        background-color: var(--blue);
                        border-radius: 40px;
                      }

                      &::-ms-fill-upper {
                        background: rgba(69, 149, 205, 0.2);
                        border-radius: 40px;
                      }
                    }

                    .ticks-container {
                      position: absolute;
                      top: 7.5px;
                      width: calc(100% - 15px);
                      left: 8px;
                      height: 0px;
                      display: flex;
                      justify-content: space-between;
                      z-index: 0;
                      pointer-events: none;

                      .tick {
                        width: 5px;
                        height: 5px;
                        border-radius: 50%;
                        background-color: var(--blue);
                      }

                      .left-of-thumb {
                        background-color: var(--white);
                      }

                      .tick.active {
                        background-color: var(--white);
                      }
                    }
                  }
                }

                .value-container {
                  color: var(--blue);
                  background-color: #d4e4ee;
                  padding: 7px 16px;
                  width: fit-content;
                  border-radius: 40px;
                  display: flex;
                  gap: 5px;
                  align-items: center;
                  justify-content: center;
                  border: 2px solid var(--blue);
                  justify-self: center;
                  font-size: 1.1rem;

                  #sliderValue {
                    margin-left: 10px;
                  }
                }
              }

              .header {
                .subtext {
                  color: rgba(17, 39, 43, 0.25);
                  font-size: 1.2em;
                }

                .pricing {
                  font-family: "Urbanist";
                  font-size: 3rem;
                  font-weight: 900;
                  text-align: left;

                  .value {
                    color: var(--dark-green);
                    font-size: 3rem;
                    font-weight: 900;
                    text-align: left;
                  }

                  span {
                    color: rgba(17, 39, 43, 0.5);
                    font-size: 1.2rem;
                    font-weight: 100;
                  }
                }

                .annual-discount-pricing {
                  display: flex;
                  flex-direction: row;
                  gap: 12px;
                  font-family: "Urbanist";
                  font-size: 1.2rem;
                  color: rgba(17, 39, 43, 0.6);
                  color: var(--dark-green);

                  @media (width <=520px) {
                    flex-direction: row;
                  }

                  .discount-label {
                    background-color: #cfebff;
                    padding: 0 10px;
                    border: 1px solid var(--blue);
                    border-radius: 40px;
                    color: var(--blue);
                  }
                }

                .gold-card-title {
                  font-size: 1.2rem;
                  text-align: left;
                  color: rgba(17, 39, 43, 0.25);

                  span {
                    color: rgba(17, 39, 43, 0.6);
                  }
                }
              }

              .coffee-disclaimer {
                font-size: 1.25rem;
                opacity: 0.35;
                text-align: left;
                font-family: var(--body-font), sans-serif;

                @media (width <=520px) {
                  font-size: 1.2rem;
                }
              }
            }

            .practitioners-container {
              display: flex;
              gap: 24px;
              border-top: 2px solid #dadadb;
              border-bottom: 2px solid #dadadb;
              padding: 24px 0 24px;
              font-size: 1.5rem;
              font-family: "Urbanist", "sans-serif";

              @media (width <=520px) {
                padding: 16px 0 16px;
                flex-direction: column;
                gap: 8px;
                justify-content: center;
                align-items: center;

                p {
                  margin: 0;
                }
              }

              img {
                height: 60px;
              }

              .practitioners-amount {
                font-weight: 800;
              }

              .content {
                display: none;
                position: relative;
                min-width: fit-content;
                min-width: fit-content;

                .gold-header {
                  position: absolute;
                  top: 0;
                  left: 0;
                  width: calc(100% - 20px);
                  background-color: var(--yellow);
                  padding: 10px;
                  border-radius: 12px 12px 0 0;
                  display: flex;
                  flex-direction: row;
                  align-items: center;
                  justify-content: center;
                  gap: 10px;
                  color: var(--white);
                  font-family: "Urbanist";
                  font-size: 1.4rem;
                  font-weight: 800;
                  letter-spacing: 6.32px;
                  text-transform: uppercase;

                  img {
                    width: 44px;
                    mix-blend-mode: overlay;
                  }
                }

                .gold-content {
                  padding: 24px;
                  background-color: var(--white);
                  display: flex;
                  flex-direction: column;
                  margin-top: 10px;
                  gap: 40px;

                  @media (width <=520px) {
                    padding: 24px 0px;
                  }

                  .pricing {
                    font-family: "Urbanist";
                    font-size: 3rem;
                    font-weight: 900;
                    text-align: left;

                    .value {
                      color: var(--dark-green);
                      font-size: 3rem;
                      font-weight: 900;
                      text-align: left;
                    }

                    span {
                      color: rgba(17, 39, 43, 0.5);
                      font-size: 1.2rem;
                      font-weight: 100;
                    }
                  }

                  .separator {
                    width: 100%;
                    height: 2px;
                    background-color: #dadadb;
                  }
                }
              }

              .slider-container {
                border-radius: 12px;
                background-color: var(--white);
                display: flex;
                flex-direction: column;
                gap: 16px;
                height: fit-content;
                width: 100%;

                @media (width <=768px) {
                  padding: 32px 16px;
                }

                .practitioner-slider-container {
                  display: flex;
                  flex-direction: column;
                  gap: 12px;
                  align-items: center;
                  background-color: #f6f6f68b;
                  padding: 24px;
                  border-radius: 12px;

                  .calculation-explanation {
                    display: flex;
                    flex-direction: column;
                    gap: 12px;
                    width: 100%;

                    .calculation-header {
                      font-weight: 500;
                      font-size: 1.3rem;

                      color: var(--yellow);
                      background: -webkit-linear-gradient(
                        #db9f0e,
                        var(--yellow)
                      );
                      -webkit-background-clip: text;
                      background-clip: text;
                      -webkit-text-fill-color: transparent;
                    }

                    .price-per-practitioner {
                      display: flex;
                      justify-content: space-between;
                      font-size: 1.2rem;

                      .value {
                        color: rgba(17, 39, 43, 0.5);
                      }

                      @media (width <=520px) {
                        font-size: 1rem;
                      }
                    }

                    .number-of-practitioners {
                      display: flex;
                      justify-content: space-between;
                      font-size: 1.2rem;

                      .value {
                        color: rgba(17, 39, 43, 0.5);
                      }

                      @media (width <=520px) {
                        font-size: 1rem;
                      }
                    }

                    .yearly-billing-discount {
                      display: flex;
                      justify-content: space-between;
                      font-size: 1.2rem;

                      .value {
                        color: rgba(17, 39, 43, 0.5);
                      }

                      @media (width <=520px) {
                        font-size: 1rem;
                      }
                    }

                    .total-savings {
                      display: flex;
                      justify-content: space-between;
                      font-size: 1.2rem;
                      color: rgba(17, 39, 43, 0.5);
                      border-top: var(--accent) dashed 2px;
                      padding-top: 8px;

                      .gold-savings {
                        .or-separator {
                          color: var(--dark-green);
                          text-align: left;
                        }
                      }

                      @media (width <=520px) {
                        font-size: 1rem;
                      }
                    }

                    button {
                      background-color: var(--yellow);
                    }

                    .green-disclaimer {
                      font-size: 1.3rem;
                      color: var(--dark-green);
                      text-decoration: underline;
                    }
                  }
                }
              }
            }

            .card-footer {
              display: flex;
              flex-direction: column;
              gap: 8px;

              .gold-disclaimer {
                font-size: 1rem;
                color: var(--dark-green);
                font-family: var(--body-font), sans-serif;
                font-weight: 400;
                text-decoration: underline;
              }
            }
          }
        }

        .features-container {
          width: 70%;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: space-around;
          gap: 32px;

          @media (width <=1180px) {
            width: 100%;
          }

          .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-evenly;
            align-items: center;
            width: 100%;
            gap: 32px;

            @media (width <=1180px) {
              width: 100%;
            }

            @media (992px < width <=1180px) {
              gap: 40px;
            }

            @media (width <=520px) {
              gap: 0px;
            }

            .feature-item {
              display: flex;
              flex-direction: column;
              align-items: center;
              width: 35%;
              height: 200px;
              gap: 8px;
              transition: ease-in-out 0.5s;

              &:hover {
                opacity: 0.5;
              }

              @media (width <=768px) {
                width: 100%;
              }

              @media (768px < width <=992px) {
                width: 45%;
              }

              @media (992px < width <=1250px) {
                width: 30%;
              }

              .top {
                max-height: 150px;
                min-height: 60px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                width: 100%;
              }

              .feature-name {
                font-family: var(--heading-font), sans-serif;
                font-size: 1rem;
                color: var(--dark-green);
                text-align: center;
                font-weight: 600;
                line-height: 1.5em;
              }

              .feature-description {
                font-family: var(--body-font), sans-serif;
                font-size: 1rem;
                color: var(--dark-green);
                opacity: 0.5;
                text-align: center;
                line-height: 1.3em;

                .subtext {
                  font-size: 0.8rem;
                  line-height: 1.2em;
                  opacity: 0.5;
                }
              }
            }
          }

          .full-plan {
            color: var(--dark-green);
            opacity: 0.8;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            font-size: 1.25rem;
            background-color: transparent;
            font-weight: 400;
            font-family: var(--heading-font), sans-serif;
            text-decoration: underline;
          }
        }
      }
    }
  }
}

/********** Testimonials ******** */
#testimonials {
  max-width: 80%;

  .wrapper {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    padding: 1.5em;

    .header {
      margin: 0;
      padding: 0;
      text-align: left;
      color: var(--dark-green);
      font-weight: 600;
      font-size: 2.5rem;
      font-family: var(--heading-font);
      line-height: 50px;
      padding-bottom: 24px;

      @media (width <=768px) {
        font-size: 2rem;
        line-height: 40px;
      }
    }

    .subtext {
      font-family: var(--body-font), sans-serif;
      font-size: 1.3rem;
      color: var(--dark-green);
    }
  }
}

.swiper {
  padding: 1.5em;
}

.content-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
}

.content {
  padding: 3em 3em;
  text-align: center;
  display: grid;
  justify-items: center;
  align-items: center;
  margin: 0 auto;
  color: var(--dark-green);
  box-shadow: 0px 0px 25px 0px rgb(177 195 255 / 0.25);
  border-radius: 5px;
  gap: 20px;

  .text {
    font-size: 1.2rem;
    font-family: var(--body-font), sans-serif;
    line-height: 28px;
    text-align: left;
    opacity: 0.5;

    .quote {
      text-align: left;
      font-size: 2rem;
      line-height: 1px;
      color: var(--light-blue);
    }
  }
}

.swiper-avatar {
  border: 1px solid var(--blue);
  border-radius: 30px;
  padding: 6px 16px;
  font-family: "Urbanist";
  font-size: 1.1em;
  font-weight: 100;
  color: rgba(17, 39, 43, 0.7);
  justify-self: flex-end;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;

  img {
    width: 25px;
  }
}

.cite {
  font-family: "Urbanist";
  font-size: 1.2em;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  border-left: 1px solid var(--light-blue);
  padding-left: 10px;

  .name {
    font-weight: 800;
  }
}

.swiper-slide {
  margin: 0;
  height: auto;
  width: 100%;
  padding: 0;
  opacity: 0.2;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  transition: all 0.5s ease-in-out;
}

.swiper {
  padding: 20px !important;
}

.swiper-slide {
  transition-duration: 0.2s !important;
}

.swiper-slide:hover {
  transform: scale(1.1) !important;
}

.swiper-slide-active {
  background: rgba(255, 255, 255, 1);
  opacity: 1;
  transform: scale(1);
}

.swiper-nav-wrapper {
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding-top: 3em;
}

.swiper-pagination-bullet-active {
  background: var(--light-blue) !important;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute !important;
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  background-repeat: no-repeat;
}

.swiper-button-next {
  background-image: url("data:image/svg+xml,...");
  color: var(--light-blue) !important;
  padding: 20px;
}

.swiper-button-prev {
  background-image: url("data:image/svg+xml,...");
  color: var(--light-blue) !important;
}

/* GREEN BUTTON */
button.green-button {
  background-color: var(--light-green);
  border: none;
  color: var(--white);
  padding: 15px 30px;
  border-radius: 30px;
  text-align: center;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-family: var(--heading-font), sans-serif;
  transition: 0.4s ease-in-out;

  .light-text {
    font-family: var(--heading-font), sans-serif;
    font-weight: 100;
  }

  @media (width <=520px) {
    font-size: 1rem;
  }

  &:hover {
    cursor: pointer;
    background-color: #59a694;
    box-shadow: 0px 4px 25px 0px rgba(95, 189, 167, 0.447);
  }

  &.disabled {
    background-color: var(--light-green);
    border: none;
    color: var(--white);
    opacity: 0.4;
    cursor: not-allowed;
  }
}

.green-button.get-started {
  padding: 12px 24px;
}

/* ----------------------------- */

/* PRIMARY GREEN LINK */
.primary-green-link {
  background-color: var(--white);
  border: none;
  color: var(--light-green);
  text-align: right;
  text-decoration: none;
  display: inline-block;
  font-size: 1.25rem;
  font-family: "Didact Gothic", sans-serif;
  transition: 0.4s ease-in-out;

  &:hover {
    cursor: pointer;
    text-decoration: underline;
  }
}

/* Primary-white-link */
.primary-white-link {
  font-family: "Urbanist", sans-serif;
  font-weight: 100;
  font-size: 1.2rem;
  color: var(--white);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
  transition: 0.25s ease-in-out;

  &:hover {
    color: rgba(255, 255, 255, 0.537);
    cursor: pointer;
  }
}

/* SECONDARY GREY LINK */
.secondary-grey-link {
  font-family: "Urbanist", sans-serif;
  font-weight: 100;
  font-size: 1.2rem;
  color: var(--dark-green);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
  transition: 0.25s ease-in-out;
  color: var(--dark-green);
  opacity: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  background-color: transparent;
  font-weight: 400;
  font-family: "Urbanist", sans-serif;
  text-decoration: underline;

  &:hover {
    color: rgba(30, 30, 30, 0.609);
    cursor: pointer;
  }
}

/* ----------------------------- */
/* SECONDARY GREEN BUTTON */
.secondary-green {
  background-color: var(--white);
  border: var(--light-green) solid 2px;
  color: var(--light-green);
  text-align: center;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.20rem;
  font-family: var(--body-font), sans-serif;
  transition: 0.4s ease-in-out;

  .light-text {
    /* font-size: 1.5rem; */
    font-family: var(--heading-font), sans-serif;
    font-weight: 100;
  }

  &:hover {
    cursor: pointer;
    box-shadow: 0px 4px 25px 0px rgba(67, 133, 118, 0.757);
    color: #5aae9a;
    border: #5aae9a solid 2px;
  }
}

/* -------------------------- */

/* ----------------------------- */

/* GOLD BUTTON */
button.gold-button {
  position: relative;
  background: var(--yellow);
  color: #fff;
  /* Text color */
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  overflow: hidden;
  /* Ensure pseudo-element is contained within the button */
  transition: box-shadow 0.5s ease;
  /* Smooth shadow transition */
  z-index: 1;
  /* Ensure button text is above */
  font-size: 1.25rem;
  font-family: "Didact Gothic", sans-serif;

  @media (width <=520px) {
    font-size: 1rem;
  }
}

button.gold-button::before {
  content: "";
  border-radius: 30x;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #ffd777 0%, #db9f0e 100%);
  /* Your gradient */
  opacity: 0;
  /* Start as invisible */
  transition: opacity 0.5s ease;
  /* Smooth fade-in transition */
  z-index: -1;
  /* Place behind the button text */
}

button.gold-button:hover::before {
  opacity: 1;
  /* Make the gradient visible */
  border-radius: 30x;
}

button.gold-button:hover {
  box-shadow: 0px 4px 25px 0px rgba(255, 214, 119, 0.484);
  cursor: pointer;
}

button.gold-button span {
  position: relative;
  z-index: 1;
  /* Keep text above the gradient */
}

/* ----------------------------- */

::placeholder {
  color: rgb(17 39 43 / 0.7);
}

/* ********** FOOTER ********* */

footer {
  display: flex;
  flex-direction: row;
  padding: 90px 110px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--dark-green);
  font-family: var(--body-font), sans-serif;
  justify-content: space-between;

  @media (width <=1060px) {
    flex-direction: column;
    padding: 45px 55px;
    gap: 40px;
    justify-content: space-around;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;

    .footer-logo {
      width: 153px;
      height: auto;
    }

    .contact-info-method {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 10px;
      padding: 10px;

      .icon {
        display: flex;
        width: 30px;
        height: 30px;
        position: relative;
        justify-content: center;
        align-items: center;
        opacity: 0.4;

        img {
          width: 20px;
          height: auto;
          position: absolute;
        }
      }

      .text {
        font-family: var(--body-font), sans-serif;
        color: var(--dark-green);
        text-align: left;
        line-height: 32px;

        a {
          font-size: 1rem;
          font-family: var(--body-font), sans-serif;
          color: var(--dark-green);
          text-align: left;
          line-height: 32px;

          &:hover {
            text-decoration: underline;
            opacity: 0.7;
          }
        }
      }
    }

    .social-media-container {
      display: flex;
      flex-direction: row;
      gap: 20px;
      padding: 10px;

      .icon {
        display: flex;
        width: 30px;
        height: 30px;
        position: relative;
        justify-content: center;
        align-items: center;

        img {
          width: 20x;
          height: 20px;
          position: absolute;
        }
      }
    }
  }

  .info-container {
    display: flex;
    flex-direction: row;
    gap: 80px;

    @media (width <=768px) {
      flex-direction: column;
      gap: 40px;
    }

    .services {
      display: flex;
      flex-direction: column;
      gap: 10px;

      .service-header {
        font-family: var(--heading-font), sans-serif;
        font-weight: 700;
        font-size: 1.1rem;
        text-align: left;
      }

      .service-container {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding-left: 10px;
        border-left: 3px solid var(--light-green);

        .service-item {
          font-family: var(--body-font), sans-serif;
          font-size: 1.1rem;
        }
      }
    }

    .navigation {
      display: flex;
      flex-direction: column;
      gap: 10px;

      .navigation-header {
        font-family: var(--heading-font), sans-serif;
        font-weight: 700;
        font-size: 1.1rem;
        text-align: left;
      }

      .navigation-container {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding-left: 10px;
        border-left: 3px solid var(--blue);

        .navigation-item {
          font-family: var(--body-font), sans-serif;
          font-size: 1.1rem;
          transition: 0.5s;

          &:hover {
            text-decoration: underline;
            opacity: 0.7;
          }
        }
      }
    }

    .help {
      display: flex;
      flex-direction: column;
      gap: 10px;

      .help-header {
        font-family: var(--heading-font), sans-serif;
        font-weight: 700;
        font-size: 1.1rem;
        text-align: left;
      }

      .help-container {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding-left: 10px;
        border-left: 3px solid var(--yellow);

        .help-item {
          font-family: var(--body-font), sans-serif;
          font-size: 1.1rem;
          transition: 0.5s;

          &:hover {
            text-decoration: underline;
            opacity: 0.7;
          }
        }
      }
    }
  }
}

/* ********** SCROLLBAR ********* */
/* Firefox (uncomment to work in Firefox, although other properties will not work!)  */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--light-green) var(--accent);
}

/* Chrome, Edge and Safari */
*::-webkit-scrollbar {
  height: 7px;
  width: 7px;
}

*::-webkit-scrollbar-track {
  border-radius: 20px;
  background-color: transparent;
}

*::-webkit-scrollbar-track:hover {
  background-color: var(--accent);
}

*::-webkit-scrollbar-track:active {
  background-color: #d8dde0;
}

*::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background-color: var(--light-green);
}

*::-webkit-scrollbar-thumb:hover {
  background-color: #4f9d8b;
}

*::-webkit-scrollbar-thumb:active {
  background-color: #458979;
}

/* ----------------------------- */

div.content-container:nth-child(4) {
  right: 20px;
  left: 0px;
}

a.white-button {
  background-color: var(--white);
  color: var(--light-green);
  border: 2px solid var(--light-green);
  padding: 15px 30px;
  border-radius: 30px;
  text-align: center;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-family: var(--heading-font), sans-serif;
  transition: 0.4s ease-in-out;

  .light-text {
    font-family: var(--heading-font), sans-serif;
    font-weight: 100;
  }

  &:hover {
    background-color: var(--light-green);
    color: var(--white);
    box-shadow: 0px 4px 25px rgba(95, 189, 167, 0.2);
    cursor: pointer;
  }

  @media (width <=520px) {
    font-size: 1rem;
  }
}

.hero-image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 2rem;
}

.big-logo {
  width: 180px;
  opacity: 0;
  transform: scale(0.9);
  animation: logoPop 1s ease-out forwards;
  animation-delay: 0.2s;
}

.hero-image-subtext {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: var(--heading-font), sans-serif;
  font-size: 2.75rem;
  color: var(--white);
}

.fade-line {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeLine 1s ease-out forwards;
  animation-delay: 0.8s;
}

.fade-line.delay {
  animation-delay: 1.4s;
}

@keyframes logoPop {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeLine {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-image-subtext {
    font-size: 2rem;
  }

  .big-logo {
    width: 140px;
  }
}

.offer-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.offer-modal.hidden {
  display: none;
}

.modal-content {
  background: #fff;
  border-radius: 10px;
  max-width: 900px;
  width: 90%;
  padding: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;  /* Stack close button and image vertically */
}

.modal-content img {
  max-width: 85%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 2rem;    /* Slightly larger close button */
  color: #333;
  cursor: pointer;
  z-index: 1;
}

.platforms {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.store-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;          /* Optional: Adds visual unity */
  border-radius: 8px;
  padding: 10px;
  max-width: 180px;          /* Same max-width for both */
}

.apple-badge {
  width: 180px;    /* Set your preferred size */
  height: auto;
  display: block;
}

.google-badge {
  width: 235px;    /* Slightly wider to compensate for compact height */
  height: auto;
  display: block;
}




