: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;
}

body {
  font-family: "Didact Gothic", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;

  background-color: #f5f5f5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Urbanist", 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;
    /* position: absolute; */
    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; */
  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;

        /* @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: var(--dark-green);
            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: var(--dark-green);
          text-decoration: underline dotted;

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

.faq-popup {
  display: none;
  position: fixed;
  /* top: 75px; */
  /* left: -200px; */
  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: 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: 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;
        }
      }
    }
  }

  /* burger menu code */
}

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: 22px;
}

.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: var(--dark-green);
      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 {
            /* border-top: 2px solid rgba(69, 149, 205, 0.2); */
            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: var(--dark-green);
    text-decoration: underline dotted;

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

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: hidden;
  overflow-x: hidden;

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

  #pricing-table {
    /* max-width: 80%; */
    max-width: 1500px;
    width: 80%;

    .wrapper {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 42px;

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

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

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

        .subtext {
          font-family: "Didact Gothic", sans-serif;
          font-size: 1.3rem;
          color: rgba(17, 39, 43, 0.5);
          text-decoration: underline;
          text-align: left;
        }
      }

      .table-container {
        display: grid;
        grid-auto-flow: row;
        flex-direction: column;
        width: 100%;
        /* justify-self: flex-end; */
        /* justify-content: flex-end; */
        align-items: flex-end;
        position: relative;

        .columns {
          display: grid;
          grid-auto-flow: column;
          grid-template-columns: 1fr 1fr 1fr;
          /* width: 50%;
                    max-width: 1000px; */
          height: fit-content;
          gap: 13px;
          z-index: 10;

          .green-column {
            background-color: var(--white);
            width: 100%;
            height: 100%;
            /* min-width: 300px; */
            /* position: relative; */
            display: flex;
            flex-direction: column;
            border-radius: 20px;

            .green-header {
              position: relative;
              top: 0;
              left: 0;
              width: calc(100% - 20px);
              background-color: var(--light-green);
              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;
              height: 40px;
            }

            .green-content {
              padding: 24px;
              background-color: var(--white);
              display: flex;
              flex-direction: column;
              gap: 24px;
              align-items: center;
              height: 100%;
              /* width: 100%; */

              .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.5rem;
                opacity: 0.35;
              }

              .separator {
                width: 60%;
                height: 0.1em;
                background-color: #dadadb;
              }

              .button-container {
                display: flex;
                flex-direction: column;
                gap: 8px;

                .text {
                  font-family: "Didact Gothic", sans-serif;
                  font-size: 1.1rem;
                  color: rgba(17, 39, 43, 0.5);
                }
              }
            }
          }

          .yellow-column {
            background-color: var(--white);
            width: 100%;
            height: 100%;
            /* min-width: 300px; */
            /* position: relative; */
            display: flex;
            flex-direction: column;
            border-radius: 20px;

            .gold-header {
              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;
              height: 40px;

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

            .gold-content {
              padding: 24px;
              background-color: var(--white);
              display: flex;
              flex-direction: column;
              gap: 24px;
              align-items: center;
              height: 100%;
              /* width: 100%; */

              .pricing-container {
                position: relative;

                .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;
                  }
                }

                .practitioner-disclaimer {
                  font-size: 1.1rem;
                  color: rgba(17, 39, 43, 0.25);
                  text-align: left;
                  position: absolute;
                  bottom: -20px;
                }
              }

              .coffee-disclaimer {
                font-size: 1.5rem;
                opacity: 0.35;
              }

              .separator {
                width: 60%;
                height: 0.1em;
                background-color: #dadadb;
              }

              .button-container {
                display: flex;
                flex-direction: column;
                gap: 8px;

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

        .background-columns {
          position: absolute;
          width: 100%;
          height: 100%;
          display: grid;
          grid-auto-flow: column;
          grid-template-columns: 1fr 1fr 1fr;
          gap: 13px;
          z-index: 0;

          .background-column {
            background-color: var(--white);
            border-radius: 10px;
          }
        }

        .floating-rows {
          display: grid;
          grid-template-columns: 1fr 1fr 1fr;
          position: relative;
          width: 100%;

          .row {
            display: contents;
            align-items: center;

            &:nth-child(2n) {
              .row-title,
              .free-value,
              .gold-value {
                background-color: transparent;
              }
            }

            .row-title {
              font-weight: 200;
              font-size: 1.1rem;
              color: var(--dark-green);
              background-color: #e8edf0;
              padding: 25px;
              text-align: left;
              display: flex;
              align-items: center;
            }

            .free-value,
            .gold-value {
              display: flex;
              flex-direction: column;
              font-size: 1.2rem;
              text-align: center;
              background-color: rgba(232, 237, 240, 0.4);
              padding: 25px;
              align-items: center;
              gap: 10px;
              justify-content: center;
              position: relative;

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

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

              .important-info {
                display: flex;
                flex-direction: row;
                align-items: center;
                position: relative;

                span {
                  position: absolute;
                  right: -10px;
                }
              }

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

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

                .tooltip {
                  position: relative;
                  display: inline-block;
                  height: 20px;

                  .tooltip-text {
                    opacity: 0;
                    transition: opacity 0.25s;
                    /* visibility: hidden; */
                    width: 200px;
                    background-color: var(--white);
                    color: var(--blue);
                    text-align: left;
                    border: 2px solid var(--blue);
                    border-radius: 6px;
                    padding: 8px;
                    line-height: 25px;
                    top: 0px;
                    margin-left: 10px;
                    box-shadow: 0px 4px 20px 0 rgba(69, 149, 205, 0.15);
                    font-size: 1.1rem;
                    font-family: "Urbanist";
                    /* Position the tooltip */
                    position: absolute;
                    z-index: 1;

                    &::after {
                      content: "";
                      position: absolute;
                      top: 10px;
                      right: 100%;
                      margin-top: -5px;
                      border-width: 7px;
                      border-style: solid;
                      border-color: transparent var(--blue) transparent
                        transparent;
                    }
                  }

                  &:hover {
                    .tooltip-text {
                      visibility: visible;
                      opacity: 0.99;
                    }
                  }
                }
              }
            }
          }
        }
      }
    }

    /* //////////////////////////////////////////////////////////// */

    /* mobile view */

    .mobile-wrapper {
      width: 100%;
      display: none;
      flex-direction: column;
      gap: 42px;

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

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

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

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

        .subtext {
          font-family: "Didact Gothic", sans-serif;
          font-size: 1.3rem;
          color: rgba(17, 39, 43, 0.5);
          text-decoration: underline;
          text-align: left;
        }
      }

      .table-container {
        .columns {
          display: grid;
          grid-auto-flow: column;
          grid-template-columns: 1fr 1fr;
          /* width: 50%;
                    max-width: 1000px; */
          height: fit-content;
          gap: 13px;
          z-index: 10;
          padding: 20px 0;

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

          .green-column {
            background-color: var(--white);
            width: 100%;
            height: 100%;
            /* min-width: 300px; */
            /* position: relative; */
            display: flex;
            flex-direction: column;
            border-radius: 20px;

            .green-header {
              position: relative;
              top: 0;
              left: 0;
              width: calc(100% - 20px);
              background-color: var(--light-green);
              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;
              height: 40px;
            }

            .green-content {
              padding: 24px;
              background-color: var(--white);
              display: flex;
              flex-direction: column;
              gap: 24px;
              align-items: center;
              /* width: 100%; */
              border-radius: 12px;

              .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.5rem;
                opacity: 0.35;

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

              .separator {
                width: 60%;
                height: 0.1em;
                background-color: #dadadb;
              }

              .button-container {
                display: flex;
                flex-direction: column;
                gap: 8px;

                .text {
                  font-family: "Didact Gothic", sans-serif;
                  font-size: 1.1rem;
                  color: rgba(17, 39, 43, 0.5);
                }
              }
            }
          }

          .yellow-column {
            background-color: var(--white);
            width: 100%;
            height: 100%;
            /* min-width: 300px; */
            /* position: relative; */
            display: flex;
            flex-direction: column;
            border-radius: 20px;

            .gold-header {
              position: relative;
              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;
              height: 40px;

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

            .gold-content {
              padding: 24px;
              /* background-color: var(--white); */
              display: flex;
              flex-direction: column;
              gap: 24px;
              align-items: center;
              /* width: 100%; */

              .pricing-container {
                position: relative;

                .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;
                  }
                }

                .practitioner-disclaimer {
                  font-size: 1.1rem;
                  color: rgba(17, 39, 43, 0.25);
                  text-align: left;
                  position: absolute;
                  bottom: -20px;
                }
              }

              .coffee-disclaimer {
                font-size: 1.5rem;
                opacity: 0.35;

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

              .separator {
                width: 60%;
                height: 0.1em;
                background-color: #dadadb;
              }

              .button-container {
                display: flex;
                flex-direction: column;
                gap: 8px;

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

        .floating-rows {
          display: grid;
          position: relative;
          width: 100%;
          gap: 20px;

          .row {
            display: flex;
            align-items: center;
            flex-direction: column;
            background-color: var(--white);
            padding: 25px;
            padding: 0px 25px;
            border-radius: 20px;

            .row-title {
              font-weight: 200;
              font-size: 1.1rem;
              color: var(--dark-green);
              padding: 25px;
              text-align: left;
              display: flex;
              align-items: center;
              background-color: var(--accent);
              width: 100%;
              border-radius: 20px 20px 0px 0px;
            }

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

            .free-value,
            .gold-value {
              display: grid;
              grid-auto-flow: column;
              grid-template-columns: 1fr 1fr;
              flex-direction: row;
              font-size: 1.2rem;
              text-align: center;
              padding: 25px;
              align-items: center;
              gap: 10px;
              justify-content: center;
              position: relative;
              width: 100%;

              .green-tier {
                color: var(--light-green);
                text-transform: uppercase;
                font-weight: 800;
                text-align: left;
              }

              .gold-tier {
                text-transform: uppercase;
                color: var(--yellow);
                background: -webkit-linear-gradient(#db9f0e, var(--yellow));
                font-weight: 800;
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
                text-align: left;
              }

              .text {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: end;
                font-size: 1rem;
                line-height: 18px;
                gap: 10px;
                width: 100%;

                .important-info {
                  display: flex;
                  flex-direction: row;
                  align-items: center;
                  position: relative;

                  span {
                    position: absolute;
                    right: -10px;
                  }
                }
              }

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

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

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

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

                .tooltip {
                  position: relative;
                  display: inline-block;
                  height: 20px;

                  .tooltip-text {
                    opacity: 0;
                    transition: opacity 0.25s;
                    /* visibility: hidden; */
                    width: 200px;
                    background-color: var(--white);
                    color: var(--blue);
                    text-align: left;
                    border: 2px solid var(--blue);
                    border-radius: 6px;
                    padding: 8px;
                    line-height: 25px;
                    top: -5px;
                    right: 105%;
                    margin-left: 10px;
                    box-shadow: 0px 4px 20px 0 rgba(69, 149, 205, 0.15);
                    font-size: 1.1rem;
                    font-family: "Urbanist";
                    /* Position the tooltip */
                    position: absolute;
                    z-index: 1;

                    &::after {
                      content: " ";
                      position: absolute;
                      top: 12px;
                      left: 100%;
                      /* To the right of the tooltip */
                      margin-top: -5px;
                      border-width: 5px;
                      border-style: solid;
                      border-color: transparent transparent transparent
                        var(--blue);
                    }
                  }

                  &:hover {
                    .tooltip-text {
                      visibility: visible;
                      opacity: 0.99;
                    }
                  }
                }
              }
            }
          }
        }
      }
    }

    /* mobile view end */

    /* //////////////////////////////// */
  }
}

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

.back {
  display: flex;
  justify-content: flex-start;
  width: 80%;
  padding: 24px 12px;
  margin-top: 80px;
}

/* 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(--body-font), sans-serif;

  transition: 0.4s ease-in-out;

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

  &: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;
  }
}

/* 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;
}

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 */
}

/* 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: 500;
  font-family: "Urbanist", sans-serif;
  text-decoration: underline;

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

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: 22px;

        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;
}

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