.custom-gb-card {
  width: 100%;
  max-width: 460px;
  margin: 0 auto 28px;
  padding: 22px;
  border-radius: 28px;
  background: #ffffff;
  border: 2px solid rgba(9, 31, 56, 0.08);
  box-shadow: 0 24px 70px rgba(9, 31, 56, 0.10);
  box-sizing: border-box;
}

.custom-gb-card.is-active {
  border-color: rgba(72, 149, 239, 0.55);
  box-shadow: 0 28px 80px rgba(72, 149, 239, 0.20);
}

.custom-gb-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.custom-gb-card__title {
  margin: 0;
  color: #071d35;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
}

.custom-gb-card__subtitle {
  margin: 8px 0 0;
  color: #7b8797;
  font-size: 16px;
  font-weight: 600;
}

.custom-gb-card__switch {
  position: relative;
  flex: 0 0 auto;
  width: 58px;
  height: 34px;
  cursor: pointer;
}

.custom-gb-card__switch input {
  display: none;
}

.custom-gb-card__switch span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #d8dee8;
  transition: 0.18s ease;
}

.custom-gb-card__switch span::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(9, 31, 56, 0.25);
  transition: 0.18s ease;
}

.custom-gb-card__switch input:checked + span {
  background: #4b91ff;
}

.custom-gb-card__switch input:checked + span::before {
  transform: translateX(24px);
}

.custom-gb-card__body {
  margin-top: 18px;
}

.custom-gb-card__input {
  height: 58px;
  padding: 0 18px;
  border-radius: 18px;
  border: 2px solid #e3e8f0;
  background: #f8fafc;
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-gb-card__input input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #071d35;
  font-size: 24px;
  font-weight: 900;
}

.custom-gb-card__input input::placeholder {
  color: #a4adbb;
}

.custom-gb-card__input span {
  color: #071d35;
  font-size: 20px;
  font-weight: 900;
}

.custom-gb-card__result {
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #eef5ff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.custom-gb-card__result span {
  color: #6b7788;
  font-size: 15px;
  font-weight: 700;
}

.custom-gb-card__result b {
  color: #071d35;
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
}

.custom-gb-card__presets {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.custom-gb-card__presets button {
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: #071d35;
  color: #ffffff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: 0.18s ease;
}

.custom-gb-card__presets button:hover {
  background: #4b91ff;
}

@media (max-width: 768px) {
  .custom-gb-card {
    max-width: 100%;
    margin-top: 28px;
    margin-bottom: 22px;
    padding: 18px;
    border-radius: 22px;
  }

  .custom-gb-card__title {
    font-size: 21px;
  }

  .custom-gb-card__subtitle {
    font-size: 14px;
  }

  .custom-gb-card__presets {
    grid-template-columns: 1fr;
  }
}
.custom-gb-card__notice {
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  background: #f6f9ff;
  border: 1px solid #e2ebf8;
}

.custom-gb-card__steps {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 12px;
}

.custom-gb-card__steps span {
  color: #637083;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.custom-gb-card__action {
  width: 100%;
  height: 46px;
  border: 0;
  border-radius: 15px;
  background: #071d35;
  color: #ffffff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  transition: 0.18s ease;
  margin-top: 14px;
}

.custom-gb-card__action:hover {
  background: #4b91ff;
}

.custom-gb-card__small {
  margin: 10px 0 0;
  color: #8792a3;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}