.tabs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.tab {
  padding: 10px 24px;
  border-radius: 9999px;
  border: 1.5px solid rgba(255, 255, 255, .1);
  background: transparent;
  color: rgba(255, 255, 255, .7);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
  transition: all .35s;
  font-family: 'Inter Tight', sans-serif;
}

.tab:hover {
  border-color: #1D7C6E;
  color: #1D7C6E;
}

.tab.on {
  background: #1D7C6E;
  color: #fff;
  border-color: #1D7C6E;
}

.panel {
  display: none;
  background: rgba(13, 31, 28, .5);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 20px;
  padding: clamp(2rem, 4vw, 3.5rem);
}

.panel.on {
  display: block;
  animation: fadeUp .5s cubic-bezier(.16, 1, .3, 1);
}

.panel h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.panel p {
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
  max-width: 55ch;
  margin-bottom: 2rem;
}

.panel-st {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.panel-st div {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.panel-st strong {
  font-size: 2.2rem;
  font-weight: 900;
  color: #1D7C6E;
}

.panel-st span {
  font-size: .8rem;
  color: rgba(255, 255, 255, .65);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 600;
}

.tabs-wrap {
  max-width: 900px;
  margin: 0 auto;
}
