<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --vce-border: #C3CDE2;
  --vce-primary: rgb(var(--versa-erp));
  --vce-primary-20: rgba(var(--versa-erp), 0.2);
  --vce-primary-50: rgba(var(--versa-erp), 0.5);
}

/*============================*/
/* PAGE BASE                 */
/*============================*/
section[class^='section'] {
  display: flex;
}

strong {
  font-weight: 700;
}

ul {
  padding: 0;
  margin: 0;
}

sup {
  font-size: 12px;
  vertical-align: middle;
  color: inherit !important;
}

.button {
  display: inline-flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  padding: 15px 24px;
  border-radius: 18px;
  font-size: 1.2rem;
  font-weight: 700;
  border: 2px solid rgb(var(--versa-erp));
}

.button.solid {
  background: rgb(var(--versa-erp));
  color: var(--vce-default-white);
}

.button.solid.inverted {
  background: var(--vce-default-white);
  border-color: var(--vce-default-white);
  color: rgb(var(--versa-erp));
}

.button.outline {
  color: rgb(var(--versa-erp));
}

.section-titles {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  gap: 15px;
}

.section-titles.left {
  align-items: start;
  justify-content: start;
  text-align: left;
}

.section-titles.large {
  max-width: 940px;
}

.section-titles.medium {
  max-width: 650px;
}

.section-titles.small {
  max-width: 400px;
}

.section-titles h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 38px;
  margin: 0;
}

.section-titles h3 {
  color: rgb(var(--versa-erp));
  font-size: 18px;
  text-transform: uppercase;
  margin: 0;
}

.section-titles p {
  font-size: 18px;
  line-height: 26px !important;
  margin: 0;
}

.section-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.section-wrapper.centered {
  align-items: center;
  justify-content: center;
}

