.tw-funcs {
  background: #fff;
  padding: 60px 56px;
  font-family: "Poppins", sans-serif;
  color: #190750;
}
.tw-funcs *, .tw-funcs *::before, .tw-funcs *::after {
  box-sizing: border-box;
}
.tw-funcs .tw-funcs-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.tw-funcs .tw-eyebrow {
  font: 700 12px/1 "Poppins", sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #3E5EE2;
}
.tw-funcs .tw-funcs-title,
.tw-funcs h2.tw-funcs-title {
  font: 600 44px/1.15 "Poppins", sans-serif;
  letter-spacing: -0.01em;
  color: #190750;
  margin: 18px 0 56px;
}
.tw-funcs .tw-funcs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.tw-funcs .tw-func-card {
  background: #fff;
  border: 1px solid #ECECF3;
  border-radius: 18px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.tw-funcs .tw-func-card:hover {
  transform: translateY(-2px);
  border-color: #C9D2F5;
  box-shadow: 0 18px 40px rgba(25, 7, 80, 0.06);
}
.tw-funcs .tw-func-tag {
  font: 700 11.5px/1.2 "Poppins";
  letter-spacing: 0.04em;
  color: #3E5EE2;
}
.tw-funcs .tw-func-num {
  font-weight: 800;
}
.tw-funcs .tw-func-h,
.tw-funcs h3.tw-func-h {
  font: 700 22px/1.3 "Poppins";
  letter-spacing: -0.01em;
  color: #190750;
  margin: 0;
}
.tw-funcs .tw-func-list,
.tw-funcs ul.tw-func-list {
  list-style: none;
  margin: 0;
  padding: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid #EFEFF5;
  margin-top: auto;
}
.tw-funcs .tw-func-list li,
.tw-funcs ul.tw-func-list li {
  position: relative;
  padding-left: 18px;
  font: 400 13.5px/1.5 "Poppins";
  color: #190750;
}
.tw-funcs .tw-func-list li::before,
.tw-funcs ul.tw-func-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 1.5px;
  border-radius: 1px;
  background: #3E5EE2;
}

@media (max-width: 1100px) {
  .tw-funcs .tw-funcs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tw-funcs .tw-funcs-title {
    font-size: 36px;
  }
}
@media (max-width: 600px) {
  .tw-funcs {
    padding: 56px 24px;
  }
  .tw-funcs .tw-funcs-grid {
    grid-template-columns: 1fr;
  }
  .tw-funcs .tw-funcs-title {
    font-size: 32px;
  }
}
