* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Host Grotesk", sans-serif;
  scroll-behavior: smooth;
  outline: none;
}
.p-lr {
  padding-left: 50px;
  padding-right: 50px;
}
button {
  border: none;
  background: transparent;
  cursor: pointer;
}
body {
  background: #fff;
}
ul {
  padding-left: 18px;
}
nav {
  width: 100%;
  padding: 8px 0;
  background: transparent;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  transition: 0.5s ease-in-out;
  .navbar-inner {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    .navbar-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100px;
      min-width: 100px;
      img {
        width: 100%;
      }
    }
    .navbar-right {
      max-width: 1115px;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      .navbar-links {
        display: flex;
        align-items: center;
        max-width: 900px;
        justify-content: space-between;
        gap: 30px;
        .nav-link {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #271752;
          transition: 0.25s ease-in-out;
          &:hover {
            color: #0b58c9;
          }
        }
        .nav-link.active {
          color: #0b58c9;
        }
      }
      .contact-link {
        padding: 12px 28px;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #eff0ff;
        background: #0b58c9;
        border-radius: 20px;
        transition: 0.25s ease-in-out;
        &:hover {
          background: #4a0bc9;
        }
      }
    }
    .hamburger {
      display: none;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      min-width: 24px;
      img {
        width: 100%;
        height: 100%;
      }
    }
  }
}
nav.fixed {
  background: #fff;
  box-shadow: 2px 3px 3.9px 0px rgba(129, 129, 129, 0.25);
}
nav.nav-about {
  .navbar-inner {
    .navbar-right {
      .navbar-links {
        .nav-link {
          color: #eff0ff;
          &:hover {
            color: #0b58c9;
          }
        }
        .nav-link.active {
          color: #0b58c9;
        }
      }
    }
    .hamburger {
      img {
        filter: brightness(10000);
      }
    }
  }
}
nav.nav-about.fixed {
  .navbar-inner {
    .navbar-right {
      .navbar-links {
        .nav-link {
          color: #271752;
        }
      }
    }
    .hamburger {
      img {
        filter: initial;
      }
    }
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    #bea6fd 2.4%,
    #9c80e2 23.08%,
    #7848f4 62.5%,
    #0a071f 91.83%
  );
  z-index: 99;
  padding: 20px;
  transition: 0.3s ease-in-out;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  .mobile-menu-head {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 20px;
    .mobile-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100px;
      min-width: 100px;
      img {
        width: 100%;
      }
    }
    .language {
      display: flex;
      flex-direction: column;
      align-items: start;
      position: relative;
      margin-left: auto;
      .current-lang {
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #0a071f;
        padding: 10px 14px;
        background: #f4f4f4;
        border-radius: 100px;
        .earthIcon {
          width: 20px;
          height: 20px;
          min-width: 20px;
        }
        .downIcon {
          width: 24px;
          height: 24px;
          min-width: 24px;
          transition: 0.25s ease-in-out;
        }
      }
      .other-languages {
        display: flex;
        flex-direction: column;
        align-items: start;
        width: 100%;
        position: absolute;
        z-index: 13;
        top: 52px;
        left: 0;
        padding: 8px;
        background: #f4f4f4;
        border-radius: 8px;
        gap: 8px;
        transition: 0.25s ease-in-out;
        opacity: 0;
        visibility: hidden;
        .lang-item {
          font-size: 16px;
          line-height: 24px;
          color: #0a071f;
          font-weight: 400;
          width: 100%;
          display: flex;
          align-items: center;
          justify-content: center;
          text-align: center;
          gap: 6px;
          transition: 0.25s ease-in-out;
          &:hover {
            color: #0b58c9;
          }
          &:first-child {
            padding-bottom: 8px;
            border-bottom: 1px solid #ccc;
          }
        }
      }
    }
    .language.active {
      .current-lang {
        .downIcon {
          transform: rotate(180deg);
        }
      }
      .other-languages {
        opacity: 1;
        visibility: visible;
      }
    }
    .close-mobileMenu {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      min-width: 24px;
      img {
        width: 100%;
        height: 100%;
      }
    }
  }
  .mobile-menu-links {
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    background: #eff0ff;
    border-radius: 20px;
    padding: 40px 20px;
    .mobile-menu-link {
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: #271752;
    }
    .mobile-menu-link.active {
      color: #0b58c9;
    }
    .contact-link {
      padding: 12px 28px;
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: #eff0ff;
      background: #0b58c9;
      border-radius: 20px;
      transition: 0.25s ease-in-out;
      &:hover {
        background: #4a0bc9;
      }
    }
  }
}
@keyframes pulseOpacity {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.home-hero {
  padding-top: 130px;
  background: linear-gradient(
    180deg,
    #bea6fd 2.4%,
    #9c80e2 23.08%,
    #7848f4 62.5%,
    #0a071f 91.83%
  );
  .home-hero-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    .hero-badge {
      border-radius: 20px;
      background: rgba(239, 240, 255, 0.3);
      padding: 6px;
      width: max-content;
      .hero-badge-inner {
        border-radius: 14px;
        background: #eff0ff;
        padding: 8px 14px;
        display: flex;
        align-items: center;
        gap: 12px;
        .static-badge-txt {
          font-weight: 400;
          font-size: 15px;
          line-height: 22px;
          color: #0a071f;
        }
        .badge-text-slider {
          height: 22px;
          .badge-text-item {
            font-weight: 400;
            font-size: 15px;
            line-height: 22px;
            color: #8a38f5;
          }
        }
      }
    }
    .hero-title {
      margin-top: 24px;
      max-width: 750px;
      font-weight: 500;
      font-size: 72px;
      line-height: 80px;
      text-align: center;
      color: #271752;
    }
    .apply-btn {
      display: block;
      margin-top: 30px;
      padding: 12px 20px;
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      color: #eff0ff;
      background: #0b58c9;
      transition: 0.25s ease-in-out;
      border-radius: 20px;
      &:hover {
        background: #4a0bc9;
      }
    }
  }
  .home-hero-animation {
    width: 100%;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    .hero-svg {
      min-width: 100%;
      height: auto;
      .circle-border {
        animation: pulseOpacity 2s infinite ease-in-out;
      }
      .animation-point {
        cursor: pointer;
      }
    }
    .tooltip-item {
      background: rgba(33, 22, 52, 0.94);
      border-radius: 20px;
      padding: 20px;
      position: absolute;
      z-index: 4;
      opacity: 0;
      transform: scale(0.85);
      visibility: hidden;
      pointer-events: none;
      transition: 0.3s ease-in-out;
      .box-title {
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        color: #eff0ff;
      }
      .box-items {
        margin-top: 14px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
      }
    }
    .tooltip-item.showed {
      opacity: 1;
      transform: scale(1);
      pointer-events: auto;
      visibility: visible;
    }
    .recent-activities-box {
      max-width: 330px;
      width: 100%;
      .box-items {
        .activity-item {
          display: flex;
          align-items: center;
          gap: 10px;
          padding: 8px 16px;
          width: 100%;
          background: rgba(255, 255, 255, 0.1);
          border-radius: 20px;
          .icon {
            width: 34px;
            height: 34px;
            min-width: 34px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 100px;
            background: rgba(36, 25, 55, 0.21);
            img {
              width: 16px;
              height: 16px;
            }
          }
          .activity-info {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            .activity-title {
              font-weight: 500;
              font-size: 14px;
              line-height: 21px;
              color: #eff0ff;
            }
            .activity-id {
              font-weight: 400;
              font-size: 10px;
              line-height: 15px;
              color: #a4a4a4;
            }
          }
        }
      }
    }
    .building-techniques-box {
      max-width: 304px;
      width: 100%;
      .box-items {
        .techniques-item {
          display: flex;
          align-items: center;
          gap: 16px;
          padding: 8px 16px;
          width: 100%;
          background: rgba(255, 255, 255, 0.1);
          border-radius: 20px;
          .icon {
            width: 24px;
            height: 24px;
            min-width: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            img {
              width: 100%;
              height: 100%;
            }
          }
          .building-icon {
            margin-left: auto;
            width: 26px;
            height: 18px;
            min-width: 26px;
            display: flex;
            align-items: center;
            justify-content: center;
            img {
              width: 100%;
              height: 100%;
            }
          }
          .technique-title {
            font-weight: 500;
            font-size: 14px;
            line-height: 21px;
            color: #eff0ff;
          }
        }
      }
    }
    .active-resident-box {
      max-width: 240px;
      width: 100%;
      .periodic-increase {
        margin-top: 6px;
        font-weight: 400;
        font-size: 12px;
        line-height: 18px;
        color: #d5d5d5;
        span {
          color: #34d33f;
          font-weight: 600;
        }
      }
      .total-increase-result {
        margin-top: 6px;
        font-weight: 600;
        font-size: 20px;
        line-height: 30px;
        color: #eff0ff;
      }
      .occupancy-chart {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 10px;
        img {
          width: 100%;
        }
      }
    }
    .orders-box {
      max-width: 304px;
      width: 100%;
      .box-items {
        .order-item {
          display: flex;
          align-items: center;
          gap: 10px;
          padding: 8px 16px;
          width: 100%;
          background: rgba(255, 255, 255, 0.1);
          border-radius: 20px;
          .icon {
            width: 24px;
            height: 24px;
            min-width: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            img {
              width: 100%;
              height: 100%;
            }
          }
          .order-title {
            font-weight: 500;
            font-size: 14px;
            line-height: 21px;
            color: #eff0ff;
          }
        }
      }
    }
    .resident-appeals-box {
      max-width: 350px;
      width: 100%;
      .box-items {
        .appeal-item {
          display: flex;
          align-items: center;
          gap: 16px;
          padding: 8px 16px;
          width: 100%;
          background: rgba(255, 255, 255, 0.1);
          border-radius: 20px;
          .first-letter-design {
            width: 36px;
            height: 36px;
            min-width: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 100px;
            font-weight: 500;
            font-size: 16px;
            line-height: 24px;
            color: #0a071f;
            &:nth-child(3n + 1) {
              background: #dafab2;
            }
            &:nth-child(3n + 2) {
              background: #ffc2ef;
            }
            &:nth-child(3n) {
              background: #bbbafd;
            }
          }
          .appeal-info {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            .appeal-owner {
              font-weight: 500;
              font-size: 14px;
              line-height: 21px;
              color: #eff0ff;
            }
            .appeal-txt {
              font-weight: 400;
              font-size: 12px;
              line-height: 18px;
              color: #d5d5d5;
            }
          }
        }
      }
    }
    .work-tasks-box {
      max-width: 304px;
      width: 100%;
      .box-items {
        .task-item {
          display: flex;
          align-items: center;
          gap: 16px;
          padding: 8px 16px;
          width: 100%;
          background: rgba(255, 255, 255, 0.1);
          border-radius: 20px;
          .checkIcon {
            width: 20px;
            height: 20px;
            min-width: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 100px;
            img {
              width: 100%;
              height: 100%;
              border-radius: 100px;
            }
          }
          .noCheck {
            width: 20px;
            height: 20px;
            min-width: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 100px;
            border: 1px solid rgba(255, 255, 255, 0.2);
          }
          .task-title {
            font-weight: 500;
            font-size: 14px;
            line-height: 21px;
            color: #eff0ff;
          }
        }
      }
    }
    .virtual-messaging {
      display: flex;
      flex-direction: column;
      gap: 10px;
      max-width: 300px;
      width: 100%;
      position: absolute;
      right: 50px;
      top: 10px;
      z-index: 3;
      & > * {
        opacity: 0;
        transform: scale(0.85);
        animation: fadeInUp 0.4s ease-in-out forwards;
      }
      & > *:nth-child(1) {
        animation-delay: 0.5s;
      }
      & > *:nth-child(2) {
        animation-delay: 1s;
      }
      & > *:nth-child(3) {
        animation-delay: 1.5s;
      }
      & > *:nth-child(4) {
        animation-delay: 2s;
      }
      .message-answer {
        padding: 10px 16px;
        background: #6b60f6;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #eff0ff;
        max-width: 100%;
        width: max-content;
        border-radius: 20px;
      }
      .message-question {
        margin-left: auto;
        padding: 10px 16px;
        background: #dafab2;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #0a071f;
        max-width: 100%;
        width: max-content;
        border-radius: 20px;
      }
      .message-success {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-left: auto;
        padding: 10px;
        background: #312d5a;
        max-width: 100%;
        width: max-content;
        border-radius: 20px;
        img {
          width: 24px;
          height: 24px;
          min-width: 24px;
        }
        p {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #eff0ff;
        }
      }
    }
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.product-showcase {
  width: 100%;
  padding: 70px 0 120px;
  background: #0a071f;
  .product-showcase-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    .title-1 {
      font-weight: 400;
      font-size: 20px;
      line-height: 30px;
      text-align: center;
      text-transform: uppercase;
      color: #eff0ff;
      max-width: 1012px;
    }
    .title-2 {
      margin-top: 16px;
      font-weight: 500;
      font-size: 50px;
      line-height: 70px;
      text-align: center;
      color: #eff0ff;
      max-width: 1012px;
    }
    .partners-slide {
      width: 100%;
      margin-top: 60px;
      .swiper-wrapper {
        transition-timing-function: linear !important;
      }
      .partner-item {
        width: 190px;
        height: 84px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #484848;
        border-radius: 20px;
        padding: 12px;
        img {
          max-width: 100%;
          max-height: 100%;
          object-fit: contain;
        }
      }
    }
    .dashboard-image {
      margin-top: 100px;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      transform-origin: center bottom;
      transform: perspective(1200px) rotateX(18deg) scale(0.86);
      will-change: transform;
      img {
        width: 100%;
        display: block;
      }
    }
  }
}
.product-benefit-container {
  max-width: 1440px;
  width: 100%;
  margin: 120px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  .benefit-card {
    width: 100%;
    background: #0a071f;
    border-radius: 20px;
    padding: 50px 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    .card-title {
      font-weight: 500;
      font-size: 36px;
      line-height: 48px;
      text-align: center;
      color: #ffffff;
    }
    .short-desc {
      margin-top: 20px;
      margin-bottom: 40px;
      p,
      span,
      li {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        text-align: center;
        color: rgba(255, 255, 255, 0.8);
      }
    }
    .card-image {
      margin-top: auto;
      width: 100%;
      height: 348px;
      display: flex;
      align-items: end;
      justify-content: center;
      padding: 40px 30px 0;
      border-radius: 20px 20px 0 0;
      transition: 0.3s ease-in-out;
      img {
        max-width: 100%;
        border-radius: 20px 20px 0 0;
      }
    }
    &:hover {
      .card-image {
        padding: 0;
      }
    }
    &:nth-child(even) {
      background: #6b61f2;
    }
  }
}
.main-features-container {
  max-width: 1440px;
  width: 100%;
  margin: 120px auto 0;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  justify-content: space-between;
  .main-features {
    max-width: 550px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    .feature-tag {
      padding: 12px 16px;
      background: #dafab2;
      border-radius: 100px;
      color: #0a071f;
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
    }
    .main-feature-title {
      margin-top: 20px;
      font-weight: 600;
      font-size: 36px;
      line-height: 48px;
      color: #0a071f;
    }
    .features {
      margin-top: 30px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
      .feature-item {
        padding: 20px;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: #fff;
        width: 100%;
        transition: 0.3s ease-in-out;
        .feature-name {
          font-weight: 500;
          font-size: 20px;
          line-height: 30px;
          color: #0a071f;
          text-align: start;
        }
        .feature-description {
          height: 0;
          overflow: hidden;
          transition: height 0.3s ease;
          p,
          span,
          li {
            text-align: start;
            font-weight: 400;
            font-size: 14px;
            line-height: 21px;
            color: #8181a5;
          }
        }
      }
      .feature-item.active {
        background: #eff0ff;
        gap: 12px;
      }
    }
  }
  .feature-images {
    max-width: 660px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    .feature-item-image {
      width: 100%;
      display: none;
      align-items: center;
      justify-content: center;
      border-radius: 20px;
      img {
        width: 100%;
        height: auto;
        border-radius: 20px;
      }
    }
    .feature-item-image.active {
      display: flex;
    }
  }
}
.target-audience {
  margin-top: 120px;
  padding: 120px 0;
  background: #f3f3f3;
  .target-audience-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    .target-audience-tabs {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 24px;
      .target-audience-tab {
        padding: 12px 16px;
        border-radius: 20px;
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #212121;
        background: #e8e8e8;
        transition: 0.3s ease-in-out;
      }
      .target-audience-tab.active {
        background: #271752;
        color: #eff0ff;
      }
    }
    .target-audience-content {
      display: none;
      margin-top: 60px;
      grid-template-columns: repeat(2, minmax(0, 600px));
      justify-content: space-between;
      align-items: center;
      gap: 40px;
      .content-image {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        img {
          width: 100%;
        }
      }
      .content-info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        .target-audience-title {
          font-weight: 600;
          font-size: 36px;
          line-height: 48px;
          color: #0a071f;
        }
        .targets {
          margin-top: 30px;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          gap: 12px;
          width: 100%;
          .target-item {
            width: 100%;
            display: flex;
            align-items: center;
            gap: 14px;
            img {
              width: 16px;
              height: 16px;
              min-width: 16px;
            }
            p {
              font-weight: 400;
              font-size: 18px;
              line-height: 27px;
              color: #0a071f;
            }
          }
        }
      }
    }
    .target-audience-content.active {
      display: grid;
    }
  }
}
.recommend {
  width: 100%;
  padding: 120px 0;
  background: linear-gradient(
    180deg,
    #271752 0%,
    #4c6bc1 28.42%,
    #9576e6 50%,
    #ffffff 96.15%
  );
  .recommend-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    .recommend-title {
      font-weight: 500;
      font-size: 50px;
      line-height: 70px;
      text-align: center;
      color: #eff0ff;
    }
    .recommend-items {
      margin-top: 60px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 50px;
      .recommend-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        max-width: 960px;
        padding: 40px 50px;
        .recommend-text {
          width: 100%;
          p,
          li,
          span {
            font-weight: 500;
            font-size: 26px;
            line-height: 38px;
            color: #eff0ff;
          }
        }
        .recommend-owner {
          margin-top: 60px;
          display: flex;
          align-items: center;
          gap: 20px;
          .owner-image {
            width: 60px;
            height: 60px;
            min-width: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 100px;
            img {
              width: 100%;
              height: 100%;
              border-radius: 100px;
              object-fit: cover;
            }
          }
          .owner-info {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 2px;
            .owner-name {
              font-weight: 600;
              font-size: 20px;
              line-height: 30px;
              color: #eff0ff;
            }
            .owner-position {
              font-weight: 400;
              font-size: 16px;
              line-height: 24px;
              color: rgba(255, 255, 255, 0.8);
            }
          }
        }
        &:nth-child(odd) {
          background: linear-gradient(
            90deg,
            #282051 0%,
            #403483 48.56%,
            #282051 100%
          );
          border-radius: 70px 70px 70px 4px;
        }
        &:nth-child(even) {
          margin-left: auto;
          align-items: flex-end;
          background: linear-gradient(
            90deg,
            #2145ba 0%,
            #564aec 52%,
            #2145ba 97.12%
          );

          border-radius: 70px 70px 4px 70px;
          .recommend-text {
            p,
            li,
            span {
              text-align: end;
            }
          }
        }
      }
    }
  }
}
.digital-management-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  .digital-management {
    width: 100%;
    background: #1f1b2d;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    border-radius: 20px;
    padding: 50px 50px 0;
    .digital-management-content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      max-width: 520px;
      padding-bottom: 50px;
      .digital-management-title {
        font-weight: 600;
        font-size: 30px;
        line-height: 45px;
        color: #eff0ff;
      }
      .digital-management-description {
        margin-top: 20px;
        p,
        li,
        span {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: rgba(255, 255, 255, 0.8);
        }
      }
      .apply-btn {
        display: block;
        margin-top: 30px;
        padding: 12px 20px;
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        color: #eff0ff;
        background: #0b58c9;
        transition: 0.25s ease-in-out;
        border-radius: 20px;
        &:hover {
          background: #4a0bc9;
        }
      }
    }
    .digital-management-image {
      max-width: 430px;
      width: 100%;
      display: flex;
      align-items: end;
      justify-content: center;
      img {
        width: 100%;
      }
    }
  }
}
footer {
  width: 100%;
  margin-top: 80px;
  padding: 50px 0 40px;
  background: #ffffff;
  border-top: 1px solid rgba(176, 176, 176, 0.2);
  .footer-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    .footer-main {
      width: 100%;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 40px;
      .logo-socials {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        .footer-logo {
          width: 130px;
          display: flex;
          align-items: center;
          justify-content: center;
          img {
            width: 100%;
          }
        }
        .socials {
          margin-top: 50px;
          display: flex;
          align-items: center;
          gap: 12px;
          .social-item {
            width: 52px;
            height: 52px;
            min-width: 52px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 2px 3px 3.9px 0px rgba(129, 129, 129, 0.25);
            border: 1px solid #e1e1e1;
            border-radius: 10px;
            img {
              width: 24px;
              height: 24px;
              filter: brightness(0);
              transition: 0.25s ease-in-out;
            }
            &:hover {
              img {
                filter: none;
              }
            }
          }
        }
      }
      .footer-links-sections {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        max-width: 720px;
        width: 100%;
        gap: 40px;
        .links-section-item {
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          max-width: 220px;
          gap: 20px;
          .links-sections-title {
            font-weight: 500;
            font-size: 18px;
            line-height: 27px;
            text-transform: uppercase;
            color: #0a071f;
          }
          .links-sections {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
            .link-item {
              font-weight: 400;
              font-size: 16px;
              line-height: 24px;
              color: #0a071f;
              transition: 0.25s ease-in-out;
              &:hover {
                color: #0b58c9;
              }
            }
          }
        }
      }
    }
    .footer-bottom {
      margin-top: 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      .allRightReserved {
        font-weight: 400;
        font-size: 14px;
        line-height: 21px;
        color: #0a071f;
      }
      .language {
        display: flex;
        flex-direction: column;
        align-items: start;
        position: relative;
        .current-lang {
          display: flex;
          align-items: center;
          gap: 8px;
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #0a071f;
          padding: 10px 14px;
          background: #f4f4f4;
          border-radius: 100px;
          .earthIcon {
            width: 20px;
            height: 20px;
            min-width: 20px;
          }
          .downIcon {
            width: 24px;
            height: 24px;
            min-width: 24px;
            transition: 0.25s ease-in-out;
          }
        }
        .other-languages {
          display: flex;
          flex-direction: column;
          align-items: start;
          width: 100%;
          position: absolute;
          z-index: 13;
          top: -90px;
          left: 0;
          padding: 8px;
          background: #f4f4f4;
          border-radius: 8px;
          gap: 8px;
          transition: 0.25s ease-in-out;
          opacity: 0;
          visibility: hidden;
          .lang-item {
            font-size: 16px;
            line-height: 24px;
            color: #0a071f;
            font-weight: 400;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 6px;
            transition: 0.25s ease-in-out;
            &:hover {
              color: #0b58c9;
            }
            &:first-child {
              padding-bottom: 8px;
              border-bottom: 1px solid #ccc;
            }
          }
        }
      }
      .language.active {
        .current-lang {
          .downIcon {
            transform: rotate(180deg);
          }
        }
        .other-languages {
          opacity: 1;
          visibility: visible;
        }
      }
    }
  }
}
.demo-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: auto;
  z-index: 40;
  .demo-modal-box {
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 600px;
    width: 100%;
    padding: 50px 40px;
    .demo-modal-head {
      display: flex;
      align-items: center;
      width: 100%;
      justify-content: space-between;
      gap: 16px;
      .demo-modal-title {
        font-weight: 500;
        font-size: 30px;
        line-height: 45px;
        color: #0a071f;
      }
      .closeDemoModal {
        width: 30px;
        height: 30px;
        min-width: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        img {
          width: 100%;
          height: 100%;
        }
      }
    }
    .demo-modal-form {
      display: flex;
      flex-direction: column;
      width: 100%;
      gap: 20px;
      margin-top: 40px;
      input {
        padding: 14px 20px;
        border: 1px solid #dedede;
        border-radius: 20px;
        width: 100%;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #0a071f;
        &::placeholder {
          color: #7f8388;
        }
        &:focus {
          border-color: #0a071f;
        }
      }
      .submitForm {
        padding: 12px 42px;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #eff0ff;
        background: #0b58c9;
        transition: 0.3s ease-in-out;
        border-radius: 20px;
        margin-left: auto;
        &:hover {
          background: #4a0bc9;
        }
      }
    }
  }
}