/*============================*/
/* HEADER SECTION             */
/*============================*/
.site-header {
  background: url(/wp-content/themes/versaccounts/assets/images/home/home-hero-bg.jpg);
  background-repeat: no-repeat;
  padding-top: 80px;
  position: relative;

  .scroll-down {
    position: absolute;
    bottom: -48px;
    left: 50%;
    transform: translateX(-50%);
  }

  .wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1280px;
    padding: 0 20px;
    margin: 0 auto;
    align-items: stretch;
  }

  /* LEFT CONTENT */
  .header-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 0;
    color: #1a1a1a;

    .stars {
      display: flex;
      gap: 0.25rem;
      margin-bottom: 1rem;

      svg {
        width: 30px;
        height: 30px;
        fill: var(--vce-primary);
        stroke: var(--vce-primary);
        transition: all 0.3s ease;

        &amp;:hover {
          transform: scale(1.2) rotate(15deg);
          filter: drop-shadow(0 0 8px rgba(var(--versa-erp), 0.6));
        }
      }
    }

    h1 {
      font-size: 2.6rem;
      margin: 0 0 1rem;
      line-height: 2.7rem;
      font-weight: 800;
      letter-spacing: -1px;
    }

    p {
      font-size: 1.4rem;
      line-height: 1.9rem !important;
      margin: 0 0 3rem;
    }

    .actions {
      display: flex;
      flex-direction: column;
      gap: 3rem;
      max-width: 510px;

      .buttons {
        display: flex;
        gap: 1rem;

        .button {
          width: 100%;
          transition: all 0.3s ease;
          position: relative;
          overflow: hidden;

          &amp;::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                transparent,
                rgba(255, 255, 255, 0.2),
                transparent);
            transition: left 0.5s ease;
          }

          &amp;:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(var(--versa-erp), 0.3);

            &amp;::before {
              left: 100%;
            }
          }

          &amp;.solid:hover {
            box-shadow: 0 8px 25px rgba(var(--versa-erp), 0.4);
          }
        }
      }

      /* REVIEWS */
      .reviews {
        display: flex;
        gap: 1rem;

        a {
          display: flex;
          flex: 1;
          flex-direction: column;
          align-items: center;
          border: 1px solid #E5E5E5;
          background: white;
          border-radius: 12px;
          padding: 12px;
          transition: all 0.3s ease;
          position: relative;
          overflow: hidden;

          &amp;:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border-color: rgba(var(--versa-erp), 0.3);

            img {
              transform: scale(1.05);
              filter: brightness(1.1);
            }
          }
        }

        img {
          height: 22px;
          transition: all 0.3s ease;
        }

        .stars {
          display: flex;
          justify-content: center;
          align-items: end;
          height: 28px;
          border-top: 1px solid #E5E5E5;
          width: 100%;
          margin: 10px 0 0;

          svg {
            width: 18px;
            height: 18px;
            fill: #FECD08;
            stroke: #FECD08;
          }
        }
      }
    }
  }

  /* RIGHT IMAGE */
  .header-image {
    text-align: right;
    align-self: end;
    justify-self: end;
    line-height: 0;

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

  /* Responsive Design */
  @media (max-width: 1024px) {
    .wrapper {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .header-content {
      text-align: center;
      align-items: center;
      padding: 30px 0;

      .stars {
        justify-content: center;
      }

      .actions {
        align-items: center;
        width: 100%;
        max-width: 600px;
      }
    }

    .header-image {
      order: 2;
    }
  }

  @media (max-width: 768px) {
    .wrapper {
      padding: 0 15px;
      gap: 1.5rem;
    }

    .header-content {
      padding: 20px 0;

      h1 {
        font-size: 2.2rem;
        line-height: 2.3rem;
      }

      p {
        font-size: 1.2rem;
        line-height: 1.7rem !important;
      }

      .actions {
        gap: 2rem;
        max-width: 100%;

        .buttons {
          flex-direction: column;
          gap: 1rem;
        }

        .reviews {
          flex-wrap: wrap;
          justify-content: center;
          gap: 0.5rem;

          a {
            flex: 1;
            min-width: 120px;
          }
        }
      }
    }
  }

  @media (max-width: 480px) {
    .header-content {
      h1 {
        font-size: 1.8rem;
        line-height: 2rem;
      }

      p {
        font-size: 1.1rem;
        line-height: 1.6rem !important;
      }
    }
  }
}

/*============================*/
/* WATCH VIDEO SECTION         */
/*============================*/
.watch-video {
  position: relative;
  border: 1px solid var(--vce-primary);
  border-radius: 1rem;
  text-align: center;
  padding: 3.5rem 1.5rem 1.5rem;
  margin: 5rem auto;

  .pill-btn {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: white;
    color: var(--vce-primary);
    border: 1px solid var(--vce-primary);
    border-radius: 2rem;
    font-weight: 700;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0px 3px 0px 0px var(--vce-primary);
  }

  h2 {
    font-size: 2.4rem;
    line-height: 1;
    font-weight: 800;
    max-width: 45rem;
  }

  .video-wrapper {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);

    &amp;:hover {
      transform: scale(1.02);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);

      img {
        filter: brightness(0.8) contrast(1.1) saturate(1.2);
        transform: scale(1.05);
      }

      .play-button {
        transform: translate(-50%, -50%) scale(1.1);
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 8px 25px rgba(var(--versa-erp), 0.3);

        svg {
          transform: scale(1.1);
          filter: drop-shadow(0 2px 4px rgba(var(--versa-erp), 0.3));
        }
      }

      &amp;::before {
        opacity: 1;
      }
    }

    &amp;::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(45deg,
          rgba(var(--versa-erp), 0.1) 0%,
          transparent 50%,
          rgba(var(--versa-erp), 0.1) 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 1;
    }

    img {
      display: block;
      width: 100%;
      height: auto;
      filter: brightness(0.95) contrast(1.05) saturate(1.1);
      transition: all 0.4s ease;
    }

    .play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: rgba(255, 255, 255, 0.9);
      width: 8rem;
      height: 8rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: all 0.3s ease;
      z-index: 2;
      backdrop-filter: blur(10px);
      border: 2px solid rgba(var(--versa-erp), 0.2);

      svg {
        width: 3rem;
        height: 3rem;
        color: var(--vce-primary);
        fill: var(--vce-primary);
        margin-left: 0.2rem;
        transition: all 0.3s ease;
      }
    }
  }
}

/*============================*/
/* INVENTORY SECTION           */
/*============================*/
.inventory {
  background: url(/wp-content/themes/versaccounts/assets/images/home/inventory-bg.jpg);
  background-size: cover;
  padding: 0 1rem 6rem 1rem;

  .section-wrapper {
    max-width: 815px;
    text-align: center;
  }

  img {
    width: 100%;
    max-width: 368px;
  }

  h2 {
    font-size: 62px;
    line-height: 52px;
    letter-spacing: -2px;
    font-weight: 900;
    margin: 0 0 15px;
    text-transform: uppercase;
  }

  p {
    font-size: 28px;
    line-height: normal !important;
    letter-spacing: -0.5px;
    margin: 0 0 40px;

    span {
      font-weight: 800;
      color: var(--vce-primary);
    }
  }
}

