.neo-highlight {
  font-weight: bold;
}

section {
  width: 100%;
}

p {
  color: #78736f;
  font-size: large;
  line-height: 1.6;
  margin: 1em 0;
  text-align: center;
  max-width: 100%;
}

.overview-demo {
  width: 100%;
  display: flex;
  flex-direction: column;
  
}

.overview-demo .video-wrapper {
  margin: 0.5em 0;
  justify-content: center;
  display: flex;
}

.overview-demo > .video-wrapper > iframe {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
}

.neo-capabilities {
  padding: 1.5em;
  margin: 0.5em 0;
}

.neo-capabilities ul,
.neo-context ul {
  list-style-type: none;
  padding-left: 0;
}

.neo-capabilities li,
.neo-context li {
  display: flex;
  align-items: center;
  margin-bottom: 1em;
}

.neo-capabilities li i,
.neo-context li i {
  margin-right: 0.5em;
  color: #f28b2a;
  width: 20px;
  display: flex;
  justify-content: flex-end;
}

.neo-context {
  background-color: #ffe4c74d;
  padding: 1.5em;
  border-radius: 10px;
  margin: 0.5em 0;
}

.neo-context .neo-highlight {
  color: #f28b2a;
}

.enterprise-ready {
  border: 1px solid #7a7b7b;
  padding: 1.5em;
  margin: 2em 0;
  text-align: center;
  max-width: 100%;
}

.supported-tools {
  margin: 2em 0;
}

.tool-selectors {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: space-around;
  width: 100%;
  margin: 1em auto !important;
}

.tool-group {
  border-radius: 10px;
  padding: 10px;
  flex: 1;
  background-color: white;
  box-shadow: 0 0 10px #00000033;
  margin: 13px;
}

.tool-group h4 {
  text-align: center;
  margin: 5px 0 16px;
}

@media (width <= 768px) {
  .tool-selectors {
    flex-direction: column;
    gap: 20px;
  }

  .tool-options label {
    width: 40px;
    height: 40px;
  }

  .tool-options img {
    max-width: 30px;
    max-height: 30px;
  }

  .tool-group {
      margin: 10px auto;
      width: 90%;
  }
}

.tool-options {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  align-items: center;
}

.tool-options label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  width: 50px;
  aspect-ratio: 1;
  border: 1px solid transparent;
  border-radius: 10px;
}

.tool-options label:hover {
  border-color: #f28b2a;
}

.tool-options img {
  max-width: 40px;
  max-height: 40px;
}

.tool-options > label[title] {
  position: relative;
}

.tool-options > label[title]:hover::after {
  content: attr(title);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #cccccc;
  padding: 5px;
  font-size: 0.8em;
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 4px 6px #0000001a;
}

.cta {
  margin: 2em 0;
  text-align: center;
}

.cta-button {
  padding: 1em 2em;
  border: none;
  border-radius: 30px;
  background-color: #f28b2a;
  color: #ffffff;
  cursor: pointer;
  font-size: medium;
  font-weight: bold;
  text-decoration: none;
}

.cta-button .neo-highlight {
  color: #ffffff;
}