.cgb-table1 {
  background-color: #fff;
  padding: 40px 0;
  box-sizing: border-box;
}
@media (min-width: 920px) {
  .cgb-table1 { padding: 60px 0; }
}
.cgb-table1 *,
.cgb-table1 *:before,
.cgb-table1 *:after {
  box-sizing: border-box;
}
.cgb-table1__container {
  max-width: 1370px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.cgb-table1__title {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.06em;
  text-align: center;
  color: #131313;
  margin: 0 auto 24px;
  max-width: 900px;
}
@media (min-width: 920px) {
  .cgb-table1__title { font-size: 40px; margin-bottom: 40px; }
}
@media (min-width: 1200px) {
  .cgb-table1__title { font-size: 48px; }
}
.cgb-table1__table {
  display: flex;
  align-items: stretch;
  gap: 10px;
  border: 1px solid rgba(19, 19, 19, 0.1);
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
}
.cgb-table1__col {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.cgb-table1__col--features {
  flex: 1.4;
}
.cgb-table1__col:not(.cgb-table1__col--features):not(:last-child) {
  display: none;
}
@media (min-width: 620px) {
  .cgb-table1__col:not(.cgb-table1__col--features):not(:last-child) {
    display: flex;
  }
}
.cgb-table1__col--accent {
  background-color: rgb(3, 137, 203);
  border-radius: 10px;
}
.cgb-table1__col--accent .cgb-table1__cell {
  color: #fff;
  border-top-color: rgba(255, 255, 255, 0.2);
}
.cgb-table1__col-header {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 16px;
  text-align: center;
}
.cgb-table1__col-header span {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #131313;
}
.cgb-table1__col--accent .cgb-table1__col-header span {
  color: #fff;
}
.cgb-table1__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  padding: 14px 12px;
  min-height: 52px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: -0.04em;
  color: rgba(19, 19, 19, 0.7);
  border-top: 1px solid rgba(19, 19, 19, 0.1);
}
.cgb-table1__cell--feature {
  justify-content: flex-start;
  text-align: left;
  color: #131313;
  font-weight: 500;
}
.cgb-table1__cell--check::before {
  content: "✓";
  color: #24B472;
  font-weight: 700;
}
.cgb-table1__cell--minus::before {
  content: "−";
  color: rgba(19, 19, 19, 0.3);
  font-weight: 700;
}
.cgb-table1__col--accent .cgb-table1__cell--check::before {
  color: #fff;
}