/*============================*/
/* CAPABILITIES SECTION        */
/*============================*/
.capabilities {
  padding: 6rem 1rem;

  .capabilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 3rem;
  }

  .capability-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 16px;
    border: 1px solid #E0E0E0;
    transition: all 0.3s ease;
    user-select: none;

    &amp;:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .icon-circle {
      width: 84px;
      height: 84px;
      background: var(--vce-primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: .7rem;
      transition: all 0.3s ease;

      svg {
        width: 48px;
        height: 48px;
        color: white;
        stroke: white;
        fill: none;
        stroke-width: 1;
      }
    }

    &amp;:hover .icon-circle {
      transform: scale(1.1);
      box-shadow: 0 8px 25px rgba(var(--versa-erp), 0.3);
    }

    h3 {
      font-size: 20px;
      font-weight: 800;
      margin: 0 0 1rem;
      color: var(--vce-primary);
    }

    p {
      font-size: 20px;
      line-height: 26px !important;
      margin: 0;
    }
  }

  /*============================*/
  /* RESPONSIVE DESIGN           */
  /*============================*/
  @media (max-width: 1024px) {
    .capabilities-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
  }

  @media (max-width: 768px) {
    padding: 4rem 1rem;

    .capabilities-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .capability-card {
      padding: 1.5rem 1rem;
    }

    .section-titles h2 {
      font-size: 28px;
      line-height: 30px;
    }
  }
}

/*============================*/
/* INDUSTRIES SECTION          */
/*============================*/
.industries {
  background: #1a1a1a;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  padding: 6rem 1rem;
  color: white;

  .section-titles {
    h2 {
      color: white;
      font-size: 48px;
      line-height: 52px;
      font-weight: 800;
      margin: 0;
    }
  }

  .industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }

  .industry-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 0;
    transition: all 0.3s ease;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow:
      0 8px 32px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);

    &amp;:hover {
      transform: translateY(-8px);
      box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 8px 32px rgba(var(--versa-erp), 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
      border-color: rgba(255, 255, 255, 0.2);
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(25px);
      -webkit-backdrop-filter: blur(25px);
    }

    .card-image {
      width: 100%;
      height: 280px;
      overflow: hidden;
      position: relative;
      flex-shrink: 0;

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.3s ease;
      }

      &amp;:hover img {
        transform: scale(1.05);
      }
    }

    .card-content {
      padding: 2rem;
      text-align: left;
      display: flex;
      flex-direction: column;
      flex: 1;

      h3 {
        font-size: 24px;
        font-weight: 700;
        margin: 0 0 .75rem;
        color: white;
      }

      p {
        font-size: 22px;
        line-height: 28px !important;
        margin: 0 0 2rem;
        color: rgba(255, 255, 255, 0.7);
        flex: 1;
      }

      .learn-more {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--vce-primary);
        text-decoration: none;
        font-weight: 800;
        font-size: 22px;
        font-style: italic;
        transition: all 0.3s ease;
        margin-top: auto;

        &amp;:hover {
          color: rgba(var(--versa-erp), 0.8);
          transform: translateX(5px);
        }

        svg {
          width: 20px;
          height: 20px;
          transition: all 0.3s ease;
        }

        &amp;:hover svg {
          transform: translateX(3px);
        }
      }
    }
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
    .industries-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    .section-titles h2 {
      font-size: 40px;
      line-height: 44px;
    }
  }

  @media (max-width: 768px) {
    padding: 4rem 1rem;

    .industries-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .section-titles h2 {
      font-size: 32px;
      line-height: 36px;
    }

    .industry-card {
      .card-image {
        height: 220px;
      }

      .card-content {
        padding: 1.5rem;
      }
    }
  }
}

