section.integration-section {
  margin: 80px 20px;
}

.integration-title {
  max-width: 800px;
  margin: 40px auto 80px;
  text-align: center;
}

.integration-title h1 {
  font-size: 38px;
  margin: 0;
  font-weight: 600;
}

.integration-title p {
  font-size: 18px;
  margin: 8px 0;
  color: #615568;
}

.integration-platform-search {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  background: #F4F4F4;
  box-sizing: border-box;
  height: 48px;
  padding: 12px 6px 6px 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
}

.integration-platform-search:has(input:focus) {
  box-shadow: 0 0 0 1px rgba(86, 78, 240, 0.3);
  background: rgba(244, 244, 244, 0.78);
}

.integration-platform-search svg {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 17px;
  left: 19px;
  fill: #615568;
}

.integration-platform-search input {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  font-size: 16px;
  color: #615568;
  outline: none;
}

.integration-platform-icons {
  margin: 0 auto;
  max-width: 1000px;
}

.ipl-item-wrapper svg {
  width: 24px;
  transition: transform 0.3s ease;
}

.integration-platform-list {
  max-width: 1280px;
  margin: 100px auto 140px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 48px;
  overflow: auto;
}

.ipl-item-wrapper {
  border: 1px solid #C8CEED;
  border-radius: 8px;
  padding: 12px 14px;
  max-height: 65px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, max-height 0.3s ease;
  box-sizing: border-box;
}

.ipl-item-wrapper.hidden {
  display: none;
}

.ipl-item-wrapper:hover {
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.ipl-item-wrapper.active {
  max-height: 800px;
}

.ipl-item {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: space-between;
}

.ipl-item-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 135px;
}

.ipl-item-icon {
  width: 40px;
  display: flex;
}

.ipl-item-name {
  font-weight: 500;
}

.ipl-item-description {
  color: #8E91A3;
  font-size: 14px;
  font-weight: 400;
  flex: 0 0 220px;
}

.ipl-item-action {
  display: flex;
  font-size: 14px;
  flex: 0 0 105px;
  align-items: center;
  justify-content: flex-end;
  color: #564EF0;
  text-decoration: underline;
  font-weight: 600;
  gap: 6px;
}

.ipl-item-action svg path {
  stroke: #564EF0;
  stroke-width: 2;
}

.ipl-item-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  margin: 42px 0 12px 6px;
}

.ipl-item-step {
  display: flex;
  gap: 20px;
  color: #343434;
  font-weight: 400;
}

.ipl-item-step-nr {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #564EF0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
}

.integration-platform-left-list,
.integration-platform-right-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ipl-item-wrapper.active svg {
  transform: rotate(180deg);
}



@media (max-width: 768px) {

  .integration-title {
    text-align: left;
    margin: 20px 0 40px;
  }

  .integration-platform-icons {
    display: none;
  }

  .integration-platform-list {
    margin: 40px 0 80px;
    padding: 0;
    grid-template-columns: 1fr;
  }

  .ipl-item-wrapper {
    max-height: 136px;
  }

  .ipl-item {
    display: block;
  }

  .ipl-item-header {
    margin-bottom: 12px;
  }

  .ipl-item-description {
    max-height: 18px;
    overflow: hidden;
    margin-bottom: 12px;
  }

  .ipl-item-action {
    justify-content: flex-start;
  }

  .integration-platform-search {
    padding-left: 32px;
  }

  .integration-platform-search svg {
    width: 14px;
    height: 14px;
    top: 19px;
    left: 12px;
  }

}






















