/* Section Background + Layout */
.section-integrationBackground {
    background-image: url('../images/enterprise-integration.svg') !important;
}

.section-products {
 width: 100%;
  padding: 112px 64px;
  background-color: #191919;
  background-image: url('../images/products_BG.svg');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
}

.appspace-feature-text .feature-description {
  display: -webkit-box;
  -webkit-line-clamp: 3;         /* จำกัด 3 บรรทัด */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;               /* จำกัดความกว้าง */
  white-space: normal;           /* ให้ตัดบรรทัดได้ */
}



/* Container */
.products-container {
  max-width: 1280px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
}

/* Header */
.products-header {
  text-align: center;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.products-title {
  font-size: 72px;
  font-weight: 500;
  line-height: 1.2;
   color: #fff;
}

.products-subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  max-width: 600px;
   color: #fff;
}

/* Buttons */
.products-buttons {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-products {
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
}

.products-btn-start {
  background-color: white;
  color: black;
  border: 1px solid white;
}

.products-btn-start:hover {
  background-color: #dddddd;
}

.products-btn-video {
  background-color: #4C4C4C;
  color: white;
  border: 1px solid #121927;
}

.products-btn-video:hover {
  background-color: #3a3a3a;
}

/* Step Section */
.products-steps {
  display: flex;
  gap: 48px;
  justify-content: space-between;
  flex-wrap: wrap;
  transform: translateY(50px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.product-step {
  flex: 1 1 calc(33.333% - 32px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 280px;
}

.product-step img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
}

.product-step h3 {
  font-size: 28px;
  font-weight: 500;
}

.product-step p {
  font-size: 18px;

  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .products-title {
    font-size: 48px;
  }

  .products-steps {
    gap: 40px;
  }

  .product-step {
    flex: 1 1 100%;
  }
}

@media (max-width: 640px) {
 
  .products-title {
    font-size: 36px;
  }

  .products-subtitle {
    font-size: 16px;
  }

  .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .products-buttons {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
}

    .step-2 {
      transform: translateY(60px);
    }

    .step-3 {
      transform: translateY(120px);
    }

    @media (max-width: 1024px) {
      .products-title {
        font-size: 42px;
      }

      .products-steps {
        gap: 32px;
      }

      .product-step {
        flex: 1 1 100%;
        transform: none !important;
      }
    }

    @media (max-width: 640px) {
    

      .products-title {
        font-size: 32px;
      }

      .products-subtitle {
        font-size: 16px;
      }

      .products-buttons {
        flex-direction: column;
        gap: 16px;
        width: 100%;
      }

      .btn-products {
        width: 100%;
      }
    }


/* appspace */

.section-appspace {
      padding: 112px 24px;
      background-color: #191919;
      color: white;
    }

    .appspace-wrapper {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
    }

    .appspace-content {
      display: flex;
      flex-direction: row;
      gap: 80px;
      align-items: flex-start;
      justify-content: space-between;
    }

    .appspace-heading {
      flex: 1;
      max-width: 480px;
    }

    .appspace-title {
      font-size: 52px;
      line-height: 1.2;
      font-weight: 500;
      margin-bottom: 16px;
      color: #fff;
    }

    .appspace-description {
      font-size: 18px;
      line-height: 1.5;
      color: #fff;
    }

    .appspace-features {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .appspace-feature {
      display: flex;
      gap: 24px;
      align-items: flex-start;
    }

    .appspace-feature-iconbox {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      min-width: 32px;
    }

    .icon {
      width: 32px;
      height: 32px;
      border: 2px solid #59B0FF;
    }

    .feature-line {
      width: 2px;
      height: 80px;
      background-color: rgba(255, 255, 255, 0.15);
    }

    .appspace-feature-text {
      flex: 1;
    }

    .feature-title {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 6px;
    }

    .feature-description {
      font-size: 16px;
      line-height: 1.5;
      color: #ccc;
    }

    @media (max-width: 960px) {
      .appspace-content {
        flex-direction: column;
        gap: 64px;
      }

      .appspace-heading, .appspace-features {
        max-width: 100%;
      }
    }




 /* section-dragdrop  */

 .section-dragdrop {
      padding: 112px 64px;
      background-color: #05070B;
      color: white;
    }

    .dragdrop-wrapper {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 80px;
    }

    .dragdrop-header {
      max-width: 768px;
      margin: 0 auto;
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .dragdrop-title {
      font-size: 52px;
      font-weight: 500;
      line-height: 1.2;
    }

    .dragdrop-description {
      font-size: 18px;
      line-height: 1.6;
      color: #ccc;
    }

    .dragdrop-content {
      display: flex;
      gap: 80px;
      align-items: flex-start;
      flex-wrap: wrap;
    }

    .dragdrop-feature-list.grid-layout {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px 64px;
      flex: 1;
    }

    .dragdrop-feature {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

    .feature-icon {
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: transparent;
      border-radius: 4px;
      font-size: 20px;
      color: #59B0FF;
    }

    .icon-symbol {
      font-size: 22px;
    }

    .feature-text h3 {
      font-size: 20px;
      margin-bottom: 8px;
    }

    .feature-text p {
      font-size: 16px;
      color: #ccc;
      line-height: 1.5;
    }

    .dragdrop-image {
      flex: 0 0 auto;
      width: 600px;
      background-color: #121927;
      border-radius: 16px;
      overflow: hidden;
    }

    .dragdrop-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    @media (max-width: 1024px) {
      .dragdrop-content {
        flex-direction: column;
      }
      .dragdrop-image {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
      }
    }

    @media (max-width: 640px) {
      .dragdrop-title {
        font-size: 36px;
      }
    }


    /* section-automate */

    .section-automate {
      padding: 112px 64px;
      background-color: #191919;
      color: white;
    }

    .automate-wrapper {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 80px;
    }

    .automate-header {
      max-width: 768px;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .automate-title {
      font-size: 52px;
      font-weight: 500;
      line-height: 1.2;
    }

    .automate-description {
      font-size: 18px;
      line-height: 1.6;
      color: #ccc;
    }

    .automate-content {
      display: flex;
      gap: 80px;
      flex-wrap: wrap;
      align-items: flex-start;
    }

    .automate-image {
      flex: 0 0 auto;
      width: 600px;
      background-color: #121927;
      border-radius: 16px;
      overflow: hidden;
    }

    .automate-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    .automate-feature-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px 64px;
      flex: 1;
    }

    .automate-feature {
      display: flex;
      flex-direction: column;
      gap: 20px;
      align-items: flex-start;
    }

    .automate-feature .feature-icon {
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #59B0FF;
      font-size: 22px;
    }

    .automate-feature .feature-text h3 {
      font-size: 20px;
      margin-bottom: 8px;
    }

    .automate-feature .feature-text p {
      font-size: 16px;
      color: #ccc;
      line-height: 1.5;
    }

    @media (max-width: 1024px) {
      .automate-content {
        flex-direction: column;
      }
      .automate-image {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
      }
    }

    @media (max-width: 640px) {
      .automate-title {
        font-size: 36px;
      }
    }


    /* section-microflow  */
    .section-microflow {
      padding: 112px 64px;
      background-color: #05070B;
      color: white;
    }

    .microflow-wrapper {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 100px;
    }

    .microflow-content {
      display: flex;
      gap: 80px;
      flex-wrap: wrap;
      align-items: flex-start;
    }

    .microflow-text {
      flex: 1 1 0;
      max-width: 768px;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .microflow-text h2 {
      font-size: 47px;
      font-weight: 500;
      line-height: 1.2;
    }

    .microflow-text p {
      font-size: 18px;
      line-height: 1.6;
      color: #ccc;
    }

    .microflow-image {
      flex: 0 0 auto;
      width: 600px;
      background-color: #121927;
      border-radius: 16px;
      overflow: hidden;
    }

    .microflow-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    .microflow-feature-list {
      display: flex;
      gap: 48px;
      flex-wrap: wrap;
      justify-content: space-between;
    }

    .microflow-feature {
      flex: 1 1 30%;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .microflow-feature .feature-icon {
      font-size: 24px;
      color: #59B0FF;
    }

    .microflow-feature .feature-text h3 {
      font-size: 22px;
      margin: 0;
    }

    .microflow-feature .feature-text p {
      font-size: 18px;
      color: #ccc;
      line-height: 1.5;
      margin-top: 20px;
    }

    @media (max-width: 1024px) {
      .microflow-content {
        flex-direction: column;
      }

      .microflow-image {
        width: 100%;
        max-width: 600px;
      }
    }

    @media (max-width: 640px) {
      .microflow-text h2 {
        font-size: 36px;
      }
    }


    /* section-security */
    
    .section-security {
      padding: 112px 64px;
      background-color: #E7E8E9;
      color: #1E1E1E;
    }

    .security-wrapper {
      max-width: 1280px;
      margin: 0 auto;
    }

    .security-content {
      display: flex;
      flex-direction: column;
      gap: 80px;
      align-items: center;
    }

    .security-header {
      max-width: 768px;
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .security-header h2 {
      font-size: 52px;
      font-weight: 500;
      line-height: 1.2;
    }

    .security-header p {
      font-size: 18px;
      line-height: 1.6;
    }

    .security-columns {
     display: flex;
      gap: 64px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .security-block {
      flex: 1 1 45%;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .security-block img {
      width: 100%;
      border-radius: 16px;
    }

    .security-block h3 {
      font-size: 28px;
      font-weight: 500;
    }

    .security-block p {
      font-size: 18px;
      line-height: 1.6;
    }
.security-list {
  padding-left: 1.5rem;
  margin: 0;
}

.security-list li {
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 16px;
}
    @media (max-width: 768px) {
      .security-columns {
        flex-direction: column;
      }
    }

    

.fadeUp{
animation: fadeUp both;
animation-timeline: view();
}
.timeline-item:nth-child(1){
  animation-range: entry 20% cover 10%;
}
.timeline-item:nth-child(2){
  animation-range: entry 40% cover 60%;
}
.timeline-item:nth-child(3){
  animation-range: entry 60% cover 80%;
}


@keyframes fadeUp {
  from {
    opacity: 1;
    transform: translateY(10px) scale(0.5);
  }
  to {
    opacity: 1;
   transform: translateY(0) scale(1);
  }
}


/* --- sm xs --- */
@media (min-width: 200px) and (max-width: 767px){
 .fadeUp {
    animation: none;
  }
.products-container {
    max-width: 1280px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: center;
}
  .appspace-title {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 16px;
    color: #fff;
}
.dragdrop-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dragdrop-feature-list.grid-layout {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 0px;
    flex: 1;
}
.automate-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.automate-feature-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0px 10px;
    flex: 1;
}

.security-header h2 {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2;
}
.security-content {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: center;
}
.security-columns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.microflow-feature {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.microflow-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.microflow-content {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: flex-start;
}
}


/* 🟩 Desktop breakpoint */
@media (min-width: 1024px) {
  .section-products {
    padding: 186px 64px 64px 64px;
  }
}



.section-mobileapplications {
    background-color: var(--Color-Scheme-1-Background, #05070B);
    color: var(--Color-Scheme-1-Text, #FFFFFF);
    padding: 112px 24px;
    display: flex;
    justify-content: center;
}
.mobileapps-inner {
    display: flex;
    flex-direction: column;
    gap: 64px;
}
.mobileapps-image {
    width: 100%;
    max-height: 640px;
    object-fit: cover;
    border-radius: 16px;
}
.mobileapps-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.mobileapps-heading {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobileapps-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.mobileapps-title {
    font-size: 52px;
    font-weight: 500;
    line-height: 1.2;
}
.mobileapps-item {
    border-left: 1px solid var(--Color-Mirage-Light, #595E67);
    padding: 0px 0 0px 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.item-title {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
}
.item-description {
    font-size: 18px;
    line-height: 1.5;
}
@media (min-width: 1024px) {
    .mobileapps-image {
        flex: 1;
        height: 640px;
    }
}
.section-smarterteams {
    width: 100%;
    padding: 64px 24px;
    background-color: #05070B;
    display: flex;
    justify-content: center;
}


.mobileapps-container {
    max-width: 1280px;
    width: 100%;
}

/* Responsive: Tablet/Desktop */
@media (min-width: 1024px) {
  .mobileapps-inner {
    flex-direction: row;
    gap: 80px;
  }

  .mobileapps-image {
    flex: 1;
    height: 640px;
  }

  .mobileapps-content {
    flex: 1;
  }
}


.smarterteams-container {
    width: 100%;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.smarterteams-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.smarterteams-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.smarterteams-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.smarterteams-title {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.3;
    color: white;
}
.smarterteams-feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.smarterteams-feature {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 0 16px 24px;
}

.smarterteams-feature.highlighted {
    border-left: 1px solid white;
    background-color: #05070B;
}
.feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #000;
}

.feature-desc {
    font-size: 16px;
    color: white;
    line-height: 1.5;
}

.smarterteams-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

@media (min-width: 768px) {
  .section-smarterteams {
    padding: 96px 48px;
  }

  .smarterteams-title {
    font-size: 44px;
  }

  .smarterteams-subtitle {
    font-size: 17px;
  }

  .feature-title {
    font-size: 21px;
  }

  .feature-desc {
    font-size: 17px;
  }
}

@media (min-width: 1024px) {
  .section-smarterteams {
    padding: 112px 64px;
  }

  .smarterteams-content {
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }

  .smarterteams-text,
  .smarterteams-image {
    flex: 1;
  }

  .smarterteams-title {
    font-size: 52px;
  }

  .smarterteams-subtitle {
    font-size: 18px;
  }

  .feature-title {
    font-size: 22px;
  }

  .feature-desc {
    font-size: 18px;
  }

  .smarterteams-image img {
    height: 640px;
  }
}



.smarterteams-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
}