/*============================*/
/* SWITCH TO SOFTWARE SECTION  */
/*============================*/
.switch-to-software-section {
  padding: 0;

  .vce-background {
    background-image: url(/wp-content/uploads/2021/12/Home-Page-Switch-to-Software-Section-Background-Image-Overlay-trans-1920x600-1.webp);
    background-position: center 0;
    background-repeat: no-repeat;
    background-size: 1920px 500px;
    padding: 100px 25px;

    .vce-container {
      h2 {
        font-size: 40px;
        text-align: center;
      }

      h5 {
        font-size: 20px;
        font-weight: 500;
        text-align: center;
        max-width: 650px;
        margin: 0 auto 50px;
      }

      .vce-row {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;

        .vce-col {
          margin: 0 0 25px;

          h3 {
            font-size: 28px;
          }

          &amp;:nth-of-type(1),
          &amp;:nth-of-type(3) {
            flex-basis: 25%;
          }

          &amp;:nth-of-type(2) {
            flex-basis: 45%;

            .vce-img {
              margin: 0 auto;
            }
          }

          &amp;:nth-of-type(4) {
            flex-basis: 100%;

            h3,
            p {
              text-align: center;
              max-width: 330px;
              margin: 0 auto;
            }
          }
        }
      }
    }
  }

  /* Responsive Design */
  @media (max-width: 1023px) {
    .vce-background {
      padding: 50px 25px;

      .vce-container {
        max-width: 600px;

        h2 {
          font-size: 30px;
        }

        h5 {
          font-size: 18px;
          max-width: 570px;
        }

        .vce-row {
          justify-content: center;

          .vce-col {

            &amp;:nth-of-type(1),
            &amp;:nth-of-type(2),
            &amp;:nth-of-type(3),
            &amp;:nth-of-type(4) {
              flex-basis: 100%;
            }

            &amp;:nth-of-type(1) {
              order: 2;
            }

            &amp;:nth-of-type(2) {
              order: 1;
              margin: 0 auto 40px;
            }

            &amp;:nth-of-type(3) {
              order: 3;
            }

            &amp;:nth-of-type(4) {
              order: 4;
            }

            h3,
            p {
              text-align: center;
              max-width: 485px;
              margin: 0 auto 20px;
            }
          }
        }
      }
    }
  }

  @media (max-width: 767px) {
    h2 {
      font-size: 30px;
    }

    .vce-col:nth-child(2) .vce-img {
      max-width: 260px;
      margin: 0 auto 40px;
    }
  }

  @media (max-width: 480px) {
    .vce-background .vce-container {
      h2 {
        font-size: 22px;
      }

      h5 {
        font-size: 15px;
      }

      .vce-row .vce-col h3 {
        font-size: 20px;
      }
    }
  }
}

/*============================*/
/* CONTACT FORM SECTION        */
/*============================*/
.contact-form-section {
  padding: 0;

  .vce-background {
    background-image: url(/wp-content/themes/versaccounts/assets/images/home/form-bg.jpg);
    background-repeat: no-repeat;
    background-color: var(--vce-default-black);
    background-size: cover;
    padding: 50px 25px;

    .vce-container {
      .vce-row {
        justify-content: space-between;
        align-items: center;

        .vce-col {
          &amp;:nth-of-type(1) {
            flex-basis: 48%;
            min-height: 330px;

            .hbspt-form {
              .hs-form {
                .hs-form-field {
                  .input {
                    #message-75edb3b2-adec-48d1-83ae-b88b3cefa5d3 {
                      min-height: 80px;
                    }

                    .hs-input {
                      font-family: Raleway, sans-serif;
                      font-size: 14px;
                      background-color: var(--vce-default-white);

                      &amp;::placeholder {
                        color: #878787;
                      }
                    }
                  }
                }

                .legal-consent-container .hs-richtext p,
                fieldset .legal-consent-container .hs-richtext p {
                  color: var(--vce-default-white);
                }
              }

              .hs-submit .hs-button.primary.large {
                font-size: 14px;
                font-weight: 600;
                padding: 16px 20px;
              }
            }
          }

          &amp;:nth-of-type(2) {
            flex-basis: 40%;

            h2 {
              color: var(--vce-default-white);
              font-size: 35px;
              font-weight: 600;
              line-height: 1.25em;
              margin: 0 0 20px;
            }

            h4 {
              color: var(--vce-default-white);
              font-size: 22px;
              line-height: 1.25em;
              max-width: 360px;
              margin: 0 0 20px;
            }
          }
        }
      }
    }
  }

  /* Responsive Design */
  @media (max-width: 1023px) {
    .vce-background .vce-container {
      max-width: 600px;

      .vce-row {
        flex-wrap: wrap;
        flex-direction: column-reverse;
        justify-content: center;

        .vce-col {

          &amp;:nth-of-type(1),
          &amp;:nth-of-type(2) {
            flex-basis: 100%;
            width: 100%;
          }

          &amp;:nth-of-type(2) {
            h2 {
              font-size: 30px;
              text-align: center;
            }

            h4 {
              font-size: 20px;
              text-align: center;
              margin: 0 auto 30px;
            }
          }
        }
      }
    }
  }

  @media (max-width: 767px) {
    .vce-background .vce-container .vce-row .vce-col:nth-of-type(2) {
      h2 {
        font-size: 24px;
      }

      h4 {
        font-size: 18px;
        max-width: 305px;
      }
    }
  }

  @media (max-width: 480px) {
    .vce-background .vce-container .vce-row .vce-col {
      .hbspt-form .hs-form {
        fieldset {
          margin: 0;
        }

        .form-columns-2:first-child .hs-form-field {
          margin: 0 auto 12px;
        }
      }
    }
  }
}

