@charset "UTF-8";
/* "What this means for your operation" — tabbed benefits + use-case chips.
   Figma nodes 11537:5771 (Ops), 11589:31997 (Agents), 11589:32083 (Quality). */
.op_tabs {
  background: #ffffff;
  padding: 120px 0;
}
.op_tabs .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}
.op_tabs__title {
  margin: 0;
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
  color: #1a1a22;
  text-align: center;
}
.op_tabs__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}
.op_tabs {
  /* Segmented control */
}
.op_tabs__bar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border-radius: 16px;
  border: 1px solid #e7e7ea;
  background: #f4f4f5;
}
.op_tabs__tab {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 12px;
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #1a1a22;
  white-space: nowrap;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}
.op_tabs__tab.is-active {
  background: #ffffff;
  font-weight: 600;
  color: #23232e;
  box-shadow: 0 4px 12px rgba(26, 26, 34, 0.1);
}
.op_tabs {
  /* Panels */
}
.op_tabs__panel {
  width: 100%;
}
.op_tabs__panel[hidden] {
  display: none;
}
.op_tabs__cards {
  display: flex;
  align-items: stretch;
  gap: 24px;
}
.op_tabs__card {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  height: 220px;
  padding: 24px;
  border-radius: 16px;
  background: #f7f7f8;
}
.op_tabs__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(180deg, #b2e2ff 0%, #cfcafa 100%);
}
.op_tabs__icon img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.op_tabs__card-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.op_tabs__card-title {
  margin: 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: #1c1f20;
}
.op_tabs__card-desc {
  margin: 0;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #757585;
}
.op_tabs {
  /* Footer — use-case chips between dividers */
}
.op_tabs__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 40px 32px;
  border-top: 1px solid #e7e7ea;
  border-bottom: 1px solid #e7e7ea;
}
.op_tabs__footer-label {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #757585;
}
.op_tabs__chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.op_tabs__chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: 48px;
  background: #f4f4f5;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #1a1a22;
}
.op_tabs__chip img {
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  object-fit: contain;
}

@media screen and (max-width: 1100px) {
  .op_tabs {
    padding: 64px 0;
  }
  .op_tabs__title {
    font-size: 32px;
    line-height: 40px;
  }
  .op_tabs {
    /* Tab switcher scrolls horizontally when it overflows (VT API logic). */
  }
  .op_tabs__bar {
    max-width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .op_tabs__bar::-webkit-scrollbar {
    display: none;
  }
  .op_tabs__tab {
    flex: 0 0 auto;
  }
  .op_tabs__cards {
    flex-wrap: wrap;
  }
  .op_tabs__card {
    flex: 1 1 calc(50% - 12px);
    height: auto;
    min-height: 180px;
  }
}
@media screen and (max-width: 767px) {
  .op_tabs__title {
    font-size: 28px;
    line-height: 36px;
  }
  .op_tabs__cards {
    gap: 16px;
  }
  .op_tabs__card {
    flex: 1 1 100%;
  }
  .op_tabs__footer {
    padding: 32px 0;
  }
}