.breadcrumb {
  max-width: 1440px;
  width: 100%;
  display: flex;
  align-items: center;
  margin: 140px auto 0;
  .breadcrumb-item {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #b8bcbd;
  }
  .current-page {
    color: #0a071f;
  }
  img {
    width: 24px;
    height: 24px;
    min-width: 24px;
  }
}
.integrations-container {
  margin: 40px auto 120px;
  max-width: 1440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  .page-title {
    font-weight: 600;
    font-size: 50px;
    line-height: 70px;
    text-align: center;
    color: #0a071f;
  }
  .page-description {
    margin: 20px auto 0;
    max-width: 640px;
    p,
    li,
    span {
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      text-align: center;
      color: #484848;
    }
  }
  .integrations {
    margin-top: 80px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 40px;
    .integration-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      background: #f0f0f0;
      box-shadow: 5px 6px 5px 0px rgba(237, 237, 237, 0.25);
      border-radius: 20px;
      padding: 50px 30px;
      transition: 0.3s ease-in-out;
      .icon {
        width: 84px;
        height: 84px;
        min-width: 84px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 20px;
        img {
          width: 42px;
          height: 42px;
          max-width: 42px;
          max-height: 42px;
          object-fit: contain;
        }
      }
      .integration-title {
        margin-top: 16px;
        font-weight: 600;
        font-size: 22px;
        line-height: 33px;
        text-align: center;
        color: #0a071f;
      }
      .short-description {
        margin-top: 10px;
        p,
        li,
        span {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          text-align: center;
          color: #899098;
        }
      }
      &:nth-child(8n + 1) {
        .icon {
          background: #f47e44;
        }
      }
      &:nth-child(8n + 2) {
        .icon {
          background: linear-gradient(90deg, #53b9e3 0%, #3e74b7 100%);
        }
      }
      &:nth-child(8n + 3) {
        .icon {
          background: #2c7e47;
        }
      }
      &:nth-child(8n + 4) {
        .icon {
          background: #0062c3;
        }
      }
      &:nth-child(8n + 5) {
        .icon {
          background: #5b3fa1;
        }
      }
      &:nth-child(8n + 6) {
        .icon {
          background: #555f6e;
        }
      }
      &:nth-child(8n + 7) {
        .icon {
          background: linear-gradient(180deg, #c03a2b 0%, #f36e60 100%);
        }
      }
      &:nth-child(8n) {
        .icon {
          background: #1a4f8a;
        }
      }
      &:hover {
        transform: translateY(-10px);
      }
    }
  }
}
.technicalSupport-container {
  margin: 40px auto 120px;
  max-width: 1440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  .page-title {
    font-weight: 600;
    font-size: 50px;
    line-height: 70px;
    text-align: center;
    color: #0a071f;
  }
  .page-description {
    margin: 20px auto 0;
    max-width: 640px;
    p,
    li,
    span {
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      text-align: center;
      color: #484848;
    }
  }
  .technicalSupports {
    margin-top: 80px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
    .technicalSupport-item {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      background: #f6f7f8;
      border: 1px solid #e3e6eb;
      box-shadow: 0px 2px 4px 0px #e3e6eb;
      border-radius: 20px;
      padding: 40px;
      .icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        background: #0b58c9;
        img {
          width: 30px;
          height: 30px;
        }
      }
      .technicalSupport-title {
        margin-top: 30px;
        font-weight: 600;
        font-size: 30px;
        line-height: 40px;
        color: #0a071f;
      }
      .short-description {
        margin-top: 10px;
        p,
        li,
        span {
          font-weight: 400;
          font-size: 18px;
          line-height: 28px;
          color: #899098;
        }
      }
    }
  }
}
.articles-container {
  margin: 40px auto 120px;
  max-width: 1440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  .page-title {
    font-weight: 600;
    font-size: 50px;
    line-height: 70px;
    color: #0a071f;
  }
  .articles-head {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
    .articles-tabs {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      .article-tab {
        padding: 10px 20px;
        border: 1px solid #e1e3e2;
        border-radius: 20px;
        background: #fff;
        transition: 0.3s ease-in-out;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #6c6f74;
        &:hover {
          background: #0b58c9;
          color: #fff;
        }
      }
      .article-tab.active {
        background: #0b58c9;
        color: #fff;
        &:hover {
          background: #4a0bc9;
        }
      }
    }
    .articles-search {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #fcfcfc;
      border: 1px solid #e1e3e2;
      border-radius: 20px;
      padding: 10px 20px;
      max-width: 250px;
      width: 100%;
      .article-search-btn {
        width: 24px;
        height: 24px;
        min-width: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        img {
          width: 100%;
          height: 100%;
        }
      }
      input {
        width: 100%;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        border: none;
        background: transparent;
        color: #0a071f;
        &::placeholder {
          color: #6c6f74;
        }
      }
    }
  }
  .articles {
    margin-top: 80px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
    .article-card {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      .card-image {
        width: 100%;
        height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 20px;
        img {
          width: 100%;
          height: 100%;
          border-radius: 20px;
          object-fit: cover;
        }
      }
      .article-card-title {
        margin-top: 20px;
        font-weight: 500;
        font-size: 24px;
        line-height: 36px;
        color: #000;
      }
      .article-card-date {
        margin-top: 12px;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #a0a0a0;
      }
      .article-card-more {
        margin-top: 20px;
        font-weight: 500;
        font-size: 18px;
        line-height: 28px;
        color: #0b58c9;
        transition: 0.3s ease-in-out;
      }
      &:hover {
        .article-card-more {
          color: #4a0bc9;
        }
      }
    }
  }
  .pagination {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 80px auto 0;
    width: auto;
    max-width: 100%;
    .pagination-item {
      display: flex;
      align-items: center;
      gap: 14px;
      .page-number {
        font-weight: 400;
        font-size: 18px;
        line-height: 24px;
        color: #92969c;
      }
      .line {
        display: none;
        width: 40px;
        height: 1px;
        min-width: 40px;
        background: #111112;
      }
      &:last-child {
        .line {
          display: none !important;
        }
      }
    }
    .pagination-item.active {
      .page-number {
        color: #0a071f;
      }
      .line {
        display: block;
      }
    }
    .pagination-points {
      font-weight: 400;
      font-size: 18px;
      line-height: 24px;
      color: #92969c;
    }
  }
}
.articles-detail-container {
  margin: 40px auto 120px;
  max-width: 1440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  .article-category {
    padding: 10px 20px;
    border: 1px solid #e1e3e2;
    border-radius: 20px;
    background: #0b58c9;
    transition: 0.3s ease-in-out;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    &:hover {
      background: #4a0bc9;
    }
  }
  .page-title {
    margin-top: 12px;
    font-weight: 600;
    font-size: 50px;
    line-height: 70px;
    color: #0a071f;
  }
  .article-date {
    margin-top: 12px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #a0a0a0;
  }
  .article-image {
    margin-top: 40px;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    img {
      width: 100%;
      height: 100%;
      border-radius: 20px;
      object-fit: cover;
    }
  }
  .article-text {
    margin-top: 50px;
    width: 100%;
    p,
    li,
    span,
    a {
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      color: #0a071f;
    }
    a {
      color: #0062c3;
    }
  }
}
.recommend-us-container {
  margin: 40px auto 120px;
  max-width: 1440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  .recommend-us-main {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    .recommend-us-content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      max-width: 660px;
      .recommend-us-tag {
        background: #dafab2;
        padding: 12px 16px;
        border-radius: 20px;
        color: #0a071f;
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        text-align: center;
      }
      .recommend-us-content-title {
        margin-top: 20px;
        font-weight: 600;
        font-size: 36px;
        line-height: 48px;
        color: #0a071f;
      }
      .content-text {
        margin-top: 30px;
        width: 100%;
        p,
        li,
        span {
          font-weight: 400;
          font-size: 18px;
          line-height: 28px;
          color: #0a071f;
        }
      }
    }
    .recommend-us-image {
      max-width: 620px;
      min-width: 550px;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 20px;
      img {
        width: 100%;
        border-radius: 20px;
      }
    }
  }
  .partners-slide {
    width: 100%;
    margin-top: 80px;
    .swiper-wrapper {
      transition-timing-function: linear !important;
    }
    .partner-item {
      width: 140px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: center;
      img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
      }
    }
  }
  .recommendation {
    margin-top: 120px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    .recommendation-images {
      max-width: 660px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      .recommendation-image-slide {
        width: 100%;
        height: 620px;
        border-radius: 20px;
        display: none;
        align-items: center;
        justify-content: center;
        background: #efefef;
        padding: 30px;
        img {
          max-width: 100%;
          max-height: 100%;
          object-fit: contain;
        }
      }
      .recommendation-image-slide.active {
        display: flex;
      }
    }
    .recommendation-main {
      max-width: 600px;
      width: 100%;
      .recommendation-main-title {
        font-weight: 600;
        font-size: 36px;
        line-height: 48px;
        color: #0a071f;
      }
      .recommendation-items {
        margin-top: 40px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        .recommendation-item {
          width: 100%;
          display: flex;
          align-items: center;
          gap: 12px;
          position: relative;
          padding-bottom: 16px;
          .item-num {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #a0a0a0;
          }
          .item-text {
            font-weight: 400;
            font-size: 20px;
            line-height: 30px;
            color: #0a071f;
          }
          &::after {
            position: absolute;
            content: "";
            left: 0;
            bottom: 0;
            width: 100%;
            height: 2px;
            background: #eae9e9;
            z-index: 1;
          }
          .progress-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 2px;
            background: #6b61f2;
            width: 0%;
            z-index: 2;
          }
        }
      }
    }
  }
}
.contact-container {
  margin: 40px auto 120px;
  max-width: 1440px;
  width: 100%;
  .contact-form {
    background: #fdfdfd;
    box-shadow: 3px 4px 40px 0px rgba(134, 134, 134, 0.25);
    border-radius: 20px;
    padding: 50px;
    .contact-form-title {
      font-weight: 500;
      font-size: 50px;
      line-height: 70px;
      color: #0a071f;
    }
    form {
      margin-top: 40px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
      .form-items {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }
      input,
      textarea {
        border: 1px solid #dedede;
        width: 100%;
        border-radius: 20px;
        padding: 14px 20px;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #0a071f;
        &::placeholder {
          color: #7f8388;
        }
        &:focus {
          border-color: #0a071f;
        }
      }
      textarea {
        resize: none;
        height: 150px;
      }
      .submit-contact-form {
        padding: 12px 42px;
        background: #0b58c9;
        border-radius: 20px;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        text-align: center;
        color: #eff0ff;
        transition: 0.3s ease-in-out;
        &:hover {
          background: #4a0bc9;
        }
      }
    }
  }
  .contact-items {
    width: 100%;
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    .contact-item {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 10px 20px;
      background: #f6f7f8;
      box-shadow: 2px 2px 4px 0px #f4f4f4;
      border-radius: 20px;
      .icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        background: #6b60f6;
        img {
          width: 24px;
          height: 24px;
        }
      }
      .item-body {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        .item-label {
          font-weight: 500;
          font-size: 18px;
          line-height: 27px;
          color: #0a071f;
        }
      }
    }
  }
  .map {
    margin-top: 40px;
    width: 100%;
    border-radius: 20px;
    height: 500px;
    iframe {
      width: 100%;
      height: 100%;
      border-radius: 20px;
    }
  }
}
.about {
  background: #221a4c;
  padding: 140px 0 120px;
  .breadcrumb {
    margin: 0 auto;
    .breadcrumb-item {
      color: rgba(239, 240, 255, 0.7);
    }
    .current-page {
      color: #eff0ff;
    }
    img {
      filter: brightness(100);
    }
  }
  .about-container {
    max-width: 1440px;
    width: 100%;
    margin: 40px auto 0;
    .about-banner-image {
      width: 100%;
      height: 620px;
      border-radius: 20px;
      img {
        width: 100%;
        height: 100%;
        border-radius: 20px;
        object-fit: cover;
      }
    }
    .about-main {
      width: 100%;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 40px;
      margin-top: 120px;
      .about-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        max-width: 660px;
        .about-tag {
          background: #dafab2;
          padding: 12px 16px;
          border-radius: 20px;
          color: #0a071f;
          font-weight: 500;
          font-size: 16px;
          line-height: 24px;
          text-align: center;
        }
        .about-title {
          margin-top: 20px;
          font-weight: 600;
          font-size: 36px;
          line-height: 48px;
          color: #eff0ff;
        }
        .content-text {
          margin-top: 30px;
          width: 100%;
          p,
          li,
          span {
            font-weight: 400;
            font-size: 18px;
            line-height: 28px;
            color: #eff0ff;
          }
        }
      }
      .about-image {
        max-width: 620px;
        min-width: 550px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 20px;
        img {
          width: 100%;
          border-radius: 20px;
        }
      }
    }
    .property-management-solution {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 180px;
      .small-title {
        font-weight: 400;
        font-size: 20px;
        line-height: 30px;
        text-align: center;
        text-transform: uppercase;
        color: #eff0ff;
        max-width: 1012px;
      }
      .normal-title {
        margin-top: 16px;
        max-width: 1012px;
        font-weight: 500;
        font-size: 50px;
        line-height: 70px;
        text-align: center;
        color: #eff0ff;
      }
      .management-solution-advantage {
        margin-top: 60px;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        .advantage-box {
          width: 100%;
          padding: 40px;
          background: #ecedff;
          border-radius: 30px;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          gap: 40px;
          .box-head {
            display: flex;
            align-items: center;
            gap: 24px;
            .icon {
              width: 36px;
              height: 36px;
              min-width: 36px;
              display: flex;
              align-items: center;
              justify-content: center;
              border-radius: 8px;
              background: #6b60f6;
              img {
                width: 24px;
                height: 24px;
              }
            }
            .head-title {
              font-weight: 500;
              font-size: 22px;
              line-height: 33px;
              color: #0a071f;
            }
          }
          .advantage-list {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            width: 100%;
            gap: 12px;
            .advantage-item {
              display: flex;
              align-items: center;
              gap: 14px;
              width: 100%;
              img {
                width: 16px;
                height: 16px;
                min-width: 16px;
              }
              p {
                font-weight: 400;
                font-size: 18px;
                line-height: 27px;
                color: #0a071f;
              }
            }
          }
          &:nth-child(even) {
            background: #332293;
            .box-head {
              .head-title {
                color: #eff0ff;
              }
            }
            .advantage-list {
              .advantage-item {
                p {
                  color: #eff0ff;
                }
              }
            }
          }
        }
      }
    }
  }
}
.about-contact {
  max-width: 1440px;
  width: 100%;
  margin: 120px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  .about-contact-us {
    padding: 12px 16px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #eff0ff;
    background: #6b60f6;
    border-radius: 20px;
  }
  .section-title {
    margin: 20px auto 0;
    max-width: 670px;
    font-weight: 600;
    font-size: 36px;
    line-height: 48px;
    text-align: center;
  }
  .about-contact-description {
    margin: 20px auto 0;
    max-width: 670px;
    p,
    li,
    span {
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      text-align: center;
      color: #484848;
    }
  }
  .contact-items {
    max-width: 670px;
    margin: 40px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    .contact-item {
      display: flex;
      align-items: center;
      gap: 20px;
      .icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        background: #6b60f6;
        img {
          width: 24px;
          height: 24px;
        }
      }
      .item-body {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        .item-label {
          font-weight: 500;
          font-size: 18px;
          line-height: 27px;
          color: #0a071f;
        }
      }
    }
  }
  .about-contact-image {
    margin: 80px auto 0;
    max-width: 800px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    img {
      width: 100%;
    }
  }
}
@media only screen and (max-width: 1400px) {
  nav {
    .navbar-inner {
      .navbar-right {
        max-width: 1020px;
        gap: 24px;
        .navbar-links {
          max-width: 870px;
          gap: 24px;
          .nav-link {
            font-size: 15px;
            line-height: 22px;
          }
        }
      }
    }
  }
}
@media only screen and (max-width: 1250px) {
  .p-lr {
    padding-left: 35px;
    padding-right: 35px;
  }
  nav {
    .navbar-inner {
      gap: 24px;
      .navbar-logo {
        width: 80px;
        min-width: 80px;
      }
      .navbar-right {
        max-width: 920px;
        gap: 20px;
        .navbar-links {
          gap: 20px;
          .nav-link {
            font-size: 14px;
            line-height: 20px;
          }
        }
        .contact-link {
          padding: 10px 24px;
          font-size: 15px;
          line-height: 22px;
        }
      }
    }
  }
  .home-hero {
    .home-hero-container {
      .hero-badge {
        .hero-badge-inner {
          padding: 8px 12px;
          gap: 10px;
          .static-badge-txt {
            font-size: 14px;
            line-height: 20px;
          }
          .badge-text-slider {
            height: 20px;
            .badge-text-item {
              font-size: 14px;
              line-height: 20px;
            }
          }
        }
      }
      .hero-title {
        margin-top: 20px;
        max-width: 650px;
        font-size: 64px;
        line-height: 72px;
      }
      .apply-btn {
        margin-top: 24px;
        padding: 10px 16px;
      }
    }
    .home-hero-animation {
      margin-top: 24px;
      .tooltip-item {
        padding: 16px;
        .box-items {
          margin-top: 12px;
          gap: 12px;
        }
      }
      .recent-activities-box {
        width: 100%;
        .box-items {
          .activity-item {
            gap: 8px;
            padding: 8px 12px;
          }
        }
      }
      .building-techniques-box {
        width: 100%;
        .box-items {
          .techniques-item {
            gap: 12px;
            padding: 8px 12px;
          }
        }
      }
      .active-resident-box {
        .total-increase-result {
          font-size: 18px;
          line-height: 28px;
        }
      }
      .orders-box {
        .box-items {
          .order-item {
            gap: 8px;
            padding: 8px 12px;
          }
        }
      }
      .resident-appeals-box {
        .box-items {
          .appeal-item {
            gap: 12px;
            padding: 8px 12px;
          }
        }
      }
      .work-tasks-box {
        .box-items {
          .task-item {
            gap: 12px;
            padding: 8px 12px;
          }
        }
      }
      .virtual-messaging {
        gap: 10px;
        max-width: 270px;
        right: 35px;
        .message-answer {
          padding: 8px 12px;
          font-size: 15px;
          line-height: 22px;
        }
        .message-question {
          padding: 8px 12px;
          font-size: 15px;
          line-height: 22px;
        }
        .message-success {
          padding: 8px 12px;
          img {
            width: 22px;
            height: 22px;
            min-width: 22px;
          }
          p {
            font-size: 15px;
            line-height: 22px;
          }
        }
      }
    }
  }
  .product-showcase {
    padding: 55px 0 100px;
    .product-showcase-container {
      .title-1 {
        font-size: 18px;
        line-height: 28px;
        max-width: 850px;
      }
      .title-2 {
        font-size: 42px;
        line-height: 56px;
        max-width: 850px;
      }
      .partners-slide {
        margin-top: 45px;
        .partner-item {
          width: 170px;
          height: 74px;
          padding: 12px;
        }
      }
      .dashboard-image {
        margin-top: 80px;
      }
    }
  }
  .product-benefit-container {
    margin: 100px auto 0;
    .benefit-card {
      padding: 40px 30px 0;
      .card-title {
        font-size: 30px;
        line-height: 42px;
      }
      .short-desc {
        margin-top: 16px;
        margin-bottom: 30px;
        p,
        span,
        li {
          font-size: 14px;
          line-height: 20px;
        }
      }
      .card-image {
        height: 315px;
        padding: 30px 20px 0;
      }
    }
  }
  .main-features-container {
    margin: 100px auto 0;
    .main-features {
      max-width: 500px;
      .feature-tag {
        padding: 10px 14px;
      }
      .main-feature-title {
        margin-top: 16px;
        font-size: 30px;
        line-height: 42px;
      }
      .features {
        margin-top: 24px;
        .feature-item {
          padding: 16px;
          .feature-name {
            font-size: 18px;
            line-height: 28px;
          }
        }
        .feature-item.active {
          gap: 10px;
        }
      }
    }
    .feature-images {
      max-width: 600px;
    }
  }
  .target-audience {
    margin-top: 100px;
    padding: 100px 0;
    .target-audience-container {
      .target-audience-tabs {
        gap: 20px;
        .target-audience-tab {
          padding: 10px 14px;
          font-size: 16px;
          line-height: 24px;
        }
      }
      .target-audience-content {
        margin-top: 45px;
        .content-info {
          .target-audience-title {
            font-size: 30px;
            line-height: 42px;
          }
          .targets {
            margin-top: 24px;
            gap: 10px;
            .target-item {
              gap: 12px;
              img {
                width: 14px;
                height: 14px;
                min-width: 14px;
              }
              p {
                font-size: 16px;
                line-height: 24px;
              }
            }
          }
        }
      }
      .target-audience-content.active {
        display: grid;
      }
    }
  }
  .recommend {
    padding: 100px 0;
    .recommend-container {
      .recommend-title {
        font-size: 42px;
        line-height: 56px;
      }
      .recommend-items {
        margin-top: 45px;
        gap: 40px;
        .recommend-item {
          max-width: 860px;
          padding: 30px 40px;
          .recommend-text {
            p,
            li,
            span {
              font-size: 22px;
              line-height: 33px;
            }
          }
          .recommend-owner {
            margin-top: 45px;
            gap: 16px;
            .owner-image {
              width: 54px;
              height: 54px;
              min-width: 54px;
            }
            .owner-info {
              .owner-name {
                font-size: 18px;
                line-height: 28px;
              }
              .owner-position {
                font-size: 14px;
                line-height: 20px;
              }
            }
          }
          &:nth-child(odd) {
            border-radius: 50px 50px 50px 4px;
          }
          &:nth-child(even) {
            border-radius: 50px 50px 4px 50px;
          }
        }
      }
    }
  }
  .digital-management-container {
    .digital-management {
      padding: 40px 40px 0;
      .digital-management-content {
        max-width: 400px;
        padding-bottom: 40px;
        .digital-management-title {
          font-size: 24px;
          line-height: 36px;
        }
        .digital-management-description {
          margin-top: 16px;
          p,
          li,
          span {
            font-size: 14px;
            line-height: 20px;
          }
        }
        .apply-btn {
          margin-top: 24px;
          padding: 10px 16px;
        }
      }
      .digital-management-image {
        max-width: 380px;
      }
    }
  }
  footer {
    margin-top: 60px;
    padding: 40px 0 30px;
    .footer-container {
      .footer-main {
        gap: 30px;
        .logo-socials {
          .footer-logo {
            width: 120px;
          }
          .socials {
            margin-top: 40px;
            gap: 12px;
            .social-item {
              width: 48px;
              height: 48px;
              min-width: 48px;
              img {
                width: 22px;
                height: 22px;
              }
            }
          }
        }
        .footer-links-sections {
          max-width: 670px;
          gap: 30px;
          .links-section-item {
            max-width: 220px;
            gap: 16px;
            .links-sections {
              gap: 16px;
            }
          }
        }
      }
      .footer-bottom {
        margin-top: 30px;
        .language {
          .current-lang {
            gap: 8px;
            font-size: 15px;
            line-height: 22px;
            padding: 8px 12px;
            .earthIcon {
              width: 18px;
              height: 18px;
              min-width: 18px;
            }
            .downIcon {
              width: 22px;
              height: 22px;
              min-width: 22px;
            }
          }
          .other-languages {
            top: -78px;
            padding: 6px;
            gap: 6px;
            .lang-item {
              font-size: 15px;
              line-height: 22px;
              &:first-child {
                padding-bottom: 6px;
              }
            }
          }
        }
      }
    }
  }
  .demo-modal-overlay {
    .demo-modal-box {
      max-width: 550px;
      padding: 40px 30px;
      .demo-modal-head {
        .demo-modal-title {
          font-size: 24px;
          line-height: 36px;
        }
        .closeDemoModal {
          width: 28px;
          height: 28px;
          min-width: 28px;
        }
      }
      .demo-modal-form {
        gap: 16px;
        margin-top: 30px;
        input {
          padding: 12px 16px;
        }
        .submitForm {
          padding: 10px 36px;
        }
      }
    }
  }
  .breadcrumb {
    margin: 130px auto 0;
  }
  .integrations-container {
    margin: 30px auto 100px;
    .page-title {
      font-size: 42px;
      line-height: 56px;
    }
    .page-description {
      margin: 16px auto 0;
      max-width: 560px;
      p,
      li,
      span {
        font-size: 14px;
        line-height: 20px;
      }
    }
    .integrations {
      margin-top: 60px;
      gap: 24px 30px;
      .integration-item {
        padding: 40px 24px;
        .icon {
          width: 74px;
          height: 74px;
          min-width: 74px;
          img {
            width: 38px;
            height: 38px;
            max-width: 38px;
            max-height: 38px;
          }
        }
        .integration-title {
          margin-top: 14px;
          font-size: 20px;
          line-height: 30px;
        }
      }
    }
  }
  .technicalSupport-container {
    margin: 30px auto 100px;
    .page-title {
      font-size: 42px;
      line-height: 56px;
    }
    .page-description {
      margin: 16px auto 0;
      max-width: 560px;
      p,
      li,
      span {
        font-size: 14px;
        line-height: 20px;
      }
    }
    .technicalSupports {
      margin-top: 60px;
      gap: 24px 20px;
      .technicalSupport-item {
        padding: 30px;
        .icon {
          width: 54px;
          height: 54px;
          min-width: 54px;
          img {
            width: 28px;
            height: 28px;
          }
        }
        .technicalSupport-title {
          margin-top: 24px;
          font-size: 24px;
          line-height: 32px;
        }
        .short-description {
          p,
          li,
          span {
            font-size: 16px;
            line-height: 24px;
          }
        }
      }
    }
  }
  .articles-container {
    margin: 30px auto 100px;
    .page-title {
      font-size: 42px;
      line-height: 56px;
    }
    .articles-head {
      margin-top: 30px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      gap: 20px;
      .articles-tabs {
        gap: 16px;
        .article-tab {
          padding: 8px 16px;
          font-size: 15px;
          line-height: 22px;
        }
      }
      .articles-search {
        gap: 8px;
        padding: 8px 16px;
        max-width: 250px;
        width: 100%;
        .article-search-btn {
          width: 20px;
          height: 20px;
          min-width: 20px;
        }
      }
    }
    .articles {
      margin-top: 60px;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px 20px;
      .article-card {
        .card-image {
          height: 270px;
        }
        .article-card-title {
          margin-top: 16px;
          font-size: 20px;
          line-height: 32px;
        }
        .article-card-date {
          margin-top: 10px;
          font-size: 14px;
          line-height: 20px;
        }
        .article-card-more {
          margin-top: 16px;
          font-size: 16px;
          line-height: 24px;
        }
      }
    }
    .pagination {
      gap: 12px;
      margin: 60px auto 0;
      .pagination-item {
        gap: 12px;
        .page-number {
          font-size: 16px;
          line-height: 24px;
        }
        .line {
          width: 30px;
          min-width: 30px;
        }
      }
      .pagination-points {
        font-size: 16px;
        line-height: 24px;
      }
    }
  }
  .articles-detail-container {
    margin: 30px auto 100px;
    .article-category {
      padding: 8px 16px;
    }
    .page-title {
      margin-top: 10px;
      font-size: 42px;
      line-height: 56px;
    }
    .article-date {
      margin-top: 10px;
      font-size: 15px;
      line-height: 22px;
    }
    .article-image {
      margin-top: 30px;
      height: 450px;
    }
    .article-text {
      margin-top: 40px;
    }
  }
  .recommend-us-container {
    margin: 30px auto 100px;
    .recommend-us-main {
      .recommend-us-content {
        max-width: 560px;
        .recommend-us-tag {
          padding: 10px 14px;
        }
        .recommend-us-content-title {
          margin-top: 16px;
          font-size: 32px;
          line-height: 44px;
        }
        .content-text {
          margin-top: 24px;
          p,
          li,
          span {
            font-size: 16px;
            line-height: 24px;
          }
        }
      }
      .recommend-us-image {
        max-width: 550px;
        min-width: 450px;
      }
    }
    .partners-slide {
      margin-top: 60px;
      .partner-item {
        width: 130px;
        height: 56px;
      }
    }
    .recommendation {
      margin-top: 100px;
      .recommendation-images {
        max-width: 560px;
        .recommendation-image-slide {
          height: 520px;
          padding: 30px;
        }
      }
      .recommendation-main {
        max-width: 540px;
        .recommendation-main-title {
          font-size: 32px;
          line-height: 44px;
        }
        .recommendation-items {
          margin-top: 30px;
          gap: 28px;
          .recommendation-item {
            gap: 10px;
            padding-bottom: 14px;
            .item-num {
              font-size: 14px;
              line-height: 20px;
            }
            .item-text {
              font-size: 18px;
              line-height: 28px;
            }
          }
        }
      }
    }
  }
  .contact-container {
    margin: 30px auto 100px;
    .contact-form {
      padding: 35px;
      .contact-form-title {
        font-size: 42px;
        line-height: 56px;
      }
      form {
        margin-top: 32px;
        gap: 16px;
        .form-items {
          gap: 16px;
        }
        input,
        textarea {
          padding: 12px 18px;
        }
        textarea {
          height: 120px;
        }
        .submit-contact-form {
          padding: 10px 36px;
        }
      }
    }
    .contact-items {
      margin-top: 60px;
      grid-template-columns: repeat(3, 1fr);
      .contact-item {
        gap: 16px;
        padding: 8px 16px;
        .icon {
          width: 36px;
          height: 36px;
          min-width: 36px;
          img {
            width: 20px;
            height: 20px;
          }
        }
        .item-body {
          .item-label {
            font-size: 16px;
            line-height: 24px;
          }
        }
      }
    }
    .map {
      margin-top: 30px;
      height: 400px;
    }
  }
  .about {
    padding: 130px 0 100px;
    .breadcrumb {
      margin: 0 auto;
    }
    .about-container {
      margin: 30px auto 0;
      .about-banner-image {
        height: 560px;
      }
      .about-main {
        margin-top: 100px;
        .about-content {
          max-width: 560px;
          .about-tag {
            padding: 10px 14px;
          }
          .about-title {
            margin-top: 16px;
            font-size: 32px;
            line-height: 44px;
          }
          .content-text {
            margin-top: 24px;
            p,
            li,
            span {
              font-size: 16px;
              line-height: 24px;
            }
          }
        }
        .about-image {
          max-width: 550px;
          min-width: 450px;
        }
      }
      .property-management-solution {
        padding-top: 100px;
        .small-title {
          font-size: 18px;
          line-height: 28px;
          max-width: 890px;
        }
        .normal-title {
          max-width: 890px;
          font-size: 42px;
          line-height: 56px;
        }
        .management-solution-advantage {
          margin-top: 45px;
          gap: 20px;
          .advantage-box {
            padding: 30px;
            gap: 30px;
            .box-head {
              gap: 20px;
              .icon {
                width: 32px;
                height: 32px;
                min-width: 32px;
                img {
                  width: 20px;
                  height: 20px;
                }
              }
              .head-title {
                font-size: 20px;
                line-height: 30px;
              }
            }
            .advantage-list {
              gap: 10px;
              .advantage-item {
                gap: 12px;
                width: 100%;
                p {
                  font-size: 16px;
                  line-height: 24px;
                }
              }
            }
          }
        }
      }
    }
  }
  .about-contact {
    margin: 100px auto;
    .about-contact-us {
      padding: 10px 14px;
    }
    .section-title {
      margin: 16px auto 0;
      max-width: 600px;
      font-size: 32px;
      line-height: 44px;
    }
    .about-contact-description {
      margin: 16px auto 0;
      max-width: 600px;
      p,
      li,
      span {
        font-size: 14px;
        line-height: 20px;
      }
    }
    .contact-items {
      max-width: 600px;
      margin: 30px auto 0;
      gap: 40px;
      .contact-item {
        gap: 16px;
        .icon {
          width: 32px;
          height: 32px;
          min-width: 32px;
          img {
            width: 20px;
            height: 20px;
          }
        }
        .item-body {
          .item-label {
            font-size: 16px;
            line-height: 24px;
          }
        }
      }
    }
    .about-contact-image {
      margin: 60px auto 0;
      max-width: 700px;
    }
  }
}
@media only screen and (max-width: 1080px) {
  nav {
    .navbar-inner {
      gap: 40px;
      .navbar-logo {
        width: 100px;
        min-width: 100px;
      }
      .navbar-right {
        display: none;
      }
      .hamburger {
        display: flex;
      }
    }
  }
  .mobile-menu {
    display: flex;
  }
}
@media only screen and (max-width: 992px) {
  .home-hero {
    .home-hero-animation {
      margin-top: 24px;
      overflow-x: auto;
      justify-content: start;
      .hero-svg {
        min-width: 992px;
      }
      .virtual-messaging {
        max-width: 270px;
        left: calc(992px - 305px);
        right: initial;
      }
    }
  }
  .product-benefit-container {
    grid-template-columns: repeat(1, 1fr);
    .benefit-card {
      .card-image {
        height: auto;
        margin-top: 0;
        padding: 60px 40px 0;
      }
    }
  }
  .main-features-container {
    flex-direction: column;
    align-items: center;
    .main-features {
      max-width: 100%;
    }
  }
  footer {
    .footer-container {
      .footer-main {
        flex-direction: column;
        .logo-socials {
          flex-direction: row;
          width: 100%;
          justify-content: space-between;
          align-items: flex-start;
          .socials {
            margin-top: 0;
          }
        }
        .footer-links-sections {
          max-width: 100%;
        }
      }
    }
  }
  .integrations-container {
    .integrations {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  .articles-container {
    .articles {
      grid-template-columns: repeat(2, 1fr);
      .article-card {
        .card-image {
          height: 320px;
        }
      }
    }
  }
  .recommend-us-container {
    .recommend-us-main {
      .recommend-us-image {
        min-width: 350px;
      }
    }
    .recommendation {
      .recommendation-images {
        .recommendation-image-slide {
          height: 450px;
        }
      }
    }
  }
  .contact-container {
    .contact-items {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      .contact-item {
        width: 48.5%;
      }
    }
  }
  .about {
    .about-container {
      .about-banner-image {
        height: 460px;
      }
      .about-main {
        .about-image {
          min-width: 350px;
        }
      }
    }
  }
}
@media only screen and (max-width: 768px) {
  .p-lr {
    padding-left: 20px;
    padding-right: 20px;
  }
  .home-hero {
    .home-hero-container {
      .hero-title {
        max-width: 650px;
        font-size: 48px;
        line-height: 64px;
      }
      .apply-btn {
        margin-top: 20px;
      }
    }
    .home-hero-animation {
      .hero-svg {
        min-width: 768px;
      }
      .tooltip-item {
        border-radius: 12px;
        .box-title {
          font-size: 14px;
          line-height: 20px;
        }
      }
      .recent-activities-box {
        max-width: 280px;
        .box-items {
          .activity-item {
            gap: 6px;
            padding: 6px 10px;
            .icon {
              width: 24px;
              height: 24px;
              min-width: 24px;
              img {
                width: 12px;
                height: 12px;
              }
            }
            .activity-info {
              .activity-title {
                font-size: 12px;
                line-height: 14px;
              }
              .activity-id {
                font-size: 8px;
                line-height: 10px;
              }
            }
          }
        }
      }
      .building-techniques-box {
        max-width: 234px;
        .box-items {
          .techniques-item {
            gap: 6px;
            padding: 6px 10px;
            .icon {
              width: 16px;
              height: 16px;
              min-width: 16px;
            }
            .building-icon {
              width: 20px;
              height: 12px;
              min-width: 20px;
            }
            .technique-title {
              font-size: 12px;
              line-height: 16px;
            }
          }
        }
      }
      .active-resident-box {
        max-width: 200px;
        .periodic-increase {
          margin-top: 4px;
          font-size: 10px;
          line-height: 12px;
        }
        .total-increase-result {
          margin-top: 4px;
          font-size: 16px;
          line-height: 28px;
        }
        .occupancy-chart {
          margin-top: 8px;
        }
      }
      .orders-box {
        max-width: 244px;
        width: 100%;
        .box-items {
          .order-item {
            gap: 6px;
            padding: 6px 10px;
            .icon {
              width: 16px;
              height: 16px;
              min-width: 16px;
            }
            .order-title {
              font-size: 12px;
              line-height: 14px;
            }
          }
        }
      }
      .resident-appeals-box {
        max-width: 260px;
        .box-items {
          .appeal-item {
            gap: 10px;
            padding: 6px 10px;
            .first-letter-design {
              width: 20px;
              height: 20px;
              min-width: 20px;
              font-size: 12px;
              line-height: 14px;
            }
            .appeal-info {
              .appeal-owner {
                font-size: 12px;
                line-height: 14px;
              }
              .appeal-txt {
                font-size: 10px;
                line-height: 12px;
              }
            }
          }
        }
      }
      .work-tasks-box {
        max-width: 244px;
        .box-items {
          .task-item {
            gap: 10px;
            padding: 6px 10px;
            .checkIcon {
              width: 14px;
              height: 14px;
              min-width: 14px;
            }
            .noCheck {
              width: 14px;
              height: 14px;
              min-width: 14px;
            }
            .task-title {
              font-size: 12px;
              line-height: 14px;
            }
          }
        }
      }
      .virtual-messaging {
        max-width: 220px;
        left: calc(768px - 240px);
        .message-answer {
          padding: 6px 10px;
          font-size: 12px;
          line-height: 16px;
        }
        .message-question {
          padding: 6px 10px;
          font-size: 12px;
          line-height: 16px;
        }
        .message-success {
          padding: 6px 10px;

          img {
            width: 18px;
            height: 18px;
            min-width: 18px;
          }
          p {
            font-size: 12px;
            line-height: 16px;
          }
        }
      }
    }
  }
  .product-showcase {
    padding: 40px 0 80px;
    .product-showcase-container {
      .title-1 {
        max-width: 100%;
      }
      .title-2 {
        font-size: 32px;
        line-height: 44px;
        max-width: 100%;
      }
      .partners-slide {
        margin-top: 30px;
        .partner-item {
          width: 160px;
          height: 70px;
          padding: 16px;
        }
      }
      .dashboard-image {
        margin-top: 60px;
      }
    }
  }
  .product-benefit-container {
    margin: 80px auto 0;
    .benefit-card {
      padding: 24px 20px 0;
      .card-title {
        font-size: 24px;
        line-height: 32px;
      }
      .short-desc {
        margin-bottom: 24px;
      }
      .card-image {
        height: auto;
        margin-top: 0;
        padding: 0;
      }
    }
  }
  .main-features-container {
    margin: 80px auto 0;
    .main-features {
      .main-feature-title {
        font-size: 24px;
        line-height: 32px;
      }
      .features {
        margin-top: 20px;
      }
    }
    .feature-images {
      max-width: 550px;
    }
  }
  .target-audience {
    margin-top: 80px;
    padding: 80px 0;
    .target-audience-container {
      .target-audience-tabs {
        gap: 16px;
      }
      .target-audience-content {
        margin-top: 30px;
        flex-direction: column-reverse;
        .content-image {
          max-width: 550px;
        }
        .content-info {
          .target-audience-title {
            font-size: 24px;
            line-height: 32px;
          }
          .targets {
            margin-top: 20px;
          }
        }
      }
      .target-audience-content.active {
        display: flex;
      }
    }
  }
  .recommend {
    padding: 80px 0;
    .recommend-container {
      .recommend-title {
        font-size: 36px;
        line-height: 44px;
      }
      .recommend-items {
        margin-top: 30px;
        gap: 30px;
        .recommend-item {
          max-width: 90%;
          padding: 24px 20px;
          .recommend-text {
            p,
            li,
            span {
              font-size: 18px;
              line-height: 28px;
            }
          }
          .recommend-owner {
            margin-top: 30px;
            gap: 16px;
          }
          &:nth-child(odd) {
            border-radius: 30px 30px 30px 4px;
          }
          &:nth-child(even) {
            border-radius: 30px 30px 4px 30px;
          }
        }
      }
    }
  }
  .digital-management-container {
    .digital-management {
      padding: 40px 20px 0;
      flex-direction: column;
      align-items: center;
      gap: 40px;
      .digital-management-content {
        max-width: 100%;
        padding-bottom: 0;
        .digital-management-title {
          font-size: 20px;
          line-height: 32px;
        }
      }
      .digital-management-image {
        max-width: 340px;
      }
    }
  }
  footer {
    margin-top: 40px;
    padding: 24px 0 20px;
    .footer-container {
      .footer-main {
        .logo-socials {
          .footer-logo {
            width: 100px;
          }
          .socials {
            .social-item {
              width: 44px;
              height: 44px;
              min-width: 44px;
              img {
                width: 20px;
                height: 20px;
              }
            }
          }
        }
        .footer-links-sections {
          flex-direction: column;
          .links-section-item {
            max-width: 100%;
          }
        }
      }
      .footer-bottom {
        margin-top: 20px;
      }
    }
  }
  .demo-modal-overlay {
    .demo-modal-box {
      max-width: 500px;
      padding: 30px 20px;
      .demo-modal-head {
        .demo-modal-title {
          font-size: 20px;
          line-height: 32px;
        }
        .closeDemoModal {
          width: 24px;
          height: 24px;
          min-width: 24px;
        }
      }
      .demo-modal-form {
        gap: 14px;
        margin-top: 24px;
        .submitForm {
          padding: 10px 32px;
        }
      }
    }
  }
  .breadcrumb {
    display: none;
  }
  .integrations-container {
    margin: 124px auto 80px;
    .page-title {
      font-size: 36px;
      line-height: 44px;
    }
    .page-description {
      max-width: 100%;
    }
    .integrations {
      margin-top: 40px;
      grid-template-columns: repeat(2, 1fr);
      .integration-item {
        padding: 24px 20px;
        .icon {
          width: 64px;
          height: 64px;
          min-width: 64px;
          border-radius: 16px;
          img {
            width: 32px;
            height: 32px;
            max-width: 32px;
            max-height: 32px;
          }
        }
      }
    }
  }
  .technicalSupport-container {
    margin: 124px auto 80px;
    .page-title {
      font-size: 36px;
      line-height: 44px;
    }
    .page-description {
      max-width: 100%;
    }
    .technicalSupports {
      margin-top: 40px;
      gap: 20px;
      grid-template-columns: repeat(1, 1fr);
      .technicalSupport-item {
        padding: 24px;
        .icon {
          width: 50px;
          height: 50px;
          min-width: 50px;
          img {
            width: 24px;
            height: 24px;
          }
        }
        .technicalSupport-title {
          margin-top: 20px;
        }
      }
    }
  }
  .articles-container {
    margin: 124px auto 80px;
    .page-title {
      font-size: 36px;
      line-height: 44px;
    }
    .articles-head {
      margin-top: 20px;
      flex-direction: column;
      align-items: flex-start;
      .articles-search {
        max-width: 100%;
        width: 100%;
      }
    }
    .articles {
      margin-top: 40px;
      gap: 24px 20px;
      .article-card {
        .card-image {
          height: 240px;
        }
        .article-card-title {
          font-size: 18px;
          line-height: 28px;
        }
        .article-card-more {
          font-size: 14px;
          line-height: 20px;
        }
      }
    }
    .pagination {
      gap: 10px;
      margin: 40px auto 0;
      .pagination-item {
        gap: 10px;
        .page-number {
          font-size: 14px;
          line-height: 20px;
        }
        .line {
          width: 20px;
          min-width: 20px;
        }
      }
      .pagination-points {
        font-size: 14px;
        line-height: 20px;
      }
    }
  }
  .articles-detail-container {
    margin: 124px auto 80px;
    .page-title {
      font-size: 36px;
      line-height: 44px;
    }
    .article-image {
      margin-top: 24px;
      height: 400px;
    }
    .article-text {
      margin-top: 30px;
    }
  }
  .recommend-us-container {
    margin: 124px auto 80px;
    .recommend-us-main {
      flex-direction: column;
      .recommend-us-content {
        max-width: 100%;
        .recommend-us-tag {
          padding: 8px 14px;
        }
        .recommend-us-content-title {
          font-size: 28px;
          line-height: 40px;
        }
        .content-text {
          margin-top: 20px;
        }
      }
      .recommend-us-image {
        max-width: 100%;
        min-width: 0;
      }
    }
    .partners-slide {
      margin-top: 40px;
      .partner-item {
        width: 120px;
        height: 52px;
      }
    }
    .recommendation {
      margin-top: 80px;
      flex-direction: column-reverse;
      .recommendation-images {
        max-width: 100%;
      }
      .recommendation-main {
        max-width: 100%;
        .recommendation-main-title {
          font-size: 28px;
          line-height: 40px;
        }
        .recommendation-items {
          margin-top: 24px;
          gap: 24px;
        }
      }
    }
  }
  .contact-container {
    margin: 124px auto 80px;
    .contact-form {
      padding: 24px 20px;
      .contact-form-title {
        font-size: 36px;
        line-height: 44px;
      }
      form {
        margin-top: 24px;
        input,
        textarea {
          padding: 10px 16px;
        }
        textarea {
          height: 100px;
        }
        .submit-contact-form {
          padding: 10px 30px;
        }
      }
    }
    .contact-items {
      margin-top: 40px;
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      flex-wrap: nowrap;
      .contact-item {
        width: 100%;
      }
    }
    .map {
      margin-top: 24px;
      height: 300px;
    }
  }
  .about {
    padding: 124px 0 80px;
    .about-container {
      margin: 0 auto;
      .about-banner-image {
        height: 360px;
      }
      .about-main {
        margin-top: 80px;
        flex-direction: column;
        .about-content {
          max-width: 100%;
          .about-tag {
            padding: 8px 14px;
          }
          .about-title {
            font-size: 28px;
            line-height: 40px;
          }
          .content-text {
            margin-top: 20px;
          }
        }
        .about-image {
          max-width: 100%;
          min-width: 0;
        }
      }
      .property-management-solution {
        padding-top: 80px;
        .small-title {
          font-size: 16px;
          line-height: 24px;
        }
        .normal-title {
          max-width: 100%;
          font-size: 36px;
          line-height: 44px;
        }
        .management-solution-advantage {
          margin-top: 30px;
          grid-template-columns: repeat(1, 1fr);
          .advantage-box {
            padding: 24px 20px;
            gap: 24px;
            .box-head {
              gap: 16px;
              .head-title {
                font-size: 18px;
                line-height: 28px;
              }
            }
          }
        }
      }
    }
  }
  .about-contact {
    margin: 80px auto;
    .section-title {
      max-width: 100%;
      font-size: 28px;
      line-height: 40px;
    }
    .about-contact-description {
      max-width: 100%;
    }
    .contact-items {
      max-width: 100%;
      margin: 24px auto 0;
      gap: 24px;
    }
    .about-contact-image {
      margin: 40px auto 0;
      max-width: 100%;
    }
  }
}
@media only screen and (max-width: 575px) {
  .home-hero {
    .home-hero-container {
      .hero-title {
        font-size: 44px;
        line-height: 58px;
      }
    }
    .home-hero-animation {
      .hero-svg {
        min-width: 575px;
      }
      .virtual-messaging {
        left: calc(575px - 240px);
      }
    }
  }
  footer {
    .footer-container {
      .footer-main {
        .logo-socials {
          flex-direction: column;
          gap: 24px;
          .socials {
            flex-wrap: wrap;
          }
        }
      }
      .footer-bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 16px;
      }
    }
  }
  .integrations-container {
    .integrations {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  .articles-container {
    .articles {
      grid-template-columns: repeat(1, 1fr);
      .article-card {
        .card-image {
          height: auto;
        }
      }
    }
  }
  .recommend-us-container {
    .recommendation {
      .recommendation-images {
        .recommendation-image-slide {
          height: 400px;
        }
      }
    }
  }
  .contact-container {
    .contact-form {
      form {
        .form-items {
          grid-template-columns: repeat(1, 1fr);
        }
      }
    }
  }
  .about {
    .about-container {
      .about-banner-image {
        height: 300px;
      }
    }
  }
  .about-contact {
    .contact-items {
      flex-direction: column;
      align-items: flex-start;
    }
  }
}

/* Success Page */
.success-page {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 180px;
  padding-bottom: 40px;
}
.success-box {
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #f8f9fa;
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.success-icon-wrapper {
  margin-bottom: 30px;
  animation: scaleIn 0.5s ease-out;
}
@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.success-title {
  font-weight: 600;
  font-size: 28px;
  line-height: 36px;
  color: #0a071f;
  margin-bottom: 16px;
}
.success-description {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #484848;
  margin-bottom: 32px;
}
.success-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  background: #0b58c9;
  border-radius: 20px;
  transition: 0.25s ease-in-out;
}
.success-btn:hover {
  background: #4a0bc9;
  transform: translateX(-5px);
}
@media screen and (max-width: 576px) {
  .success-box {
    padding: 40px 24px;
  }
  .success-title {
    font-size: 24px;
    line-height: 32px;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: 0.3s ease-in-out;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}
@media screen and (max-width: 576px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}