/*============================*/
/* VIDEO MODAL                 */
/*============================*/
.video-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-content {
  border-radius: 16px;
  max-width: 90vw;
  max-height: 90vh;
  width: 1000px;
  position: relative;
  animation: slideIn 0.3s ease-out;
  overflow: hidden;
}

@keyframes slideIn {
  from {
    transform: scale(0.7) translateY(-50px);
    opacity: 0;
  }

  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.modal-header {
  position: relative;
  padding: 20px 20px 0 20px;
  display: flex;
  justify-content: flex-end;
  border: none;
}

.close-modal {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 28px;
  font-weight: 300;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.close-modal:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg) scale(1.1);
}

.modal-body {
  max-height: fit-content;
}

.modal-body video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  background: #000;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.modal-body iframe {
  width: 100%;
  height: 500px;
  border-radius: 12px;
  background: #000;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Design for Modal */
@media (max-width: 1024px) {
  .modal-content {
    width: 95vw;
    max-width: 95vw;
  }
}

@media (max-width: 768px) {
  .modal-content {
    width: 95vw;
    max-width: 95vw;
    max-height: 95vh;
  }

  .modal-header {
    padding: 15px 15px 0 15px;
  }

  .modal-body {
    padding: 0 15px 15px 15px;
  }

  .close-modal {
    width: 35px;
    height: 35px;
    font-size: 24px;
  }

  .modal-body iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .modal-content {
    width: 98vw;
    max-width: 98vw;
    max-height: 98vh;
    border-radius: 12px;
  }

  .modal-header {
    padding: 10px 10px 0 10px;
  }

  .modal-body {
    padding: 0 10px 10px 10px;
  }

  .modal-body video {
    border-radius: 8px;
  }

  .modal-body iframe {
    height: 250px;
    border-radius: 8px;
  }
}

/*============================*/
/* MARKETING CAMPAIGN BUBBLES  */
/*============================*/
.marketing-bubbles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
}

.speech-bubble {
  position: absolute;
  width: 280px;
  height: auto;
  pointer-events: auto;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.5) translateY(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 20px;
  overflow: hidden;
}

.speech-bubble.show {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.speech-bubble.hide {
  opacity: 0;
  transform: scale(0.8) translateY(-20px);
  pointer-events: none;
}

.speech-bubble .bubble-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  text-decoration: none;
  color: inherit;
}

.speech-bubble .bubble-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.speech-bubble .close-bubble {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  line-height: 1;
  z-index: 2;
}

.speech-bubble .close-bubble:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.speech-bubble:hover {
  transform: scale(1.05) translateY(-5px);
}

/* Bubble entrance animations */
@keyframes bubbleSlideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px) scale(0.5) rotate(-10deg);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1) rotate(0deg);
  }
}

@keyframes bubbleSlideInRight {
  from {
    opacity: 0;
    transform: translateX(100px) scale(0.5) rotate(10deg);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1) rotate(0deg);
  }
}

@keyframes bubbleBounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) translateY(50px);
  }

  50% {
    opacity: 1;
    transform: scale(1.1) translateY(-10px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.speech-bubble.animate-left {
  animation: bubbleSlideInLeft 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.speech-bubble.animate-right {
  animation: bubbleSlideInRight 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.speech-bubble.animate-bounce {
  animation: bubbleBounceIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .speech-bubble {
    width: 240px;
  }
}

@media (max-width: 480px) {
  .speech-bubble {
    width: 200px;
  }

  .speech-bubble .close-bubble {
    width: 24px;
    height: 24px;
    font-size: 14px;
    top: 6px;
    right: 6px;
  }
}

/* Ensure bubbles don't interfere with page interaction when hidden */
.marketing-bubbles-container.hidden {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}</pre></body></html>