.cgb-staffcalc1 {
  background-color: #f2f3f5;
  padding: 40px 0;
  box-sizing: border-box;
}
.cgb-staffcalc1 *,
.cgb-staffcalc1 *:before,
.cgb-staffcalc1 *:after {
  box-sizing: border-box;
}
.cgb-staffcalc1__container {
  max-width: 1370px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.cgb-staffcalc1__card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(19, 19, 19, 0.06);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
@media (max-width: 920px) {
  .cgb-staffcalc1__card { grid-template-columns: 1fr; }
}
.cgb-staffcalc1__left {
  padding: 40px;
}
@media (max-width: 620px) {
  .cgb-staffcalc1__left { padding: 24px; }
}
.cgb-staffcalc1__title {
  margin: 0 0 10px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #131313;
}
@media (max-width: 620px) {
  .cgb-staffcalc1__title { font-size: 24px; }
}
.cgb-staffcalc1__hint {
  margin: 0 0 40px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: rgba(19, 19, 19, 0.7);
}
.cgb-staffcalc1__slider {
  margin-bottom: 30px;
}
.cgb-staffcalc1__bubble-wrap {
  position: relative;
  height: 34px;
}
.cgb-staffcalc1__bubble {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 6px 10px;
  border: 1px solid rgba(19, 19, 19, 0.15);
  border-radius: 8px;
  background-color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #131313;
  white-space: nowrap;
}
.cgb-staffcalc1__range {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  appearance: none;
  -webkit-appearance: none;
  background: rgb(3, 137, 203);
  outline: none;
  cursor: pointer;
}
.cgb-staffcalc1__range::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  appearance: none !important;
  box-sizing: border-box;
  width: 18px;
  height: 18px;
  border-radius: 50% !important;
  background-color: rgb(3, 137, 203);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(3, 137, 203, 0.4);
  cursor: pointer;
}
.cgb-staffcalc1__range::-moz-range-thumb {
  box-sizing: border-box;
  width: 18px;
  height: 18px;
  border-radius: 50% !important;
  background-color: rgb(3, 137, 203);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(3, 137, 203, 0.4);
  cursor: pointer;
}
.cgb-staffcalc1__range::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: transparent;
}
.cgb-staffcalc1__scale {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  letter-spacing: -0.02em;
  color: rgba(19, 19, 19, 0.45);
}
.cgb-staffcalc1__btn {
  display: inline-flex;
  margin-bottom: 20px;
}
.cgb-staffcalc1__note {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: rgba(19, 19, 19, 0.45);
}
.cgb-staffcalc1__right {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 620px) {
  .cgb-staffcalc1__right { padding: 20px; }
}
.cgb-staffcalc1__price {
  background-color: rgb(3, 137, 203);
  border-radius: 14px;
  padding: 20px 24px;
  color: #fff;
}
.cgb-staffcalc1__price-label {
  display: block;
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.85);
}
.cgb-staffcalc1__price-value {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -0.03em;
}
@media (max-width: 620px) {
  .cgb-staffcalc1__price-value { font-size: 32px; }
}
.cgb-staffcalc1__price-mark {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.cgb-staffcalc1__compare {
  background-color: rgb(243, 243, 243);
  border-radius: 14px;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cgb-staffcalc1__compare-title {
  margin: 0 0 16px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #131313;
}
.cgb-staffcalc1__compare-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: auto;
}
@media (max-width: 620px) {
  .cgb-staffcalc1__compare-cols { grid-template-columns: 1fr; }
}
.cgb-staffcalc1__compare-col {
  background-color: rgb(243, 243, 243);
  border-radius: 10px;
  border: 1px solid rgba(19, 19, 19, 0.1);
  overflow: hidden;
}
.cgb-staffcalc1__compare-col .cgb-staffcalc1__compare-row {
  padding: 15px 15px 5px;
}
.cgb-staffcalc1__compare-col .cgb-staffcalc1__compare-row:last-child {
  padding-bottom: 15px;
}
.cgb-staffcalc1__compare-col--ai .cgb-staffcalc1__compare-row b {
  color: rgb(3, 137, 203);
}
.cgb-staffcalc1__compare-col:not(.cgb-staffcalc1__compare-col--ai) .cgb-staffcalc1__compare-row b {
  color: #E14A4A;
  text-decoration: line-through;
}
.cgb-staffcalc1__compare-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  background-color: #fff;
  letter-spacing: -0.02em;
  color: #131313;
  padding: 8px;
}
.cgb-staffcalc1__compare-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  letter-spacing: -0.02em;
  color: rgba(19, 19, 19, 0.7);
}
.cgb-staffcalc1__compare-row b {
  font-weight: 600;
  color: #131313;
}
.cgb-staffcalc1__save {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgb(125, 222, 146);
  border-radius: 10px;
  padding: 14px 18px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-top: 15px;
}
.cgb-staffcalc1__save b {
  margin-left: auto;
  font-size: 16px;
  font-weight: 700;
}
